├── .babelrc ├── .gitignore ├── .npmignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── bin └── syncjs ├── gulpfile.js ├── package.json ├── src ├── classes │ ├── CLI.ts │ ├── Config.ts │ ├── InitConfig.ts │ ├── Sync.ts │ ├── Uploader.ts │ └── Watcher.ts └── index.ts ├── tsconfig.json ├── typings ├── scp2 │ └── scp2.d.ts ├── tsd.d.ts └── upath │ └── upath.d.ts └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"], 3 | "compact": false, 4 | "comments": false 5 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lib-cov 2 | *.seed 3 | *.log 4 | *.csv 5 | *.dat 6 | *.out 7 | *.pid 8 | *.gz 9 | 10 | .idea 11 | 12 | pids 13 | logs 14 | results 15 | 16 | node_modules 17 | npm-debug.log 18 | 19 | config.json 20 | dist 21 | 22 | sync-config.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | lib-cov 2 | *.seed 3 | *.log 4 | *.csv 5 | *.dat 6 | *.out 7 | *.pid 8 | *.gz 9 | 10 | .idea 11 | 12 | pids 13 | logs 14 | results 15 | 16 | node_modules 17 | npm-debug.log 18 | 19 | config.json 20 | 21 | sync-config.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.1.0", 3 | // List of configurations. Add new configurations or edit existing ones. 4 | "configurations": [ 5 | { 6 | "request": "launch", 7 | // Name of configuration; appears in the launch configuration drop down menu. 8 | "name": "Launch sync.js", 9 | // Type of configuration. 10 | "type": "node", 11 | // Workspace relative or absolute path to the program. 12 | "program": "${workspaceRoot}/bin/syncjs", 13 | // Automatically stop program after launch. 14 | "stopOnEntry": false, 15 | // Command line arguments passed to the program. 16 | "args": ["-c", "config_example.json", "--no-color"], 17 | // Workspace relative or absolute path to the working directory of the program being debugged. Default is the current workspace. 18 | "cwd": "${workspaceRoot}", 19 | // Workspace relative or absolute path to the runtime executable to be used. Default is the runtime executable on the PATH. 20 | "runtimeExecutable": null, 21 | // Optional arguments passed to the runtime executable. 22 | "runtimeArgs": ["--nolazy"], 23 | // Environment variables passed to the program. 24 | "env": { 25 | "NODE_ENV": "development" 26 | }, 27 | // Use JavaScript source maps (if they exist). 28 | "sourceMaps": true, 29 | // If JavaScript source maps are enabled, the generated code is expected in this directory. 30 | "outDir": "${workspaceRoot}/dist/" 31 | }, 32 | { 33 | "request": "attach", 34 | "name": "Attach", 35 | "type": "node", 36 | // TCP/IP address. Default is "localhost". 37 | // "address": "localhost", 38 | // Port to attach to. 39 | "port": 5858, 40 | "sourceMaps": true 41 | } 42 | ] 43 | } 44 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | // Place your settings in this file to overwrite default and user settings. 2 | { 3 | "files.trimTrailingWhitespace": true, 4 | "search.exclude": { 5 | "**/node_modules": true, 6 | "**/bower_components": true, 7 | "**/dist": true, 8 | "**/typings": true 9 | }, 10 | "files.exclude": { 11 | "**/.git": true, 12 | "**/.svn": true, 13 | "**/.DS_Store": true, 14 | "**/dist/*": true 15 | } 16 | , 17 | "typescript.tsdk": "./node_modules/typescript/lib" 18 | } -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | // See https://go.microsoft.com/fwlink/?LinkId=733558 3 | // for the documentation about the tasks.json format 4 | "version": "0.1.0", 5 | "command": "npm", 6 | "isShellCommand": true, 7 | "showOutput": "always", 8 | "suppressTaskName": true, 9 | "tasks": [ 10 | { 11 | "taskName": "install", 12 | "args": ["install"] 13 | }, 14 | { 15 | "taskName": "build", 16 | "args": ["run", "build"], 17 | "isWatching": true, 18 | "isBuildCommand": true 19 | }, 20 | { 21 | "taskName": "test", 22 | "args": ["run", "test"] 23 | } 24 | ] 25 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2013 Serkan Yersen 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Known Vulnerabilities](https://snyk.io/test/github/serkanyersen/sync/badge.svg)](https://snyk.io/test/github/serkanyersen/sync) 2 | [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fserkanyersen%2Fsync.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fserkanyersen%2Fsync?ref=badge_shield) 3 | 4 | Syncjs - Upload changed local files to remote server 5 | ---------------------------------------------------- 6 | Syncjs is an easy to use command line tool for uploading your local changes to a remote server. 7 | 8 | It's useful in situations where your application needs to be on a remote server to run (dev machines, pubdev environments, etc.) but you still want to use your local environment for development. You can simply map you local copy of the project to the remote version and syncjs will do the rest. 9 | 10 | ![Syncjs in use](http://i.imgur.com/rLNUErv.gif, "syncjs") 11 | 12 | This example shows usage with Visual Studio Code but since it's an external script, you can use it with any editor you want. 13 | 14 | ![Vim Example](http://i.imgur.com/drnEET1.gif, "syncjs") 15 | 16 | Features 17 | -------- 18 | - Easy to setup 19 | - Fast and reliable 20 | - Runs independently from your toolchain so you can use it with anything 21 | - Runs on windows, osx and linux 22 | - detects and handles changes on folders 23 | - can run multiple instances at the same time 24 | 25 | 26 | Installation 27 | ------------ 28 | 29 | Syncjs is easy to install, just execute the following 30 | 31 | ``` 32 | npm install -g syncjs 33 | ``` 34 | 35 | After this you'll have `syncjs` binary available to you. 36 | 37 | Configuration 38 | ------------- 39 | 40 | Syncjs comes with an init script and sets itself up for you. All you need to do is to `cd` into your projects directory and run `syncjs init` it will ask few simple questions and create the config file called `sync-config.json` make sure you include this file in your `.gitignore` because this file might contain passwords or secrets depending on your preferences. 41 | 42 | ``` 43 | cd /my/project/folder 44 | syncjs init 45 | ``` 46 | ![Configuration](http://i.imgur.com/3VnNDc5.gif, "syncjs init") 47 | 48 | 49 | ### Questions on config 50 | - **Username**: your username that you use to connect to remote machine 51 | - **Auth method**: 52 | - **Password in config**: This the least secure version of auth. It will keep your password in the config file **as plain text** do not use this please 53 | - **Ask during connect**: This option will ask your password again every time you start `syncjs` your password will not be stored anywhere. 54 | - **Private Key**: Most secure option, just provide the path for your key file and syncjs will do the rest 55 | 56 | - **Hostname or IP of the server**: Tell syncjs where to connect 57 | - **Port to connect**: defaults to `22` this usually is what you want 58 | - **Local path**: syncjs will automatically detect this as the root of your project, but if you only want to sync one specific folder, **provide it here as full path** 59 | - **Remote path**: This is where copy of your local folder lives in the remote server. Make sure you type full path here as well. 60 | 61 | 62 | License 63 | ------- 64 | MIT 65 | 66 | 67 | ## License 68 | [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fserkanyersen%2Fsync.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fserkanyersen%2Fsync?ref=badge_large) -------------------------------------------------------------------------------- /bin/syncjs: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var path = require('path'); 3 | var Sync = require(path.resolve(__dirname, '../dist/index.js')).default; 4 | 5 | new Sync(); -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | var gulp = require("gulp"); 2 | var ts = require("gulp-typescript"); 3 | var babel = require("gulp-babel"); 4 | var rename = require("gulp-rename"); 5 | 6 | gulp.task("build", function () { 7 | var tsProject = ts.createProject(__dirname + "/tsconfig.json"); 8 | return tsProject.src() 9 | .pipe(tsProject()) 10 | .pipe(babel()) 11 | .pipe(rename(function (path) { 12 | path.extname = ".js"; 13 | })) 14 | .pipe(gulp.dest("./dist")); 15 | }); 16 | 17 | gulp.task("watch", function() { 18 | gulp.watch("./src/**/*.ts", ["build"]); 19 | }); 20 | 21 | gulp.task("default", ["build", "watch"]) -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "syncjs", 3 | "version": "2.0.2", 4 | "main": "dist/index.js", 5 | "preferGlobal": true, 6 | "scripts": { 7 | "start": "gulp", 8 | "build": "gulp build", 9 | "prepublish": "gulp build" 10 | }, 11 | "bin": { 12 | "syncjs": "bin/syncjs" 13 | }, 14 | "dependencies": { 15 | "chalk": "^1.1.3", 16 | "chokidar": "^1.6.1", 17 | "inquirer": "^1.1.2", 18 | "jsonplus": "^1.2.1", 19 | "minimist": "^1.2.0", 20 | "observatory": "^1.0.0", 21 | "prompt": "^1.0.0", 22 | "scp2": "^0.5.0", 23 | "upath": "^0.2.0" 24 | }, 25 | "description": "sync.js let's you keep your remote files in sync with your local copy. Whenever you make a change on your local project, sync.js uploads the changed files to remote server using `scp` command.", 26 | "devDependencies": { 27 | "babel-cli": "^6.18.0", 28 | "babel-preset-es2015": "^6.18.0", 29 | "babel-runtime": "^6.18.0", 30 | "gulp": "^3.9.1", 31 | "gulp-babel": "^6.1.2", 32 | "gulp-rename": "^1.2.2", 33 | "gulp-typescript": "^3.1.2", 34 | "typescript": "^2.0.6", 35 | "@types/chalk": "^0.4.31", 36 | "@types/chokidar": "^1.4.29", 37 | "@types/inquirer": "^0.0.30", 38 | "@types/minimist": "^1.1.29", 39 | "@types/node": "^6.0.46" 40 | }, 41 | "repository": { 42 | "type": "git", 43 | "url": "git+https://github.com/serkanyersen/sync.git" 44 | }, 45 | "keywords": [ 46 | "SFTP", 47 | "sync", 48 | "rsync", 49 | "scp", 50 | "ftp", 51 | "upload", 52 | "project", 53 | "typescript", 54 | "developer", 55 | "tools", 56 | "tooling" 57 | ], 58 | "author": "Serkan Yersen", 59 | "license": "MIT", 60 | "bugs": { 61 | "url": "https://github.com/serkanyersen/sync/issues" 62 | }, 63 | "homepage": "https://github.com/serkanyersen/sync#readme" 64 | } 65 | -------------------------------------------------------------------------------- /src/classes/CLI.ts: -------------------------------------------------------------------------------- 1 | import * as chalk from "chalk"; 2 | import * as minimist from "minimist"; 3 | import inquirer = require("inquirer"); 4 | 5 | export enum EXIT_CODE { 6 | /** 7 | * Exit normally 8 | */ 9 | NORMAL = 0, 10 | 11 | /** 12 | * Any kind exit with error 13 | */ 14 | RUNTIME_FAILURE = 1, 15 | 16 | /** 17 | * If user terminates with ctrl-c use this 18 | */ 19 | TERMINATED = 130, 20 | 21 | /** 22 | * Tell user that arguments were wrong 23 | */ 24 | INVALID_ARGUMENT = 128 25 | } 26 | 27 | export default class CLI { 28 | 29 | private pdTime: Array = []; 30 | private lastRun: number; 31 | private timeDiff: number; 32 | private args: minimist.ParsedArgs; 33 | private ui: inquirer.ui.Prompt[] = []; 34 | private activePrompt; 35 | private pauseEvents: Function[] = []; 36 | public paused: boolean; 37 | 38 | constructor() { 39 | // Parse arguments 40 | this.args = minimist(process.argv.slice(2)); 41 | // this.ui = new inquirer.ui.BottomBar(); 42 | } 43 | 44 | /** 45 | * Checks if a command has been passed or not 46 | * @param command string name of the command 47 | */ 48 | hasStartupCommand(command: string): boolean { 49 | return this.args._.filter(n => n === command).length > 0; 50 | } 51 | 52 | /** 53 | * Gets requested argument 54 | * @param name string name of the argument 55 | */ 56 | getArgument(name: string, defaultValue: any = null): any { 57 | let value = null; 58 | 59 | if (name in this.args) { 60 | value = this.args[name]; 61 | } else if (name[0] in this.args) { 62 | value = this.args[name[0]]; 63 | } 64 | 65 | return value !== null ? value : defaultValue; 66 | } 67 | 68 | onPaused(event) { 69 | this.pauseEvents.push(event); 70 | } 71 | 72 | /** 73 | * Clear the terminal 74 | */ 75 | clear() { 76 | this.write(chalk.reset("\x1b[2J\x1b[0;0H")); 77 | } 78 | 79 | /** 80 | * Write something to terminal 81 | */ 82 | write(msg: string | chalk.ChalkChain): boolean { 83 | return process.stdout.write.bind(process.stdout)(msg); 84 | } 85 | 86 | log(message: string) { 87 | // this.ui.updateBottomBar(message); 88 | console.log(message); 89 | // this.showPrompt(); 90 | } 91 | 92 | read(question: any, hidden = false): Promise { 93 | let scheme = { 94 | type: hidden? "password" : "input", 95 | message: question, 96 | name: "response" 97 | }; 98 | 99 | // Bad type definition 100 | let promise = inquirer.prompt(scheme); 101 | this.ui.push(promise['ui']); 102 | 103 | return promise.then((answer) => { 104 | return answer.response; 105 | }); 106 | } 107 | 108 | closePrompts() { 109 | this.ui.map((ui) => { 110 | if (!ui['closed']) { 111 | ui.close(); 112 | ui['closed'] = true; 113 | //console.log("closed now") 114 | } else { 115 | //console.log("closed Already") 116 | } 117 | }); 118 | } 119 | 120 | /** 121 | * Start printing dots to screen, show script is working 122 | */ 123 | startProgress() { 124 | this.pdTime.push(setInterval(() => { 125 | this.write(chalk.green(".")); 126 | }, 200)); 127 | } 128 | 129 | /** 130 | * Stop printing dots when process ends 131 | */ 132 | stopProgress() { 133 | clearInterval(this.pdTime.pop()); 134 | } 135 | 136 | /** 137 | * Display the workspace for syncjs 138 | */ 139 | workspace() { 140 | // this.clear(); 141 | 142 | this.write(`Started monitoring \n`); 143 | this.write(`Quit the script with CONTROL-C".\n`); 144 | this.write(chalk.magenta("-----------------------------------------------------------\n")); 145 | // this.showPrompt(); 146 | } 147 | 148 | usage(message: string = null, code: number = 0): void { 149 | if (message) { 150 | this.write(chalk.red(message) + "\n"); 151 | } 152 | this.write(chalk.yellow.underline("\nUSAGE:\n")); 153 | this.write("Make sure you have the config file by running.\n"); 154 | this.write(chalk.green("syncjs init\n")); 155 | this.write("--------------------\n"); 156 | this.write("For more details please visit. https://github.com/serkanyersen/sync\n"); 157 | process.exit(code); 158 | } 159 | 160 | /** 161 | * Shorthand command to print help text 162 | */ 163 | private getHelp(command, text) { 164 | return `${ chalk.green(command) }: ${text}\n`; 165 | } 166 | 167 | /** 168 | * Display the prompt that asks for input 169 | */ 170 | private showPrompt() { 171 | if (this.activePrompt) { 172 | this.closePrompts(); 173 | } 174 | 175 | this.activePrompt = this.read(">>> "); 176 | this.activePrompt.then(answer => { 177 | this.handleInput(answer); 178 | this.activePrompt = false; 179 | // as soon as a command is run, show promt again just a like a real shell 180 | this.showPrompt(); 181 | }); 182 | } 183 | 184 | /** 185 | * Handle given input 186 | */ 187 | private handleInput(input) { 188 | input = input.split(" "); 189 | let cmd = input[0]; 190 | let arg1 = input[1]; 191 | switch (cmd) { 192 | case "help": 193 | let helpText = ""; 194 | helpText += this.getHelp("pause", "Stops observing file changes"); 195 | helpText += this.getHelp("resume", "Continue checking files"); 196 | helpText += this.getHelp("resume -u", "Continue checking files and upload all the changed files while paused."); 197 | helpText += this.getHelp("help", "Displays this text"); 198 | helpText += this.getHelp("clear", "Clears the screen"); 199 | helpText += this.getHelp("exit", "Exits the script"); 200 | this.write(helpText); 201 | break; 202 | case "clear": 203 | this.workspace(); 204 | break; 205 | case "exit": 206 | process.exit(EXIT_CODE.NORMAL); 207 | break; 208 | case "pause": 209 | this.paused = true; 210 | this.pauseEvents.map((ev) => { 211 | ev(this.paused); 212 | }); 213 | this.workspace(); 214 | break; 215 | case "resume": 216 | if (this.paused) { 217 | if (arg1 != "-u") { 218 | this.lastRun = +(new Date()); 219 | this.timeDiff = 0; 220 | } 221 | this.paused = false; 222 | this.workspace(); 223 | if (arg1 == "-u") { 224 | this.write("Finding all changed files while waiting.\n"); 225 | } 226 | this.pauseEvents.map((ev) => { 227 | ev(this.paused); 228 | }); 229 | } else { 230 | this.write("Already running\n"); 231 | } 232 | break; 233 | case "": break; 234 | default: 235 | this.write(chalk.red(`Unknown command: ${ cmd }\nType "help" to see commands`)); 236 | } 237 | } 238 | } 239 | 240 | -------------------------------------------------------------------------------- /src/classes/Config.ts: -------------------------------------------------------------------------------- 1 | import { parse } from "jsonplus"; 2 | import { readFileSync, existsSync } from "fs"; 3 | import { join as pathJoin } from "path"; 4 | import CLI, { EXIT_CODE } from "./CLI"; 5 | 6 | export interface SyncConfig { 7 | "username"?: string; 8 | "password"?: string; 9 | "port"?: number; 10 | "host": string; 11 | "localPath": string; 12 | "remotePath": string; 13 | "privateKey"?: string; 14 | "ignores"?: Array; 15 | "pathMode"?: string; 16 | } 17 | 18 | export const CONFIG_FILE_NAME = "sync-config.json"; 19 | 20 | export default class Config implements SyncConfig { 21 | private _filename: string; 22 | private _config: SyncConfig; 23 | 24 | // properties 25 | host: string; 26 | username: string; 27 | password: string; 28 | port: number; 29 | localPath: string; 30 | remotePath: string; 31 | privateKey: string; 32 | ignores: Array; 33 | pathMode: string = "0755"; 34 | 35 | constructor(private cli: CLI) { 36 | this._filename = pathJoin(process.cwd(), this.cli.getArgument("config", CONFIG_FILE_NAME)); 37 | } 38 | 39 | ready(): Promise { 40 | return new Promise((resolve) => { 41 | this._fetch(); 42 | this._expand(); 43 | 44 | // Temporary 45 | if (!this.password && !this.privateKey) { 46 | this.cli.read("Enter password to connect:", true).then(answer => { 47 | this.password = this._config.password = answer; 48 | resolve(); 49 | }); 50 | } else { 51 | resolve(); 52 | } 53 | }); 54 | } 55 | 56 | private _fetch() { 57 | if (existsSync(this._filename)) { 58 | let configraw; 59 | if (configraw = readFileSync(this._filename)) { 60 | try { 61 | this._config = parse(configraw.toString()); 62 | } catch (e) { 63 | this.cli.usage("Could not parse DB file. Make sure JSON is correct", EXIT_CODE.RUNTIME_FAILURE); 64 | } 65 | } else { 66 | this.cli.usage("Cannot read config file. Make sure you have permissions", EXIT_CODE.INVALID_ARGUMENT); 67 | } 68 | } else { 69 | this.cli.usage("Config file not found", EXIT_CODE.INVALID_ARGUMENT); 70 | } 71 | } 72 | 73 | /** 74 | * @TODO add checks on required values 75 | */ 76 | private _expand() { 77 | ["host", "port", "username", "password", "pathMode", 78 | "localPath", "remotePath", "ignores", "privateKey"].forEach(prop => { 79 | this[prop] = this._config[prop] || this[prop]; 80 | }); 81 | } 82 | } -------------------------------------------------------------------------------- /src/classes/InitConfig.ts: -------------------------------------------------------------------------------- 1 | import * as chalk from "chalk"; 2 | import * as upath from "upath"; 3 | import { writeFileSync } from 'fs'; 4 | import CLI, { EXIT_CODE } from "./CLI"; 5 | import { SyncConfig, CONFIG_FILE_NAME } from './Config'; 6 | import inquirer = require("inquirer"); 7 | 8 | export default class InitConfig2 { 9 | 10 | constructor() { 11 | 12 | let currentConf = {}; 13 | 14 | try { 15 | currentConf = require(upath.resolve(process.cwd(), CONFIG_FILE_NAME)); 16 | console.log("Existing config found."); 17 | } catch(e) {} 18 | 19 | let questions: inquirer.Questions = [ 20 | { 21 | type: "input", 22 | name: "username", 23 | message: "Username to connect:", 24 | validate: (answer) => { 25 | if (!answer) { 26 | return "Username is required"; 27 | } 28 | return true; 29 | }, 30 | default: currentConf.username 31 | }, 32 | { 33 | type: "list", 34 | name: "authType", 35 | message: "How do you want to authenticate:", 36 | choices: [ 37 | "Password in config", 38 | "Ask password during connection", 39 | "Private key" 40 | ] 41 | }, 42 | { 43 | type: "password", 44 | name: "password", 45 | message: "Enter your password:", 46 | when: (answers: any) => answers.authType === "Password in config" 47 | }, 48 | { 49 | type: "input", 50 | name: "privateKey", 51 | message: "Path to private key:", 52 | default: currentConf.privateKey, 53 | when: (answers: any) => answers.authType === "Private key", 54 | filter: (answer) => { 55 | return upath.normalizeSafe(answer); 56 | } 57 | }, 58 | { 59 | type: "input", 60 | name: "host", 61 | default: currentConf.host, 62 | message: "Hostname or IP to connect", 63 | validate: (answer) => { 64 | if (!answer) { 65 | return "Hostname is required"; 66 | } 67 | return true; 68 | } 69 | }, 70 | { 71 | type: "input", 72 | name: "port", 73 | message: "Port to conenct:", 74 | default: currentConf.port || "use default" 75 | }, 76 | { 77 | type: "input", 78 | name: "localPath", 79 | message: "Local Path", 80 | filter: (answer) => { 81 | return upath.normalizeSafe(answer); 82 | }, 83 | default: currentConf.localPath || process.cwd() 84 | }, 85 | { 86 | type: "input", 87 | name: "remotePath", 88 | message: "Remote Path", 89 | default: currentConf.remotePath, 90 | validate: (answer) => { 91 | if (!answer) { 92 | return "Remote Path is required"; 93 | } 94 | return true; 95 | } 96 | } 97 | ]; 98 | 99 | inquirer.prompt(questions)['then']((answers) => { 100 | let pass; 101 | // if default, don't put it in config 102 | if (answers.port == "use default") { 103 | delete answers.port; 104 | } 105 | 106 | // no need this in the config 107 | delete answers.authType; 108 | 109 | if (answers.password) { 110 | pass = answers.password; 111 | answers.password = "****"; 112 | } 113 | 114 | inquirer.prompt({ 115 | type: "confirm", 116 | name: "yes", 117 | message: `${JSON.stringify(answers, null, 4)}\nDoes this look good?` 118 | })['then']((answer) => { 119 | if (answer.yes) { 120 | if (pass) { 121 | answers.password = pass; 122 | } 123 | writeFileSync(CONFIG_FILE_NAME, JSON.stringify(answers, null, 4), 'utf8'); 124 | } else { 125 | console.log("No config was saved."); 126 | } 127 | }) 128 | }); 129 | } 130 | } 131 | -------------------------------------------------------------------------------- /src/classes/Sync.ts: -------------------------------------------------------------------------------- 1 | import Config from "./Config"; 2 | import CLI from "./CLI"; 3 | import Watcher from "./Watcher"; 4 | import Uploader from "./Uploader"; 5 | import InitConfig from './InitConfig'; 6 | const observatory = require("observatory"); 7 | 8 | export default class Sync { 9 | config: Config; 10 | watch: Watcher; 11 | cli: CLI; 12 | uploader: Uploader; 13 | task: any; 14 | 15 | constructor() { 16 | this.cli = new CLI(); 17 | 18 | this.task = observatory.add("Initializing..."); 19 | 20 | if (this.cli.hasStartupCommand("init")) { 21 | new InitConfig(); 22 | } else { 23 | // Get config 24 | this.config = new Config(this.cli); 25 | this.task.status("reading config"); 26 | 27 | this.config.ready().then(() => { 28 | // Get Command line interface 29 | //this.cli.write("Connecting"); 30 | //this.cli.startProgress(); 31 | this.task.status("watching files"); 32 | 33 | // Setup the uploader 34 | this.uploader = new Uploader(this.config, this.cli); 35 | 36 | // Initiate file watch 37 | this.watch = new Watcher(this.uploader, this.config, this.cli); 38 | 39 | // When files are found start connection 40 | 41 | return this.watch.ready(); 42 | }).then(() => { 43 | this.task.status("connecting server"); 44 | return this.uploader.connect(); 45 | }).then(() => { 46 | // All done, stop indicator and show workspace 47 | // this.cli.stopProgress(); 48 | this.task.done("Connected").details(this.config.host); 49 | this.cli.workspace(); 50 | }); 51 | } 52 | } 53 | } -------------------------------------------------------------------------------- /src/classes/Uploader.ts: -------------------------------------------------------------------------------- 1 | import * as upath from "upath"; 2 | import { readFileSync } from "fs"; 3 | import { Client } from "scp2"; 4 | import Config from "./Config"; 5 | import CLI from "./CLI"; 6 | 7 | export default class Uploader { 8 | client: Client; 9 | 10 | constructor(private config: Config, private cli: CLI) { } 11 | 12 | connect(): Promise { 13 | this.client = new Client({ 14 | port: this.config.port, 15 | host: this.config.host, 16 | username: this.config.username, 17 | password: this.config.password, 18 | // agentForward: true, 19 | privateKey: this.config.privateKey ? readFileSync(this.config.privateKey).toString() : undefined, 20 | // debug: true 21 | }); 22 | 23 | // Triggers the initial connection 24 | this.client.sftp((err, sftp) => { 25 | if (err) { 26 | console.log("There was a problem with connection"); 27 | } 28 | }); 29 | 30 | return new Promise((resolve, reject) => { 31 | this.client.on("ready", () => { 32 | resolve("connected"); 33 | }); 34 | }); 35 | } 36 | 37 | getRemotePath(path: string): string { 38 | let normalPath = upath.normalizeSafe(path); 39 | let normalLocalPath = upath.normalizeSafe(this.config.localPath); 40 | let remotePath = normalPath.replace(normalLocalPath, this.config.remotePath); 41 | return upath.normalizeSafe(remotePath); 42 | } 43 | 44 | unlinkFile(fileName: string): Promise { 45 | return new Promise((resolve, reject) => { 46 | let remote = this.getRemotePath(fileName); 47 | this.client.sftp((err, sftp) => { 48 | if (err) { 49 | reject('SFTP cannot be created'); 50 | } else { 51 | sftp.unlink(remote, (err) => { 52 | if (err) { 53 | reject('File could not be deleted'); 54 | } else { 55 | resolve(remote); 56 | } 57 | }); 58 | } 59 | }); 60 | }); 61 | } 62 | 63 | unlinkFolder(folderPath: string): Promise { 64 | return new Promise((resolve, reject) => { 65 | let remote = this.getRemotePath(folderPath); 66 | this.client.sftp((err, sftp) => { 67 | if (err) { 68 | reject('SFTP cannot be created'); 69 | } else { 70 | sftp.rmdir(remote, (err) => { 71 | if (err) { 72 | reject('Folder could not be deleted'); 73 | } else { 74 | resolve(remote); 75 | } 76 | }); 77 | } 78 | }); 79 | }); 80 | } 81 | 82 | uploadFile(fileName: string): Promise { 83 | return new Promise((resolve, reject) => { 84 | let remote = this.getRemotePath(fileName); 85 | 86 | // Client upload also creates the folder but creates it using local mode 87 | // in windows it might mean we won't have permissons to save the fileName 88 | // So I create the folder manually here to solve that issue. 89 | // Mode we set can be configured from the config file 90 | this.client.mkdir(upath.dirname(remote), { mode: this.config.pathMode }, err => { 91 | if (err) { 92 | reject({ 93 | message: `Could not create ${ upath.dirname(remote) }`, 94 | error: err 95 | }); 96 | } else { 97 | // Uplad the file 98 | this.client.upload(fileName, remote, err => { 99 | if (err) { 100 | reject({ 101 | message: `Could not upload ${ remote }`, 102 | error: err 103 | }); 104 | } else { 105 | resolve(remote); 106 | } 107 | }); 108 | } 109 | }); 110 | }); 111 | } 112 | } 113 | -------------------------------------------------------------------------------- /src/classes/Watcher.ts: -------------------------------------------------------------------------------- 1 | import * as chokidar from "chokidar" 2 | import * as chalk from "chalk"; 3 | import { FSWatcher } from "fs"; 4 | import Uploader from "./Uploader"; 5 | import Config from "./Config"; 6 | import CLI from "./CLI"; 7 | const observatory = require("observatory"); 8 | 9 | export default class Watcher { 10 | files: FSWatcher; 11 | private tasks = {}; 12 | 13 | constructor( 14 | private uploader: Uploader, 15 | private config: Config, 16 | private cli: CLI, 17 | private base: string = config.localPath 18 | ) { 19 | 20 | let defaultIgnores: Array = [/node_modules/, /.git/, /.svn/, /bower_components/]; 21 | 22 | this.files = chokidar.watch(base, { 23 | ignored: defaultIgnores.concat(this.config.ignores), 24 | ignoreInitial: true 25 | }); 26 | 27 | // Attach events 28 | ["all", "add", "change", "unlink", "unlinkDir"].forEach(method => { 29 | this.files.on(method, this.handler(method)); 30 | }); 31 | } 32 | 33 | ready(): Promise { 34 | return new Promise((resolve) => { 35 | this.files.on("ready", resolve); 36 | }); 37 | } 38 | 39 | eventToWord = { 40 | add: chalk.green("ADDED"), 41 | change: chalk.green("CHANGED"), 42 | unlink: chalk.red("DELETED"), 43 | unlinkDir: chalk.red("DELETED") 44 | }; 45 | 46 | private handler(method: string): Function { 47 | return (...args: string[]) => { 48 | let path: string, 49 | event = method; 50 | 51 | // Handle argument difference 52 | if (method === 'all') { 53 | path = args[1]; 54 | event = args[0] 55 | } else { 56 | path = args[0]; 57 | } 58 | 59 | // If not, continue as ususal 60 | this[method](...args); 61 | } 62 | } 63 | 64 | private all = (event:string, path:string) => { 65 | if (event in this.eventToWord) { 66 | this.tasks[path] = observatory.add(this.eventToWord[event] + " " + path.replace(this.config.localPath, "")); 67 | this.tasks[path].status("Uploading"); 68 | } 69 | }; 70 | 71 | private add = (path: string) => { 72 | this.uploader.uploadFile(path).then(remote => { 73 | this.tasks[path].done("Done"); 74 | }).catch((err) => { 75 | this.tasks[path].fail("Fail").details(err.message); 76 | }); 77 | }; 78 | 79 | private change = (path: string) => { 80 | this.uploader.uploadFile(path).then(remote => { 81 | this.tasks[path].done("Done"); 82 | }).catch((err) => { 83 | this.tasks[path].fail("Fail").details(err.message); 84 | }); 85 | }; 86 | 87 | private unlink = (path: string) => { 88 | this.uploader.unlinkFile(path).then(remote => { 89 | this.tasks[path].done("Done"); 90 | }).catch((err) => { 91 | this.tasks[path].fail("Fail").details(`Error deleting file ${err}`); 92 | }); 93 | }; 94 | 95 | private unlinkDir = (path: string) => { 96 | this.uploader.unlinkFolder(path).then(remote => { 97 | this.tasks[path].done("Done"); 98 | }).catch((err) => { 99 | this.tasks[path].fail("Fail").details(`Error deleting folder ${err}`); 100 | }); 101 | }; 102 | } 103 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import Sync from "./classes/Sync"; 2 | 3 | // Main Export 4 | export default Sync; -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "target": "es6", 5 | "experimentalDecorators": true, 6 | "emitDecoratorMetadata": true, 7 | "inlineSourceMap": true, 8 | "noImplicitAny": false, 9 | "rootDir": "./src", 10 | "outDir": "./dist" 11 | }, 12 | "buildOnSave": true, 13 | "exclude": [ 14 | "node_modules" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /typings/scp2/scp2.d.ts: -------------------------------------------------------------------------------- 1 | 2 | declare module "scp2" { 3 | 4 | interface ScpOptions { 5 | port?: number; 6 | host?: string; 7 | username?: string; 8 | password?: string; 9 | paths?: string; 10 | privateKey?: string; 11 | agentForward?: boolean; 12 | agent?: string; 13 | debug?: boolean; 14 | } 15 | 16 | interface attrs { 17 | size?: number; 18 | uid?: number; 19 | gid?: number; 20 | mode?: number | string; 21 | atime?: number; 22 | mtime?: number; 23 | } 24 | 25 | interface writeOptions { 26 | destination: string; 27 | content?: string; 28 | attrs?: attrs; 29 | source?: string; 30 | } 31 | 32 | export class Client { 33 | constructor(options: ScpOptions); 34 | sftp(callback: (err: string, sftp: any) => void); 35 | close(): void; 36 | mkdir(dir: string, attrs: attrs, callback: (err: string) => void); 37 | mkdir(dir: string, callback: (err: string) => void); 38 | write(options: writeOptions, callback: (err: string) => void); 39 | upload(src: string, destination: string, callback: (err: string) => void); 40 | download(src: string, destination: string, callback: (err: string) => void); 41 | on(eventName: string, callback: () => void); 42 | } 43 | 44 | export interface client { 45 | defaults(options: ScpOptions); 46 | scp(fileName: string, options: ScpOptions | string, errCallback?: (err: string) => void); 47 | scp(fileName: string, options: ScpOptions | string, glob: string, errCallback?: (err: string) => void); 48 | Client: Client; 49 | } 50 | } -------------------------------------------------------------------------------- /typings/tsd.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | /// 4 | -------------------------------------------------------------------------------- /typings/upath/upath.d.ts: -------------------------------------------------------------------------------- 1 | declare module "upath" { 2 | 3 | /** 4 | * A parsed path object generated by path.parse() or consumed by path.format(). 5 | */ 6 | export interface ParsedPath { 7 | /** 8 | * The root of the path such as '/' or 'c:\' 9 | */ 10 | root: string; 11 | /** 12 | * The full directory path such as '/home/user/dir' or 'c:\path\dir' 13 | */ 14 | dir: string; 15 | /** 16 | * The file name including extension (if any) such as 'index.html' 17 | */ 18 | base: string; 19 | /** 20 | * The file extension (if any) such as '.html' 21 | */ 22 | ext: string; 23 | /** 24 | * The file name without extension (if any) such as 'index' 25 | */ 26 | name: string; 27 | } 28 | 29 | /** 30 | * Version of the library 31 | */ 32 | export var VERSION: string; 33 | 34 | /** 35 | * Just converts all `to/` and consolidates duplicates, without performing any normalization. 36 | * 37 | * @param p string path to convert to unix. 38 | */ 39 | export function toUnix(p: string): string; 40 | 41 | /** 42 | * Exactly like path.normalize(path), but it keeps the first meaningful ./. 43 | * 44 | * Note that the unix / is returned everywhere, so windows \ is always converted to unix /. 45 | * 46 | * @param p string path to normalize. 47 | */ 48 | export function normalizeSafe(p: string): string; 49 | 50 | /** 51 | * Exactly like path.normalizeSafe(path), but it trims any useless ending /. 52 | * 53 | * @param p string path to normalize 54 | */ 55 | export function normalizeTrim(p: string): string; 56 | 57 | /** 58 | * Exactly like path.join(), but it keeps the first meaningful ./. 59 | * 60 | * Note that the unix / is returned everywhere, so windows \ is always converted to unix /. 61 | * 62 | * @param paths string paths to join 63 | */ 64 | export function joinSafe(...p: any[]): string; 65 | 66 | /** 67 | * Adds .ext to filename, but only if it doesn't already have the exact extension. 68 | * 69 | * @param file string filename to add extension to 70 | * @param ext string extension to add 71 | */ 72 | export function addExt(file: string, ext: string): string; 73 | 74 | /** 75 | * Trims a filename's extension. 76 | * 77 | * Extensions are considered to be up to maxSize chars long, counting the dot (defaults to 7). 78 | * 79 | * An Array of ignoreExts (eg ['.min']) prevents these from being considered as extension, thus are not trimmed. 80 | * 81 | * @param filename string filename to trim it's extension 82 | * @param ignoreExts array extensions to ignore 83 | * @param maxSize number max length of the extension 84 | */ 85 | export function trimExt(filename: string, ignoreExts?: string[], maxSize?: number): string; 86 | 87 | /** 88 | * Removes the specific ext extension from filename, if it has it. Otherwise it leaves it as is. As in all upath functions, it be .ext or ext. 89 | * 90 | * @param file string filename to remove extension to 91 | * @param ext string extension to remove 92 | */ 93 | export function removeExt(filename: string, ext: string): string; 94 | 95 | /** 96 | * Changes a filename's extension to ext. If it has no (valid) extension, it adds it. 97 | * 98 | * Valid extensions are considered to be up to maxSize chars long, counting the dot (defaults to 7). 99 | * 100 | * An Array of ignoreExts (eg ['.min']) prevents these from being considered as extension, thus are not changed - the new extension is added instead. 101 | * 102 | * @param filename string filename to change it's extension 103 | * @param ext string extension to change to 104 | * @param ignoreExts array extensions to ignore 105 | * @param maxSize number max length of the extension 106 | */ 107 | export function changeExt(filename: string, ext: string, ignoreExts?: string[], maxSize?: number): string; 108 | 109 | /** 110 | * Adds .ext to filename, only if it doesn't already have any old extension. 111 | * 112 | * (Old) extensions are considered to be up to maxSize chars long, counting the dot (defaults to 7). 113 | * 114 | * An Array of ignoreExts (eg ['.min']) will force adding default .ext even if one of these is present. 115 | * 116 | * @param filename string filename to default to it's extension 117 | * @param ext string extension to default to 118 | * @param ignoreExts array extensions to ignore 119 | * @param maxSize number max length of the extension 120 | */ 121 | export function defaultExt(filename: string, ext: string, ignoreExts?: string[], maxSize?: number): string; 122 | 123 | /** 124 | * Normalize a string path, reducing '..' and '.' parts. 125 | * When multiple slashes are found, they're replaced by a single one; when the path contains a trailing slash, it is preserved. On Windows backslashes are used. 126 | * 127 | * @param p string path to normalize. 128 | */ 129 | export function normalize(p: string): string; 130 | /** 131 | * Join all arguments together and normalize the resulting path. 132 | * Arguments must be strings. In v0.8, non-string arguments were silently ignored. In v0.10 and up, an exception is thrown. 133 | * 134 | * @param paths string paths to join. 135 | */ 136 | export function join(...paths: any[]): string; 137 | /** 138 | * Join all arguments together and normalize the resulting path. 139 | * Arguments must be strings. In v0.8, non-string arguments were silently ignored. In v0.10 and up, an exception is thrown. 140 | * 141 | * @param paths string paths to join. 142 | */ 143 | export function join(...paths: string[]): string; 144 | /** 145 | * The right-most parameter is considered {to}. Other parameters are considered an array of {from}. 146 | * 147 | * Starting from leftmost {from} paramter, resolves {to} to an absolute path. 148 | * 149 | * If {to} isn't already absolute, {from} arguments are prepended in right to left order, until an absolute path is found. If after using all {from} paths still no absolute path is found, the current working directory is used as well. The resulting path is normalized, and trailing slashes are removed unless the path gets resolved to the root directory. 150 | * 151 | * @param pathSegments string paths to join. Non-string arguments are ignored. 152 | */ 153 | export function resolve(...pathSegments: any[]): string; 154 | /** 155 | * Determines whether {path} is an absolute path. An absolute path will always resolve to the same location, regardless of the working directory. 156 | * 157 | * @param path path to test. 158 | */ 159 | export function isAbsolute(path: string): boolean; 160 | /** 161 | * Solve the relative path from {from} to {to}. 162 | * At times we have two absolute paths, and we need to derive the relative path from one to the other. This is actually the reverse transform of path.resolve. 163 | * 164 | * @param from 165 | * @param to 166 | */ 167 | export function relative(from: string, to: string): string; 168 | /** 169 | * Return the directory name of a path. Similar to the Unix dirname command. 170 | * 171 | * @param p the path to evaluate. 172 | */ 173 | export function dirname(p: string): string; 174 | /** 175 | * Return the last portion of a path. Similar to the Unix basename command. 176 | * Often used to extract the file name from a fully qualified path. 177 | * 178 | * @param p the path to evaluate. 179 | * @param ext optionally, an extension to remove from the result. 180 | */ 181 | export function basename(p: string, ext?: string): string; 182 | /** 183 | * Return the extension of the path, from the last '.' to end of string in the last portion of the path. 184 | * If there is no '.' in the last portion of the path or the first character of it is '.', then it returns an empty string 185 | * 186 | * @param p the path to evaluate. 187 | */ 188 | export function extname(p: string): string; 189 | /** 190 | * The platform-specific file separator. '\\' or '/'. 191 | */ 192 | export var sep: string; 193 | /** 194 | * The platform-specific file delimiter. ';' or ':'. 195 | */ 196 | export var delimiter: string; 197 | /** 198 | * Returns an object from a path string - the opposite of format(). 199 | * 200 | * @param pathString path to evaluate. 201 | */ 202 | export function parse(pathString: string): ParsedPath; 203 | /** 204 | * Returns a path string from an object - the opposite of parse(). 205 | * 206 | * @param pathString path to evaluate. 207 | */ 208 | export function format(pathObject: ParsedPath): string; 209 | 210 | export module posix { 211 | export function normalize(p: string): string; 212 | export function join(...paths: any[]): string; 213 | export function resolve(...pathSegments: any[]): string; 214 | export function isAbsolute(p: string): boolean; 215 | export function relative(from: string, to: string): string; 216 | export function dirname(p: string): string; 217 | export function basename(p: string, ext?: string): string; 218 | export function extname(p: string): string; 219 | export var sep: string; 220 | export var delimiter: string; 221 | export function parse(p: string): ParsedPath; 222 | export function format(pP: ParsedPath): string; 223 | } 224 | 225 | export module win32 { 226 | export function normalize(p: string): string; 227 | export function join(...paths: any[]): string; 228 | export function resolve(...pathSegments: any[]): string; 229 | export function isAbsolute(p: string): boolean; 230 | export function relative(from: string, to: string): string; 231 | export function dirname(p: string): string; 232 | export function basename(p: string, ext?: string): string; 233 | export function extname(p: string): string; 234 | export var sep: string; 235 | export var delimiter: string; 236 | export function parse(p: string): ParsedPath; 237 | export function format(pP: ParsedPath): string; 238 | } 239 | } -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | "@types/chalk": 4 | version "0.4.31" 5 | resolved "https://registry.yarnpkg.com/@types/chalk/-/chalk-0.4.31.tgz#a31d74241a6b1edbb973cf36d97a2896834a51f9" 6 | 7 | "@types/chokidar": 8 | version "1.4.29" 9 | resolved "https://registry.yarnpkg.com/@types/chokidar/-/chokidar-1.4.29.tgz#31efd569930cf6799b20941c86bc6bff7c2e230a" 10 | dependencies: 11 | "@types/node" "*" 12 | 13 | "@types/inquirer": 14 | version "0.0.30" 15 | resolved "https://registry.yarnpkg.com/@types/inquirer/-/inquirer-0.0.30.tgz#2e30a40ff188c9830ec0d4c71f99ee65972de5b7" 16 | dependencies: 17 | "@types/rx" "*" 18 | "@types/through" "*" 19 | 20 | "@types/minimist": 21 | version "1.1.29" 22 | resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.1.29.tgz#91cd01c4f28c18c8a4e621aad803a3608d81cfea" 23 | 24 | "@types/node", "@types/node@*": 25 | version "6.0.46" 26 | resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.46.tgz#8d9e48572831f05b11cc4c793754d43437219d62" 27 | 28 | "@types/rx@*": 29 | version "2.5.33" 30 | resolved "https://registry.yarnpkg.com/@types/rx/-/rx-2.5.33.tgz#1867f4ac98e57428fe82b284d1a80c9c1f611bb7" 31 | 32 | "@types/through@*": 33 | version "0.0.28" 34 | resolved "https://registry.yarnpkg.com/@types/through/-/through-0.0.28.tgz#1effa9a6d00fb48572b4cc9f44df25b0100db7fc" 35 | dependencies: 36 | "@types/node" "*" 37 | 38 | abbrev@1: 39 | version "1.0.9" 40 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 41 | 42 | ansi-escapes@^1.1.0: 43 | version "1.4.0" 44 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 45 | 46 | ansi-regex@^2.0.0: 47 | version "2.0.0" 48 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 49 | 50 | ansi-styles@^2.2.1: 51 | version "2.2.1" 52 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 53 | 54 | anymatch@^1.3.0: 55 | version "1.3.0" 56 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 57 | dependencies: 58 | arrify "^1.0.0" 59 | micromatch "^2.1.5" 60 | 61 | aproba@^1.0.3: 62 | version "1.0.4" 63 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 64 | 65 | archy@^1.0.0: 66 | version "1.0.0" 67 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 68 | 69 | are-we-there-yet@~1.1.2: 70 | version "1.1.2" 71 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 72 | dependencies: 73 | delegates "^1.0.0" 74 | readable-stream "^2.0.0 || ^1.1.13" 75 | 76 | arr-diff@^2.0.0: 77 | version "2.0.0" 78 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 79 | dependencies: 80 | arr-flatten "^1.0.1" 81 | 82 | arr-flatten@^1.0.1: 83 | version "1.0.1" 84 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 85 | 86 | array-differ@^1.0.0: 87 | version "1.0.0" 88 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 89 | 90 | array-find-index@^1.0.1: 91 | version "1.0.2" 92 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 93 | 94 | array-uniq@^1.0.2: 95 | version "1.0.3" 96 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 97 | 98 | array-unique@^0.2.1: 99 | version "0.2.1" 100 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 101 | 102 | arrify@^1.0.0: 103 | version "1.0.1" 104 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 105 | 106 | asn1@~0.2.0, asn1@~0.2.3: 107 | version "0.2.3" 108 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 109 | 110 | assert-plus@^0.2.0: 111 | version "0.2.0" 112 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 113 | 114 | assert-plus@^1.0.0: 115 | version "1.0.0" 116 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 117 | 118 | async-each@^1.0.0: 119 | version "1.0.1" 120 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 121 | 122 | async@~0.9.0: 123 | version "0.9.2" 124 | resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" 125 | 126 | async@~1.0.0: 127 | version "1.0.0" 128 | resolved "https://registry.yarnpkg.com/async/-/async-1.0.0.tgz#f8fc04ca3a13784ade9e1641af98578cfbd647a9" 129 | 130 | asynckit@^0.4.0: 131 | version "0.4.0" 132 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 133 | 134 | aws-sign2@~0.6.0: 135 | version "0.6.0" 136 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 137 | 138 | aws4@^1.2.1: 139 | version "1.5.0" 140 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 141 | 142 | babel-cli@^6.18.0: 143 | version "6.18.0" 144 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.18.0.tgz#92117f341add9dead90f6fa7d0a97c0cc08ec186" 145 | dependencies: 146 | babel-core "^6.18.0" 147 | babel-polyfill "^6.16.0" 148 | babel-register "^6.18.0" 149 | babel-runtime "^6.9.0" 150 | commander "^2.8.1" 151 | convert-source-map "^1.1.0" 152 | fs-readdir-recursive "^1.0.0" 153 | glob "^5.0.5" 154 | lodash "^4.2.0" 155 | output-file-sync "^1.1.0" 156 | path-is-absolute "^1.0.0" 157 | slash "^1.0.0" 158 | source-map "^0.5.0" 159 | v8flags "^2.0.10" 160 | optionalDependencies: 161 | chokidar "^1.0.0" 162 | 163 | babel-code-frame@^6.16.0: 164 | version "6.16.0" 165 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.16.0.tgz#f90e60da0862909d3ce098733b5d3987c97cb8de" 166 | dependencies: 167 | chalk "^1.1.0" 168 | esutils "^2.0.2" 169 | js-tokens "^2.0.0" 170 | 171 | babel-core@^6.0.2, babel-core@^6.18.0: 172 | version "6.18.2" 173 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.18.2.tgz#d8bb14dd6986fa4f3566a26ceda3964fa0e04e5b" 174 | dependencies: 175 | babel-code-frame "^6.16.0" 176 | babel-generator "^6.18.0" 177 | babel-helpers "^6.16.0" 178 | babel-messages "^6.8.0" 179 | babel-register "^6.18.0" 180 | babel-runtime "^6.9.1" 181 | babel-template "^6.16.0" 182 | babel-traverse "^6.18.0" 183 | babel-types "^6.18.0" 184 | babylon "^6.11.0" 185 | convert-source-map "^1.1.0" 186 | debug "^2.1.1" 187 | json5 "^0.5.0" 188 | lodash "^4.2.0" 189 | minimatch "^3.0.2" 190 | path-is-absolute "^1.0.0" 191 | private "^0.1.6" 192 | slash "^1.0.0" 193 | source-map "^0.5.0" 194 | 195 | babel-generator@^6.18.0: 196 | version "6.18.0" 197 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.18.0.tgz#e4f104cb3063996d9850556a45aae4a022060a07" 198 | dependencies: 199 | babel-messages "^6.8.0" 200 | babel-runtime "^6.9.0" 201 | babel-types "^6.18.0" 202 | detect-indent "^4.0.0" 203 | jsesc "^1.3.0" 204 | lodash "^4.2.0" 205 | source-map "^0.5.0" 206 | 207 | babel-helper-call-delegate@^6.18.0: 208 | version "6.18.0" 209 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.18.0.tgz#05b14aafa430884b034097ef29e9f067ea4133bd" 210 | dependencies: 211 | babel-helper-hoist-variables "^6.18.0" 212 | babel-runtime "^6.0.0" 213 | babel-traverse "^6.18.0" 214 | babel-types "^6.18.0" 215 | 216 | babel-helper-define-map@^6.18.0, babel-helper-define-map@^6.8.0: 217 | version "6.18.0" 218 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.18.0.tgz#8d6c85dc7fbb4c19be3de40474d18e97c3676ec2" 219 | dependencies: 220 | babel-helper-function-name "^6.18.0" 221 | babel-runtime "^6.9.0" 222 | babel-types "^6.18.0" 223 | lodash "^4.2.0" 224 | 225 | babel-helper-function-name@^6.18.0, babel-helper-function-name@^6.8.0: 226 | version "6.18.0" 227 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz#68ec71aeba1f3e28b2a6f0730190b754a9bf30e6" 228 | dependencies: 229 | babel-helper-get-function-arity "^6.18.0" 230 | babel-runtime "^6.0.0" 231 | babel-template "^6.8.0" 232 | babel-traverse "^6.18.0" 233 | babel-types "^6.18.0" 234 | 235 | babel-helper-get-function-arity@^6.18.0: 236 | version "6.18.0" 237 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.18.0.tgz#a5b19695fd3f9cdfc328398b47dafcd7094f9f24" 238 | dependencies: 239 | babel-runtime "^6.0.0" 240 | babel-types "^6.18.0" 241 | 242 | babel-helper-hoist-variables@^6.18.0: 243 | version "6.18.0" 244 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.18.0.tgz#a835b5ab8b46d6de9babefae4d98ea41e866b82a" 245 | dependencies: 246 | babel-runtime "^6.0.0" 247 | babel-types "^6.18.0" 248 | 249 | babel-helper-optimise-call-expression@^6.18.0: 250 | version "6.18.0" 251 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.18.0.tgz#9261d0299ee1a4f08a6dd28b7b7c777348fd8f0f" 252 | dependencies: 253 | babel-runtime "^6.0.0" 254 | babel-types "^6.18.0" 255 | 256 | babel-helper-regex@^6.8.0: 257 | version "6.18.0" 258 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.18.0.tgz#ae0ebfd77de86cb2f1af258e2cc20b5fe893ecc6" 259 | dependencies: 260 | babel-runtime "^6.9.0" 261 | babel-types "^6.18.0" 262 | lodash "^4.2.0" 263 | 264 | babel-helper-replace-supers@^6.18.0, babel-helper-replace-supers@^6.8.0: 265 | version "6.18.0" 266 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.18.0.tgz#28ec69877be4144dbd64f4cc3a337e89f29a924e" 267 | dependencies: 268 | babel-helper-optimise-call-expression "^6.18.0" 269 | babel-messages "^6.8.0" 270 | babel-runtime "^6.0.0" 271 | babel-template "^6.16.0" 272 | babel-traverse "^6.18.0" 273 | babel-types "^6.18.0" 274 | 275 | babel-helpers@^6.16.0: 276 | version "6.16.0" 277 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.16.0.tgz#1095ec10d99279460553e67eb3eee9973d3867e3" 278 | dependencies: 279 | babel-runtime "^6.0.0" 280 | babel-template "^6.16.0" 281 | 282 | babel-messages@^6.8.0: 283 | version "6.8.0" 284 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9" 285 | dependencies: 286 | babel-runtime "^6.0.0" 287 | 288 | babel-plugin-check-es2015-constants@^6.3.13: 289 | version "6.8.0" 290 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.8.0.tgz#dbf024c32ed37bfda8dee1e76da02386a8d26fe7" 291 | dependencies: 292 | babel-runtime "^6.0.0" 293 | 294 | babel-plugin-transform-es2015-arrow-functions@^6.3.13: 295 | version "6.8.0" 296 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.8.0.tgz#5b63afc3181bdc9a8c4d481b5a4f3f7d7fef3d9d" 297 | dependencies: 298 | babel-runtime "^6.0.0" 299 | 300 | babel-plugin-transform-es2015-block-scoped-functions@^6.3.13: 301 | version "6.8.0" 302 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.8.0.tgz#ed95d629c4b5a71ae29682b998f70d9833eb366d" 303 | dependencies: 304 | babel-runtime "^6.0.0" 305 | 306 | babel-plugin-transform-es2015-block-scoping@^6.18.0: 307 | version "6.18.0" 308 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.18.0.tgz#3bfdcfec318d46df22525cdea88f1978813653af" 309 | dependencies: 310 | babel-runtime "^6.9.0" 311 | babel-template "^6.15.0" 312 | babel-traverse "^6.18.0" 313 | babel-types "^6.18.0" 314 | lodash "^4.2.0" 315 | 316 | babel-plugin-transform-es2015-classes@^6.18.0: 317 | version "6.18.0" 318 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.18.0.tgz#ffe7a17321bf83e494dcda0ae3fc72df48ffd1d9" 319 | dependencies: 320 | babel-helper-define-map "^6.18.0" 321 | babel-helper-function-name "^6.18.0" 322 | babel-helper-optimise-call-expression "^6.18.0" 323 | babel-helper-replace-supers "^6.18.0" 324 | babel-messages "^6.8.0" 325 | babel-runtime "^6.9.0" 326 | babel-template "^6.14.0" 327 | babel-traverse "^6.18.0" 328 | babel-types "^6.18.0" 329 | 330 | babel-plugin-transform-es2015-computed-properties@^6.3.13: 331 | version "6.8.0" 332 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.8.0.tgz#f51010fd61b3bd7b6b60a5fdfd307bb7a5279870" 333 | dependencies: 334 | babel-helper-define-map "^6.8.0" 335 | babel-runtime "^6.0.0" 336 | babel-template "^6.8.0" 337 | 338 | babel-plugin-transform-es2015-destructuring@^6.18.0: 339 | version "6.18.0" 340 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.18.0.tgz#a08fb89415ab82058649558bedb7bf8dafa76ba5" 341 | dependencies: 342 | babel-runtime "^6.9.0" 343 | 344 | babel-plugin-transform-es2015-duplicate-keys@^6.6.0: 345 | version "6.8.0" 346 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.8.0.tgz#fd8f7f7171fc108cc1c70c3164b9f15a81c25f7d" 347 | dependencies: 348 | babel-runtime "^6.0.0" 349 | babel-types "^6.8.0" 350 | 351 | babel-plugin-transform-es2015-for-of@^6.18.0: 352 | version "6.18.0" 353 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.18.0.tgz#4c517504db64bf8cfc119a6b8f177211f2028a70" 354 | dependencies: 355 | babel-runtime "^6.0.0" 356 | 357 | babel-plugin-transform-es2015-function-name@^6.9.0: 358 | version "6.9.0" 359 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.9.0.tgz#8c135b17dbd064e5bba56ec511baaee2fca82719" 360 | dependencies: 361 | babel-helper-function-name "^6.8.0" 362 | babel-runtime "^6.9.0" 363 | babel-types "^6.9.0" 364 | 365 | babel-plugin-transform-es2015-literals@^6.3.13: 366 | version "6.8.0" 367 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.8.0.tgz#50aa2e5c7958fc2ab25d74ec117e0cc98f046468" 368 | dependencies: 369 | babel-runtime "^6.0.0" 370 | 371 | babel-plugin-transform-es2015-modules-amd@^6.18.0: 372 | version "6.18.0" 373 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.18.0.tgz#49a054cbb762bdf9ae2d8a807076cfade6141e40" 374 | dependencies: 375 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 376 | babel-runtime "^6.0.0" 377 | babel-template "^6.8.0" 378 | 379 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 380 | version "6.18.0" 381 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz#c15ae5bb11b32a0abdcc98a5837baa4ee8d67bcc" 382 | dependencies: 383 | babel-plugin-transform-strict-mode "^6.18.0" 384 | babel-runtime "^6.0.0" 385 | babel-template "^6.16.0" 386 | babel-types "^6.18.0" 387 | 388 | babel-plugin-transform-es2015-modules-systemjs@^6.18.0: 389 | version "6.18.0" 390 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.18.0.tgz#f09294707163edae4d3b3e8bfacecd01d920b7ad" 391 | dependencies: 392 | babel-helper-hoist-variables "^6.18.0" 393 | babel-runtime "^6.11.6" 394 | babel-template "^6.14.0" 395 | 396 | babel-plugin-transform-es2015-modules-umd@^6.18.0: 397 | version "6.18.0" 398 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.18.0.tgz#23351770ece5c1f8e83ed67cb1d7992884491e50" 399 | dependencies: 400 | babel-plugin-transform-es2015-modules-amd "^6.18.0" 401 | babel-runtime "^6.0.0" 402 | babel-template "^6.8.0" 403 | 404 | babel-plugin-transform-es2015-object-super@^6.3.13: 405 | version "6.8.0" 406 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.8.0.tgz#1b858740a5a4400887c23dcff6f4d56eea4a24c5" 407 | dependencies: 408 | babel-helper-replace-supers "^6.8.0" 409 | babel-runtime "^6.0.0" 410 | 411 | babel-plugin-transform-es2015-parameters@^6.18.0: 412 | version "6.18.0" 413 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.18.0.tgz#9b2cfe238c549f1635ba27fc1daa858be70608b1" 414 | dependencies: 415 | babel-helper-call-delegate "^6.18.0" 416 | babel-helper-get-function-arity "^6.18.0" 417 | babel-runtime "^6.9.0" 418 | babel-template "^6.16.0" 419 | babel-traverse "^6.18.0" 420 | babel-types "^6.18.0" 421 | 422 | babel-plugin-transform-es2015-shorthand-properties@^6.18.0: 423 | version "6.18.0" 424 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.18.0.tgz#e2ede3b7df47bf980151926534d1dd0cbea58f43" 425 | dependencies: 426 | babel-runtime "^6.0.0" 427 | babel-types "^6.18.0" 428 | 429 | babel-plugin-transform-es2015-spread@^6.3.13: 430 | version "6.8.0" 431 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.8.0.tgz#0217f737e3b821fa5a669f187c6ed59205f05e9c" 432 | dependencies: 433 | babel-runtime "^6.0.0" 434 | 435 | babel-plugin-transform-es2015-sticky-regex@^6.3.13: 436 | version "6.8.0" 437 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.8.0.tgz#e73d300a440a35d5c64f5c2a344dc236e3df47be" 438 | dependencies: 439 | babel-helper-regex "^6.8.0" 440 | babel-runtime "^6.0.0" 441 | babel-types "^6.8.0" 442 | 443 | babel-plugin-transform-es2015-template-literals@^6.6.0: 444 | version "6.8.0" 445 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.8.0.tgz#86eb876d0a2c635da4ec048b4f7de9dfc897e66b" 446 | dependencies: 447 | babel-runtime "^6.0.0" 448 | 449 | babel-plugin-transform-es2015-typeof-symbol@^6.18.0: 450 | version "6.18.0" 451 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.18.0.tgz#0b14c48629c90ff47a0650077f6aa699bee35798" 452 | dependencies: 453 | babel-runtime "^6.0.0" 454 | 455 | babel-plugin-transform-es2015-unicode-regex@^6.3.13: 456 | version "6.11.0" 457 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.11.0.tgz#6298ceabaad88d50a3f4f392d8de997260f6ef2c" 458 | dependencies: 459 | babel-helper-regex "^6.8.0" 460 | babel-runtime "^6.0.0" 461 | regexpu-core "^2.0.0" 462 | 463 | babel-plugin-transform-regenerator@^6.16.0: 464 | version "6.16.1" 465 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.16.1.tgz#a75de6b048a14154aae14b0122756c5bed392f59" 466 | dependencies: 467 | babel-runtime "^6.9.0" 468 | babel-types "^6.16.0" 469 | private "~0.1.5" 470 | 471 | babel-plugin-transform-strict-mode@^6.18.0: 472 | version "6.18.0" 473 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.18.0.tgz#df7cf2991fe046f44163dcd110d5ca43bc652b9d" 474 | dependencies: 475 | babel-runtime "^6.0.0" 476 | babel-types "^6.18.0" 477 | 478 | babel-polyfill@^6.16.0: 479 | version "6.16.0" 480 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.16.0.tgz#2d45021df87e26a374b6d4d1a9c65964d17f2422" 481 | dependencies: 482 | babel-runtime "^6.9.1" 483 | core-js "^2.4.0" 484 | regenerator-runtime "^0.9.5" 485 | 486 | babel-preset-es2015@^6.18.0: 487 | version "6.18.0" 488 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.18.0.tgz#b8c70df84ec948c43dcf2bf770e988eb7da88312" 489 | dependencies: 490 | babel-plugin-check-es2015-constants "^6.3.13" 491 | babel-plugin-transform-es2015-arrow-functions "^6.3.13" 492 | babel-plugin-transform-es2015-block-scoped-functions "^6.3.13" 493 | babel-plugin-transform-es2015-block-scoping "^6.18.0" 494 | babel-plugin-transform-es2015-classes "^6.18.0" 495 | babel-plugin-transform-es2015-computed-properties "^6.3.13" 496 | babel-plugin-transform-es2015-destructuring "^6.18.0" 497 | babel-plugin-transform-es2015-duplicate-keys "^6.6.0" 498 | babel-plugin-transform-es2015-for-of "^6.18.0" 499 | babel-plugin-transform-es2015-function-name "^6.9.0" 500 | babel-plugin-transform-es2015-literals "^6.3.13" 501 | babel-plugin-transform-es2015-modules-amd "^6.18.0" 502 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 503 | babel-plugin-transform-es2015-modules-systemjs "^6.18.0" 504 | babel-plugin-transform-es2015-modules-umd "^6.18.0" 505 | babel-plugin-transform-es2015-object-super "^6.3.13" 506 | babel-plugin-transform-es2015-parameters "^6.18.0" 507 | babel-plugin-transform-es2015-shorthand-properties "^6.18.0" 508 | babel-plugin-transform-es2015-spread "^6.3.13" 509 | babel-plugin-transform-es2015-sticky-regex "^6.3.13" 510 | babel-plugin-transform-es2015-template-literals "^6.6.0" 511 | babel-plugin-transform-es2015-typeof-symbol "^6.18.0" 512 | babel-plugin-transform-es2015-unicode-regex "^6.3.13" 513 | babel-plugin-transform-regenerator "^6.16.0" 514 | 515 | babel-register@^6.18.0: 516 | version "6.18.0" 517 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.18.0.tgz#892e2e03865078dd90ad2c715111ec4449b32a68" 518 | dependencies: 519 | babel-core "^6.18.0" 520 | babel-runtime "^6.11.6" 521 | core-js "^2.4.0" 522 | home-or-tmp "^2.0.0" 523 | lodash "^4.2.0" 524 | mkdirp "^0.5.1" 525 | source-map-support "^0.4.2" 526 | 527 | babel-runtime@^6.0.0, babel-runtime@^6.11.6, babel-runtime@^6.18.0, babel-runtime@^6.9.0, babel-runtime@^6.9.1: 528 | version "6.18.0" 529 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.18.0.tgz#0f4177ffd98492ef13b9f823e9994a02584c9078" 530 | dependencies: 531 | core-js "^2.4.0" 532 | regenerator-runtime "^0.9.5" 533 | 534 | babel-template@^6.14.0, babel-template@^6.15.0, babel-template@^6.16.0, babel-template@^6.8.0: 535 | version "6.16.0" 536 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca" 537 | dependencies: 538 | babel-runtime "^6.9.0" 539 | babel-traverse "^6.16.0" 540 | babel-types "^6.16.0" 541 | babylon "^6.11.0" 542 | lodash "^4.2.0" 543 | 544 | babel-traverse@^6.16.0, babel-traverse@^6.18.0: 545 | version "6.18.0" 546 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.18.0.tgz#5aeaa980baed2a07c8c47329cd90c3b90c80f05e" 547 | dependencies: 548 | babel-code-frame "^6.16.0" 549 | babel-messages "^6.8.0" 550 | babel-runtime "^6.9.0" 551 | babel-types "^6.18.0" 552 | babylon "^6.11.0" 553 | debug "^2.2.0" 554 | globals "^9.0.0" 555 | invariant "^2.2.0" 556 | lodash "^4.2.0" 557 | 558 | babel-types@^6.16.0, babel-types@^6.18.0, babel-types@^6.8.0, babel-types@^6.9.0: 559 | version "6.18.0" 560 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.18.0.tgz#1f7d5a73474c59eb9151b2417bbff4e4fce7c3f8" 561 | dependencies: 562 | babel-runtime "^6.9.1" 563 | esutils "^2.0.2" 564 | lodash "^4.2.0" 565 | to-fast-properties "^1.0.1" 566 | 567 | babylon@^6.11.0: 568 | version "6.13.1" 569 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.13.1.tgz#adca350e088f0467647157652bafead6ddb8dfdb" 570 | 571 | balanced-match@^0.4.1: 572 | version "0.4.2" 573 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 574 | 575 | bcrypt-pbkdf@^1.0.0: 576 | version "1.0.0" 577 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 578 | dependencies: 579 | tweetnacl "^0.14.3" 580 | 581 | beeper@^1.0.0: 582 | version "1.1.0" 583 | resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.0.tgz#9ee6fc1ce7f54feaace7ce73588b056037866a2c" 584 | 585 | binary-extensions@^1.0.0: 586 | version "1.7.0" 587 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.7.0.tgz#6c1610db163abfb34edfe42fa423343a1e01185d" 588 | 589 | block-stream@*: 590 | version "0.0.9" 591 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 592 | dependencies: 593 | inherits "~2.0.0" 594 | 595 | boom@2.x.x: 596 | version "2.10.1" 597 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 598 | dependencies: 599 | hoek "2.x.x" 600 | 601 | brace-expansion@^1.0.0: 602 | version "1.1.6" 603 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 604 | dependencies: 605 | balanced-match "^0.4.1" 606 | concat-map "0.0.1" 607 | 608 | braces@^1.8.2: 609 | version "1.8.5" 610 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 611 | dependencies: 612 | expand-range "^1.8.1" 613 | preserve "^0.2.0" 614 | repeat-element "^1.1.2" 615 | 616 | buffer-shims@^1.0.0: 617 | version "1.0.0" 618 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 619 | 620 | builtin-modules@^1.0.0: 621 | version "1.1.1" 622 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 623 | 624 | camelcase-keys@^2.0.0: 625 | version "2.1.0" 626 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 627 | dependencies: 628 | camelcase "^2.0.0" 629 | map-obj "^1.0.0" 630 | 631 | camelcase@^2.0.0: 632 | version "2.1.1" 633 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 634 | 635 | caseless@~0.11.0: 636 | version "0.11.0" 637 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 638 | 639 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 640 | version "1.1.3" 641 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 642 | dependencies: 643 | ansi-styles "^2.2.1" 644 | escape-string-regexp "^1.0.2" 645 | has-ansi "^2.0.0" 646 | strip-ansi "^3.0.0" 647 | supports-color "^2.0.0" 648 | 649 | chokidar@^1.0.0, chokidar@^1.6.1: 650 | version "1.6.1" 651 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 652 | dependencies: 653 | anymatch "^1.3.0" 654 | async-each "^1.0.0" 655 | glob-parent "^2.0.0" 656 | inherits "^2.0.1" 657 | is-binary-path "^1.0.0" 658 | is-glob "^2.0.0" 659 | path-is-absolute "^1.0.0" 660 | readdirp "^2.0.0" 661 | optionalDependencies: 662 | fsevents "^1.0.0" 663 | 664 | cli-cursor@^1.0.1: 665 | version "1.0.2" 666 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 667 | dependencies: 668 | restore-cursor "^1.0.1" 669 | 670 | cli-width@^2.0.0: 671 | version "2.1.0" 672 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 673 | 674 | clone-stats@^0.0.1: 675 | version "0.0.1" 676 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" 677 | 678 | clone@^0.2.0: 679 | version "0.2.0" 680 | resolved "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f" 681 | 682 | clone@^1.0.0, clone@^1.0.2: 683 | version "1.0.2" 684 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 685 | 686 | code-point-at@^1.0.0: 687 | version "1.0.1" 688 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.0.1.tgz#1104cd34f9b5b45d3eba88f1babc1924e1ce35fb" 689 | dependencies: 690 | number-is-nan "^1.0.0" 691 | 692 | colors@^1.1.2: 693 | version "1.1.2" 694 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 695 | 696 | colors@1.0.x: 697 | version "1.0.3" 698 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 699 | 700 | combined-stream@^1.0.5, combined-stream@~1.0.5: 701 | version "1.0.5" 702 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 703 | dependencies: 704 | delayed-stream "~1.0.0" 705 | 706 | commander@^2.8.1, commander@^2.9.0: 707 | version "2.9.0" 708 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 709 | dependencies: 710 | graceful-readlink ">= 1.0.0" 711 | 712 | concat-map@0.0.1: 713 | version "0.0.1" 714 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 715 | 716 | concat-stream@^1.4.7: 717 | version "1.5.2" 718 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 719 | dependencies: 720 | inherits "~2.0.1" 721 | readable-stream "~2.0.0" 722 | typedarray "~0.0.5" 723 | 724 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 725 | version "1.1.0" 726 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 727 | 728 | convert-source-map@^1.1.0, convert-source-map@^1.1.1: 729 | version "1.3.0" 730 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 731 | 732 | core-js@^2.4.0: 733 | version "2.4.1" 734 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 735 | 736 | core-util-is@~1.0.0: 737 | version "1.0.2" 738 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 739 | 740 | cryptiles@2.x.x: 741 | version "2.0.5" 742 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 743 | dependencies: 744 | boom "2.x.x" 745 | 746 | currently-unhandled@^0.4.1: 747 | version "0.4.1" 748 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 749 | dependencies: 750 | array-find-index "^1.0.1" 751 | 752 | cycle@1.0.x: 753 | version "1.0.3" 754 | resolved "https://registry.yarnpkg.com/cycle/-/cycle-1.0.3.tgz#21e80b2be8580f98b468f379430662b046c34ad2" 755 | 756 | dashdash@^1.12.0: 757 | version "1.14.0" 758 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.0.tgz#29e486c5418bf0f356034a993d51686a33e84141" 759 | dependencies: 760 | assert-plus "^1.0.0" 761 | 762 | dateformat@^1.0.11: 763 | version "1.0.12" 764 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" 765 | dependencies: 766 | get-stdin "^4.0.1" 767 | meow "^3.3.0" 768 | 769 | debug@^2.1.1, debug@^2.2.0, debug@~2.2.0: 770 | version "2.2.0" 771 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 772 | dependencies: 773 | ms "0.7.1" 774 | 775 | decamelize@^1.1.2: 776 | version "1.2.0" 777 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 778 | 779 | deep-equal@~0.2.1: 780 | version "0.2.2" 781 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-0.2.2.tgz#84b745896f34c684e98f2ce0e42abaf43bba017d" 782 | 783 | deep-extend@~0.4.0: 784 | version "0.4.1" 785 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 786 | 787 | defaults@^1.0.0: 788 | version "1.0.3" 789 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 790 | dependencies: 791 | clone "^1.0.2" 792 | 793 | delayed-stream@~1.0.0: 794 | version "1.0.0" 795 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 796 | 797 | delegates@^1.0.0: 798 | version "1.0.0" 799 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 800 | 801 | deprecated@^0.0.1: 802 | version "0.0.1" 803 | resolved "https://registry.yarnpkg.com/deprecated/-/deprecated-0.0.1.tgz#f9c9af5464afa1e7a971458a8bdef2aa94d5bb19" 804 | 805 | detect-file@^0.1.0: 806 | version "0.1.0" 807 | resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-0.1.0.tgz#4935dedfd9488648e006b0129566e9386711ea63" 808 | dependencies: 809 | fs-exists-sync "^0.1.0" 810 | 811 | detect-indent@^4.0.0: 812 | version "4.0.0" 813 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 814 | dependencies: 815 | repeating "^2.0.0" 816 | 817 | duplexer2@0.0.2: 818 | version "0.0.2" 819 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" 820 | dependencies: 821 | readable-stream "~1.1.9" 822 | 823 | duplexify@^3.2.0: 824 | version "3.5.0" 825 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.0.tgz#1aa773002e1578457e9d9d4a50b0ccaaebcbd604" 826 | dependencies: 827 | end-of-stream "1.0.0" 828 | inherits "^2.0.1" 829 | readable-stream "^2.0.0" 830 | stream-shift "^1.0.0" 831 | 832 | ecc-jsbn@~0.1.1: 833 | version "0.1.1" 834 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 835 | dependencies: 836 | jsbn "~0.1.0" 837 | 838 | end-of-stream@~0.1.5: 839 | version "0.1.5" 840 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-0.1.5.tgz#8e177206c3c80837d85632e8b9359dfe8b2f6eaf" 841 | dependencies: 842 | once "~1.3.0" 843 | 844 | end-of-stream@1.0.0: 845 | version "1.0.0" 846 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.0.0.tgz#d4596e702734a93e40e9af864319eabd99ff2f0e" 847 | dependencies: 848 | once "~1.3.0" 849 | 850 | error-ex@^1.2.0: 851 | version "1.3.0" 852 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 853 | dependencies: 854 | is-arrayish "^0.2.1" 855 | 856 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 857 | version "1.0.5" 858 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 859 | 860 | esutils@^2.0.2: 861 | version "2.0.2" 862 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 863 | 864 | exit-hook@^1.0.0: 865 | version "1.1.1" 866 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 867 | 868 | expand-brackets@^0.1.4: 869 | version "0.1.5" 870 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 871 | dependencies: 872 | is-posix-bracket "^0.1.0" 873 | 874 | expand-range@^1.8.1: 875 | version "1.8.2" 876 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 877 | dependencies: 878 | fill-range "^2.1.0" 879 | 880 | expand-tilde@^1.2.1, expand-tilde@^1.2.2: 881 | version "1.2.2" 882 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449" 883 | dependencies: 884 | os-homedir "^1.0.1" 885 | 886 | extend-shallow@^2.0.1: 887 | version "2.0.1" 888 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 889 | dependencies: 890 | is-extendable "^0.1.0" 891 | 892 | extend@^3.0.0, extend@~3.0.0: 893 | version "3.0.0" 894 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 895 | 896 | external-editor@^1.1.0: 897 | version "1.1.1" 898 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-1.1.1.tgz#12d7b0db850f7ff7e7081baf4005700060c4600b" 899 | dependencies: 900 | extend "^3.0.0" 901 | spawn-sync "^1.0.15" 902 | tmp "^0.0.29" 903 | 904 | extglob@^0.3.1: 905 | version "0.3.2" 906 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 907 | dependencies: 908 | is-extglob "^1.0.0" 909 | 910 | extsprintf@1.0.2: 911 | version "1.0.2" 912 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 913 | 914 | eyes@0.1.x: 915 | version "0.1.8" 916 | resolved "https://registry.yarnpkg.com/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" 917 | 918 | fancy-log@^1.1.0: 919 | version "1.2.0" 920 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.2.0.tgz#d5a51b53e9ab22ca07d558f2b67ae55fdb5fcbd8" 921 | dependencies: 922 | chalk "^1.1.1" 923 | time-stamp "^1.0.0" 924 | 925 | figures@^1.3.5: 926 | version "1.7.0" 927 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 928 | dependencies: 929 | escape-string-regexp "^1.0.5" 930 | object-assign "^4.1.0" 931 | 932 | filename-regex@^2.0.0: 933 | version "2.0.0" 934 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 935 | 936 | fill-range@^2.1.0: 937 | version "2.2.3" 938 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 939 | dependencies: 940 | is-number "^2.1.0" 941 | isobject "^2.0.0" 942 | randomatic "^1.1.3" 943 | repeat-element "^1.1.2" 944 | repeat-string "^1.5.2" 945 | 946 | find-index@^0.1.1: 947 | version "0.1.1" 948 | resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" 949 | 950 | find-up@^1.0.0: 951 | version "1.1.2" 952 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 953 | dependencies: 954 | path-exists "^2.0.0" 955 | pinkie-promise "^2.0.0" 956 | 957 | findup-sync@^0.4.2: 958 | version "0.4.3" 959 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.4.3.tgz#40043929e7bc60adf0b7f4827c4c6e75a0deca12" 960 | dependencies: 961 | detect-file "^0.1.0" 962 | is-glob "^2.0.1" 963 | micromatch "^2.3.7" 964 | resolve-dir "^0.1.0" 965 | 966 | fined@^1.0.1: 967 | version "1.0.2" 968 | resolved "https://registry.yarnpkg.com/fined/-/fined-1.0.2.tgz#5b28424b760d7598960b7ef8480dff8ad3660e97" 969 | dependencies: 970 | expand-tilde "^1.2.1" 971 | lodash.assignwith "^4.0.7" 972 | lodash.isempty "^4.2.1" 973 | lodash.isplainobject "^4.0.4" 974 | lodash.isstring "^4.0.1" 975 | lodash.pick "^4.2.1" 976 | parse-filepath "^1.0.1" 977 | 978 | first-chunk-stream@^1.0.0: 979 | version "1.0.0" 980 | resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" 981 | 982 | flagged-respawn@^0.3.2: 983 | version "0.3.2" 984 | resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-0.3.2.tgz#ff191eddcd7088a675b2610fffc976be9b8074b5" 985 | 986 | for-in@^0.1.5: 987 | version "0.1.6" 988 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 989 | 990 | for-own@^0.1.4: 991 | version "0.1.4" 992 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 993 | dependencies: 994 | for-in "^0.1.5" 995 | 996 | forever-agent@~0.6.1: 997 | version "0.6.1" 998 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 999 | 1000 | form-data@~2.1.1: 1001 | version "2.1.1" 1002 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.1.tgz#4adf0342e1a79afa1e84c8c320a9ffc82392a1f3" 1003 | dependencies: 1004 | asynckit "^0.4.0" 1005 | combined-stream "^1.0.5" 1006 | mime-types "^2.1.12" 1007 | 1008 | fs-exists-sync@^0.1.0: 1009 | version "0.1.0" 1010 | resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add" 1011 | 1012 | fs-readdir-recursive@^1.0.0: 1013 | version "1.0.0" 1014 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1015 | 1016 | fs.realpath@^1.0.0: 1017 | version "1.0.0" 1018 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1019 | 1020 | fsevents@^1.0.0: 1021 | version "1.0.14" 1022 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.14.tgz#558e8cc38643d8ef40fe45158486d0d25758eee4" 1023 | dependencies: 1024 | nan "^2.3.0" 1025 | node-pre-gyp "^0.6.29" 1026 | 1027 | fstream-ignore@~1.0.5: 1028 | version "1.0.5" 1029 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1030 | dependencies: 1031 | fstream "^1.0.0" 1032 | inherits "2" 1033 | minimatch "^3.0.0" 1034 | 1035 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1036 | version "1.0.10" 1037 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1038 | dependencies: 1039 | graceful-fs "^4.1.2" 1040 | inherits "~2.0.0" 1041 | mkdirp ">=0.5 0" 1042 | rimraf "2" 1043 | 1044 | gauge@~2.6.0: 1045 | version "2.6.0" 1046 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.6.0.tgz#d35301ad18e96902b4751dcbbe40f4218b942a46" 1047 | dependencies: 1048 | aproba "^1.0.3" 1049 | console-control-strings "^1.0.0" 1050 | has-color "^0.1.7" 1051 | has-unicode "^2.0.0" 1052 | object-assign "^4.1.0" 1053 | signal-exit "^3.0.0" 1054 | string-width "^1.0.1" 1055 | strip-ansi "^3.0.1" 1056 | wide-align "^1.1.0" 1057 | 1058 | gaze@^0.5.1: 1059 | version "0.5.2" 1060 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-0.5.2.tgz#40b709537d24d1d45767db5a908689dfe69ac44f" 1061 | dependencies: 1062 | globule "~0.1.0" 1063 | 1064 | generate-function@^2.0.0: 1065 | version "2.0.0" 1066 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1067 | 1068 | generate-object-property@^1.1.0: 1069 | version "1.2.0" 1070 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1071 | dependencies: 1072 | is-property "^1.0.0" 1073 | 1074 | get-stdin@^4.0.1: 1075 | version "4.0.1" 1076 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1077 | 1078 | getpass@^0.1.1: 1079 | version "0.1.6" 1080 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1081 | dependencies: 1082 | assert-plus "^1.0.0" 1083 | 1084 | glob-base@^0.3.0: 1085 | version "0.3.0" 1086 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1087 | dependencies: 1088 | glob-parent "^2.0.0" 1089 | is-glob "^2.0.0" 1090 | 1091 | glob-parent@^2.0.0: 1092 | version "2.0.0" 1093 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1094 | dependencies: 1095 | is-glob "^2.0.0" 1096 | 1097 | glob-parent@^3.0.0: 1098 | version "3.0.1" 1099 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.0.1.tgz#60021327cc963ddc3b5f085764f500479ecd82ff" 1100 | dependencies: 1101 | is-glob "^3.1.0" 1102 | path-dirname "^1.0.0" 1103 | 1104 | glob-stream@^3.1.5: 1105 | version "3.1.18" 1106 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-3.1.18.tgz#9170a5f12b790306fdfe598f313f8f7954fd143b" 1107 | dependencies: 1108 | glob "^4.3.1" 1109 | glob2base "^0.0.12" 1110 | minimatch "^2.0.1" 1111 | ordered-read-streams "^0.1.0" 1112 | through2 "^0.6.1" 1113 | unique-stream "^1.0.0" 1114 | 1115 | glob-stream@^5.3.2: 1116 | version "5.3.5" 1117 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-5.3.5.tgz#a55665a9a8ccdc41915a87c701e32d4e016fad22" 1118 | dependencies: 1119 | extend "^3.0.0" 1120 | glob "^5.0.3" 1121 | glob-parent "^3.0.0" 1122 | micromatch "^2.3.7" 1123 | ordered-read-streams "^0.3.0" 1124 | through2 "^0.6.0" 1125 | to-absolute-glob "^0.1.1" 1126 | unique-stream "^2.0.2" 1127 | 1128 | glob-watcher@^0.0.6: 1129 | version "0.0.6" 1130 | resolved "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-0.0.6.tgz#b95b4a8df74b39c83298b0c05c978b4d9a3b710b" 1131 | dependencies: 1132 | gaze "^0.5.1" 1133 | 1134 | glob@^4.3.1: 1135 | version "4.5.3" 1136 | resolved "https://registry.yarnpkg.com/glob/-/glob-4.5.3.tgz#c6cb73d3226c1efef04de3c56d012f03377ee15f" 1137 | dependencies: 1138 | inflight "^1.0.4" 1139 | inherits "2" 1140 | minimatch "^2.0.1" 1141 | once "^1.3.0" 1142 | 1143 | glob@^5.0.3, glob@^5.0.5: 1144 | version "5.0.15" 1145 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1146 | dependencies: 1147 | inflight "^1.0.4" 1148 | inherits "2" 1149 | minimatch "2 || 3" 1150 | once "^1.3.0" 1151 | path-is-absolute "^1.0.0" 1152 | 1153 | glob@^7.0.5: 1154 | version "7.1.1" 1155 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1156 | dependencies: 1157 | fs.realpath "^1.0.0" 1158 | inflight "^1.0.4" 1159 | inherits "2" 1160 | minimatch "^3.0.2" 1161 | once "^1.3.0" 1162 | path-is-absolute "^1.0.0" 1163 | 1164 | glob@~3.1.21: 1165 | version "3.1.21" 1166 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.1.21.tgz#d29e0a055dea5138f4d07ed40e8982e83c2066cd" 1167 | dependencies: 1168 | graceful-fs "~1.2.0" 1169 | inherits "1" 1170 | minimatch "~0.2.11" 1171 | 1172 | glob@~7.0.3: 1173 | version "7.0.6" 1174 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a" 1175 | dependencies: 1176 | fs.realpath "^1.0.0" 1177 | inflight "^1.0.4" 1178 | inherits "2" 1179 | minimatch "^3.0.2" 1180 | once "^1.3.0" 1181 | path-is-absolute "^1.0.0" 1182 | 1183 | glob2base@^0.0.12: 1184 | version "0.0.12" 1185 | resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" 1186 | dependencies: 1187 | find-index "^0.1.1" 1188 | 1189 | global-modules@^0.2.3: 1190 | version "0.2.3" 1191 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d" 1192 | dependencies: 1193 | global-prefix "^0.1.4" 1194 | is-windows "^0.2.0" 1195 | 1196 | global-prefix@^0.1.4: 1197 | version "0.1.4" 1198 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.4.tgz#05158db1cde2dd491b455e290eb3ab8bfc45c6e1" 1199 | dependencies: 1200 | ini "^1.3.4" 1201 | is-windows "^0.2.0" 1202 | osenv "^0.1.3" 1203 | which "^1.2.10" 1204 | 1205 | globals@^9.0.0: 1206 | version "9.12.0" 1207 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.12.0.tgz#992ce90828c3a55fa8f16fada177adb64664cf9d" 1208 | 1209 | globule@~0.1.0: 1210 | version "0.1.0" 1211 | resolved "https://registry.yarnpkg.com/globule/-/globule-0.1.0.tgz#d9c8edde1da79d125a151b79533b978676346ae5" 1212 | dependencies: 1213 | glob "~3.1.21" 1214 | lodash "~1.0.1" 1215 | minimatch "~0.2.11" 1216 | 1217 | glogg@^1.0.0: 1218 | version "1.0.0" 1219 | resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.0.tgz#7fe0f199f57ac906cf512feead8f90ee4a284fc5" 1220 | dependencies: 1221 | sparkles "^1.0.0" 1222 | 1223 | graceful-fs@^3.0.0: 1224 | version "3.0.11" 1225 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.11.tgz#7613c778a1afea62f25c630a086d7f3acbbdd818" 1226 | dependencies: 1227 | natives "^1.1.0" 1228 | 1229 | graceful-fs@^4.0.0, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1230 | version "4.1.9" 1231 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.9.tgz#baacba37d19d11f9d146d3578bc99958c3787e29" 1232 | 1233 | graceful-fs@~1.2.0: 1234 | version "1.2.3" 1235 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.2.3.tgz#15a4806a57547cb2d2dbf27f42e89a8c3451b364" 1236 | 1237 | "graceful-readlink@>= 1.0.0": 1238 | version "1.0.1" 1239 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1240 | 1241 | gulp-babel@^6.1.2: 1242 | version "6.1.2" 1243 | resolved "https://registry.yarnpkg.com/gulp-babel/-/gulp-babel-6.1.2.tgz#7c0176e4ba3f244c60588a0c4b320a45d1adefce" 1244 | dependencies: 1245 | babel-core "^6.0.2" 1246 | gulp-util "^3.0.0" 1247 | object-assign "^4.0.1" 1248 | replace-ext "0.0.1" 1249 | through2 "^2.0.0" 1250 | vinyl-sourcemaps-apply "^0.2.0" 1251 | 1252 | gulp-rename@^1.2.2: 1253 | version "1.2.2" 1254 | resolved "https://registry.yarnpkg.com/gulp-rename/-/gulp-rename-1.2.2.tgz#3ad4428763f05e2764dec1c67d868db275687817" 1255 | 1256 | gulp-sourcemaps@1.6.0: 1257 | version "1.6.0" 1258 | resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz#b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c" 1259 | dependencies: 1260 | convert-source-map "^1.1.1" 1261 | graceful-fs "^4.1.2" 1262 | strip-bom "^2.0.0" 1263 | through2 "^2.0.0" 1264 | vinyl "^1.0.0" 1265 | 1266 | gulp-typescript@^3.1.2: 1267 | version "3.1.2" 1268 | resolved "https://registry.yarnpkg.com/gulp-typescript/-/gulp-typescript-3.1.2.tgz#faf748991208efaf33c62010e2dce9e261117abd" 1269 | dependencies: 1270 | gulp-util "~3.0.7" 1271 | source-map "~0.5.3" 1272 | through2 "~2.0.1" 1273 | vinyl-fs "~2.4.3" 1274 | 1275 | gulp-util@^3.0.0, gulp-util@~3.0.7: 1276 | version "3.0.7" 1277 | resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.7.tgz#78925c4b8f8b49005ac01a011c557e6218941cbb" 1278 | dependencies: 1279 | array-differ "^1.0.0" 1280 | array-uniq "^1.0.2" 1281 | beeper "^1.0.0" 1282 | chalk "^1.0.0" 1283 | dateformat "^1.0.11" 1284 | fancy-log "^1.1.0" 1285 | gulplog "^1.0.0" 1286 | has-gulplog "^0.1.0" 1287 | lodash._reescape "^3.0.0" 1288 | lodash._reevaluate "^3.0.0" 1289 | lodash._reinterpolate "^3.0.0" 1290 | lodash.template "^3.0.0" 1291 | minimist "^1.1.0" 1292 | multipipe "^0.1.2" 1293 | object-assign "^3.0.0" 1294 | replace-ext "0.0.1" 1295 | through2 "^2.0.0" 1296 | vinyl "^0.5.0" 1297 | 1298 | gulp@^3.9.1: 1299 | version "3.9.1" 1300 | resolved "https://registry.yarnpkg.com/gulp/-/gulp-3.9.1.tgz#571ce45928dd40af6514fc4011866016c13845b4" 1301 | dependencies: 1302 | archy "^1.0.0" 1303 | chalk "^1.0.0" 1304 | deprecated "^0.0.1" 1305 | gulp-util "^3.0.0" 1306 | interpret "^1.0.0" 1307 | liftoff "^2.1.0" 1308 | minimist "^1.1.0" 1309 | orchestrator "^0.3.0" 1310 | pretty-hrtime "^1.0.0" 1311 | semver "^4.1.0" 1312 | tildify "^1.0.0" 1313 | v8flags "^2.0.2" 1314 | vinyl-fs "^0.3.0" 1315 | 1316 | gulplog@^1.0.0: 1317 | version "1.0.0" 1318 | resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" 1319 | dependencies: 1320 | glogg "^1.0.0" 1321 | 1322 | har-validator@~2.0.6: 1323 | version "2.0.6" 1324 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1325 | dependencies: 1326 | chalk "^1.1.1" 1327 | commander "^2.9.0" 1328 | is-my-json-valid "^2.12.4" 1329 | pinkie-promise "^2.0.0" 1330 | 1331 | has-ansi@^2.0.0: 1332 | version "2.0.0" 1333 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1334 | dependencies: 1335 | ansi-regex "^2.0.0" 1336 | 1337 | has-color@^0.1.7: 1338 | version "0.1.7" 1339 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1340 | 1341 | has-gulplog@^0.1.0: 1342 | version "0.1.0" 1343 | resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce" 1344 | dependencies: 1345 | sparkles "^1.0.0" 1346 | 1347 | has-unicode@^2.0.0: 1348 | version "2.0.1" 1349 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1350 | 1351 | hawk@~3.1.3: 1352 | version "3.1.3" 1353 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1354 | dependencies: 1355 | boom "2.x.x" 1356 | cryptiles "2.x.x" 1357 | hoek "2.x.x" 1358 | sntp "1.x.x" 1359 | 1360 | hoek@2.x.x: 1361 | version "2.16.3" 1362 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1363 | 1364 | home-or-tmp@^2.0.0: 1365 | version "2.0.0" 1366 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1367 | dependencies: 1368 | os-homedir "^1.0.0" 1369 | os-tmpdir "^1.0.1" 1370 | 1371 | hosted-git-info@^2.1.4: 1372 | version "2.1.5" 1373 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" 1374 | 1375 | http-signature@~1.1.0: 1376 | version "1.1.1" 1377 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1378 | dependencies: 1379 | assert-plus "^0.2.0" 1380 | jsprim "^1.2.2" 1381 | sshpk "^1.7.0" 1382 | 1383 | i@0.3.x: 1384 | version "0.3.5" 1385 | resolved "https://registry.yarnpkg.com/i/-/i-0.3.5.tgz#1d2b854158ec8169113c6cb7f6b6801e99e211d5" 1386 | 1387 | indent-string@^2.1.0: 1388 | version "2.1.0" 1389 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1390 | dependencies: 1391 | repeating "^2.0.0" 1392 | 1393 | inflight@^1.0.4: 1394 | version "1.0.6" 1395 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1396 | dependencies: 1397 | once "^1.3.0" 1398 | wrappy "1" 1399 | 1400 | inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1, inherits@2: 1401 | version "2.0.3" 1402 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1403 | 1404 | inherits@1: 1405 | version "1.0.2" 1406 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-1.0.2.tgz#ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b" 1407 | 1408 | ini@^1.3.4, ini@~1.3.0: 1409 | version "1.3.4" 1410 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1411 | 1412 | inquirer@^1.1.2: 1413 | version "1.2.2" 1414 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-1.2.2.tgz#f725c1316f0020e7f3d538c8c5ad0c2732c1c451" 1415 | dependencies: 1416 | ansi-escapes "^1.1.0" 1417 | chalk "^1.0.0" 1418 | cli-cursor "^1.0.1" 1419 | cli-width "^2.0.0" 1420 | external-editor "^1.1.0" 1421 | figures "^1.3.5" 1422 | lodash "^4.3.0" 1423 | mute-stream "0.0.6" 1424 | pinkie-promise "^2.0.0" 1425 | run-async "^2.2.0" 1426 | rx "^4.1.0" 1427 | string-width "^1.0.1" 1428 | strip-ansi "^3.0.0" 1429 | through "^2.3.6" 1430 | 1431 | interpret@^1.0.0: 1432 | version "1.0.1" 1433 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 1434 | 1435 | invariant@^2.2.0: 1436 | version "2.2.1" 1437 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.1.tgz#b097010547668c7e337028ebe816ebe36c8a8d54" 1438 | dependencies: 1439 | loose-envify "^1.0.0" 1440 | 1441 | is-absolute@^0.2.3: 1442 | version "0.2.6" 1443 | resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-0.2.6.tgz#20de69f3db942ef2d87b9c2da36f172235b1b5eb" 1444 | dependencies: 1445 | is-relative "^0.2.1" 1446 | is-windows "^0.2.0" 1447 | 1448 | is-arrayish@^0.2.1: 1449 | version "0.2.1" 1450 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1451 | 1452 | is-binary-path@^1.0.0: 1453 | version "1.0.1" 1454 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1455 | dependencies: 1456 | binary-extensions "^1.0.0" 1457 | 1458 | is-buffer@^1.0.2: 1459 | version "1.1.4" 1460 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1461 | 1462 | is-builtin-module@^1.0.0: 1463 | version "1.0.0" 1464 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1465 | dependencies: 1466 | builtin-modules "^1.0.0" 1467 | 1468 | is-dotfile@^1.0.0: 1469 | version "1.0.2" 1470 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1471 | 1472 | is-equal-shallow@^0.1.3: 1473 | version "0.1.3" 1474 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1475 | dependencies: 1476 | is-primitive "^2.0.0" 1477 | 1478 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1479 | version "0.1.1" 1480 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1481 | 1482 | is-extglob@^1.0.0: 1483 | version "1.0.0" 1484 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1485 | 1486 | is-extglob@^2.1.0: 1487 | version "2.1.0" 1488 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.0.tgz#33411a482b046bf95e6b0cb27ee2711af4cf15ad" 1489 | 1490 | is-finite@^1.0.0: 1491 | version "1.0.2" 1492 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1493 | dependencies: 1494 | number-is-nan "^1.0.0" 1495 | 1496 | is-fullwidth-code-point@^1.0.0: 1497 | version "1.0.0" 1498 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1499 | dependencies: 1500 | number-is-nan "^1.0.0" 1501 | 1502 | is-glob@^2.0.0, is-glob@^2.0.1: 1503 | version "2.0.1" 1504 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1505 | dependencies: 1506 | is-extglob "^1.0.0" 1507 | 1508 | is-glob@^3.1.0: 1509 | version "3.1.0" 1510 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1511 | dependencies: 1512 | is-extglob "^2.1.0" 1513 | 1514 | is-my-json-valid@^2.12.4: 1515 | version "2.15.0" 1516 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 1517 | dependencies: 1518 | generate-function "^2.0.0" 1519 | generate-object-property "^1.1.0" 1520 | jsonpointer "^4.0.0" 1521 | xtend "^4.0.0" 1522 | 1523 | is-number@^2.0.2, is-number@^2.1.0: 1524 | version "2.1.0" 1525 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1526 | dependencies: 1527 | kind-of "^3.0.2" 1528 | 1529 | is-posix-bracket@^0.1.0: 1530 | version "0.1.1" 1531 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1532 | 1533 | is-primitive@^2.0.0: 1534 | version "2.0.0" 1535 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1536 | 1537 | is-promise@^2.1.0: 1538 | version "2.1.0" 1539 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1540 | 1541 | is-property@^1.0.0: 1542 | version "1.0.2" 1543 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1544 | 1545 | is-relative@^0.2.1: 1546 | version "0.2.1" 1547 | resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-0.2.1.tgz#d27f4c7d516d175fb610db84bbeef23c3bc97aa5" 1548 | dependencies: 1549 | is-unc-path "^0.1.1" 1550 | 1551 | is-stream@^1.0.1: 1552 | version "1.1.0" 1553 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1554 | 1555 | is-typedarray@~1.0.0: 1556 | version "1.0.0" 1557 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1558 | 1559 | is-unc-path@^0.1.1: 1560 | version "0.1.1" 1561 | resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-0.1.1.tgz#ab2533d77ad733561124c3dc0f5cd8b90054c86b" 1562 | dependencies: 1563 | unc-path-regex "^0.1.0" 1564 | 1565 | is-utf8@^0.2.0: 1566 | version "0.2.1" 1567 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1568 | 1569 | is-valid-glob@^0.3.0: 1570 | version "0.3.0" 1571 | resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-0.3.0.tgz#d4b55c69f51886f9b65c70d6c2622d37e29f48fe" 1572 | 1573 | is-windows@^0.2.0: 1574 | version "0.2.0" 1575 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" 1576 | 1577 | isarray@~1.0.0, isarray@1.0.0: 1578 | version "1.0.0" 1579 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1580 | 1581 | isarray@0.0.1: 1582 | version "0.0.1" 1583 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1584 | 1585 | isexe@^1.1.1: 1586 | version "1.1.2" 1587 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 1588 | 1589 | isobject@^2.0.0: 1590 | version "2.1.0" 1591 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1592 | dependencies: 1593 | isarray "1.0.0" 1594 | 1595 | isstream@~0.1.2, isstream@0.1.x: 1596 | version "0.1.2" 1597 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1598 | 1599 | jodid25519@^1.0.0: 1600 | version "1.0.2" 1601 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1602 | dependencies: 1603 | jsbn "~0.1.0" 1604 | 1605 | js-tokens@^2.0.0: 1606 | version "2.0.0" 1607 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" 1608 | 1609 | jsbn@~0.1.0: 1610 | version "0.1.0" 1611 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 1612 | 1613 | jsesc@^1.3.0: 1614 | version "1.3.0" 1615 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1616 | 1617 | jsesc@~0.5.0: 1618 | version "0.5.0" 1619 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1620 | 1621 | json-schema@0.2.3: 1622 | version "0.2.3" 1623 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1624 | 1625 | json-stable-stringify@^1.0.0: 1626 | version "1.0.1" 1627 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1628 | dependencies: 1629 | jsonify "~0.0.0" 1630 | 1631 | json-stringify-safe@~5.0.1: 1632 | version "5.0.1" 1633 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1634 | 1635 | json5@^0.5.0: 1636 | version "0.5.0" 1637 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.0.tgz#9b20715b026cbe3778fd769edccd822d8332a5b2" 1638 | 1639 | jsonify@~0.0.0: 1640 | version "0.0.0" 1641 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1642 | 1643 | jsonplus@^1.2.1: 1644 | version "1.2.1" 1645 | resolved "https://registry.yarnpkg.com/jsonplus/-/jsonplus-1.2.1.tgz#f77ea4fc95b8bc929be673f19245e9ba1dc69296" 1646 | dependencies: 1647 | lodash "^3.10.1" 1648 | strip-json-comments "^1.0.4" 1649 | 1650 | jsonpointer@^4.0.0: 1651 | version "4.0.0" 1652 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5" 1653 | 1654 | jsprim@^1.2.2: 1655 | version "1.3.1" 1656 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 1657 | dependencies: 1658 | extsprintf "1.0.2" 1659 | json-schema "0.2.3" 1660 | verror "1.3.6" 1661 | 1662 | kind-of@^3.0.2: 1663 | version "3.0.4" 1664 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.0.4.tgz#7b8ecf18a4e17f8269d73b501c9f232c96887a74" 1665 | dependencies: 1666 | is-buffer "^1.0.2" 1667 | 1668 | lazystream@^1.0.0: 1669 | version "1.0.0" 1670 | resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" 1671 | dependencies: 1672 | readable-stream "^2.0.5" 1673 | 1674 | liftoff@^2.1.0: 1675 | version "2.3.0" 1676 | resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.3.0.tgz#a98f2ff67183d8ba7cfaca10548bd7ff0550b385" 1677 | dependencies: 1678 | extend "^3.0.0" 1679 | findup-sync "^0.4.2" 1680 | fined "^1.0.1" 1681 | flagged-respawn "^0.3.2" 1682 | lodash.isplainobject "^4.0.4" 1683 | lodash.isstring "^4.0.1" 1684 | lodash.mapvalues "^4.4.0" 1685 | rechoir "^0.6.2" 1686 | resolve "^1.1.7" 1687 | 1688 | load-json-file@^1.0.0: 1689 | version "1.1.0" 1690 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1691 | dependencies: 1692 | graceful-fs "^4.1.2" 1693 | parse-json "^2.2.0" 1694 | pify "^2.0.0" 1695 | pinkie-promise "^2.0.0" 1696 | strip-bom "^2.0.0" 1697 | 1698 | lodash._basecopy@^3.0.0: 1699 | version "3.0.1" 1700 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1701 | 1702 | lodash._basetostring@^3.0.0: 1703 | version "3.0.1" 1704 | resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5" 1705 | 1706 | lodash._basevalues@^3.0.0: 1707 | version "3.0.0" 1708 | resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" 1709 | 1710 | lodash._getnative@^3.0.0: 1711 | version "3.9.1" 1712 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1713 | 1714 | lodash._isiterateecall@^3.0.0: 1715 | version "3.0.9" 1716 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1717 | 1718 | lodash._reescape@^3.0.0: 1719 | version "3.0.0" 1720 | resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a" 1721 | 1722 | lodash._reevaluate@^3.0.0: 1723 | version "3.0.0" 1724 | resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed" 1725 | 1726 | lodash._reinterpolate@^3.0.0: 1727 | version "3.0.0" 1728 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 1729 | 1730 | lodash._root@^3.0.0: 1731 | version "3.0.1" 1732 | resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" 1733 | 1734 | lodash.assignwith@^4.0.7: 1735 | version "4.2.0" 1736 | resolved "https://registry.yarnpkg.com/lodash.assignwith/-/lodash.assignwith-4.2.0.tgz#127a97f02adc41751a954d24b0de17e100e038eb" 1737 | 1738 | lodash.escape@^3.0.0: 1739 | version "3.2.0" 1740 | resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698" 1741 | dependencies: 1742 | lodash._root "^3.0.0" 1743 | 1744 | lodash.isarguments@^3.0.0: 1745 | version "3.1.0" 1746 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1747 | 1748 | lodash.isarray@^3.0.0: 1749 | version "3.0.4" 1750 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1751 | 1752 | lodash.isempty@^4.2.1: 1753 | version "4.4.0" 1754 | resolved "https://registry.yarnpkg.com/lodash.isempty/-/lodash.isempty-4.4.0.tgz#6f86cbedd8be4ec987be9aaf33c9684db1b31e7e" 1755 | 1756 | lodash.isequal@^4.0.0: 1757 | version "4.4.0" 1758 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.4.0.tgz#6295768e98e14dc15ce8d362ef6340db82852031" 1759 | 1760 | lodash.isplainobject@^4.0.4: 1761 | version "4.0.6" 1762 | resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" 1763 | 1764 | lodash.isstring@^4.0.1: 1765 | version "4.0.1" 1766 | resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" 1767 | 1768 | lodash.keys@^3.0.0: 1769 | version "3.1.2" 1770 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1771 | dependencies: 1772 | lodash._getnative "^3.0.0" 1773 | lodash.isarguments "^3.0.0" 1774 | lodash.isarray "^3.0.0" 1775 | 1776 | lodash.mapvalues@^4.4.0: 1777 | version "4.6.0" 1778 | resolved "https://registry.yarnpkg.com/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz#1bafa5005de9dd6f4f26668c30ca37230cc9689c" 1779 | 1780 | lodash.pick@^4.2.1: 1781 | version "4.4.0" 1782 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" 1783 | 1784 | lodash.restparam@^3.0.0: 1785 | version "3.6.1" 1786 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 1787 | 1788 | lodash.template@^3.0.0: 1789 | version "3.6.2" 1790 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f" 1791 | dependencies: 1792 | lodash._basecopy "^3.0.0" 1793 | lodash._basetostring "^3.0.0" 1794 | lodash._basevalues "^3.0.0" 1795 | lodash._isiterateecall "^3.0.0" 1796 | lodash._reinterpolate "^3.0.0" 1797 | lodash.escape "^3.0.0" 1798 | lodash.keys "^3.0.0" 1799 | lodash.restparam "^3.0.0" 1800 | lodash.templatesettings "^3.0.0" 1801 | 1802 | lodash.templatesettings@^3.0.0: 1803 | version "3.1.1" 1804 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5" 1805 | dependencies: 1806 | lodash._reinterpolate "^3.0.0" 1807 | lodash.escape "^3.0.0" 1808 | 1809 | lodash@^3.10.1, lodash@3.x: 1810 | version "3.10.1" 1811 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 1812 | 1813 | lodash@^4.2.0, lodash@^4.3.0: 1814 | version "4.16.6" 1815 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.6.tgz#d22c9ac660288f3843e16ba7d2b5d06cca27d777" 1816 | 1817 | lodash@~1.0.1: 1818 | version "1.0.2" 1819 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-1.0.2.tgz#8f57560c83b59fc270bd3d561b690043430e2551" 1820 | 1821 | lodash@~4.11.1: 1822 | version "4.11.2" 1823 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.11.2.tgz#d6b4338b110a58e21dae5cebcfdbbfd2bc4cdb3b" 1824 | 1825 | loose-envify@^1.0.0: 1826 | version "1.3.0" 1827 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8" 1828 | dependencies: 1829 | js-tokens "^2.0.0" 1830 | 1831 | loud-rejection@^1.0.0: 1832 | version "1.6.0" 1833 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1834 | dependencies: 1835 | currently-unhandled "^0.4.1" 1836 | signal-exit "^3.0.0" 1837 | 1838 | lru-cache@2: 1839 | version "2.7.3" 1840 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" 1841 | 1842 | map-cache@^0.2.0: 1843 | version "0.2.2" 1844 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1845 | 1846 | map-obj@^1.0.0, map-obj@^1.0.1: 1847 | version "1.0.1" 1848 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1849 | 1850 | meow@^3.3.0: 1851 | version "3.7.0" 1852 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1853 | dependencies: 1854 | camelcase-keys "^2.0.0" 1855 | decamelize "^1.1.2" 1856 | loud-rejection "^1.0.0" 1857 | map-obj "^1.0.1" 1858 | minimist "^1.1.3" 1859 | normalize-package-data "^2.3.4" 1860 | object-assign "^4.0.1" 1861 | read-pkg-up "^1.0.1" 1862 | redent "^1.0.0" 1863 | trim-newlines "^1.0.0" 1864 | 1865 | merge-stream@^1.0.0: 1866 | version "1.0.0" 1867 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.0.tgz#9cfd156fef35421e2b5403ce11dc6eb1962b026e" 1868 | dependencies: 1869 | readable-stream "^2.0.1" 1870 | 1871 | micromatch@^2.1.5, micromatch@^2.3.7: 1872 | version "2.3.11" 1873 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1874 | dependencies: 1875 | arr-diff "^2.0.0" 1876 | array-unique "^0.2.1" 1877 | braces "^1.8.2" 1878 | expand-brackets "^0.1.4" 1879 | extglob "^0.3.1" 1880 | filename-regex "^2.0.0" 1881 | is-extglob "^1.0.0" 1882 | is-glob "^2.0.1" 1883 | kind-of "^3.0.2" 1884 | normalize-path "^2.0.1" 1885 | object.omit "^2.0.0" 1886 | parse-glob "^3.0.4" 1887 | regex-cache "^0.4.2" 1888 | 1889 | mime-db@~1.24.0: 1890 | version "1.24.0" 1891 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.24.0.tgz#e2d13f939f0016c6e4e9ad25a8652f126c467f0c" 1892 | 1893 | mime-types@^2.1.12, mime-types@~2.1.7: 1894 | version "2.1.12" 1895 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.12.tgz#152ba256777020dd4663f54c2e7bc26381e71729" 1896 | dependencies: 1897 | mime-db "~1.24.0" 1898 | 1899 | minimatch@^2.0.1: 1900 | version "2.0.10" 1901 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" 1902 | dependencies: 1903 | brace-expansion "^1.0.0" 1904 | 1905 | minimatch@^3.0.0, minimatch@^3.0.2, "minimatch@2 || 3": 1906 | version "3.0.3" 1907 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1908 | dependencies: 1909 | brace-expansion "^1.0.0" 1910 | 1911 | minimatch@~0.2.11: 1912 | version "0.2.14" 1913 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.2.14.tgz#c74e780574f63c6f9a090e90efbe6ef53a6a756a" 1914 | dependencies: 1915 | lru-cache "2" 1916 | sigmund "~1.0.0" 1917 | 1918 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: 1919 | version "1.2.0" 1920 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1921 | 1922 | minimist@0.0.8: 1923 | version "0.0.8" 1924 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1925 | 1926 | mkdirp@^0.5.0, mkdirp@^0.5.1, "mkdirp@>=0.5 0", mkdirp@~0.5.1, mkdirp@0.x.x: 1927 | version "0.5.1" 1928 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1929 | dependencies: 1930 | minimist "0.0.8" 1931 | 1932 | ms@0.7.1: 1933 | version "0.7.1" 1934 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1935 | 1936 | multipipe@^0.1.2: 1937 | version "0.1.2" 1938 | resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b" 1939 | dependencies: 1940 | duplexer2 "0.0.2" 1941 | 1942 | mute-stream@~0.0.4, mute-stream@0.0.6: 1943 | version "0.0.6" 1944 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.6.tgz#48962b19e169fd1dfc240b3f1e7317627bbc47db" 1945 | 1946 | nan@^2.3.0: 1947 | version "2.4.0" 1948 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232" 1949 | 1950 | natives@^1.1.0: 1951 | version "1.1.0" 1952 | resolved "https://registry.yarnpkg.com/natives/-/natives-1.1.0.tgz#e9ff841418a6b2ec7a495e939984f78f163e6e31" 1953 | 1954 | ncp@1.0.x: 1955 | version "1.0.1" 1956 | resolved "https://registry.yarnpkg.com/ncp/-/ncp-1.0.1.tgz#d15367e5cb87432ba117d2bf80fdf45aecfb4246" 1957 | 1958 | node-pre-gyp@^0.6.29: 1959 | version "0.6.31" 1960 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.31.tgz#d8a00ddaa301a940615dbcc8caad4024d58f6017" 1961 | dependencies: 1962 | mkdirp "~0.5.1" 1963 | nopt "~3.0.6" 1964 | npmlog "^4.0.0" 1965 | rc "~1.1.6" 1966 | request "^2.75.0" 1967 | rimraf "~2.5.4" 1968 | semver "~5.3.0" 1969 | tar "~2.2.1" 1970 | tar-pack "~3.3.0" 1971 | 1972 | node-uuid@~1.4.7: 1973 | version "1.4.7" 1974 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f" 1975 | 1976 | nopt@~3.0.6: 1977 | version "3.0.6" 1978 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1979 | dependencies: 1980 | abbrev "1" 1981 | 1982 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 1983 | version "2.3.5" 1984 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 1985 | dependencies: 1986 | hosted-git-info "^2.1.4" 1987 | is-builtin-module "^1.0.0" 1988 | semver "2 || 3 || 4 || 5" 1989 | validate-npm-package-license "^3.0.1" 1990 | 1991 | normalize-path@^2.0.1: 1992 | version "2.0.1" 1993 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 1994 | 1995 | npmlog@^4.0.0: 1996 | version "4.0.0" 1997 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.0.tgz#e094503961c70c1774eb76692080e8d578a9f88f" 1998 | dependencies: 1999 | are-we-there-yet "~1.1.2" 2000 | console-control-strings "~1.1.0" 2001 | gauge "~2.6.0" 2002 | set-blocking "~2.0.0" 2003 | 2004 | number-is-nan@^1.0.0: 2005 | version "1.0.1" 2006 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2007 | 2008 | oauth-sign@~0.8.1: 2009 | version "0.8.2" 2010 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2011 | 2012 | object-assign@^3.0.0: 2013 | version "3.0.0" 2014 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 2015 | 2016 | object-assign@^4.0.0, object-assign@^4.0.1, object-assign@^4.1.0: 2017 | version "4.1.0" 2018 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 2019 | 2020 | object.omit@^2.0.0: 2021 | version "2.0.1" 2022 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2023 | dependencies: 2024 | for-own "^0.1.4" 2025 | is-extendable "^0.1.1" 2026 | 2027 | observatory@^1.0.0: 2028 | version "1.0.0" 2029 | resolved "https://registry.yarnpkg.com/observatory/-/observatory-1.0.0.tgz#2baa606e8299e6866914ec9c8a4db6a41136e59b" 2030 | dependencies: 2031 | ansi-escapes "^1.1.0" 2032 | chalk "^1.1.1" 2033 | lodash "^3.10.1" 2034 | 2035 | once@^1.3.0: 2036 | version "1.4.0" 2037 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2038 | dependencies: 2039 | wrappy "1" 2040 | 2041 | once@~1.3.0, once@~1.3.3: 2042 | version "1.3.3" 2043 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2044 | dependencies: 2045 | wrappy "1" 2046 | 2047 | onetime@^1.0.0: 2048 | version "1.1.0" 2049 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2050 | 2051 | orchestrator@^0.3.0: 2052 | version "0.3.7" 2053 | resolved "https://registry.yarnpkg.com/orchestrator/-/orchestrator-0.3.7.tgz#c45064e22c5a2a7b99734f409a95ffedc7d3c3df" 2054 | dependencies: 2055 | end-of-stream "~0.1.5" 2056 | sequencify "~0.0.7" 2057 | stream-consume "~0.1.0" 2058 | 2059 | ordered-read-streams@^0.1.0: 2060 | version "0.1.0" 2061 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz#fd565a9af8eb4473ba69b6ed8a34352cb552f126" 2062 | 2063 | ordered-read-streams@^0.3.0: 2064 | version "0.3.0" 2065 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz#7137e69b3298bb342247a1bbee3881c80e2fd78b" 2066 | dependencies: 2067 | is-stream "^1.0.1" 2068 | readable-stream "^2.0.1" 2069 | 2070 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2071 | version "1.0.2" 2072 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2073 | 2074 | os-shim@^0.1.2: 2075 | version "0.1.3" 2076 | resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 2077 | 2078 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 2079 | version "1.0.2" 2080 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2081 | 2082 | osenv@^0.1.3: 2083 | version "0.1.3" 2084 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.3.tgz#83cf05c6d6458fc4d5ac6362ea325d92f2754217" 2085 | dependencies: 2086 | os-homedir "^1.0.0" 2087 | os-tmpdir "^1.0.0" 2088 | 2089 | output-file-sync@^1.1.0: 2090 | version "1.1.2" 2091 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2092 | dependencies: 2093 | graceful-fs "^4.1.4" 2094 | mkdirp "^0.5.1" 2095 | object-assign "^4.1.0" 2096 | 2097 | parse-filepath@^1.0.1: 2098 | version "1.0.1" 2099 | resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.1.tgz#159d6155d43904d16c10ef698911da1e91969b73" 2100 | dependencies: 2101 | is-absolute "^0.2.3" 2102 | map-cache "^0.2.0" 2103 | path-root "^0.1.1" 2104 | 2105 | parse-glob@^3.0.4: 2106 | version "3.0.4" 2107 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2108 | dependencies: 2109 | glob-base "^0.3.0" 2110 | is-dotfile "^1.0.0" 2111 | is-extglob "^1.0.0" 2112 | is-glob "^2.0.0" 2113 | 2114 | parse-json@^2.2.0: 2115 | version "2.2.0" 2116 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2117 | dependencies: 2118 | error-ex "^1.2.0" 2119 | 2120 | path-dirname@^1.0.0: 2121 | version "1.0.2" 2122 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2123 | 2124 | path-exists@^2.0.0: 2125 | version "2.1.0" 2126 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2127 | dependencies: 2128 | pinkie-promise "^2.0.0" 2129 | 2130 | path-is-absolute@^1.0.0: 2131 | version "1.0.1" 2132 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2133 | 2134 | path-root-regex@^0.1.0: 2135 | version "0.1.2" 2136 | resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" 2137 | 2138 | path-root@^0.1.1: 2139 | version "0.1.1" 2140 | resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" 2141 | dependencies: 2142 | path-root-regex "^0.1.0" 2143 | 2144 | path-type@^1.0.0: 2145 | version "1.1.0" 2146 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2147 | dependencies: 2148 | graceful-fs "^4.1.2" 2149 | pify "^2.0.0" 2150 | pinkie-promise "^2.0.0" 2151 | 2152 | pify@^2.0.0: 2153 | version "2.3.0" 2154 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2155 | 2156 | pinkie-promise@^2.0.0: 2157 | version "2.0.1" 2158 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2159 | dependencies: 2160 | pinkie "^2.0.0" 2161 | 2162 | pinkie@^2.0.0: 2163 | version "2.0.4" 2164 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2165 | 2166 | pkginfo@0.3.x: 2167 | version "0.3.1" 2168 | resolved "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.3.1.tgz#5b29f6a81f70717142e09e765bbeab97b4f81e21" 2169 | 2170 | pkginfo@0.x.x: 2171 | version "0.4.0" 2172 | resolved "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.4.0.tgz#349dbb7ffd38081fcadc0853df687f0c7744cd65" 2173 | 2174 | preserve@^0.2.0: 2175 | version "0.2.0" 2176 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2177 | 2178 | pretty-hrtime@^1.0.0: 2179 | version "1.0.2" 2180 | resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.2.tgz#70ca96f4d0628a443b918758f79416a9a7bc9fa8" 2181 | 2182 | private@^0.1.6, private@~0.1.5: 2183 | version "0.1.6" 2184 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 2185 | 2186 | process-nextick-args@~1.0.6: 2187 | version "1.0.7" 2188 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2189 | 2190 | prompt@^1.0.0: 2191 | version "1.0.0" 2192 | resolved "https://registry.yarnpkg.com/prompt/-/prompt-1.0.0.tgz#8e57123c396ab988897fb327fd3aedc3e735e4fe" 2193 | dependencies: 2194 | colors "^1.1.2" 2195 | pkginfo "0.x.x" 2196 | read "1.0.x" 2197 | revalidator "0.1.x" 2198 | utile "0.3.x" 2199 | winston "2.1.x" 2200 | 2201 | punycode@^1.4.1: 2202 | version "1.4.1" 2203 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2204 | 2205 | qs@~6.3.0: 2206 | version "6.3.0" 2207 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 2208 | 2209 | randomatic@^1.1.3: 2210 | version "1.1.5" 2211 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.5.tgz#5e9ef5f2d573c67bd2b8124ae90b5156e457840b" 2212 | dependencies: 2213 | is-number "^2.0.2" 2214 | kind-of "^3.0.2" 2215 | 2216 | rc@~1.1.6: 2217 | version "1.1.6" 2218 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 2219 | dependencies: 2220 | deep-extend "~0.4.0" 2221 | ini "~1.3.0" 2222 | minimist "^1.2.0" 2223 | strip-json-comments "~1.0.4" 2224 | 2225 | read-pkg-up@^1.0.1: 2226 | version "1.0.1" 2227 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2228 | dependencies: 2229 | find-up "^1.0.0" 2230 | read-pkg "^1.0.0" 2231 | 2232 | read-pkg@^1.0.0: 2233 | version "1.1.0" 2234 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2235 | dependencies: 2236 | load-json-file "^1.0.0" 2237 | normalize-package-data "^2.3.2" 2238 | path-type "^1.0.0" 2239 | 2240 | read@1.0.x: 2241 | version "1.0.7" 2242 | resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" 2243 | dependencies: 2244 | mute-stream "~0.0.4" 2245 | 2246 | readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.5, readable-stream@~2.1.4: 2247 | version "2.1.5" 2248 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 2249 | dependencies: 2250 | buffer-shims "^1.0.0" 2251 | core-util-is "~1.0.0" 2252 | inherits "~2.0.1" 2253 | isarray "~1.0.0" 2254 | process-nextick-args "~1.0.6" 2255 | string_decoder "~0.10.x" 2256 | util-deprecate "~1.0.1" 2257 | 2258 | "readable-stream@>=1.0.33-1 <1.1.0-0", readable-stream@~1.0.0: 2259 | version "1.0.34" 2260 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 2261 | dependencies: 2262 | core-util-is "~1.0.0" 2263 | inherits "~2.0.1" 2264 | isarray "0.0.1" 2265 | string_decoder "~0.10.x" 2266 | 2267 | readable-stream@~1.1.9: 2268 | version "1.1.14" 2269 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 2270 | dependencies: 2271 | core-util-is "~1.0.0" 2272 | inherits "~2.0.1" 2273 | isarray "0.0.1" 2274 | string_decoder "~0.10.x" 2275 | 2276 | readable-stream@~2.0.0: 2277 | version "2.0.6" 2278 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 2279 | dependencies: 2280 | core-util-is "~1.0.0" 2281 | inherits "~2.0.1" 2282 | isarray "~1.0.0" 2283 | process-nextick-args "~1.0.6" 2284 | string_decoder "~0.10.x" 2285 | util-deprecate "~1.0.1" 2286 | 2287 | readdirp@^2.0.0: 2288 | version "2.1.0" 2289 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2290 | dependencies: 2291 | graceful-fs "^4.1.2" 2292 | minimatch "^3.0.2" 2293 | readable-stream "^2.0.2" 2294 | set-immediate-shim "^1.0.1" 2295 | 2296 | rechoir@^0.6.2: 2297 | version "0.6.2" 2298 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2299 | dependencies: 2300 | resolve "^1.1.6" 2301 | 2302 | redent@^1.0.0: 2303 | version "1.0.0" 2304 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 2305 | dependencies: 2306 | indent-string "^2.1.0" 2307 | strip-indent "^1.0.1" 2308 | 2309 | regenerate@^1.2.1: 2310 | version "1.3.1" 2311 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.1.tgz#0300203a5d2fdcf89116dce84275d011f5903f33" 2312 | 2313 | regenerator-runtime@^0.9.5: 2314 | version "0.9.5" 2315 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.9.5.tgz#403d6d40a4bdff9c330dd9392dcbb2d9a8bba1fc" 2316 | 2317 | regex-cache@^0.4.2: 2318 | version "0.4.3" 2319 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2320 | dependencies: 2321 | is-equal-shallow "^0.1.3" 2322 | is-primitive "^2.0.0" 2323 | 2324 | regexpu-core@^2.0.0: 2325 | version "2.0.0" 2326 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2327 | dependencies: 2328 | regenerate "^1.2.1" 2329 | regjsgen "^0.2.0" 2330 | regjsparser "^0.1.4" 2331 | 2332 | regjsgen@^0.2.0: 2333 | version "0.2.0" 2334 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2335 | 2336 | regjsparser@^0.1.4: 2337 | version "0.1.5" 2338 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2339 | dependencies: 2340 | jsesc "~0.5.0" 2341 | 2342 | repeat-element@^1.1.2: 2343 | version "1.1.2" 2344 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2345 | 2346 | repeat-string@^1.5.2: 2347 | version "1.6.1" 2348 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2349 | 2350 | repeating@^2.0.0: 2351 | version "2.0.1" 2352 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2353 | dependencies: 2354 | is-finite "^1.0.0" 2355 | 2356 | replace-ext@0.0.1: 2357 | version "0.0.1" 2358 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" 2359 | 2360 | request@^2.75.0: 2361 | version "2.76.0" 2362 | resolved "https://registry.yarnpkg.com/request/-/request-2.76.0.tgz#be44505afef70360a0436955106be3945d95560e" 2363 | dependencies: 2364 | aws-sign2 "~0.6.0" 2365 | aws4 "^1.2.1" 2366 | caseless "~0.11.0" 2367 | combined-stream "~1.0.5" 2368 | extend "~3.0.0" 2369 | forever-agent "~0.6.1" 2370 | form-data "~2.1.1" 2371 | har-validator "~2.0.6" 2372 | hawk "~3.1.3" 2373 | http-signature "~1.1.0" 2374 | is-typedarray "~1.0.0" 2375 | isstream "~0.1.2" 2376 | json-stringify-safe "~5.0.1" 2377 | mime-types "~2.1.7" 2378 | node-uuid "~1.4.7" 2379 | oauth-sign "~0.8.1" 2380 | qs "~6.3.0" 2381 | stringstream "~0.0.4" 2382 | tough-cookie "~2.3.0" 2383 | tunnel-agent "~0.4.1" 2384 | 2385 | resolve-dir@^0.1.0: 2386 | version "0.1.1" 2387 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e" 2388 | dependencies: 2389 | expand-tilde "^1.2.2" 2390 | global-modules "^0.2.3" 2391 | 2392 | resolve@^1.1.6, resolve@^1.1.7: 2393 | version "1.1.7" 2394 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2395 | 2396 | restore-cursor@^1.0.1: 2397 | version "1.0.1" 2398 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2399 | dependencies: 2400 | exit-hook "^1.0.0" 2401 | onetime "^1.0.0" 2402 | 2403 | revalidator@0.1.x: 2404 | version "0.1.8" 2405 | resolved "https://registry.yarnpkg.com/revalidator/-/revalidator-0.1.8.tgz#fece61bfa0c1b52a206bd6b18198184bdd523a3b" 2406 | 2407 | rimraf@~2.5.1, rimraf@~2.5.4, rimraf@2, rimraf@2.x.x: 2408 | version "2.5.4" 2409 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 2410 | dependencies: 2411 | glob "^7.0.5" 2412 | 2413 | run-async@^2.2.0: 2414 | version "2.2.0" 2415 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.2.0.tgz#8783abd83c7bb86f41ee0602fc82404b3bd6e8b9" 2416 | dependencies: 2417 | is-promise "^2.1.0" 2418 | pinkie-promise "^2.0.0" 2419 | 2420 | rx@^4.1.0: 2421 | version "4.1.0" 2422 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" 2423 | 2424 | scp2@^0.5.0: 2425 | version "0.5.0" 2426 | resolved "https://registry.yarnpkg.com/scp2/-/scp2-0.5.0.tgz#64ee74bc3685f3a4c6290f2da8c1e3b4eef92e8d" 2427 | dependencies: 2428 | async "~0.9.0" 2429 | glob "~7.0.3" 2430 | lodash "~4.11.1" 2431 | ssh2 "~0.4.10" 2432 | 2433 | semver@^4.1.0: 2434 | version "4.3.6" 2435 | resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" 2436 | 2437 | semver@~5.3.0, "semver@2 || 3 || 4 || 5": 2438 | version "5.3.0" 2439 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2440 | 2441 | sequencify@~0.0.7: 2442 | version "0.0.7" 2443 | resolved "https://registry.yarnpkg.com/sequencify/-/sequencify-0.0.7.tgz#90cff19d02e07027fd767f5ead3e7b95d1e7380c" 2444 | 2445 | set-blocking@~2.0.0: 2446 | version "2.0.0" 2447 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2448 | 2449 | set-immediate-shim@^1.0.1: 2450 | version "1.0.1" 2451 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2452 | 2453 | sigmund@~1.0.0: 2454 | version "1.0.1" 2455 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 2456 | 2457 | signal-exit@^3.0.0: 2458 | version "3.0.1" 2459 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.1.tgz#5a4c884992b63a7acd9badb7894c3ee9cfccad81" 2460 | 2461 | slash@^1.0.0: 2462 | version "1.0.0" 2463 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2464 | 2465 | sntp@1.x.x: 2466 | version "1.0.9" 2467 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2468 | dependencies: 2469 | hoek "2.x.x" 2470 | 2471 | source-map-support@^0.4.2: 2472 | version "0.4.6" 2473 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.6.tgz#32552aa64b458392a85eab3b0b5ee61527167aeb" 2474 | dependencies: 2475 | source-map "^0.5.3" 2476 | 2477 | source-map@^0.5.0, source-map@^0.5.1, source-map@^0.5.3, source-map@~0.5.3: 2478 | version "0.5.6" 2479 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2480 | 2481 | sparkles@^1.0.0: 2482 | version "1.0.0" 2483 | resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3" 2484 | 2485 | spawn-sync@^1.0.15: 2486 | version "1.0.15" 2487 | resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476" 2488 | dependencies: 2489 | concat-stream "^1.4.7" 2490 | os-shim "^0.1.2" 2491 | 2492 | spdx-correct@~1.0.0: 2493 | version "1.0.2" 2494 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2495 | dependencies: 2496 | spdx-license-ids "^1.0.2" 2497 | 2498 | spdx-expression-parse@~1.0.0: 2499 | version "1.0.4" 2500 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2501 | 2502 | spdx-license-ids@^1.0.2: 2503 | version "1.2.2" 2504 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2505 | 2506 | ssh2-streams@~0.0.22: 2507 | version "0.0.23" 2508 | resolved "https://registry.yarnpkg.com/ssh2-streams/-/ssh2-streams-0.0.23.tgz#aeef30831bb5fc4af6aa3f6d0a261a413531612b" 2509 | dependencies: 2510 | asn1 "~0.2.0" 2511 | readable-stream "~1.0.0" 2512 | streamsearch "~0.1.2" 2513 | 2514 | ssh2@~0.4.10: 2515 | version "0.4.15" 2516 | resolved "https://registry.yarnpkg.com/ssh2/-/ssh2-0.4.15.tgz#07c6f4106d9f7b6ea6e4df636c6c53f1f9817ff8" 2517 | dependencies: 2518 | readable-stream "~1.0.0" 2519 | ssh2-streams "~0.0.22" 2520 | 2521 | sshpk@^1.7.0: 2522 | version "1.10.1" 2523 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0" 2524 | dependencies: 2525 | asn1 "~0.2.3" 2526 | assert-plus "^1.0.0" 2527 | dashdash "^1.12.0" 2528 | getpass "^0.1.1" 2529 | optionalDependencies: 2530 | bcrypt-pbkdf "^1.0.0" 2531 | ecc-jsbn "~0.1.1" 2532 | jodid25519 "^1.0.0" 2533 | jsbn "~0.1.0" 2534 | tweetnacl "~0.14.0" 2535 | 2536 | stack-trace@0.0.x: 2537 | version "0.0.9" 2538 | resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.9.tgz#a8f6eaeca90674c333e7c43953f275b451510695" 2539 | 2540 | stream-consume@~0.1.0: 2541 | version "0.1.0" 2542 | resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.0.tgz#a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f" 2543 | 2544 | stream-shift@^1.0.0: 2545 | version "1.0.0" 2546 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 2547 | 2548 | streamsearch@~0.1.2: 2549 | version "0.1.2" 2550 | resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-0.1.2.tgz#808b9d0e56fc273d809ba57338e929919a1a9f1a" 2551 | 2552 | string_decoder@~0.10.x: 2553 | version "0.10.31" 2554 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2555 | 2556 | string-width@^1.0.1: 2557 | version "1.0.2" 2558 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2559 | dependencies: 2560 | code-point-at "^1.0.0" 2561 | is-fullwidth-code-point "^1.0.0" 2562 | strip-ansi "^3.0.0" 2563 | 2564 | stringstream@~0.0.4: 2565 | version "0.0.5" 2566 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2567 | 2568 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2569 | version "3.0.1" 2570 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2571 | dependencies: 2572 | ansi-regex "^2.0.0" 2573 | 2574 | strip-bom-stream@^1.0.0: 2575 | version "1.0.0" 2576 | resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz#e7144398577d51a6bed0fa1994fa05f43fd988ee" 2577 | dependencies: 2578 | first-chunk-stream "^1.0.0" 2579 | strip-bom "^2.0.0" 2580 | 2581 | strip-bom@^1.0.0: 2582 | version "1.0.0" 2583 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-1.0.0.tgz#85b8862f3844b5a6d5ec8467a93598173a36f794" 2584 | dependencies: 2585 | first-chunk-stream "^1.0.0" 2586 | is-utf8 "^0.2.0" 2587 | 2588 | strip-bom@^2.0.0: 2589 | version "2.0.0" 2590 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2591 | dependencies: 2592 | is-utf8 "^0.2.0" 2593 | 2594 | strip-indent@^1.0.1: 2595 | version "1.0.1" 2596 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2597 | dependencies: 2598 | get-stdin "^4.0.1" 2599 | 2600 | strip-json-comments@^1.0.4, strip-json-comments@~1.0.4: 2601 | version "1.0.4" 2602 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 2603 | 2604 | supports-color@^2.0.0: 2605 | version "2.0.0" 2606 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2607 | 2608 | tar-pack@~3.3.0: 2609 | version "3.3.0" 2610 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 2611 | dependencies: 2612 | debug "~2.2.0" 2613 | fstream "~1.0.10" 2614 | fstream-ignore "~1.0.5" 2615 | once "~1.3.3" 2616 | readable-stream "~2.1.4" 2617 | rimraf "~2.5.1" 2618 | tar "~2.2.1" 2619 | uid-number "~0.0.6" 2620 | 2621 | tar@~2.2.1: 2622 | version "2.2.1" 2623 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2624 | dependencies: 2625 | block-stream "*" 2626 | fstream "^1.0.2" 2627 | inherits "2" 2628 | 2629 | through@^2.3.6: 2630 | version "2.3.8" 2631 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2632 | 2633 | through2-filter@^2.0.0: 2634 | version "2.0.0" 2635 | resolved "https://registry.yarnpkg.com/through2-filter/-/through2-filter-2.0.0.tgz#60bc55a0dacb76085db1f9dae99ab43f83d622ec" 2636 | dependencies: 2637 | through2 "~2.0.0" 2638 | xtend "~4.0.0" 2639 | 2640 | through2@^0.6.0, through2@^0.6.1: 2641 | version "0.6.5" 2642 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 2643 | dependencies: 2644 | readable-stream ">=1.0.33-1 <1.1.0-0" 2645 | xtend ">=4.0.0 <4.1.0-0" 2646 | 2647 | through2@^2.0.0, through2@~2.0.0, through2@~2.0.1: 2648 | version "2.0.1" 2649 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.1.tgz#384e75314d49f32de12eebb8136b8eb6b5d59da9" 2650 | dependencies: 2651 | readable-stream "~2.0.0" 2652 | xtend "~4.0.0" 2653 | 2654 | tildify@^1.0.0: 2655 | version "1.2.0" 2656 | resolved "https://registry.yarnpkg.com/tildify/-/tildify-1.2.0.tgz#dcec03f55dca9b7aa3e5b04f21817eb56e63588a" 2657 | dependencies: 2658 | os-homedir "^1.0.0" 2659 | 2660 | time-stamp@^1.0.0: 2661 | version "1.0.1" 2662 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.0.1.tgz#9f4bd23559c9365966f3302dbba2b07c6b99b151" 2663 | 2664 | tmp@^0.0.29: 2665 | version "0.0.29" 2666 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.29.tgz#f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0" 2667 | dependencies: 2668 | os-tmpdir "~1.0.1" 2669 | 2670 | to-absolute-glob@^0.1.1: 2671 | version "0.1.1" 2672 | resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz#1cdfa472a9ef50c239ee66999b662ca0eb39937f" 2673 | dependencies: 2674 | extend-shallow "^2.0.1" 2675 | 2676 | to-fast-properties@^1.0.1: 2677 | version "1.0.2" 2678 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 2679 | 2680 | tough-cookie@~2.3.0: 2681 | version "2.3.2" 2682 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2683 | dependencies: 2684 | punycode "^1.4.1" 2685 | 2686 | trim-newlines@^1.0.0: 2687 | version "1.0.0" 2688 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 2689 | 2690 | tunnel-agent@~0.4.1: 2691 | version "0.4.3" 2692 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 2693 | 2694 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2695 | version "0.14.3" 2696 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.3.tgz#3da382f670f25ded78d7b3d1792119bca0b7132d" 2697 | 2698 | typedarray@~0.0.5: 2699 | version "0.0.6" 2700 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2701 | 2702 | typescript@^2.0.6: 2703 | version "2.0.6" 2704 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.0.6.tgz#5385499ac9811508c2c43e0ea07a1ddca435e111" 2705 | 2706 | uid-number@~0.0.6: 2707 | version "0.0.6" 2708 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2709 | 2710 | unc-path-regex@^0.1.0: 2711 | version "0.1.2" 2712 | resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" 2713 | 2714 | underscore.string@2.3.x: 2715 | version "2.3.3" 2716 | resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-2.3.3.tgz#71c08bf6b428b1133f37e78fa3a21c82f7329b0d" 2717 | 2718 | unique-stream@^1.0.0: 2719 | version "1.0.0" 2720 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-1.0.0.tgz#d59a4a75427447d9aa6c91e70263f8d26a4b104b" 2721 | 2722 | unique-stream@^2.0.2: 2723 | version "2.2.1" 2724 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-2.2.1.tgz#5aa003cfbe94c5ff866c4e7d668bb1c4dbadb369" 2725 | dependencies: 2726 | json-stable-stringify "^1.0.0" 2727 | through2-filter "^2.0.0" 2728 | 2729 | upath@^0.2.0: 2730 | version "0.2.0" 2731 | resolved "https://registry.yarnpkg.com/upath/-/upath-0.2.0.tgz#bdbad0f2c60afea165f8127dbb1b5bdee500ad81" 2732 | dependencies: 2733 | lodash "3.x" 2734 | underscore.string "2.3.x" 2735 | 2736 | user-home@^1.1.1: 2737 | version "1.1.1" 2738 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2739 | 2740 | util-deprecate@~1.0.1: 2741 | version "1.0.2" 2742 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2743 | 2744 | utile@0.3.x: 2745 | version "0.3.0" 2746 | resolved "https://registry.yarnpkg.com/utile/-/utile-0.3.0.tgz#1352c340eb820e4d8ddba039a4fbfaa32ed4ef3a" 2747 | dependencies: 2748 | async "~0.9.0" 2749 | deep-equal "~0.2.1" 2750 | i "0.3.x" 2751 | mkdirp "0.x.x" 2752 | ncp "1.0.x" 2753 | rimraf "2.x.x" 2754 | 2755 | v8flags@^2.0.10, v8flags@^2.0.2: 2756 | version "2.0.11" 2757 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 2758 | dependencies: 2759 | user-home "^1.1.1" 2760 | 2761 | vali-date@^1.0.0: 2762 | version "1.0.0" 2763 | resolved "https://registry.yarnpkg.com/vali-date/-/vali-date-1.0.0.tgz#1b904a59609fb328ef078138420934f6b86709a6" 2764 | 2765 | validate-npm-package-license@^3.0.1: 2766 | version "3.0.1" 2767 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2768 | dependencies: 2769 | spdx-correct "~1.0.0" 2770 | spdx-expression-parse "~1.0.0" 2771 | 2772 | verror@1.3.6: 2773 | version "1.3.6" 2774 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2775 | dependencies: 2776 | extsprintf "1.0.2" 2777 | 2778 | vinyl-fs@^0.3.0: 2779 | version "0.3.14" 2780 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-0.3.14.tgz#9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6" 2781 | dependencies: 2782 | defaults "^1.0.0" 2783 | glob-stream "^3.1.5" 2784 | glob-watcher "^0.0.6" 2785 | graceful-fs "^3.0.0" 2786 | mkdirp "^0.5.0" 2787 | strip-bom "^1.0.0" 2788 | through2 "^0.6.1" 2789 | vinyl "^0.4.0" 2790 | 2791 | vinyl-fs@~2.4.3: 2792 | version "2.4.4" 2793 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-2.4.4.tgz#be6ff3270cb55dfd7d3063640de81f25d7532239" 2794 | dependencies: 2795 | duplexify "^3.2.0" 2796 | glob-stream "^5.3.2" 2797 | graceful-fs "^4.0.0" 2798 | gulp-sourcemaps "1.6.0" 2799 | is-valid-glob "^0.3.0" 2800 | lazystream "^1.0.0" 2801 | lodash.isequal "^4.0.0" 2802 | merge-stream "^1.0.0" 2803 | mkdirp "^0.5.0" 2804 | object-assign "^4.0.0" 2805 | readable-stream "^2.0.4" 2806 | strip-bom "^2.0.0" 2807 | strip-bom-stream "^1.0.0" 2808 | through2 "^2.0.0" 2809 | through2-filter "^2.0.0" 2810 | vali-date "^1.0.0" 2811 | vinyl "^1.0.0" 2812 | 2813 | vinyl-sourcemaps-apply@^0.2.0: 2814 | version "0.2.1" 2815 | resolved "https://registry.yarnpkg.com/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz#ab6549d61d172c2b1b87be5c508d239c8ef87705" 2816 | dependencies: 2817 | source-map "^0.5.1" 2818 | 2819 | vinyl@^0.4.0: 2820 | version "0.4.6" 2821 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847" 2822 | dependencies: 2823 | clone "^0.2.0" 2824 | clone-stats "^0.0.1" 2825 | 2826 | vinyl@^0.5.0: 2827 | version "0.5.3" 2828 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde" 2829 | dependencies: 2830 | clone "^1.0.0" 2831 | clone-stats "^0.0.1" 2832 | replace-ext "0.0.1" 2833 | 2834 | vinyl@^1.0.0: 2835 | version "1.2.0" 2836 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884" 2837 | dependencies: 2838 | clone "^1.0.0" 2839 | clone-stats "^0.0.1" 2840 | replace-ext "0.0.1" 2841 | 2842 | which@^1.2.10: 2843 | version "1.2.11" 2844 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.11.tgz#c8b2eeea6b8c1659fa7c1dd4fdaabe9533dc5e8b" 2845 | dependencies: 2846 | isexe "^1.1.1" 2847 | 2848 | wide-align@^1.1.0: 2849 | version "1.1.0" 2850 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 2851 | dependencies: 2852 | string-width "^1.0.1" 2853 | 2854 | winston@2.1.x: 2855 | version "2.1.1" 2856 | resolved "https://registry.yarnpkg.com/winston/-/winston-2.1.1.tgz#3c9349d196207fd1bdff9d4bc43ef72510e3a12e" 2857 | dependencies: 2858 | async "~1.0.0" 2859 | colors "1.0.x" 2860 | cycle "1.0.x" 2861 | eyes "0.1.x" 2862 | isstream "0.1.x" 2863 | pkginfo "0.3.x" 2864 | stack-trace "0.0.x" 2865 | 2866 | wrappy@1: 2867 | version "1.0.2" 2868 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2869 | 2870 | xtend@^4.0.0, "xtend@>=4.0.0 <4.1.0-0", xtend@~4.0.0: 2871 | version "4.0.1" 2872 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2873 | 2874 | --------------------------------------------------------------------------------