├── .npmignore ├── bin └── kody ├── .gitignore ├── .travis.yml ├── ISSUE_TEMPLATE.md ├── .prettierrc ├── .babelrc ├── PULL_REQUEST_TEMPLATE.md ├── src ├── lib │ ├── main.js │ ├── core.js │ ├── log.js │ ├── dotfiles.js │ └── kody.js └── test │ └── test.js ├── .eslintrc ├── Makefile ├── package.json ├── README.md └── yarn.lock /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | node_modules/ 4 | 5 | test/ 6 | -------------------------------------------------------------------------------- /bin/kody: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/main.js'); 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | node_modules/ 4 | 5 | test/ 6 | 7 | lib/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "6" 4 | sudo: false 5 | install: 6 | - make setup 7 | script: 8 | - make test -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### Issue summary 2 | 3 | 4 | ### Expected behavior 5 | 6 | 7 | ### Actual behavior 8 | 9 | 10 | ### Steps to reproduce 11 | 12 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "es5", 3 | "singleQuote": true, 4 | "printWidth": 80, 5 | "semi": false, 6 | "parser": "flow", 7 | "jsxBracketSameLine": true 8 | } -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [[ 3 | "env", {} 4 | ]], 5 | "plugins": [ 6 | "transform-class-properties", 7 | "transform-object-rest-spread", 8 | "syntax-async-functions", 9 | "transform-regenerator" 10 | ] 11 | } -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Fixes # || Adds new feature X 2 | === 3 | 4 | ## Changes 5 | * a 6 | * b 7 | * c 8 | 9 | ## Checks 10 | - [ ] Passes linting 11 | - [ ] Passes tests 12 | - [ ] Applicable tests created if necessary 13 | 14 | @jh3y 15 | -------------------------------------------------------------------------------- /src/lib/main.js: -------------------------------------------------------------------------------- 1 | /** 2 | * kody - dotfiles manager in node! 3 | * @author jh3y - 2018 4 | * @license MIT 5 | */ 6 | 7 | import program from 'commander' 8 | /* eslint-disable-next-line no-unused-vars */ 9 | import regeneratorRuntime from 'regenerator-runtime' 10 | import { fail } from './log' 11 | import pkg from '../package.json' 12 | import Kody from './kody' 13 | const { error } = console 14 | program.version(pkg.version).parse(process.argv) 15 | const main = async () => { 16 | try { 17 | const instance = new Kody() 18 | instance.welcome() 19 | instance.init() 20 | await instance.prompt() 21 | } catch (err) { 22 | error(fail(err.toString())) 23 | } 24 | } 25 | main() 26 | -------------------------------------------------------------------------------- /src/lib/core.js: -------------------------------------------------------------------------------- 1 | /** 2 | * kody - dotfiles manager in node! 3 | * @author jh3y - 2018 4 | * @license MIT 5 | */ 6 | 7 | import shell from 'shelljs' 8 | import ora from 'ora' 9 | import log, { detail } from './log' 10 | const { info } = console 11 | class Task { 12 | constructor(opts) { 13 | this.name = opts.name 14 | this.exec = opts.exec 15 | this.config = opts.config 16 | } 17 | run() { 18 | const { config, exec, name } = this 19 | return new Promise((resolve, reject) => { 20 | info(detail(`Running ${name}`)) 21 | if (exec && typeof exec === 'function') 22 | exec(resolve, reject, shell, config, log, ora) 23 | }) 24 | } 25 | } 26 | 27 | module.exports = Task 28 | -------------------------------------------------------------------------------- /src/lib/log.js: -------------------------------------------------------------------------------- 1 | import chalk from 'chalk' 2 | export const successBg = '#26a65b' 3 | export const defaultTxt = '#ffffff' 4 | export const infoBg = '#663399' 5 | export const errorBg = '#f22613' 6 | export const warningBg = '#f39c12' 7 | /** 8 | * util function for logging with chalk 9 | * @param { String } str - message to be displayed 10 | * @param { String } color - text color to be rendered 11 | * @param { String } bg - background color to be rendered 12 | */ 13 | const log = (str, color = defaultTxt, bg = infoBg) => 14 | chalk 15 | .hex(color) 16 | .bgHex(bg) 17 | .bold(str) 18 | export const success = msg => log(msg, defaultTxt, successBg) 19 | export const detail = msg => log(msg, defaultTxt, infoBg) 20 | export const fail = msg => log(msg, defaultTxt, errorBg) 21 | export const warning = msg => log(msg, defaultTxt, warningBg) 22 | export default log 23 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "env": { 4 | "node": true, 5 | "es6": true, 6 | "mocha": true 7 | }, 8 | "parserOptions": { 9 | "ecmaVersion": 7, 10 | "ecmaFeatures": { 11 | "experimentalObjectRestSpread": true, 12 | "jsx": true 13 | }, 14 | "sourceType": "module" 15 | }, 16 | "extends": [ 17 | "prettier", 18 | "eslint:recommended" 19 | ], 20 | "plugins": [ 21 | "prettier" 22 | ], 23 | "rules": { 24 | "prettier/prettier": [ 25 | 2, 26 | { 27 | "trailingComma": "es5", 28 | "singleQuote": true, 29 | "printWidth": 80, 30 | "semi": false, 31 | "parser": "flow", 32 | "jsxBracketSameLine": true 33 | } 34 | ], 35 | "no-unused-vars": 2, 36 | "no-console": 2, 37 | "no-restricted-syntax": 2, 38 | "no-undef": 2 39 | } 40 | } -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | MODULES = ./node_modules/.bin 2 | BABEL = $(MODULES)/babel 3 | ESLINT = $(MODULES)/eslint 4 | MOCHA = $(MODULES)/mocha 5 | 6 | SRC_BASE = src/ 7 | SCRIPT_DEST = ./ 8 | SCRIPT_SRC = $(SRC_BASE) 9 | 10 | help: 11 | @grep -E '^[a-zA-Z\._-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' 12 | 13 | lint: ## lints source 🎩 14 | $(ESLINT) $(SCRIPT_SRC) 15 | 16 | compile-script: ## compiles scripts 🛠 17 | $(BABEL) $(SCRIPT_SRC) -d $(SCRIPT_DEST) 18 | 19 | watch: compile-script ## watch for script changes and compile 🔍 20 | $(BABEL) $(SCRIPT_SRC) --watch -d $(SCRIPT_DEST) 21 | 22 | setup: ## set up project for development 🏠 23 | npm install 24 | 25 | build: ## build sources 🔨 26 | make compile-script 27 | 28 | develop: build ## run development task 👷 29 | make watch 30 | 31 | test: build ## test internal functions 👨‍⚕ 32 | make lint && $(MOCHA) 33 | 34 | cleanup: ## tidy out any generated/deployed files 👨‍🔧 35 | rm -rf lib test -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "kody", 3 | "description": ".files in node", 4 | "version": "2.0.1", 5 | "homepage": "https://github.com/jh3y/kody", 6 | "author": { 7 | "name": "jh3y " 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git@github.com:jh3y/kody.git" 12 | }, 13 | "bugs": { 14 | "url": "https://github.com/jh3y/kody/issues" 15 | }, 16 | "license": "MIT", 17 | "fields": [ 18 | "./lib/**/*.*" 19 | ], 20 | "scripts": { 21 | "precommit": "lint-staged", 22 | "prepublish": "make build" 23 | }, 24 | "preferGlobal": true, 25 | "bin": { 26 | "kody": "./bin/kody" 27 | }, 28 | "engines": { 29 | "node": ">= 6.0.0" 30 | }, 31 | "dependencies": { 32 | "chalk": "^2.4.1", 33 | "commander": "^2.16.0", 34 | "inquirer": "^6.0.0", 35 | "ora": "^3.0.0", 36 | "regenerator-runtime": "^0.12.0", 37 | "shelljs": "^0.8.2" 38 | }, 39 | "lint-staged": { 40 | "src/**/*.{js}": [ 41 | "make lint", 42 | "git add" 43 | ] 44 | }, 45 | "keywords": [], 46 | "devDependencies": { 47 | "babel-cli": "^6.26.0", 48 | "babel-eslint": "^8.2.6", 49 | "babel-plugin-syntax-async-functions": "^6.13.0", 50 | "babel-plugin-transform-class-properties": "^6.24.1", 51 | "babel-plugin-transform-object-rest-spread": "^6.26.0", 52 | "babel-plugin-transform-regenerator": "^6.26.0", 53 | "babel-polyfill": "^6.26.0", 54 | "babel-preset-env": "^1.7.0", 55 | "chai": "^4.1.2", 56 | "eslint": "^5.2.0", 57 | "eslint-config-prettier": "^2.9.0", 58 | "eslint-plugin-prettier": "^2.6.2", 59 | "husky": "^0.14.3", 60 | "lint-staged": "^7.2.0", 61 | "mocha": "^5.2.0", 62 | "prettier": "^1.13.7", 63 | "prettier-eslint": "^8.8.2" 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /src/lib/dotfiles.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Dotfiles - set up symlinks for dotfiles suffixed with .link 3 | * @author jh3y - 2018 4 | * @license MIT 5 | */ 6 | import inquirer from 'inquirer' 7 | import { warning, detail } from './log' 8 | import { existsSync } from 'fs' 9 | import { exec, find, ln, rm, cp } from 'shelljs' 10 | /* eslint-disable-next-line no-unused-vars */ 11 | import regeneratorRuntime from 'regenerator-runtime' 12 | import { basename } from 'path' 13 | const { info, warn } = console 14 | 15 | const PROPS = { 16 | FILE_REGEXP: /\.link$/, 17 | FILE_SUFFIX: '.link', 18 | } 19 | 20 | const backupDotfile = dest => { 21 | if (existsSync(dest)) { 22 | const bak = `${dest}.bak` 23 | info(detail(`Backing up ${dest} to ${bak}`)) 24 | cp('-rf', dest, bak) 25 | rm('-rf', dest) 26 | } 27 | } 28 | 29 | const restoreDotfile = dest => { 30 | const bak = `${dest}.bak` 31 | if (existsSync(bak)) { 32 | info(detail(`Putting original back ${dest}`)) 33 | cp('-rf', bak, dest) 34 | info(detail(`Removing symlink backup from ${dest}.bak`)) 35 | rm('-rf', bak) 36 | } 37 | } 38 | 39 | const symlinkDotfile = (source, dest, backup) => { 40 | info(detail(`Symlinking ${source} to ${dest}`)) 41 | if (backup) backupDotfile(dest) 42 | const result = ln('-sf', source, dest) 43 | if (result.code !== 0) { 44 | if (backup) restoreDotfile(dest) 45 | throw new Error(result.stderr) 46 | } 47 | } 48 | 49 | const task = { 50 | name: 'Dotfiles', 51 | description: 'set up symlinks for global dotfiles', 52 | exec: async (resolve, reject, shell, config, log, ora) => { 53 | try { 54 | const load = ora(`Searching for dotfiles under ${process.cwd()}`).start() 55 | const files = find('.').filter(function(f) { 56 | return f.match(PROPS.FILE_REGEXP) 57 | }) 58 | load.stop() 59 | if (files.length) { 60 | let $HOME = exec('echo $HOME', { silent: true }).trim() 61 | const input = await inquirer.prompt([ 62 | { 63 | type: 'input', 64 | name: 'dir', 65 | message: 'Where would you like to symlink your dotfiles to?', 66 | default: $HOME, 67 | }, 68 | { 69 | type: 'confirm', 70 | name: 'backup', 71 | message: 'Would you like to back up any current dotfiles?', 72 | default: true, 73 | }, 74 | ]) 75 | const currentDir = process.cwd() 76 | for (const file of files) { 77 | const source = `${currentDir}/${file}` 78 | let name = basename(file).replace(PROPS.FILE_SUFFIX, '') 79 | const dest = `${input.dir}/${name}` 80 | if (!existsSync(input.dir)) 81 | throw new Error('Provided symlink directory does not exist') 82 | try { 83 | symlinkDotfile(source, dest, input.backup) 84 | } catch (err) { 85 | throw new Error(err) 86 | } 87 | } 88 | } else { 89 | warn(warning(`⚠️ No dotfiles found under ${process.cwd()}`)) 90 | resolve() 91 | } 92 | resolve() 93 | } catch (err) { 94 | reject(err) 95 | } 96 | }, 97 | } 98 | module.exports = { ...task, symlinkDotfile } 99 | -------------------------------------------------------------------------------- /src/test/test.js: -------------------------------------------------------------------------------- 1 | import { expect } from 'chai' 2 | import { existsSync } from 'fs' 3 | import shell from 'shelljs' 4 | import Kody from '../lib/kody' 5 | import { symlinkDotfile } from '../lib/dotfiles' 6 | 7 | const cwd = process.cwd() 8 | let instance 9 | let testDir 10 | let testFile 11 | let testEnv 12 | let testDotfile 13 | let testDotdir 14 | let testDestDir 15 | let testDestDotfile 16 | let testDestDotdir 17 | 18 | describe('kody', () => { 19 | describe('instance', () => { 20 | before(() => { 21 | instance = new Kody() 22 | }) 23 | describe('sorting tasks', () => { 24 | it('sorts tasks w/out file extension specified', () => { 25 | const tasks = ['a.js', 'b.js', 'c.js'] 26 | const order = ['b', 'c', 'a'] 27 | const desired = ['b.js', 'c.js', 'a.js'] 28 | expect(instance.sortTasks(tasks, order)).to.eql(desired) 29 | }) 30 | it('sorts tasks based on basename', () => { 31 | const tasks = ['a.js', 'b.js', 'c.js'] 32 | const order = ['b', 'c', 'a'] 33 | const desired = ['b.js', 'c.js', 'a.js'] 34 | expect(instance.sortTasks(tasks, order)).to.eql(desired) 35 | }) 36 | it('sorts tasks regardless of how nested they are', () => { 37 | const tasks = [ 38 | '/some/awesome/dir/really/nested/a.js', 39 | '/not/as/nested/b.js', 40 | 'c.js', 41 | ] 42 | const order = ['b', 'c', 'a'] 43 | const desired = [ 44 | '/not/as/nested/b.js', 45 | 'c.js', 46 | '/some/awesome/dir/really/nested/a.js', 47 | ] 48 | expect(instance.sortTasks(tasks, order)).to.eql(desired) 49 | }) 50 | }) 51 | describe('getting tasks', () => { 52 | beforeEach(() => { 53 | testDir = `${cwd}/kody-test-dir` 54 | testFile = `${testDir}/dummy-kody-task.js` 55 | shell.mkdir(testDir) 56 | shell.touch(testFile) 57 | }) 58 | afterEach(() => { 59 | shell.rm('-rf', testDir) 60 | }) 61 | it('grabs tasks from a directory', () => { 62 | const tasks = instance.getTasks(testDir) 63 | expect(tasks).to.eql([testFile]) 64 | }) 65 | it('grabs nested tasks from a directory', () => { 66 | const nestedDir = `${testDir}/nested-tasks` 67 | const nestedFile = `${nestedDir}/nested.js` 68 | shell.mkdir(nestedDir) 69 | shell.touch(nestedFile) 70 | const tasks = instance.getTasks(testDir) 71 | expect(tasks).to.eql([testFile, nestedFile]) 72 | }) 73 | }) 74 | }) 75 | describe('dotfiles', () => { 76 | beforeEach(() => { 77 | testEnv = `${cwd}/test-kody-env` 78 | testDotfile = `${testEnv}/.kody-test-config.link` 79 | testDestDir = `${cwd}/kody-test-home` 80 | testDestDotfile = `${testDestDir}/.kody-test-config` 81 | testDotdir = `${testEnv}/.kody-test-dot-dir.link` 82 | testFile = `${testDotdir}/hello.txt` 83 | testDestDotdir = `${testDestDir}/.kody-test-dot-dir` 84 | 85 | shell.mkdir(testEnv) 86 | shell.touch(testDotfile) 87 | shell.mkdir(testDestDir) 88 | shell.mkdir(testDotdir) 89 | shell.touch(testFile) 90 | }) 91 | afterEach(() => { 92 | shell.rm('-rf', testEnv) 93 | shell.rm('-rf', testDestDir) 94 | }) 95 | it('symlinks a file', () => { 96 | symlinkDotfile(testDotfile, testDestDotfile) 97 | expect(existsSync(testDestDotfile)).to.equal(true) 98 | }) 99 | it('symlinks a directory', () => { 100 | symlinkDotfile(testDotdir, testDestDotdir) 101 | expect(existsSync(testDestDotdir)).to.equal(true) 102 | }) 103 | it('does not back up current dotfiles if not there', () => { 104 | symlinkDotfile(testDotfile, testDestDotfile, true) 105 | expect(existsSync(`${testDestDotfile}.bak`)).to.equal(false) 106 | }) 107 | it('does back up current dotfiles if there', () => { 108 | shell.touch(`${testDestDir}/.kody-test-config`) 109 | symlinkDotfile(testDotfile, testDestDotfile, true) 110 | expect(existsSync(`${testDestDotfile}.bak`)).to.equal(true) 111 | }) 112 | }) 113 | }) 114 | -------------------------------------------------------------------------------- /src/lib/kody.js: -------------------------------------------------------------------------------- 1 | /** 2 | * kody - dotfiles manager in node! 3 | * @author jh3y - 2018 4 | * @license MIT 5 | */ 6 | 7 | import { statSync, readFileSync, readdirSync } from 'fs' 8 | import inquirer from 'inquirer' 9 | import { find } from 'shelljs' 10 | import { basename, extname, resolve } from 'path' 11 | import ora from 'ora' 12 | import log, { detail, fail, success, successBg, warning } from './log' 13 | import pkg from '../package.json' 14 | import Task from './core' 15 | /* eslint-disable-next-line no-unused-vars */ 16 | import regeneratorRuntime from 'regenerator-runtime' 17 | const { error, info, warn } = console 18 | const cwd = process.cwd() 19 | class Kody { 20 | config = undefined 21 | /** 22 | * sort tasks based on desired running order 23 | * 24 | * @param { Array } tasks - list of task paths 25 | * @param { Array } order - defined running order represented as an Array 26 | */ 27 | sortTasks = (tasks, order) => { 28 | const result = tasks.sort((a, b) => { 29 | const taskA = basename(a, '.js') 30 | const taskB = basename(b, '.js') 31 | const aIndex = order.indexOf(taskA) 32 | const bIndex = order.indexOf(taskB) 33 | let result = 0 34 | if ( 35 | (aIndex !== -1 && bIndex === -1) || 36 | (aIndex !== -1 && bIndex !== -1 && aIndex < bIndex) 37 | ) 38 | result = -1 39 | if ( 40 | (aIndex === -1 && bIndex !== -1) || 41 | (aIndex !== -1 && bIndex !== -1 && bIndex < aIndex) 42 | ) 43 | result = 1 44 | return result 45 | }) 46 | return result 47 | } 48 | /** 49 | * get tasks under specified directory 50 | * 51 | * @param { String } dir - directory to look for tasks 52 | * @returns { Array } - array of task file paths 53 | */ 54 | getTasks = dir => { 55 | const tasks = readdirSync(dir) 56 | let paths = [] 57 | for (const task of tasks) { 58 | const p = `${dir}/${task}` 59 | const isDir = statSync(p).isDirectory() 60 | // Only accept files that have the .js extension 61 | // Or go deeper into directories 62 | if (!isDir && extname(p) === '.js') { 63 | paths.push(p) 64 | } else if (isDir) { 65 | paths = paths.concat(this.getTasks(p)) 66 | } 67 | } 68 | return paths 69 | } 70 | /** 71 | * loops through task objects and runs them 72 | * 73 | * @param {Array} tasks - Array of task objects to be processed 74 | */ 75 | processTasks = async tasks => { 76 | const { config } = this 77 | const tasksToProcess = tasks[Symbol.iterator]() 78 | const init = async task => { 79 | try { 80 | await processTask(task) 81 | } catch (err) { 82 | error(fail(err.message)) 83 | } 84 | } 85 | /** 86 | * Recursive asynchronous function for processing each task 87 | * 88 | * @param { Object } task - task object detailing exec function etc. 89 | */ 90 | const processTask = async task => { 91 | const newTask = new Task({ ...task.value, config }) 92 | try { 93 | await newTask.run() 94 | info(success(`Task ${newTask.name} has finished`)) 95 | const nextTask = tasksToProcess.next() 96 | if (nextTask.value) { 97 | init(nextTask) 98 | } else { 99 | info(success('All tasks have finished 🎉')) 100 | } 101 | } catch (err) { 102 | throw new Error( 103 | `There was an issue running ${newTask.name} 👎 : ${err.message}` 104 | ) 105 | } 106 | } 107 | init(tasksToProcess.next()) 108 | } 109 | init = () => { 110 | const loader = ora(`Searching ${cwd} for .kodyrc file`).start() 111 | try { 112 | const configPath = find('.').filter(f => f.match(/\.kodyrc$/)) 113 | const configFile = readFileSync(configPath[0], 'utf-8') 114 | loader.stop() 115 | this.config = JSON.parse(configFile) 116 | } catch (err) { 117 | loader.stop() 118 | warn(warning('⚠️ No .kodyrc file found - will attempt to run any tasks')) 119 | } 120 | } 121 | prompt = async () => { 122 | const { config, getTasks, processTasks, sortTasks } = this 123 | let taskDirectory 124 | let runningOrder 125 | if (config) { 126 | taskDirectory = config.task_directory 127 | runningOrder = config.running_order 128 | } 129 | let taskDir = `${cwd}/kody.tasks` 130 | if (taskDirectory) taskDir = resolve(taskDirectory) 131 | let userTasks = [] 132 | try { 133 | userTasks = getTasks(taskDir) 134 | } catch (err) { 135 | warn( 136 | warning('⚠️ No user tasks defined - will attempt to run dotfiles task') 137 | ) 138 | } 139 | let tasks = [`${__dirname}/dotfiles.js`, ...userTasks] 140 | if (runningOrder && runningOrder.length) 141 | tasks = sortTasks(tasks, runningOrder) 142 | const inquirerConfig = { 143 | type: 'checkbox', 144 | name: 'tasks', 145 | message: 'Choose the tasks you wish to run', 146 | choices: [], 147 | } 148 | for (const task of tasks) { 149 | try { 150 | const value = require(`${task}`) 151 | const { name, exec, description } = value 152 | if (name && exec) { 153 | inquirerConfig.choices.push({ 154 | name: `${name} - ${description}`, 155 | value, 156 | }) 157 | } 158 | } catch (err) { 159 | throw new Error(`Invalid task file - ${err}`) 160 | } 161 | } 162 | const selection = await inquirer.prompt(inquirerConfig) 163 | if (selection.tasks.length) processTasks(selection.tasks) 164 | else info(detail('No tasks selected, see ya! 👋')) 165 | } 166 | /** 167 | * loops through task objects and runs them 168 | * 169 | * @param {Array} tasks - Array of task objects to be processed 170 | */ 171 | welcome = () => { 172 | info( 173 | log( 174 | ` 175 | _____ ____ 176 | | |______| | 177 | | • _____ • | 178 | | |_____| | 179 | | | 180 | |_____________| 181 | 182 | ---------------------------------------- 183 | kody v${pkg.version} - .files & config runner 184 | ---------------------------------------- 185 | `, 186 | successBg, 187 | 'transparent' 188 | ) 189 | ) 190 | } 191 | } 192 | export default Kody 193 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![NPM](https://nodei.co/npm/kody.png?downloads=true&downloadRank=true&stars=true)](https://github.com/jh3y/kody) 2 | 3 | [![Build Status](https://travis-ci.org/jh3y/kody.svg)](http://travis-ci.org/jh3y/kody) 4 | ![img](https://img.shields.io/badge/version-2.0.0-000000.svg) 5 | ![img](https://img.shields.io/badge/language-JS-9a12b3.svg) 6 | ![img](https://img.shields.io/badge/license-MIT-22a7f0.svg) 7 | 8 | # kody 9 | ![alt tag](https://raw.github.com/jh3y/pics/master/kody/kody.png) 10 | 11 | 12 | ## _An interactive `.files` and environment configuration tool created with node_ 13 | 14 | _Inspired by Zach Holmans popular [dotfiles](https://github.com/holman/dotfiles), stripped down and written in node_ 15 | 16 | * One command 17 | * No restrictions on where you run from or store your dotfiles 18 | * Easy to configure, extend and tweak 19 | * Interactive CLI that prompts which tasks you want to run 20 | * Just needs `node` and your dotfiles! 21 | 22 | ![alt tag](https://raw.github.com/jh3y/pics/master/kody/basic-tasks.gif) 23 | 24 | ## Index 25 | 26 | * [What is kody?](https://github.com/jh3y/kody#what-is-kody) 27 | * [What else would I use it for?](https://github.com/jh3y/kody#what-else-would-i-use-it-for) 28 | * [Installation](https://github.com/jh3y/kody#installation) 29 | * [Usage](https://github.com/jh3y/kody#usage) 30 | * [Installing dotfiles](https://github.com/jh3y/kody#installing-dotfiles) 31 | * [Tasks](https://github.com/jh3y/kody#tasks) 32 | * [Hello World!](https://github.com/jh3y/kody#hello-world) 33 | * [.kodyrc file](https://github.com/jh3y/kody#.kodyrc-file) 34 | * [An example .kodyrc file](https://github.com/jh3y/kody#an-example-.kodyrc-file) 35 | * [A real task](https://github.com/jh3y/kody#a-real-task) 36 | * [Tasks that have already been created](https://github.com/jh3y/kody#tasks-that-have-already-been-created) 37 | * [Examples](https://github.com/jh3y/kody#examples) 38 | * [Development](https://github.com/jh3y/kody#development) 39 | * [Under the hood](https://github.com/jh3y/kody#under-the-hood) 40 | * [Disclaimer](https://github.com/jh3y/kody#disclaimer) 41 | * [Contributing](https://github.com/jh3y/kody#contributing) 42 | 43 | ## What is kody 44 | `kody` is more than a dotfiles installer. Out of the box, it can handle symlinking your version controlled files to a desired directory. It will also backup your originals if you wish 👍 45 | 46 | But it can do much more! And it's up to you how creative you want to get 🐻 47 | 48 | You create some tasks to set up your machine, run `kody`, and `kody` will go ahead and run the tasks you tell it to! 49 | 50 | ## What else would I use it for 51 | You can use `kody` to automate most things. 52 | 53 | For example, fed up of installing a bunch of apps when you set up a machine? Create a small task to install `homebrew`, configure a list of apps you want and tell `kody` to do it for you! 😉 54 | 55 | Or how about automating your shell configuration or IDE set up! They can be time consuming 😅 56 | 57 | You can see some examples in the `examples` section below 👍 58 | 59 | ## Installation 60 | You'll need to install `node/npm` first as this is a dependency of `kody`. 61 | Then, install `kody` globally 👍 62 | ```shell 63 | npm i -g kody 64 | ``` 65 | 66 | ## Usage 67 | ### Installing Dotfiles 68 | Out of the box, `kody` comes with dotfile installation. `kody` will symlink your version controlled dotfiles to a directory of your choosing. The default is `$HOME`. 69 | 70 | `kody` needs to know which files to symlink. So any files or directories you wish to symlink should have the suffix `.link`. 71 | 72 | For example; I want to install a dotfile for a `.gitignore` file. Rename your version controlled `.gitignore` to `.gitignore.link` and then run `kody` in that directory. The same works for directories if you want to symlink the contents of a directory. 73 | 74 | ```shell 75 | /my/version/controlled/dotfiles/repo/.gitignore.link -> $HOME/.gitignore 76 | ``` 77 | 78 | `kody` will also prompt you to see if you'd like to backup your original dotfiles. It will backup the original to the same destination with the `.bak` suffix. 79 | 80 | That's all you need to manage and install your dotfiles 💪 81 | 82 | ### Tasks 83 | Now the fun starts! 😉 84 | 85 | You can also use kody to automate various defined tasks. 86 | 87 | Let's start with the basics. 88 | 89 | By default, all tasks live inside a `kody.tasks` directory. You can configure this (we will get to that). kody will search the directory for all the JavaScript files it can find. You can nest tasks. 90 | 91 | Each task file exposes an object that must consist of at least a `name` and an `exec` function. The `description` property is metadata to give a friendly description of tasks. `description` will be rendered when choosing which tasks to run. 92 | 93 | ```js 94 | module.exports = { 95 | name: '🦄', 96 | description: 'A truly magical task', 97 | exec: (resolve, reject, shell, config, log, ora) => {} 98 | } 99 | ``` 100 | The `exec` function is what gets run by `kody`. You can do whatever you like inside this function but the arguments passed in are important. This is how `kody` exposes various things to the user. You are of course free to name the parameters however you wish 😄 101 | 102 | Let's run through them 👍 103 | * `resolve/reject` - `kody` uses `Promise`s so the first two arguments enable you to inform `kody` of when to move on. If your task is complete, invoke `resolve`. If your task stumbles, make use of `reject` 🛑 104 | * `shell` - one of the main things when automating set up etc. is running various shell commands. `kody` exposes the `shelljs` API to your tasks. We will use this in the `Hello World` example 105 | * `config` - a major thing with set ups is being able to keep everything in one config file. This way you won't have to hard code values into your tasks. `kody` will search for a `.kodyrc` file on start and pass that configuration object to your tasks. In here you can define any `JSON` you want. For example, a list of apps to install, editor plugins to install etc. Define under keys and access them in your tasks 👊 106 | * `log` - `kody` exposes a simple color logging utility that uses `chalk`. It's a function that takes three parameters. The first is the message you want to display. The second and third are the text color and background color respectively. The function expects color represented by a hexidecimal value 👍 You use this `log` function inside your standard `console` invocation. 107 | * `ora` - `kody` exposes the `ora` API so you can fire up a terminal spinner when needed too! 108 | 109 | 110 | #### Hello World 111 | For our first task, why not "Hello World!"? 😅 112 | 113 | We will use `shelljs` to invoke `say`. 114 | 115 | ```javascript 116 | const task = { 117 | name: 'Hello World 👋', 118 | description: 'Hey from kody 🐻', 119 | exec: (resolve, reject, shell) => { 120 | shell.exec('say hello world!') 121 | resolve() 122 | } 123 | } 124 | module.exports = task 125 | ``` 126 | That's it! Run `kody` in the parent of your tasks directory and choose the `Hello World` task. Depending on your OS, you should hear `Hello World!` 🎉 127 | 128 | ### .kodyrc file 129 | The `.kodyrc` file was mentioned briefly above. It's used to define values and configuration for your tasks. 130 | It also has two special keys. Both are _optional_ 131 | 132 | * `task_directory` - this specifies the location of your tasks relative to your current working directory 133 | * `running_order` - this specifies a running order for your tasks 134 | 135 | #### An example .kodyrc 136 | ```json 137 | { 138 | "task_directory": "./awesome-tasks", 139 | "running_order": [ 140 | "b", 141 | "a", 142 | "*" 143 | ], 144 | "brewInstalls": [ 145 | "google-chrome", 146 | "visual-studio-code" 147 | ], 148 | } 149 | ``` 150 | In this `.kodyrc` file we specify that tasks are under `./awesome-tasks`. We also state that tasks run in any order but `b` must run before `a`. 151 | It's important to note that running order entries are task file names and not the name of the task. The extension is not necessary. 152 | 153 | Any other keys in the `.kodyrc` file are user defined and made available in any tasks you write/use. In this example, we have `brewInstalls` which could be an array of homebrew casks to install. 154 | 155 | ### A real task 156 | For a real task example, let's install `Homebrew`. 157 | 158 | ```js 159 | const { info } = console 160 | const HOMEBREW_URL = 161 | 'https://raw.githubusercontent.com/Homebrew/install/master/install' 162 | const task = { 163 | name: 'Homebrew', 164 | description: 'Install and set up Homebrew', 165 | exec: function(resolve, reject, shell, config, log) { 166 | const { brew_installs: packages } = config 167 | const brewInstalled = shell.which('brew') !== null 168 | if (!brewInstalled) { 169 | try { 170 | info(log('Installing Homebrew')) 171 | const result = shell.exec(`ruby -e "$(curl -fsSL ${PROPS.URL})"`) 172 | if (result.code !== 0) throw new Error(result.stderr) 173 | else info(log('Homebrew installed')) 174 | } catch (err) { 175 | throw new Error(err) 176 | } 177 | } else info(log('Homebrew already installed')) 178 | info(log('Running brew doctor')) 179 | shell.exec('brew doctor') 180 | info( 181 | log( 182 | `NOTE: Any info from brew doctor may account for any issues with package installs` 183 | ) 184 | ) 185 | if (packages && packages.length > 0) { 186 | info(log(`Installing ${packages.join(' ')}`)) 187 | shell.exec(`brew install ${packages.join(' ')}`) 188 | info(log('Brew packages installed')) 189 | } else { 190 | info(log('No brew packages to install')) 191 | } 192 | resolve() 193 | }, 194 | } 195 | 196 | module.exports = task 197 | ``` 198 | It may look like there's a lot going on here. But the majority of this is actually logging to the `console` 😅 199 | 200 | ### Tasks that have already been created 201 | * Set up git 202 | * Write OSX defaults 203 | * Install and set up Homebrew 204 | * Install programs supported by brew cask such as Spotify, Chrome, etc. 205 | * Set up fish shell 206 | * Set up oh-my-zsh 207 | * Install Atom IDE packages 208 | * Install and set up Visual Studio Code 209 | * Remove unwanted default system applications 210 | 211 | ## Examples 212 | * [Jhey's .files](https://github.com/jh3y/kody_env) - My personal kody set up. Sets up IDE, installs programs, configures shell etc. 213 | 214 | ## Development 215 | `kody` is easy to work on. It uses a self-documented `Makefile`. 216 | 217 | Just run `make` to see what tasks are available. 218 | 219 | First things first is to pull in dependencies with `make setup`. 220 | 221 | Then you'll be wanting to use `make develop` to start work. Use `npm link` to get a global instance of what you're working on available in the shell. You can test this by running `kody --version`. 222 | 223 | It's best to create a dummy folder that you can test things out in. This reduces the risk of breaking your `$HOME` setup. 224 | 225 | Enjoy! 😎 226 | 227 | ## Under the hood 228 | `kody` is written using `es6` with `babel` and is developed using a self-documented `Makefile`. 229 | 230 | ## Disclaimer 231 | I've only used `kody` on OSX. I'm not responsible if you bork your machine configuration 😅 However, I'm happy to try and help you out if you get stuck! 232 | 233 | ## Contributing 234 | Any problems or questions, feel free to post an issue or tweet me, [@jh3yyy](https://twitter.com/@jh3yyy)! 🐦 235 | 236 | ------ 237 | 238 | Made with 🐻s by @jh3y 2018 239 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@7.0.0-beta.44": 6 | version "7.0.0-beta.44" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.44.tgz#2a02643368de80916162be70865c97774f3adbd9" 8 | dependencies: 9 | "@babel/highlight" "7.0.0-beta.44" 10 | 11 | "@babel/generator@7.0.0-beta.44": 12 | version "7.0.0-beta.44" 13 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.0.0-beta.44.tgz#c7e67b9b5284afcf69b309b50d7d37f3e5033d42" 14 | dependencies: 15 | "@babel/types" "7.0.0-beta.44" 16 | jsesc "^2.5.1" 17 | lodash "^4.2.0" 18 | source-map "^0.5.0" 19 | trim-right "^1.0.1" 20 | 21 | "@babel/helper-function-name@7.0.0-beta.44": 22 | version "7.0.0-beta.44" 23 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.44.tgz#e18552aaae2231100a6e485e03854bc3532d44dd" 24 | dependencies: 25 | "@babel/helper-get-function-arity" "7.0.0-beta.44" 26 | "@babel/template" "7.0.0-beta.44" 27 | "@babel/types" "7.0.0-beta.44" 28 | 29 | "@babel/helper-get-function-arity@7.0.0-beta.44": 30 | version "7.0.0-beta.44" 31 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.44.tgz#d03ca6dd2b9f7b0b1e6b32c56c72836140db3a15" 32 | dependencies: 33 | "@babel/types" "7.0.0-beta.44" 34 | 35 | "@babel/helper-split-export-declaration@7.0.0-beta.44": 36 | version "7.0.0-beta.44" 37 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0-beta.44.tgz#c0b351735e0fbcb3822c8ad8db4e583b05ebd9dc" 38 | dependencies: 39 | "@babel/types" "7.0.0-beta.44" 40 | 41 | "@babel/highlight@7.0.0-beta.44": 42 | version "7.0.0-beta.44" 43 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.44.tgz#18c94ce543916a80553edcdcf681890b200747d5" 44 | dependencies: 45 | chalk "^2.0.0" 46 | esutils "^2.0.2" 47 | js-tokens "^3.0.0" 48 | 49 | "@babel/template@7.0.0-beta.44": 50 | version "7.0.0-beta.44" 51 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.44.tgz#f8832f4fdcee5d59bf515e595fc5106c529b394f" 52 | dependencies: 53 | "@babel/code-frame" "7.0.0-beta.44" 54 | "@babel/types" "7.0.0-beta.44" 55 | babylon "7.0.0-beta.44" 56 | lodash "^4.2.0" 57 | 58 | "@babel/traverse@7.0.0-beta.44": 59 | version "7.0.0-beta.44" 60 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.44.tgz#a970a2c45477ad18017e2e465a0606feee0d2966" 61 | dependencies: 62 | "@babel/code-frame" "7.0.0-beta.44" 63 | "@babel/generator" "7.0.0-beta.44" 64 | "@babel/helper-function-name" "7.0.0-beta.44" 65 | "@babel/helper-split-export-declaration" "7.0.0-beta.44" 66 | "@babel/types" "7.0.0-beta.44" 67 | babylon "7.0.0-beta.44" 68 | debug "^3.1.0" 69 | globals "^11.1.0" 70 | invariant "^2.2.0" 71 | lodash "^4.2.0" 72 | 73 | "@babel/types@7.0.0-beta.44": 74 | version "7.0.0-beta.44" 75 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.44.tgz#6b1b164591f77dec0a0342aca995f2d046b3a757" 76 | dependencies: 77 | esutils "^2.0.2" 78 | lodash "^4.2.0" 79 | to-fast-properties "^2.0.0" 80 | 81 | "@samverschueren/stream-to-observable@^0.3.0": 82 | version "0.3.0" 83 | resolved "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz#ecdf48d532c58ea477acfcab80348424f8d0662f" 84 | dependencies: 85 | any-observable "^0.3.0" 86 | 87 | abbrev@1: 88 | version "1.1.1" 89 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 90 | 91 | acorn-jsx@^3.0.0: 92 | version "3.0.1" 93 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 94 | dependencies: 95 | acorn "^3.0.4" 96 | 97 | acorn-jsx@^4.1.1: 98 | version "4.1.1" 99 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-4.1.1.tgz#e8e41e48ea2fe0c896740610ab6a4ffd8add225e" 100 | dependencies: 101 | acorn "^5.0.3" 102 | 103 | acorn@^3.0.4: 104 | version "3.3.0" 105 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 106 | 107 | acorn@^5.0.3, acorn@^5.5.0, acorn@^5.6.0: 108 | version "5.7.1" 109 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.1.tgz#f095829297706a7c9776958c0afc8930a9b9d9d8" 110 | 111 | ajv-keywords@^2.1.0: 112 | version "2.1.1" 113 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 114 | 115 | ajv-keywords@^3.0.0: 116 | version "3.2.0" 117 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.2.0.tgz#e86b819c602cf8821ad637413698f1dec021847a" 118 | 119 | ajv@^5.2.3, ajv@^5.3.0: 120 | version "5.5.2" 121 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 122 | dependencies: 123 | co "^4.6.0" 124 | fast-deep-equal "^1.0.0" 125 | fast-json-stable-stringify "^2.0.0" 126 | json-schema-traverse "^0.3.0" 127 | 128 | ajv@^6.0.1, ajv@^6.5.0: 129 | version "6.5.2" 130 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.2.tgz#678495f9b82f7cca6be248dd92f59bff5e1f4360" 131 | dependencies: 132 | fast-deep-equal "^2.0.1" 133 | fast-json-stable-stringify "^2.0.0" 134 | json-schema-traverse "^0.4.1" 135 | uri-js "^4.2.1" 136 | 137 | ansi-escapes@^1.0.0: 138 | version "1.4.0" 139 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 140 | 141 | ansi-escapes@^3.0.0: 142 | version "3.1.0" 143 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 144 | 145 | ansi-regex@^2.0.0: 146 | version "2.1.1" 147 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 148 | 149 | ansi-regex@^3.0.0: 150 | version "3.0.0" 151 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 152 | 153 | ansi-styles@^2.2.1: 154 | version "2.2.1" 155 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 156 | 157 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 158 | version "3.2.1" 159 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 160 | dependencies: 161 | color-convert "^1.9.0" 162 | 163 | any-observable@^0.3.0: 164 | version "0.3.0" 165 | resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b" 166 | 167 | anymatch@^1.3.0: 168 | version "1.3.2" 169 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 170 | dependencies: 171 | micromatch "^2.1.5" 172 | normalize-path "^2.0.0" 173 | 174 | app-root-path@^2.0.1: 175 | version "2.1.0" 176 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.1.0.tgz#98bf6599327ecea199309866e8140368fd2e646a" 177 | 178 | aproba@^1.0.3: 179 | version "1.2.0" 180 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 181 | 182 | are-we-there-yet@~1.1.2: 183 | version "1.1.5" 184 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 185 | dependencies: 186 | delegates "^1.0.0" 187 | readable-stream "^2.0.6" 188 | 189 | argparse@^1.0.7: 190 | version "1.0.10" 191 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 192 | dependencies: 193 | sprintf-js "~1.0.2" 194 | 195 | arr-diff@^2.0.0: 196 | version "2.0.0" 197 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 198 | dependencies: 199 | arr-flatten "^1.0.1" 200 | 201 | arr-diff@^4.0.0: 202 | version "4.0.0" 203 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 204 | 205 | arr-flatten@^1.0.1, arr-flatten@^1.1.0: 206 | version "1.1.0" 207 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 208 | 209 | arr-union@^3.1.0: 210 | version "3.1.0" 211 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 212 | 213 | array-union@^1.0.1: 214 | version "1.0.2" 215 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 216 | dependencies: 217 | array-uniq "^1.0.1" 218 | 219 | array-uniq@^1.0.1: 220 | version "1.0.3" 221 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 222 | 223 | array-unique@^0.2.1: 224 | version "0.2.1" 225 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 226 | 227 | array-unique@^0.3.2: 228 | version "0.3.2" 229 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 230 | 231 | arrify@^1.0.0: 232 | version "1.0.1" 233 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 234 | 235 | assertion-error@^1.0.1: 236 | version "1.1.0" 237 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" 238 | 239 | assign-symbols@^1.0.0: 240 | version "1.0.0" 241 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 242 | 243 | async-each@^1.0.0: 244 | version "1.0.1" 245 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 246 | 247 | atob@^2.1.1: 248 | version "2.1.1" 249 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a" 250 | 251 | babel-cli@^6.26.0: 252 | version "6.26.0" 253 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 254 | dependencies: 255 | babel-core "^6.26.0" 256 | babel-polyfill "^6.26.0" 257 | babel-register "^6.26.0" 258 | babel-runtime "^6.26.0" 259 | commander "^2.11.0" 260 | convert-source-map "^1.5.0" 261 | fs-readdir-recursive "^1.0.0" 262 | glob "^7.1.2" 263 | lodash "^4.17.4" 264 | output-file-sync "^1.1.2" 265 | path-is-absolute "^1.0.1" 266 | slash "^1.0.0" 267 | source-map "^0.5.6" 268 | v8flags "^2.1.1" 269 | optionalDependencies: 270 | chokidar "^1.6.1" 271 | 272 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 273 | version "6.26.0" 274 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 275 | dependencies: 276 | chalk "^1.1.3" 277 | esutils "^2.0.2" 278 | js-tokens "^3.0.2" 279 | 280 | babel-core@^6.26.0: 281 | version "6.26.3" 282 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 283 | dependencies: 284 | babel-code-frame "^6.26.0" 285 | babel-generator "^6.26.0" 286 | babel-helpers "^6.24.1" 287 | babel-messages "^6.23.0" 288 | babel-register "^6.26.0" 289 | babel-runtime "^6.26.0" 290 | babel-template "^6.26.0" 291 | babel-traverse "^6.26.0" 292 | babel-types "^6.26.0" 293 | babylon "^6.18.0" 294 | convert-source-map "^1.5.1" 295 | debug "^2.6.9" 296 | json5 "^0.5.1" 297 | lodash "^4.17.4" 298 | minimatch "^3.0.4" 299 | path-is-absolute "^1.0.1" 300 | private "^0.1.8" 301 | slash "^1.0.0" 302 | source-map "^0.5.7" 303 | 304 | babel-eslint@^8.2.6: 305 | version "8.2.6" 306 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-8.2.6.tgz#6270d0c73205628067c0f7ae1693a9e797acefd9" 307 | dependencies: 308 | "@babel/code-frame" "7.0.0-beta.44" 309 | "@babel/traverse" "7.0.0-beta.44" 310 | "@babel/types" "7.0.0-beta.44" 311 | babylon "7.0.0-beta.44" 312 | eslint-scope "3.7.1" 313 | eslint-visitor-keys "^1.0.0" 314 | 315 | babel-generator@^6.26.0: 316 | version "6.26.1" 317 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 318 | dependencies: 319 | babel-messages "^6.23.0" 320 | babel-runtime "^6.26.0" 321 | babel-types "^6.26.0" 322 | detect-indent "^4.0.0" 323 | jsesc "^1.3.0" 324 | lodash "^4.17.4" 325 | source-map "^0.5.7" 326 | trim-right "^1.0.1" 327 | 328 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 329 | version "6.24.1" 330 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 331 | dependencies: 332 | babel-helper-explode-assignable-expression "^6.24.1" 333 | babel-runtime "^6.22.0" 334 | babel-types "^6.24.1" 335 | 336 | babel-helper-call-delegate@^6.24.1: 337 | version "6.24.1" 338 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 339 | dependencies: 340 | babel-helper-hoist-variables "^6.24.1" 341 | babel-runtime "^6.22.0" 342 | babel-traverse "^6.24.1" 343 | babel-types "^6.24.1" 344 | 345 | babel-helper-define-map@^6.24.1: 346 | version "6.26.0" 347 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 348 | dependencies: 349 | babel-helper-function-name "^6.24.1" 350 | babel-runtime "^6.26.0" 351 | babel-types "^6.26.0" 352 | lodash "^4.17.4" 353 | 354 | babel-helper-explode-assignable-expression@^6.24.1: 355 | version "6.24.1" 356 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 357 | dependencies: 358 | babel-runtime "^6.22.0" 359 | babel-traverse "^6.24.1" 360 | babel-types "^6.24.1" 361 | 362 | babel-helper-function-name@^6.24.1: 363 | version "6.24.1" 364 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 365 | dependencies: 366 | babel-helper-get-function-arity "^6.24.1" 367 | babel-runtime "^6.22.0" 368 | babel-template "^6.24.1" 369 | babel-traverse "^6.24.1" 370 | babel-types "^6.24.1" 371 | 372 | babel-helper-get-function-arity@^6.24.1: 373 | version "6.24.1" 374 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 375 | dependencies: 376 | babel-runtime "^6.22.0" 377 | babel-types "^6.24.1" 378 | 379 | babel-helper-hoist-variables@^6.24.1: 380 | version "6.24.1" 381 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 382 | dependencies: 383 | babel-runtime "^6.22.0" 384 | babel-types "^6.24.1" 385 | 386 | babel-helper-optimise-call-expression@^6.24.1: 387 | version "6.24.1" 388 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 389 | dependencies: 390 | babel-runtime "^6.22.0" 391 | babel-types "^6.24.1" 392 | 393 | babel-helper-regex@^6.24.1: 394 | version "6.26.0" 395 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 396 | dependencies: 397 | babel-runtime "^6.26.0" 398 | babel-types "^6.26.0" 399 | lodash "^4.17.4" 400 | 401 | babel-helper-remap-async-to-generator@^6.24.1: 402 | version "6.24.1" 403 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 404 | dependencies: 405 | babel-helper-function-name "^6.24.1" 406 | babel-runtime "^6.22.0" 407 | babel-template "^6.24.1" 408 | babel-traverse "^6.24.1" 409 | babel-types "^6.24.1" 410 | 411 | babel-helper-replace-supers@^6.24.1: 412 | version "6.24.1" 413 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 414 | dependencies: 415 | babel-helper-optimise-call-expression "^6.24.1" 416 | babel-messages "^6.23.0" 417 | babel-runtime "^6.22.0" 418 | babel-template "^6.24.1" 419 | babel-traverse "^6.24.1" 420 | babel-types "^6.24.1" 421 | 422 | babel-helpers@^6.24.1: 423 | version "6.24.1" 424 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 425 | dependencies: 426 | babel-runtime "^6.22.0" 427 | babel-template "^6.24.1" 428 | 429 | babel-messages@^6.23.0: 430 | version "6.23.0" 431 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 432 | dependencies: 433 | babel-runtime "^6.22.0" 434 | 435 | babel-plugin-check-es2015-constants@^6.22.0: 436 | version "6.22.0" 437 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 438 | dependencies: 439 | babel-runtime "^6.22.0" 440 | 441 | babel-plugin-syntax-async-functions@^6.13.0, babel-plugin-syntax-async-functions@^6.8.0: 442 | version "6.13.0" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 444 | 445 | babel-plugin-syntax-class-properties@^6.8.0: 446 | version "6.13.0" 447 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 448 | 449 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 450 | version "6.13.0" 451 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 452 | 453 | babel-plugin-syntax-object-rest-spread@^6.8.0: 454 | version "6.13.0" 455 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 456 | 457 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 458 | version "6.22.0" 459 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 460 | 461 | babel-plugin-transform-async-to-generator@^6.22.0: 462 | version "6.24.1" 463 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 464 | dependencies: 465 | babel-helper-remap-async-to-generator "^6.24.1" 466 | babel-plugin-syntax-async-functions "^6.8.0" 467 | babel-runtime "^6.22.0" 468 | 469 | babel-plugin-transform-class-properties@^6.24.1: 470 | version "6.24.1" 471 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 472 | dependencies: 473 | babel-helper-function-name "^6.24.1" 474 | babel-plugin-syntax-class-properties "^6.8.0" 475 | babel-runtime "^6.22.0" 476 | babel-template "^6.24.1" 477 | 478 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 479 | version "6.22.0" 480 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 481 | dependencies: 482 | babel-runtime "^6.22.0" 483 | 484 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 485 | version "6.22.0" 486 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 487 | dependencies: 488 | babel-runtime "^6.22.0" 489 | 490 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 491 | version "6.26.0" 492 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 493 | dependencies: 494 | babel-runtime "^6.26.0" 495 | babel-template "^6.26.0" 496 | babel-traverse "^6.26.0" 497 | babel-types "^6.26.0" 498 | lodash "^4.17.4" 499 | 500 | babel-plugin-transform-es2015-classes@^6.23.0: 501 | version "6.24.1" 502 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 503 | dependencies: 504 | babel-helper-define-map "^6.24.1" 505 | babel-helper-function-name "^6.24.1" 506 | babel-helper-optimise-call-expression "^6.24.1" 507 | babel-helper-replace-supers "^6.24.1" 508 | babel-messages "^6.23.0" 509 | babel-runtime "^6.22.0" 510 | babel-template "^6.24.1" 511 | babel-traverse "^6.24.1" 512 | babel-types "^6.24.1" 513 | 514 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 515 | version "6.24.1" 516 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 517 | dependencies: 518 | babel-runtime "^6.22.0" 519 | babel-template "^6.24.1" 520 | 521 | babel-plugin-transform-es2015-destructuring@^6.23.0: 522 | version "6.23.0" 523 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 524 | dependencies: 525 | babel-runtime "^6.22.0" 526 | 527 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 528 | version "6.24.1" 529 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 530 | dependencies: 531 | babel-runtime "^6.22.0" 532 | babel-types "^6.24.1" 533 | 534 | babel-plugin-transform-es2015-for-of@^6.23.0: 535 | version "6.23.0" 536 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 537 | dependencies: 538 | babel-runtime "^6.22.0" 539 | 540 | babel-plugin-transform-es2015-function-name@^6.22.0: 541 | version "6.24.1" 542 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 543 | dependencies: 544 | babel-helper-function-name "^6.24.1" 545 | babel-runtime "^6.22.0" 546 | babel-types "^6.24.1" 547 | 548 | babel-plugin-transform-es2015-literals@^6.22.0: 549 | version "6.22.0" 550 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 551 | dependencies: 552 | babel-runtime "^6.22.0" 553 | 554 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 555 | version "6.24.1" 556 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 557 | dependencies: 558 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 559 | babel-runtime "^6.22.0" 560 | babel-template "^6.24.1" 561 | 562 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 563 | version "6.26.2" 564 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" 565 | dependencies: 566 | babel-plugin-transform-strict-mode "^6.24.1" 567 | babel-runtime "^6.26.0" 568 | babel-template "^6.26.0" 569 | babel-types "^6.26.0" 570 | 571 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 572 | version "6.24.1" 573 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 574 | dependencies: 575 | babel-helper-hoist-variables "^6.24.1" 576 | babel-runtime "^6.22.0" 577 | babel-template "^6.24.1" 578 | 579 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 580 | version "6.24.1" 581 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 582 | dependencies: 583 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 584 | babel-runtime "^6.22.0" 585 | babel-template "^6.24.1" 586 | 587 | babel-plugin-transform-es2015-object-super@^6.22.0: 588 | version "6.24.1" 589 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 590 | dependencies: 591 | babel-helper-replace-supers "^6.24.1" 592 | babel-runtime "^6.22.0" 593 | 594 | babel-plugin-transform-es2015-parameters@^6.23.0: 595 | version "6.24.1" 596 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 597 | dependencies: 598 | babel-helper-call-delegate "^6.24.1" 599 | babel-helper-get-function-arity "^6.24.1" 600 | babel-runtime "^6.22.0" 601 | babel-template "^6.24.1" 602 | babel-traverse "^6.24.1" 603 | babel-types "^6.24.1" 604 | 605 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 606 | version "6.24.1" 607 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 608 | dependencies: 609 | babel-runtime "^6.22.0" 610 | babel-types "^6.24.1" 611 | 612 | babel-plugin-transform-es2015-spread@^6.22.0: 613 | version "6.22.0" 614 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 615 | dependencies: 616 | babel-runtime "^6.22.0" 617 | 618 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 619 | version "6.24.1" 620 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 621 | dependencies: 622 | babel-helper-regex "^6.24.1" 623 | babel-runtime "^6.22.0" 624 | babel-types "^6.24.1" 625 | 626 | babel-plugin-transform-es2015-template-literals@^6.22.0: 627 | version "6.22.0" 628 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 629 | dependencies: 630 | babel-runtime "^6.22.0" 631 | 632 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 633 | version "6.23.0" 634 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 635 | dependencies: 636 | babel-runtime "^6.22.0" 637 | 638 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 639 | version "6.24.1" 640 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 641 | dependencies: 642 | babel-helper-regex "^6.24.1" 643 | babel-runtime "^6.22.0" 644 | regexpu-core "^2.0.0" 645 | 646 | babel-plugin-transform-exponentiation-operator@^6.22.0: 647 | version "6.24.1" 648 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 649 | dependencies: 650 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 651 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 652 | babel-runtime "^6.22.0" 653 | 654 | babel-plugin-transform-object-rest-spread@^6.26.0: 655 | version "6.26.0" 656 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 657 | dependencies: 658 | babel-plugin-syntax-object-rest-spread "^6.8.0" 659 | babel-runtime "^6.26.0" 660 | 661 | babel-plugin-transform-regenerator@^6.22.0, babel-plugin-transform-regenerator@^6.26.0: 662 | version "6.26.0" 663 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 664 | dependencies: 665 | regenerator-transform "^0.10.0" 666 | 667 | babel-plugin-transform-strict-mode@^6.24.1: 668 | version "6.24.1" 669 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 670 | dependencies: 671 | babel-runtime "^6.22.0" 672 | babel-types "^6.24.1" 673 | 674 | babel-polyfill@^6.26.0: 675 | version "6.26.0" 676 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 677 | dependencies: 678 | babel-runtime "^6.26.0" 679 | core-js "^2.5.0" 680 | regenerator-runtime "^0.10.5" 681 | 682 | babel-preset-env@^1.7.0: 683 | version "1.7.0" 684 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a" 685 | dependencies: 686 | babel-plugin-check-es2015-constants "^6.22.0" 687 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 688 | babel-plugin-transform-async-to-generator "^6.22.0" 689 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 690 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 691 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 692 | babel-plugin-transform-es2015-classes "^6.23.0" 693 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 694 | babel-plugin-transform-es2015-destructuring "^6.23.0" 695 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 696 | babel-plugin-transform-es2015-for-of "^6.23.0" 697 | babel-plugin-transform-es2015-function-name "^6.22.0" 698 | babel-plugin-transform-es2015-literals "^6.22.0" 699 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 700 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 701 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 702 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 703 | babel-plugin-transform-es2015-object-super "^6.22.0" 704 | babel-plugin-transform-es2015-parameters "^6.23.0" 705 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 706 | babel-plugin-transform-es2015-spread "^6.22.0" 707 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 708 | babel-plugin-transform-es2015-template-literals "^6.22.0" 709 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 710 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 711 | babel-plugin-transform-exponentiation-operator "^6.22.0" 712 | babel-plugin-transform-regenerator "^6.22.0" 713 | browserslist "^3.2.6" 714 | invariant "^2.2.2" 715 | semver "^5.3.0" 716 | 717 | babel-register@^6.26.0: 718 | version "6.26.0" 719 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 720 | dependencies: 721 | babel-core "^6.26.0" 722 | babel-runtime "^6.26.0" 723 | core-js "^2.5.0" 724 | home-or-tmp "^2.0.0" 725 | lodash "^4.17.4" 726 | mkdirp "^0.5.1" 727 | source-map-support "^0.4.15" 728 | 729 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 730 | version "6.26.0" 731 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 732 | dependencies: 733 | core-js "^2.4.0" 734 | regenerator-runtime "^0.11.0" 735 | 736 | babel-template@^6.24.1, babel-template@^6.26.0: 737 | version "6.26.0" 738 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 739 | dependencies: 740 | babel-runtime "^6.26.0" 741 | babel-traverse "^6.26.0" 742 | babel-types "^6.26.0" 743 | babylon "^6.18.0" 744 | lodash "^4.17.4" 745 | 746 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 747 | version "6.26.0" 748 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 749 | dependencies: 750 | babel-code-frame "^6.26.0" 751 | babel-messages "^6.23.0" 752 | babel-runtime "^6.26.0" 753 | babel-types "^6.26.0" 754 | babylon "^6.18.0" 755 | debug "^2.6.8" 756 | globals "^9.18.0" 757 | invariant "^2.2.2" 758 | lodash "^4.17.4" 759 | 760 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 761 | version "6.26.0" 762 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 763 | dependencies: 764 | babel-runtime "^6.26.0" 765 | esutils "^2.0.2" 766 | lodash "^4.17.4" 767 | to-fast-properties "^1.0.3" 768 | 769 | babylon@7.0.0-beta.44: 770 | version "7.0.0-beta.44" 771 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.44.tgz#89159e15e6e30c5096e22d738d8c0af8a0e8ca1d" 772 | 773 | babylon@^6.18.0: 774 | version "6.18.0" 775 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 776 | 777 | balanced-match@^1.0.0: 778 | version "1.0.0" 779 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 780 | 781 | base@^0.11.1: 782 | version "0.11.2" 783 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 784 | dependencies: 785 | cache-base "^1.0.1" 786 | class-utils "^0.3.5" 787 | component-emitter "^1.2.1" 788 | define-property "^1.0.0" 789 | isobject "^3.0.1" 790 | mixin-deep "^1.2.0" 791 | pascalcase "^0.1.1" 792 | 793 | binary-extensions@^1.0.0: 794 | version "1.11.0" 795 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 796 | 797 | brace-expansion@^1.1.7: 798 | version "1.1.11" 799 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 800 | dependencies: 801 | balanced-match "^1.0.0" 802 | concat-map "0.0.1" 803 | 804 | braces@^1.8.2: 805 | version "1.8.5" 806 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 807 | dependencies: 808 | expand-range "^1.8.1" 809 | preserve "^0.2.0" 810 | repeat-element "^1.1.2" 811 | 812 | braces@^2.3.1: 813 | version "2.3.2" 814 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 815 | dependencies: 816 | arr-flatten "^1.1.0" 817 | array-unique "^0.3.2" 818 | extend-shallow "^2.0.1" 819 | fill-range "^4.0.0" 820 | isobject "^3.0.1" 821 | repeat-element "^1.1.2" 822 | snapdragon "^0.8.1" 823 | snapdragon-node "^2.0.1" 824 | split-string "^3.0.2" 825 | to-regex "^3.0.1" 826 | 827 | browser-stdout@1.3.1: 828 | version "1.3.1" 829 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" 830 | 831 | browserslist@^3.2.6: 832 | version "3.2.8" 833 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6" 834 | dependencies: 835 | caniuse-lite "^1.0.30000844" 836 | electron-to-chromium "^1.3.47" 837 | 838 | buffer-from@^1.0.0: 839 | version "1.1.0" 840 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.0.tgz#87fcaa3a298358e0ade6e442cfce840740d1ad04" 841 | 842 | cache-base@^1.0.1: 843 | version "1.0.1" 844 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 845 | dependencies: 846 | collection-visit "^1.0.0" 847 | component-emitter "^1.2.1" 848 | get-value "^2.0.6" 849 | has-value "^1.0.0" 850 | isobject "^3.0.1" 851 | set-value "^2.0.0" 852 | to-object-path "^0.3.0" 853 | union-value "^1.0.0" 854 | unset-value "^1.0.0" 855 | 856 | caller-path@^0.1.0: 857 | version "0.1.0" 858 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 859 | dependencies: 860 | callsites "^0.2.0" 861 | 862 | callsites@^0.2.0: 863 | version "0.2.0" 864 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 865 | 866 | caniuse-lite@^1.0.30000844: 867 | version "1.0.30000865" 868 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000865.tgz#70026616e8afe6e1442f8bb4e1092987d81a2f25" 869 | 870 | chai@^4.1.2: 871 | version "4.1.2" 872 | resolved "https://registry.yarnpkg.com/chai/-/chai-4.1.2.tgz#0f64584ba642f0f2ace2806279f4f06ca23ad73c" 873 | dependencies: 874 | assertion-error "^1.0.1" 875 | check-error "^1.0.1" 876 | deep-eql "^3.0.0" 877 | get-func-name "^2.0.0" 878 | pathval "^1.0.0" 879 | type-detect "^4.0.0" 880 | 881 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 882 | version "1.1.3" 883 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 884 | dependencies: 885 | ansi-styles "^2.2.1" 886 | escape-string-regexp "^1.0.2" 887 | has-ansi "^2.0.0" 888 | strip-ansi "^3.0.0" 889 | supports-color "^2.0.0" 890 | 891 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.1, chalk@^2.4.1: 892 | version "2.4.1" 893 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 894 | dependencies: 895 | ansi-styles "^3.2.1" 896 | escape-string-regexp "^1.0.5" 897 | supports-color "^5.3.0" 898 | 899 | chardet@^0.4.0: 900 | version "0.4.2" 901 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 902 | 903 | chardet@^0.5.0: 904 | version "0.5.0" 905 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.5.0.tgz#fe3ac73c00c3d865ffcc02a0682e2c20b6a06029" 906 | 907 | check-error@^1.0.1: 908 | version "1.0.2" 909 | resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" 910 | 911 | chokidar@^1.6.1: 912 | version "1.7.0" 913 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 914 | dependencies: 915 | anymatch "^1.3.0" 916 | async-each "^1.0.0" 917 | glob-parent "^2.0.0" 918 | inherits "^2.0.1" 919 | is-binary-path "^1.0.0" 920 | is-glob "^2.0.0" 921 | path-is-absolute "^1.0.0" 922 | readdirp "^2.0.0" 923 | optionalDependencies: 924 | fsevents "^1.0.0" 925 | 926 | chownr@^1.0.1: 927 | version "1.0.1" 928 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 929 | 930 | ci-info@^1.0.0: 931 | version "1.1.3" 932 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.3.tgz#710193264bb05c77b8c90d02f5aaf22216a667b2" 933 | 934 | circular-json@^0.3.1: 935 | version "0.3.3" 936 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 937 | 938 | class-utils@^0.3.5: 939 | version "0.3.6" 940 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 941 | dependencies: 942 | arr-union "^3.1.0" 943 | define-property "^0.2.5" 944 | isobject "^3.0.0" 945 | static-extend "^0.1.1" 946 | 947 | cli-cursor@^1.0.2: 948 | version "1.0.2" 949 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 950 | dependencies: 951 | restore-cursor "^1.0.1" 952 | 953 | cli-cursor@^2.1.0: 954 | version "2.1.0" 955 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 956 | dependencies: 957 | restore-cursor "^2.0.0" 958 | 959 | cli-spinners@^0.1.2: 960 | version "0.1.2" 961 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 962 | 963 | cli-spinners@^1.1.0: 964 | version "1.3.1" 965 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.3.1.tgz#002c1990912d0d59580c93bd36c056de99e4259a" 966 | 967 | cli-truncate@^0.2.1: 968 | version "0.2.1" 969 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 970 | dependencies: 971 | slice-ansi "0.0.4" 972 | string-width "^1.0.1" 973 | 974 | cli-width@^2.0.0: 975 | version "2.2.0" 976 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 977 | 978 | clone@^1.0.2: 979 | version "1.0.4" 980 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" 981 | 982 | co@^4.6.0: 983 | version "4.6.0" 984 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 985 | 986 | code-point-at@^1.0.0: 987 | version "1.1.0" 988 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 989 | 990 | collection-visit@^1.0.0: 991 | version "1.0.0" 992 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 993 | dependencies: 994 | map-visit "^1.0.0" 995 | object-visit "^1.0.0" 996 | 997 | color-convert@^1.9.0: 998 | version "1.9.2" 999 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147" 1000 | dependencies: 1001 | color-name "1.1.1" 1002 | 1003 | color-name@1.1.1: 1004 | version "1.1.1" 1005 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689" 1006 | 1007 | commander@2.15.1: 1008 | version "2.15.1" 1009 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" 1010 | 1011 | commander@^2.11.0, commander@^2.14.1, commander@^2.16.0, commander@^2.9.0: 1012 | version "2.16.0" 1013 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.16.0.tgz#f16390593996ceb4f3eeb020b31d78528f7f8a50" 1014 | 1015 | common-tags@^1.4.0: 1016 | version "1.8.0" 1017 | resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937" 1018 | 1019 | component-emitter@^1.2.1: 1020 | version "1.2.1" 1021 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1022 | 1023 | concat-map@0.0.1: 1024 | version "0.0.1" 1025 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1026 | 1027 | concat-stream@^1.6.0: 1028 | version "1.6.2" 1029 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 1030 | dependencies: 1031 | buffer-from "^1.0.0" 1032 | inherits "^2.0.3" 1033 | readable-stream "^2.2.2" 1034 | typedarray "^0.0.6" 1035 | 1036 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1037 | version "1.1.0" 1038 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1039 | 1040 | convert-source-map@^1.5.0, convert-source-map@^1.5.1: 1041 | version "1.5.1" 1042 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 1043 | 1044 | copy-descriptor@^0.1.0: 1045 | version "0.1.1" 1046 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1047 | 1048 | core-js@^2.4.0, core-js@^2.5.0: 1049 | version "2.5.7" 1050 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 1051 | 1052 | core-util-is@~1.0.0: 1053 | version "1.0.2" 1054 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1055 | 1056 | cosmiconfig@^5.0.2: 1057 | version "5.0.5" 1058 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.0.5.tgz#a809e3c2306891ce17ab70359dc8bdf661fe2cd0" 1059 | dependencies: 1060 | is-directory "^0.3.1" 1061 | js-yaml "^3.9.0" 1062 | parse-json "^4.0.0" 1063 | 1064 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 1065 | version "5.1.0" 1066 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1067 | dependencies: 1068 | lru-cache "^4.0.1" 1069 | shebang-command "^1.2.0" 1070 | which "^1.2.9" 1071 | 1072 | cross-spawn@^6.0.5: 1073 | version "6.0.5" 1074 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 1075 | dependencies: 1076 | nice-try "^1.0.4" 1077 | path-key "^2.0.1" 1078 | semver "^5.5.0" 1079 | shebang-command "^1.2.0" 1080 | which "^1.2.9" 1081 | 1082 | date-fns@^1.27.2: 1083 | version "1.29.0" 1084 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.29.0.tgz#12e609cdcb935127311d04d33334e2960a2a54e6" 1085 | 1086 | debug@3.1.0, debug@^3.1.0: 1087 | version "3.1.0" 1088 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1089 | dependencies: 1090 | ms "2.0.0" 1091 | 1092 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: 1093 | version "2.6.9" 1094 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1095 | dependencies: 1096 | ms "2.0.0" 1097 | 1098 | decode-uri-component@^0.2.0: 1099 | version "0.2.0" 1100 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1101 | 1102 | dedent@^0.7.0: 1103 | version "0.7.0" 1104 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" 1105 | 1106 | deep-eql@^3.0.0: 1107 | version "3.0.1" 1108 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" 1109 | dependencies: 1110 | type-detect "^4.0.0" 1111 | 1112 | deep-extend@^0.6.0: 1113 | version "0.6.0" 1114 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 1115 | 1116 | deep-is@~0.1.3: 1117 | version "0.1.3" 1118 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1119 | 1120 | defaults@^1.0.3: 1121 | version "1.0.3" 1122 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 1123 | dependencies: 1124 | clone "^1.0.2" 1125 | 1126 | define-properties@^1.1.2: 1127 | version "1.1.2" 1128 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1129 | dependencies: 1130 | foreach "^2.0.5" 1131 | object-keys "^1.0.8" 1132 | 1133 | define-property@^0.2.5: 1134 | version "0.2.5" 1135 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1136 | dependencies: 1137 | is-descriptor "^0.1.0" 1138 | 1139 | define-property@^1.0.0: 1140 | version "1.0.0" 1141 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1142 | dependencies: 1143 | is-descriptor "^1.0.0" 1144 | 1145 | define-property@^2.0.2: 1146 | version "2.0.2" 1147 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1148 | dependencies: 1149 | is-descriptor "^1.0.2" 1150 | isobject "^3.0.1" 1151 | 1152 | del@^2.0.2: 1153 | version "2.2.2" 1154 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1155 | dependencies: 1156 | globby "^5.0.0" 1157 | is-path-cwd "^1.0.0" 1158 | is-path-in-cwd "^1.0.0" 1159 | object-assign "^4.0.1" 1160 | pify "^2.0.0" 1161 | pinkie-promise "^2.0.0" 1162 | rimraf "^2.2.8" 1163 | 1164 | delegates@^1.0.0: 1165 | version "1.0.0" 1166 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1167 | 1168 | detect-indent@^4.0.0: 1169 | version "4.0.0" 1170 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1171 | dependencies: 1172 | repeating "^2.0.0" 1173 | 1174 | detect-libc@^1.0.2: 1175 | version "1.0.3" 1176 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1177 | 1178 | diff@3.5.0: 1179 | version "3.5.0" 1180 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 1181 | 1182 | dlv@^1.1.0: 1183 | version "1.1.2" 1184 | resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.2.tgz#270f6737b30d25b6657a7e962c784403f85137e5" 1185 | 1186 | doctrine@^2.1.0: 1187 | version "2.1.0" 1188 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 1189 | dependencies: 1190 | esutils "^2.0.2" 1191 | 1192 | electron-to-chromium@^1.3.47: 1193 | version "1.3.52" 1194 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.52.tgz#d2d9f1270ba4a3b967b831c40ef71fb4d9ab5ce0" 1195 | 1196 | elegant-spinner@^1.0.1: 1197 | version "1.0.1" 1198 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 1199 | 1200 | error-ex@^1.3.1: 1201 | version "1.3.2" 1202 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1203 | dependencies: 1204 | is-arrayish "^0.2.1" 1205 | 1206 | es-abstract@^1.10.0: 1207 | version "1.12.0" 1208 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" 1209 | dependencies: 1210 | es-to-primitive "^1.1.1" 1211 | function-bind "^1.1.1" 1212 | has "^1.0.1" 1213 | is-callable "^1.1.3" 1214 | is-regex "^1.0.4" 1215 | 1216 | es-to-primitive@^1.1.1: 1217 | version "1.1.1" 1218 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1219 | dependencies: 1220 | is-callable "^1.1.1" 1221 | is-date-object "^1.0.1" 1222 | is-symbol "^1.0.1" 1223 | 1224 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1225 | version "1.0.5" 1226 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1227 | 1228 | eslint-config-prettier@^2.9.0: 1229 | version "2.9.0" 1230 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.9.0.tgz#5ecd65174d486c22dff389fe036febf502d468a3" 1231 | dependencies: 1232 | get-stdin "^5.0.1" 1233 | 1234 | eslint-plugin-prettier@^2.6.2: 1235 | version "2.6.2" 1236 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.6.2.tgz#71998c60aedfa2141f7bfcbf9d1c459bf98b4fad" 1237 | dependencies: 1238 | fast-diff "^1.1.1" 1239 | jest-docblock "^21.0.0" 1240 | 1241 | eslint-scope@3.7.1: 1242 | version "3.7.1" 1243 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1244 | dependencies: 1245 | esrecurse "^4.1.0" 1246 | estraverse "^4.1.1" 1247 | 1248 | eslint-scope@^3.7.1: 1249 | version "3.7.3" 1250 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.3.tgz#bb507200d3d17f60247636160b4826284b108535" 1251 | dependencies: 1252 | esrecurse "^4.1.0" 1253 | estraverse "^4.1.1" 1254 | 1255 | eslint-scope@^4.0.0: 1256 | version "4.0.0" 1257 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.0.tgz#50bf3071e9338bcdc43331794a0cb533f0136172" 1258 | dependencies: 1259 | esrecurse "^4.1.0" 1260 | estraverse "^4.1.1" 1261 | 1262 | eslint-utils@^1.3.1: 1263 | version "1.4.2" 1264 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.2.tgz#166a5180ef6ab7eb462f162fd0e6f2463d7309ab" 1265 | dependencies: 1266 | eslint-visitor-keys "^1.0.0" 1267 | 1268 | eslint-visitor-keys@^1.0.0: 1269 | version "1.1.0" 1270 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" 1271 | 1272 | eslint@^4.0.0: 1273 | version "4.19.1" 1274 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300" 1275 | dependencies: 1276 | ajv "^5.3.0" 1277 | babel-code-frame "^6.22.0" 1278 | chalk "^2.1.0" 1279 | concat-stream "^1.6.0" 1280 | cross-spawn "^5.1.0" 1281 | debug "^3.1.0" 1282 | doctrine "^2.1.0" 1283 | eslint-scope "^3.7.1" 1284 | eslint-visitor-keys "^1.0.0" 1285 | espree "^3.5.4" 1286 | esquery "^1.0.0" 1287 | esutils "^2.0.2" 1288 | file-entry-cache "^2.0.0" 1289 | functional-red-black-tree "^1.0.1" 1290 | glob "^7.1.2" 1291 | globals "^11.0.1" 1292 | ignore "^3.3.3" 1293 | imurmurhash "^0.1.4" 1294 | inquirer "^3.0.6" 1295 | is-resolvable "^1.0.0" 1296 | js-yaml "^3.9.1" 1297 | json-stable-stringify-without-jsonify "^1.0.1" 1298 | levn "^0.3.0" 1299 | lodash "^4.17.4" 1300 | minimatch "^3.0.2" 1301 | mkdirp "^0.5.1" 1302 | natural-compare "^1.4.0" 1303 | optionator "^0.8.2" 1304 | path-is-inside "^1.0.2" 1305 | pluralize "^7.0.0" 1306 | progress "^2.0.0" 1307 | regexpp "^1.0.1" 1308 | require-uncached "^1.0.3" 1309 | semver "^5.3.0" 1310 | strip-ansi "^4.0.0" 1311 | strip-json-comments "~2.0.1" 1312 | table "4.0.2" 1313 | text-table "~0.2.0" 1314 | 1315 | eslint@^5.2.0: 1316 | version "5.2.0" 1317 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.2.0.tgz#3901ae249195d473e633c4acbc370068b1c964dc" 1318 | dependencies: 1319 | ajv "^6.5.0" 1320 | babel-code-frame "^6.26.0" 1321 | chalk "^2.1.0" 1322 | cross-spawn "^6.0.5" 1323 | debug "^3.1.0" 1324 | doctrine "^2.1.0" 1325 | eslint-scope "^4.0.0" 1326 | eslint-utils "^1.3.1" 1327 | eslint-visitor-keys "^1.0.0" 1328 | espree "^4.0.0" 1329 | esquery "^1.0.1" 1330 | esutils "^2.0.2" 1331 | file-entry-cache "^2.0.0" 1332 | functional-red-black-tree "^1.0.1" 1333 | glob "^7.1.2" 1334 | globals "^11.7.0" 1335 | ignore "^4.0.2" 1336 | imurmurhash "^0.1.4" 1337 | inquirer "^5.2.0" 1338 | is-resolvable "^1.1.0" 1339 | js-yaml "^3.11.0" 1340 | json-stable-stringify-without-jsonify "^1.0.1" 1341 | levn "^0.3.0" 1342 | lodash "^4.17.5" 1343 | minimatch "^3.0.4" 1344 | mkdirp "^0.5.1" 1345 | natural-compare "^1.4.0" 1346 | optionator "^0.8.2" 1347 | path-is-inside "^1.0.2" 1348 | pluralize "^7.0.0" 1349 | progress "^2.0.0" 1350 | regexpp "^1.1.0" 1351 | require-uncached "^1.0.3" 1352 | semver "^5.5.0" 1353 | string.prototype.matchall "^2.0.0" 1354 | strip-ansi "^4.0.0" 1355 | strip-json-comments "^2.0.1" 1356 | table "^4.0.3" 1357 | text-table "^0.2.0" 1358 | 1359 | espree@^3.5.2, espree@^3.5.4: 1360 | version "3.5.4" 1361 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" 1362 | dependencies: 1363 | acorn "^5.5.0" 1364 | acorn-jsx "^3.0.0" 1365 | 1366 | espree@^4.0.0: 1367 | version "4.0.0" 1368 | resolved "https://registry.yarnpkg.com/espree/-/espree-4.0.0.tgz#253998f20a0f82db5d866385799d912a83a36634" 1369 | dependencies: 1370 | acorn "^5.6.0" 1371 | acorn-jsx "^4.1.1" 1372 | 1373 | esprima@^4.0.0: 1374 | version "4.0.1" 1375 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1376 | 1377 | esquery@^1.0.0, esquery@^1.0.1: 1378 | version "1.0.1" 1379 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" 1380 | dependencies: 1381 | estraverse "^4.0.0" 1382 | 1383 | esrecurse@^4.1.0: 1384 | version "4.2.1" 1385 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 1386 | dependencies: 1387 | estraverse "^4.1.0" 1388 | 1389 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 1390 | version "4.2.0" 1391 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1392 | 1393 | esutils@^2.0.2: 1394 | version "2.0.2" 1395 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1396 | 1397 | execa@^0.9.0: 1398 | version "0.9.0" 1399 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.9.0.tgz#adb7ce62cf985071f60580deb4a88b9e34712d01" 1400 | dependencies: 1401 | cross-spawn "^5.0.1" 1402 | get-stream "^3.0.0" 1403 | is-stream "^1.1.0" 1404 | npm-run-path "^2.0.0" 1405 | p-finally "^1.0.0" 1406 | signal-exit "^3.0.0" 1407 | strip-eof "^1.0.0" 1408 | 1409 | exit-hook@^1.0.0: 1410 | version "1.1.1" 1411 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1412 | 1413 | expand-brackets@^0.1.4: 1414 | version "0.1.5" 1415 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1416 | dependencies: 1417 | is-posix-bracket "^0.1.0" 1418 | 1419 | expand-brackets@^2.1.4: 1420 | version "2.1.4" 1421 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1422 | dependencies: 1423 | debug "^2.3.3" 1424 | define-property "^0.2.5" 1425 | extend-shallow "^2.0.1" 1426 | posix-character-classes "^0.1.0" 1427 | regex-not "^1.0.0" 1428 | snapdragon "^0.8.1" 1429 | to-regex "^3.0.1" 1430 | 1431 | expand-range@^1.8.1: 1432 | version "1.8.2" 1433 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1434 | dependencies: 1435 | fill-range "^2.1.0" 1436 | 1437 | extend-shallow@^2.0.1: 1438 | version "2.0.1" 1439 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1440 | dependencies: 1441 | is-extendable "^0.1.0" 1442 | 1443 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1444 | version "3.0.2" 1445 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1446 | dependencies: 1447 | assign-symbols "^1.0.0" 1448 | is-extendable "^1.0.1" 1449 | 1450 | external-editor@^2.0.4, external-editor@^2.1.0: 1451 | version "2.2.0" 1452 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" 1453 | dependencies: 1454 | chardet "^0.4.0" 1455 | iconv-lite "^0.4.17" 1456 | tmp "^0.0.33" 1457 | 1458 | external-editor@^3.0.0: 1459 | version "3.0.0" 1460 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.0.tgz#dc35c48c6f98a30ca27a20e9687d7f3c77704bb6" 1461 | dependencies: 1462 | chardet "^0.5.0" 1463 | iconv-lite "^0.4.22" 1464 | tmp "^0.0.33" 1465 | 1466 | extglob@^0.3.1: 1467 | version "0.3.2" 1468 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1469 | dependencies: 1470 | is-extglob "^1.0.0" 1471 | 1472 | extglob@^2.0.4: 1473 | version "2.0.4" 1474 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1475 | dependencies: 1476 | array-unique "^0.3.2" 1477 | define-property "^1.0.0" 1478 | expand-brackets "^2.1.4" 1479 | extend-shallow "^2.0.1" 1480 | fragment-cache "^0.2.1" 1481 | regex-not "^1.0.0" 1482 | snapdragon "^0.8.1" 1483 | to-regex "^3.0.1" 1484 | 1485 | fast-deep-equal@^1.0.0: 1486 | version "1.1.0" 1487 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 1488 | 1489 | fast-deep-equal@^2.0.1: 1490 | version "2.0.1" 1491 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 1492 | 1493 | fast-diff@^1.1.1: 1494 | version "1.1.2" 1495 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.2.tgz#4b62c42b8e03de3f848460b639079920695d0154" 1496 | 1497 | fast-json-stable-stringify@^2.0.0: 1498 | version "2.0.0" 1499 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1500 | 1501 | fast-levenshtein@~2.0.4: 1502 | version "2.0.6" 1503 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1504 | 1505 | figures@^1.7.0: 1506 | version "1.7.0" 1507 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1508 | dependencies: 1509 | escape-string-regexp "^1.0.5" 1510 | object-assign "^4.1.0" 1511 | 1512 | figures@^2.0.0: 1513 | version "2.0.0" 1514 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1515 | dependencies: 1516 | escape-string-regexp "^1.0.5" 1517 | 1518 | file-entry-cache@^2.0.0: 1519 | version "2.0.0" 1520 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1521 | dependencies: 1522 | flat-cache "^1.2.1" 1523 | object-assign "^4.0.1" 1524 | 1525 | filename-regex@^2.0.0: 1526 | version "2.0.1" 1527 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1528 | 1529 | fill-range@^2.1.0: 1530 | version "2.2.4" 1531 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 1532 | dependencies: 1533 | is-number "^2.1.0" 1534 | isobject "^2.0.0" 1535 | randomatic "^3.0.0" 1536 | repeat-element "^1.1.2" 1537 | repeat-string "^1.5.2" 1538 | 1539 | fill-range@^4.0.0: 1540 | version "4.0.0" 1541 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1542 | dependencies: 1543 | extend-shallow "^2.0.1" 1544 | is-number "^3.0.0" 1545 | repeat-string "^1.6.1" 1546 | to-regex-range "^2.1.0" 1547 | 1548 | find-parent-dir@^0.3.0: 1549 | version "0.3.0" 1550 | resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" 1551 | 1552 | flat-cache@^1.2.1: 1553 | version "1.3.0" 1554 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1555 | dependencies: 1556 | circular-json "^0.3.1" 1557 | del "^2.0.2" 1558 | graceful-fs "^4.1.2" 1559 | write "^0.2.1" 1560 | 1561 | for-in@^1.0.1, for-in@^1.0.2: 1562 | version "1.0.2" 1563 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1564 | 1565 | for-own@^0.1.4: 1566 | version "0.1.5" 1567 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1568 | dependencies: 1569 | for-in "^1.0.1" 1570 | 1571 | foreach@^2.0.5: 1572 | version "2.0.5" 1573 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1574 | 1575 | fragment-cache@^0.2.1: 1576 | version "0.2.1" 1577 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1578 | dependencies: 1579 | map-cache "^0.2.2" 1580 | 1581 | fs-minipass@^1.2.5: 1582 | version "1.2.5" 1583 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 1584 | dependencies: 1585 | minipass "^2.2.1" 1586 | 1587 | fs-readdir-recursive@^1.0.0: 1588 | version "1.1.0" 1589 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1590 | 1591 | fs.realpath@^1.0.0: 1592 | version "1.0.0" 1593 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1594 | 1595 | fsevents@^1.0.0: 1596 | version "1.2.4" 1597 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 1598 | dependencies: 1599 | nan "^2.9.2" 1600 | node-pre-gyp "^0.10.0" 1601 | 1602 | function-bind@^1.1.1: 1603 | version "1.1.1" 1604 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1605 | 1606 | functional-red-black-tree@^1.0.1: 1607 | version "1.0.1" 1608 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1609 | 1610 | gauge@~2.7.3: 1611 | version "2.7.4" 1612 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1613 | dependencies: 1614 | aproba "^1.0.3" 1615 | console-control-strings "^1.0.0" 1616 | has-unicode "^2.0.0" 1617 | object-assign "^4.1.0" 1618 | signal-exit "^3.0.0" 1619 | string-width "^1.0.1" 1620 | strip-ansi "^3.0.1" 1621 | wide-align "^1.1.0" 1622 | 1623 | get-func-name@^2.0.0: 1624 | version "2.0.0" 1625 | resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" 1626 | 1627 | get-own-enumerable-property-symbols@^2.0.1: 1628 | version "2.0.1" 1629 | resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-2.0.1.tgz#5c4ad87f2834c4b9b4e84549dc1e0650fb38c24b" 1630 | 1631 | get-stdin@^5.0.1: 1632 | version "5.0.1" 1633 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1634 | 1635 | get-stream@^3.0.0: 1636 | version "3.0.0" 1637 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1638 | 1639 | get-value@^2.0.3, get-value@^2.0.6: 1640 | version "2.0.6" 1641 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1642 | 1643 | glob-base@^0.3.0: 1644 | version "0.3.0" 1645 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1646 | dependencies: 1647 | glob-parent "^2.0.0" 1648 | is-glob "^2.0.0" 1649 | 1650 | glob-parent@^2.0.0: 1651 | version "2.0.0" 1652 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1653 | dependencies: 1654 | is-glob "^2.0.0" 1655 | 1656 | glob@7.1.2, glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.2: 1657 | version "7.1.2" 1658 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1659 | dependencies: 1660 | fs.realpath "^1.0.0" 1661 | inflight "^1.0.4" 1662 | inherits "2" 1663 | minimatch "^3.0.4" 1664 | once "^1.3.0" 1665 | path-is-absolute "^1.0.0" 1666 | 1667 | globals@^11.0.1, globals@^11.1.0, globals@^11.7.0: 1668 | version "11.7.0" 1669 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.7.0.tgz#a583faa43055b1aca771914bf68258e2fc125673" 1670 | 1671 | globals@^9.18.0: 1672 | version "9.18.0" 1673 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1674 | 1675 | globby@^5.0.0: 1676 | version "5.0.0" 1677 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1678 | dependencies: 1679 | array-union "^1.0.1" 1680 | arrify "^1.0.0" 1681 | glob "^7.0.3" 1682 | object-assign "^4.0.1" 1683 | pify "^2.0.0" 1684 | pinkie-promise "^2.0.0" 1685 | 1686 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1687 | version "4.1.11" 1688 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1689 | 1690 | growl@1.10.5: 1691 | version "1.10.5" 1692 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" 1693 | 1694 | has-ansi@^2.0.0: 1695 | version "2.0.0" 1696 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1697 | dependencies: 1698 | ansi-regex "^2.0.0" 1699 | 1700 | has-flag@^3.0.0: 1701 | version "3.0.0" 1702 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1703 | 1704 | has-symbols@^1.0.0: 1705 | version "1.0.0" 1706 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 1707 | 1708 | has-unicode@^2.0.0: 1709 | version "2.0.1" 1710 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1711 | 1712 | has-value@^0.3.1: 1713 | version "0.3.1" 1714 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1715 | dependencies: 1716 | get-value "^2.0.3" 1717 | has-values "^0.1.4" 1718 | isobject "^2.0.0" 1719 | 1720 | has-value@^1.0.0: 1721 | version "1.0.0" 1722 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1723 | dependencies: 1724 | get-value "^2.0.6" 1725 | has-values "^1.0.0" 1726 | isobject "^3.0.0" 1727 | 1728 | has-values@^0.1.4: 1729 | version "0.1.4" 1730 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1731 | 1732 | has-values@^1.0.0: 1733 | version "1.0.0" 1734 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1735 | dependencies: 1736 | is-number "^3.0.0" 1737 | kind-of "^4.0.0" 1738 | 1739 | has@^1.0.1: 1740 | version "1.0.3" 1741 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1742 | dependencies: 1743 | function-bind "^1.1.1" 1744 | 1745 | he@1.1.1: 1746 | version "1.1.1" 1747 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1748 | 1749 | home-or-tmp@^2.0.0: 1750 | version "2.0.0" 1751 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1752 | dependencies: 1753 | os-homedir "^1.0.0" 1754 | os-tmpdir "^1.0.1" 1755 | 1756 | husky@^0.14.3: 1757 | version "0.14.3" 1758 | resolved "https://registry.yarnpkg.com/husky/-/husky-0.14.3.tgz#c69ed74e2d2779769a17ba8399b54ce0b63c12c3" 1759 | dependencies: 1760 | is-ci "^1.0.10" 1761 | normalize-path "^1.0.0" 1762 | strip-indent "^2.0.0" 1763 | 1764 | iconv-lite@^0.4.17, iconv-lite@^0.4.22, iconv-lite@^0.4.4: 1765 | version "0.4.23" 1766 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 1767 | dependencies: 1768 | safer-buffer ">= 2.1.2 < 3" 1769 | 1770 | ignore-walk@^3.0.1: 1771 | version "3.0.1" 1772 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1773 | dependencies: 1774 | minimatch "^3.0.4" 1775 | 1776 | ignore@^3.3.3: 1777 | version "3.3.10" 1778 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" 1779 | 1780 | ignore@^4.0.2: 1781 | version "4.0.2" 1782 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.2.tgz#0a8dd228947ec78c2d7f736b1642a9f7317c1905" 1783 | 1784 | imurmurhash@^0.1.4: 1785 | version "0.1.4" 1786 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1787 | 1788 | indent-string@^2.1.0: 1789 | version "2.1.0" 1790 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1791 | dependencies: 1792 | repeating "^2.0.0" 1793 | 1794 | indent-string@^3.0.0, indent-string@^3.2.0: 1795 | version "3.2.0" 1796 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1797 | 1798 | inflight@^1.0.4: 1799 | version "1.0.6" 1800 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1801 | dependencies: 1802 | once "^1.3.0" 1803 | wrappy "1" 1804 | 1805 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: 1806 | version "2.0.3" 1807 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1808 | 1809 | ini@~1.3.0: 1810 | version "1.3.5" 1811 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1812 | 1813 | inquirer@^3.0.6: 1814 | version "3.3.0" 1815 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1816 | dependencies: 1817 | ansi-escapes "^3.0.0" 1818 | chalk "^2.0.0" 1819 | cli-cursor "^2.1.0" 1820 | cli-width "^2.0.0" 1821 | external-editor "^2.0.4" 1822 | figures "^2.0.0" 1823 | lodash "^4.3.0" 1824 | mute-stream "0.0.7" 1825 | run-async "^2.2.0" 1826 | rx-lite "^4.0.8" 1827 | rx-lite-aggregates "^4.0.8" 1828 | string-width "^2.1.0" 1829 | strip-ansi "^4.0.0" 1830 | through "^2.3.6" 1831 | 1832 | inquirer@^5.2.0: 1833 | version "5.2.0" 1834 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-5.2.0.tgz#db350c2b73daca77ff1243962e9f22f099685726" 1835 | dependencies: 1836 | ansi-escapes "^3.0.0" 1837 | chalk "^2.0.0" 1838 | cli-cursor "^2.1.0" 1839 | cli-width "^2.0.0" 1840 | external-editor "^2.1.0" 1841 | figures "^2.0.0" 1842 | lodash "^4.3.0" 1843 | mute-stream "0.0.7" 1844 | run-async "^2.2.0" 1845 | rxjs "^5.5.2" 1846 | string-width "^2.1.0" 1847 | strip-ansi "^4.0.0" 1848 | through "^2.3.6" 1849 | 1850 | inquirer@^6.0.0: 1851 | version "6.0.0" 1852 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.0.0.tgz#e8c20303ddc15bbfc2c12a6213710ccd9e1413d8" 1853 | dependencies: 1854 | ansi-escapes "^3.0.0" 1855 | chalk "^2.0.0" 1856 | cli-cursor "^2.1.0" 1857 | cli-width "^2.0.0" 1858 | external-editor "^3.0.0" 1859 | figures "^2.0.0" 1860 | lodash "^4.3.0" 1861 | mute-stream "0.0.7" 1862 | run-async "^2.2.0" 1863 | rxjs "^6.1.0" 1864 | string-width "^2.1.0" 1865 | strip-ansi "^4.0.0" 1866 | through "^2.3.6" 1867 | 1868 | interpret@^1.0.0: 1869 | version "1.1.0" 1870 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" 1871 | 1872 | invariant@^2.2.0, invariant@^2.2.2: 1873 | version "2.2.4" 1874 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1875 | dependencies: 1876 | loose-envify "^1.0.0" 1877 | 1878 | is-accessor-descriptor@^0.1.6: 1879 | version "0.1.6" 1880 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1881 | dependencies: 1882 | kind-of "^3.0.2" 1883 | 1884 | is-accessor-descriptor@^1.0.0: 1885 | version "1.0.0" 1886 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1887 | dependencies: 1888 | kind-of "^6.0.0" 1889 | 1890 | is-arrayish@^0.2.1: 1891 | version "0.2.1" 1892 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1893 | 1894 | is-binary-path@^1.0.0: 1895 | version "1.0.1" 1896 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1897 | dependencies: 1898 | binary-extensions "^1.0.0" 1899 | 1900 | is-buffer@^1.1.5: 1901 | version "1.1.6" 1902 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1903 | 1904 | is-callable@^1.1.1, is-callable@^1.1.3: 1905 | version "1.1.4" 1906 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" 1907 | 1908 | is-ci@^1.0.10: 1909 | version "1.1.0" 1910 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" 1911 | dependencies: 1912 | ci-info "^1.0.0" 1913 | 1914 | is-data-descriptor@^0.1.4: 1915 | version "0.1.4" 1916 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1917 | dependencies: 1918 | kind-of "^3.0.2" 1919 | 1920 | is-data-descriptor@^1.0.0: 1921 | version "1.0.0" 1922 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1923 | dependencies: 1924 | kind-of "^6.0.0" 1925 | 1926 | is-date-object@^1.0.1: 1927 | version "1.0.1" 1928 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1929 | 1930 | is-descriptor@^0.1.0: 1931 | version "0.1.6" 1932 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1933 | dependencies: 1934 | is-accessor-descriptor "^0.1.6" 1935 | is-data-descriptor "^0.1.4" 1936 | kind-of "^5.0.0" 1937 | 1938 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1939 | version "1.0.2" 1940 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1941 | dependencies: 1942 | is-accessor-descriptor "^1.0.0" 1943 | is-data-descriptor "^1.0.0" 1944 | kind-of "^6.0.2" 1945 | 1946 | is-directory@^0.3.1: 1947 | version "0.3.1" 1948 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" 1949 | 1950 | is-dotfile@^1.0.0: 1951 | version "1.0.3" 1952 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1953 | 1954 | is-equal-shallow@^0.1.3: 1955 | version "0.1.3" 1956 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1957 | dependencies: 1958 | is-primitive "^2.0.0" 1959 | 1960 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1961 | version "0.1.1" 1962 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1963 | 1964 | is-extendable@^1.0.1: 1965 | version "1.0.1" 1966 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1967 | dependencies: 1968 | is-plain-object "^2.0.4" 1969 | 1970 | is-extglob@^1.0.0: 1971 | version "1.0.0" 1972 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1973 | 1974 | is-extglob@^2.1.1: 1975 | version "2.1.1" 1976 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1977 | 1978 | is-finite@^1.0.0: 1979 | version "1.0.2" 1980 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1981 | dependencies: 1982 | number-is-nan "^1.0.0" 1983 | 1984 | is-fullwidth-code-point@^1.0.0: 1985 | version "1.0.0" 1986 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1987 | dependencies: 1988 | number-is-nan "^1.0.0" 1989 | 1990 | is-fullwidth-code-point@^2.0.0: 1991 | version "2.0.0" 1992 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1993 | 1994 | is-glob@^2.0.0, is-glob@^2.0.1: 1995 | version "2.0.1" 1996 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1997 | dependencies: 1998 | is-extglob "^1.0.0" 1999 | 2000 | is-glob@^4.0.0: 2001 | version "4.0.0" 2002 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 2003 | dependencies: 2004 | is-extglob "^2.1.1" 2005 | 2006 | is-number@^2.1.0: 2007 | version "2.1.0" 2008 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2009 | dependencies: 2010 | kind-of "^3.0.2" 2011 | 2012 | is-number@^3.0.0: 2013 | version "3.0.0" 2014 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2015 | dependencies: 2016 | kind-of "^3.0.2" 2017 | 2018 | is-number@^4.0.0: 2019 | version "4.0.0" 2020 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 2021 | 2022 | is-obj@^1.0.1: 2023 | version "1.0.1" 2024 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 2025 | 2026 | is-observable@^1.1.0: 2027 | version "1.1.0" 2028 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e" 2029 | dependencies: 2030 | symbol-observable "^1.1.0" 2031 | 2032 | is-path-cwd@^1.0.0: 2033 | version "1.0.0" 2034 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2035 | 2036 | is-path-in-cwd@^1.0.0: 2037 | version "1.0.1" 2038 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" 2039 | dependencies: 2040 | is-path-inside "^1.0.0" 2041 | 2042 | is-path-inside@^1.0.0: 2043 | version "1.0.1" 2044 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 2045 | dependencies: 2046 | path-is-inside "^1.0.1" 2047 | 2048 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 2049 | version "2.0.4" 2050 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 2051 | dependencies: 2052 | isobject "^3.0.1" 2053 | 2054 | is-posix-bracket@^0.1.0: 2055 | version "0.1.1" 2056 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2057 | 2058 | is-primitive@^2.0.0: 2059 | version "2.0.0" 2060 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2061 | 2062 | is-promise@^2.1.0: 2063 | version "2.1.0" 2064 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2065 | 2066 | is-regex@^1.0.4: 2067 | version "1.0.4" 2068 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2069 | dependencies: 2070 | has "^1.0.1" 2071 | 2072 | is-regexp@^1.0.0: 2073 | version "1.0.0" 2074 | resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" 2075 | 2076 | is-resolvable@^1.0.0, is-resolvable@^1.1.0: 2077 | version "1.1.0" 2078 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 2079 | 2080 | is-stream@^1.1.0: 2081 | version "1.1.0" 2082 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2083 | 2084 | is-symbol@^1.0.1: 2085 | version "1.0.1" 2086 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 2087 | 2088 | is-windows@^1.0.2: 2089 | version "1.0.2" 2090 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 2091 | 2092 | isarray@1.0.0, isarray@~1.0.0: 2093 | version "1.0.0" 2094 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2095 | 2096 | isexe@^2.0.0: 2097 | version "2.0.0" 2098 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2099 | 2100 | isobject@^2.0.0: 2101 | version "2.1.0" 2102 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2103 | dependencies: 2104 | isarray "1.0.0" 2105 | 2106 | isobject@^3.0.0, isobject@^3.0.1: 2107 | version "3.0.1" 2108 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 2109 | 2110 | jest-docblock@^21.0.0: 2111 | version "21.2.0" 2112 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" 2113 | 2114 | jest-get-type@^22.1.0: 2115 | version "22.4.3" 2116 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" 2117 | 2118 | jest-validate@^23.0.0: 2119 | version "23.4.0" 2120 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.4.0.tgz#d96eede01ef03ac909c009e9c8e455197d48c201" 2121 | dependencies: 2122 | chalk "^2.0.1" 2123 | jest-get-type "^22.1.0" 2124 | leven "^2.1.0" 2125 | pretty-format "^23.2.0" 2126 | 2127 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2128 | version "3.0.2" 2129 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2130 | 2131 | "js-tokens@^3.0.0 || ^4.0.0": 2132 | version "4.0.0" 2133 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2134 | 2135 | js-yaml@^3.11.0, js-yaml@^3.9.0, js-yaml@^3.9.1: 2136 | version "3.13.1" 2137 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 2138 | dependencies: 2139 | argparse "^1.0.7" 2140 | esprima "^4.0.0" 2141 | 2142 | jsesc@^1.3.0: 2143 | version "1.3.0" 2144 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2145 | 2146 | jsesc@^2.5.1: 2147 | version "2.5.1" 2148 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.1.tgz#e421a2a8e20d6b0819df28908f782526b96dd1fe" 2149 | 2150 | jsesc@~0.5.0: 2151 | version "0.5.0" 2152 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2153 | 2154 | json-parse-better-errors@^1.0.1: 2155 | version "1.0.2" 2156 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 2157 | 2158 | json-schema-traverse@^0.3.0: 2159 | version "0.3.1" 2160 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2161 | 2162 | json-schema-traverse@^0.4.1: 2163 | version "0.4.1" 2164 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 2165 | 2166 | json-stable-stringify-without-jsonify@^1.0.1: 2167 | version "1.0.1" 2168 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2169 | 2170 | json5@^0.5.1: 2171 | version "0.5.1" 2172 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2173 | 2174 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2175 | version "3.2.2" 2176 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2177 | dependencies: 2178 | is-buffer "^1.1.5" 2179 | 2180 | kind-of@^4.0.0: 2181 | version "4.0.0" 2182 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2183 | dependencies: 2184 | is-buffer "^1.1.5" 2185 | 2186 | kind-of@^5.0.0: 2187 | version "5.1.0" 2188 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2189 | 2190 | kind-of@^6.0.0, kind-of@^6.0.2: 2191 | version "6.0.2" 2192 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2193 | 2194 | leven@^2.1.0: 2195 | version "2.1.0" 2196 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2197 | 2198 | levn@^0.3.0, levn@~0.3.0: 2199 | version "0.3.0" 2200 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2201 | dependencies: 2202 | prelude-ls "~1.1.2" 2203 | type-check "~0.3.2" 2204 | 2205 | lint-staged@^7.2.0: 2206 | version "7.2.0" 2207 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-7.2.0.tgz#bdf4bb7f2f37fe689acfaec9999db288a5b26888" 2208 | dependencies: 2209 | app-root-path "^2.0.1" 2210 | chalk "^2.3.1" 2211 | commander "^2.14.1" 2212 | cosmiconfig "^5.0.2" 2213 | debug "^3.1.0" 2214 | dedent "^0.7.0" 2215 | execa "^0.9.0" 2216 | find-parent-dir "^0.3.0" 2217 | is-glob "^4.0.0" 2218 | is-windows "^1.0.2" 2219 | jest-validate "^23.0.0" 2220 | listr "^0.14.1" 2221 | lodash "^4.17.5" 2222 | log-symbols "^2.2.0" 2223 | micromatch "^3.1.8" 2224 | npm-which "^3.0.1" 2225 | p-map "^1.1.1" 2226 | path-is-inside "^1.0.2" 2227 | pify "^3.0.0" 2228 | please-upgrade-node "^3.0.2" 2229 | staged-git-files "1.1.1" 2230 | string-argv "^0.0.2" 2231 | stringify-object "^3.2.2" 2232 | 2233 | listr-silent-renderer@^1.1.1: 2234 | version "1.1.1" 2235 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" 2236 | 2237 | listr-update-renderer@^0.4.0: 2238 | version "0.4.0" 2239 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.4.0.tgz#344d980da2ca2e8b145ba305908f32ae3f4cc8a7" 2240 | dependencies: 2241 | chalk "^1.1.3" 2242 | cli-truncate "^0.2.1" 2243 | elegant-spinner "^1.0.1" 2244 | figures "^1.7.0" 2245 | indent-string "^3.0.0" 2246 | log-symbols "^1.0.2" 2247 | log-update "^1.0.2" 2248 | strip-ansi "^3.0.1" 2249 | 2250 | listr-verbose-renderer@^0.4.0: 2251 | version "0.4.1" 2252 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz#8206f4cf6d52ddc5827e5fd14989e0e965933a35" 2253 | dependencies: 2254 | chalk "^1.1.3" 2255 | cli-cursor "^1.0.2" 2256 | date-fns "^1.27.2" 2257 | figures "^1.7.0" 2258 | 2259 | listr@^0.14.1: 2260 | version "0.14.1" 2261 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.1.tgz#8a7afa4a7135cee4c921d128e0b7dfc6e522d43d" 2262 | dependencies: 2263 | "@samverschueren/stream-to-observable" "^0.3.0" 2264 | cli-truncate "^0.2.1" 2265 | figures "^1.7.0" 2266 | indent-string "^2.1.0" 2267 | is-observable "^1.1.0" 2268 | is-promise "^2.1.0" 2269 | is-stream "^1.1.0" 2270 | listr-silent-renderer "^1.1.1" 2271 | listr-update-renderer "^0.4.0" 2272 | listr-verbose-renderer "^0.4.0" 2273 | log-symbols "^1.0.2" 2274 | log-update "^1.0.2" 2275 | ora "^0.2.3" 2276 | p-map "^1.1.1" 2277 | rxjs "^6.1.0" 2278 | strip-ansi "^3.0.1" 2279 | 2280 | lodash.merge@^4.6.0: 2281 | version "4.6.2" 2282 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 2283 | 2284 | lodash.unescape@4.0.1: 2285 | version "4.0.1" 2286 | resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c" 2287 | 2288 | lodash@^4.17.4, lodash@^4.17.5, lodash@^4.2.0, lodash@^4.3.0: 2289 | version "4.17.15" 2290 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 2291 | 2292 | log-symbols@^1.0.2: 2293 | version "1.0.2" 2294 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 2295 | dependencies: 2296 | chalk "^1.0.0" 2297 | 2298 | log-symbols@^2.2.0: 2299 | version "2.2.0" 2300 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" 2301 | dependencies: 2302 | chalk "^2.0.1" 2303 | 2304 | log-update@^1.0.2: 2305 | version "1.0.2" 2306 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" 2307 | dependencies: 2308 | ansi-escapes "^1.0.0" 2309 | cli-cursor "^1.0.2" 2310 | 2311 | loglevel-colored-level-prefix@^1.0.0: 2312 | version "1.0.0" 2313 | resolved "https://registry.yarnpkg.com/loglevel-colored-level-prefix/-/loglevel-colored-level-prefix-1.0.0.tgz#6a40218fdc7ae15fc76c3d0f3e676c465388603e" 2314 | dependencies: 2315 | chalk "^1.1.3" 2316 | loglevel "^1.4.1" 2317 | 2318 | loglevel@^1.4.1: 2319 | version "1.6.1" 2320 | resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.1.tgz#e0fc95133b6ef276cdc8887cdaf24aa6f156f8fa" 2321 | 2322 | loose-envify@^1.0.0: 2323 | version "1.4.0" 2324 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 2325 | dependencies: 2326 | js-tokens "^3.0.0 || ^4.0.0" 2327 | 2328 | lru-cache@^4.0.1: 2329 | version "4.1.3" 2330 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" 2331 | dependencies: 2332 | pseudomap "^1.0.2" 2333 | yallist "^2.1.2" 2334 | 2335 | map-cache@^0.2.2: 2336 | version "0.2.2" 2337 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2338 | 2339 | map-visit@^1.0.0: 2340 | version "1.0.0" 2341 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2342 | dependencies: 2343 | object-visit "^1.0.0" 2344 | 2345 | math-random@^1.0.1: 2346 | version "1.0.1" 2347 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 2348 | 2349 | micromatch@^2.1.5: 2350 | version "2.3.11" 2351 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2352 | dependencies: 2353 | arr-diff "^2.0.0" 2354 | array-unique "^0.2.1" 2355 | braces "^1.8.2" 2356 | expand-brackets "^0.1.4" 2357 | extglob "^0.3.1" 2358 | filename-regex "^2.0.0" 2359 | is-extglob "^1.0.0" 2360 | is-glob "^2.0.1" 2361 | kind-of "^3.0.2" 2362 | normalize-path "^2.0.1" 2363 | object.omit "^2.0.0" 2364 | parse-glob "^3.0.4" 2365 | regex-cache "^0.4.2" 2366 | 2367 | micromatch@^3.1.8: 2368 | version "3.1.10" 2369 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2370 | dependencies: 2371 | arr-diff "^4.0.0" 2372 | array-unique "^0.3.2" 2373 | braces "^2.3.1" 2374 | define-property "^2.0.2" 2375 | extend-shallow "^3.0.2" 2376 | extglob "^2.0.4" 2377 | fragment-cache "^0.2.1" 2378 | kind-of "^6.0.2" 2379 | nanomatch "^1.2.9" 2380 | object.pick "^1.3.0" 2381 | regex-not "^1.0.0" 2382 | snapdragon "^0.8.1" 2383 | to-regex "^3.0.2" 2384 | 2385 | mimic-fn@^1.0.0: 2386 | version "1.2.0" 2387 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2388 | 2389 | minimatch@3.0.4, minimatch@^3.0.2, minimatch@^3.0.4: 2390 | version "3.0.4" 2391 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2392 | dependencies: 2393 | brace-expansion "^1.1.7" 2394 | 2395 | minimist@0.0.8: 2396 | version "0.0.8" 2397 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2398 | 2399 | minimist@^1.2.0: 2400 | version "1.2.0" 2401 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2402 | 2403 | minipass@^2.2.1, minipass@^2.3.3: 2404 | version "2.3.3" 2405 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.3.tgz#a7dcc8b7b833f5d368759cce544dccb55f50f233" 2406 | dependencies: 2407 | safe-buffer "^5.1.2" 2408 | yallist "^3.0.0" 2409 | 2410 | minizlib@^1.1.0: 2411 | version "1.1.0" 2412 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 2413 | dependencies: 2414 | minipass "^2.2.1" 2415 | 2416 | mixin-deep@^1.2.0: 2417 | version "1.3.2" 2418 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 2419 | dependencies: 2420 | for-in "^1.0.2" 2421 | is-extendable "^1.0.1" 2422 | 2423 | mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1: 2424 | version "0.5.1" 2425 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2426 | dependencies: 2427 | minimist "0.0.8" 2428 | 2429 | mocha@^5.2.0: 2430 | version "5.2.0" 2431 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-5.2.0.tgz#6d8ae508f59167f940f2b5b3c4a612ae50c90ae6" 2432 | dependencies: 2433 | browser-stdout "1.3.1" 2434 | commander "2.15.1" 2435 | debug "3.1.0" 2436 | diff "3.5.0" 2437 | escape-string-regexp "1.0.5" 2438 | glob "7.1.2" 2439 | growl "1.10.5" 2440 | he "1.1.1" 2441 | minimatch "3.0.4" 2442 | mkdirp "0.5.1" 2443 | supports-color "5.4.0" 2444 | 2445 | ms@2.0.0: 2446 | version "2.0.0" 2447 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2448 | 2449 | mute-stream@0.0.7: 2450 | version "0.0.7" 2451 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2452 | 2453 | nan@^2.9.2: 2454 | version "2.10.0" 2455 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 2456 | 2457 | nanomatch@^1.2.9: 2458 | version "1.2.13" 2459 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 2460 | dependencies: 2461 | arr-diff "^4.0.0" 2462 | array-unique "^0.3.2" 2463 | define-property "^2.0.2" 2464 | extend-shallow "^3.0.2" 2465 | fragment-cache "^0.2.1" 2466 | is-windows "^1.0.2" 2467 | kind-of "^6.0.2" 2468 | object.pick "^1.3.0" 2469 | regex-not "^1.0.0" 2470 | snapdragon "^0.8.1" 2471 | to-regex "^3.0.1" 2472 | 2473 | natural-compare@^1.4.0: 2474 | version "1.4.0" 2475 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2476 | 2477 | needle@^2.2.1: 2478 | version "2.2.1" 2479 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d" 2480 | dependencies: 2481 | debug "^2.1.2" 2482 | iconv-lite "^0.4.4" 2483 | sax "^1.2.4" 2484 | 2485 | nice-try@^1.0.4: 2486 | version "1.0.4" 2487 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.4.tgz#d93962f6c52f2c1558c0fbda6d512819f1efe1c4" 2488 | 2489 | node-pre-gyp@^0.10.0: 2490 | version "0.10.3" 2491 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" 2492 | dependencies: 2493 | detect-libc "^1.0.2" 2494 | mkdirp "^0.5.1" 2495 | needle "^2.2.1" 2496 | nopt "^4.0.1" 2497 | npm-packlist "^1.1.6" 2498 | npmlog "^4.0.2" 2499 | rc "^1.2.7" 2500 | rimraf "^2.6.1" 2501 | semver "^5.3.0" 2502 | tar "^4" 2503 | 2504 | nopt@^4.0.1: 2505 | version "4.0.1" 2506 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2507 | dependencies: 2508 | abbrev "1" 2509 | osenv "^0.1.4" 2510 | 2511 | normalize-path@^1.0.0: 2512 | version "1.0.0" 2513 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" 2514 | 2515 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2516 | version "2.1.1" 2517 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2518 | dependencies: 2519 | remove-trailing-separator "^1.0.1" 2520 | 2521 | npm-bundled@^1.0.1: 2522 | version "1.0.3" 2523 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" 2524 | 2525 | npm-packlist@^1.1.6: 2526 | version "1.1.10" 2527 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a" 2528 | dependencies: 2529 | ignore-walk "^3.0.1" 2530 | npm-bundled "^1.0.1" 2531 | 2532 | npm-path@^2.0.2: 2533 | version "2.0.4" 2534 | resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.4.tgz#c641347a5ff9d6a09e4d9bce5580c4f505278e64" 2535 | dependencies: 2536 | which "^1.2.10" 2537 | 2538 | npm-run-path@^2.0.0: 2539 | version "2.0.2" 2540 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2541 | dependencies: 2542 | path-key "^2.0.0" 2543 | 2544 | npm-which@^3.0.1: 2545 | version "3.0.1" 2546 | resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" 2547 | dependencies: 2548 | commander "^2.9.0" 2549 | npm-path "^2.0.2" 2550 | which "^1.2.10" 2551 | 2552 | npmlog@^4.0.2: 2553 | version "4.1.2" 2554 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2555 | dependencies: 2556 | are-we-there-yet "~1.1.2" 2557 | console-control-strings "~1.1.0" 2558 | gauge "~2.7.3" 2559 | set-blocking "~2.0.0" 2560 | 2561 | number-is-nan@^1.0.0: 2562 | version "1.0.1" 2563 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2564 | 2565 | object-assign@^4.0.1, object-assign@^4.1.0: 2566 | version "4.1.1" 2567 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2568 | 2569 | object-copy@^0.1.0: 2570 | version "0.1.0" 2571 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2572 | dependencies: 2573 | copy-descriptor "^0.1.0" 2574 | define-property "^0.2.5" 2575 | kind-of "^3.0.3" 2576 | 2577 | object-keys@^1.0.8: 2578 | version "1.0.12" 2579 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" 2580 | 2581 | object-visit@^1.0.0: 2582 | version "1.0.1" 2583 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2584 | dependencies: 2585 | isobject "^3.0.0" 2586 | 2587 | object.omit@^2.0.0: 2588 | version "2.0.1" 2589 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2590 | dependencies: 2591 | for-own "^0.1.4" 2592 | is-extendable "^0.1.1" 2593 | 2594 | object.pick@^1.3.0: 2595 | version "1.3.0" 2596 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2597 | dependencies: 2598 | isobject "^3.0.1" 2599 | 2600 | once@^1.3.0: 2601 | version "1.4.0" 2602 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2603 | dependencies: 2604 | wrappy "1" 2605 | 2606 | onetime@^1.0.0: 2607 | version "1.1.0" 2608 | resolved "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2609 | 2610 | onetime@^2.0.0: 2611 | version "2.0.1" 2612 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2613 | dependencies: 2614 | mimic-fn "^1.0.0" 2615 | 2616 | optionator@^0.8.2: 2617 | version "0.8.2" 2618 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2619 | dependencies: 2620 | deep-is "~0.1.3" 2621 | fast-levenshtein "~2.0.4" 2622 | levn "~0.3.0" 2623 | prelude-ls "~1.1.2" 2624 | type-check "~0.3.2" 2625 | wordwrap "~1.0.0" 2626 | 2627 | ora@^0.2.3: 2628 | version "0.2.3" 2629 | resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" 2630 | dependencies: 2631 | chalk "^1.1.1" 2632 | cli-cursor "^1.0.2" 2633 | cli-spinners "^0.1.2" 2634 | object-assign "^4.0.1" 2635 | 2636 | ora@^3.0.0: 2637 | version "3.0.0" 2638 | resolved "https://registry.yarnpkg.com/ora/-/ora-3.0.0.tgz#8179e3525b9aafd99242d63cc206fd64732741d0" 2639 | dependencies: 2640 | chalk "^2.3.1" 2641 | cli-cursor "^2.1.0" 2642 | cli-spinners "^1.1.0" 2643 | log-symbols "^2.2.0" 2644 | strip-ansi "^4.0.0" 2645 | wcwidth "^1.0.1" 2646 | 2647 | os-homedir@^1.0.0: 2648 | version "1.0.2" 2649 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2650 | 2651 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 2652 | version "1.0.2" 2653 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2654 | 2655 | osenv@^0.1.4: 2656 | version "0.1.5" 2657 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2658 | dependencies: 2659 | os-homedir "^1.0.0" 2660 | os-tmpdir "^1.0.0" 2661 | 2662 | output-file-sync@^1.1.2: 2663 | version "1.1.2" 2664 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2665 | dependencies: 2666 | graceful-fs "^4.1.4" 2667 | mkdirp "^0.5.1" 2668 | object-assign "^4.1.0" 2669 | 2670 | p-finally@^1.0.0: 2671 | version "1.0.0" 2672 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2673 | 2674 | p-map@^1.1.1: 2675 | version "1.2.0" 2676 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" 2677 | 2678 | parse-glob@^3.0.4: 2679 | version "3.0.4" 2680 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2681 | dependencies: 2682 | glob-base "^0.3.0" 2683 | is-dotfile "^1.0.0" 2684 | is-extglob "^1.0.0" 2685 | is-glob "^2.0.0" 2686 | 2687 | parse-json@^4.0.0: 2688 | version "4.0.0" 2689 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 2690 | dependencies: 2691 | error-ex "^1.3.1" 2692 | json-parse-better-errors "^1.0.1" 2693 | 2694 | pascalcase@^0.1.1: 2695 | version "0.1.1" 2696 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2697 | 2698 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2699 | version "1.0.1" 2700 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2701 | 2702 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2703 | version "1.0.2" 2704 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2705 | 2706 | path-key@^2.0.0, path-key@^2.0.1: 2707 | version "2.0.1" 2708 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2709 | 2710 | path-parse@^1.0.5: 2711 | version "1.0.5" 2712 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2713 | 2714 | pathval@^1.0.0: 2715 | version "1.1.0" 2716 | resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" 2717 | 2718 | pify@^2.0.0: 2719 | version "2.3.0" 2720 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2721 | 2722 | pify@^3.0.0: 2723 | version "3.0.0" 2724 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2725 | 2726 | pinkie-promise@^2.0.0: 2727 | version "2.0.1" 2728 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2729 | dependencies: 2730 | pinkie "^2.0.0" 2731 | 2732 | pinkie@^2.0.0: 2733 | version "2.0.4" 2734 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2735 | 2736 | please-upgrade-node@^3.0.2: 2737 | version "3.1.1" 2738 | resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.1.1.tgz#ed320051dfcc5024fae696712c8288993595e8ac" 2739 | dependencies: 2740 | semver-compare "^1.0.0" 2741 | 2742 | pluralize@^7.0.0: 2743 | version "7.0.0" 2744 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 2745 | 2746 | posix-character-classes@^0.1.0: 2747 | version "0.1.1" 2748 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2749 | 2750 | prelude-ls@~1.1.2: 2751 | version "1.1.2" 2752 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2753 | 2754 | preserve@^0.2.0: 2755 | version "0.2.0" 2756 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2757 | 2758 | prettier-eslint@^8.8.2: 2759 | version "8.8.2" 2760 | resolved "https://registry.yarnpkg.com/prettier-eslint/-/prettier-eslint-8.8.2.tgz#fcb29a48ab4524e234680797fe70e9d136ccaf0b" 2761 | dependencies: 2762 | babel-runtime "^6.26.0" 2763 | common-tags "^1.4.0" 2764 | dlv "^1.1.0" 2765 | eslint "^4.0.0" 2766 | indent-string "^3.2.0" 2767 | lodash.merge "^4.6.0" 2768 | loglevel-colored-level-prefix "^1.0.0" 2769 | prettier "^1.7.0" 2770 | pretty-format "^23.0.1" 2771 | require-relative "^0.8.7" 2772 | typescript "^2.5.1" 2773 | typescript-eslint-parser "^16.0.0" 2774 | vue-eslint-parser "^2.0.2" 2775 | 2776 | prettier@^1.13.7, prettier@^1.7.0: 2777 | version "1.13.7" 2778 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.13.7.tgz#850f3b8af784a49a6ea2d2eaa7ed1428a34b7281" 2779 | 2780 | pretty-format@^23.0.1, pretty-format@^23.2.0: 2781 | version "23.2.0" 2782 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.2.0.tgz#3b0aaa63c018a53583373c1cb3a5d96cc5e83017" 2783 | dependencies: 2784 | ansi-regex "^3.0.0" 2785 | ansi-styles "^3.2.0" 2786 | 2787 | private@^0.1.6, private@^0.1.8: 2788 | version "0.1.8" 2789 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2790 | 2791 | process-nextick-args@~2.0.0: 2792 | version "2.0.0" 2793 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2794 | 2795 | progress@^2.0.0: 2796 | version "2.0.0" 2797 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2798 | 2799 | pseudomap@^1.0.2: 2800 | version "1.0.2" 2801 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2802 | 2803 | punycode@^2.1.0: 2804 | version "2.1.1" 2805 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2806 | 2807 | randomatic@^3.0.0: 2808 | version "3.0.0" 2809 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.0.0.tgz#d35490030eb4f7578de292ce6dfb04a91a128923" 2810 | dependencies: 2811 | is-number "^4.0.0" 2812 | kind-of "^6.0.0" 2813 | math-random "^1.0.1" 2814 | 2815 | rc@^1.2.7: 2816 | version "1.2.8" 2817 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2818 | dependencies: 2819 | deep-extend "^0.6.0" 2820 | ini "~1.3.0" 2821 | minimist "^1.2.0" 2822 | strip-json-comments "~2.0.1" 2823 | 2824 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.2.2: 2825 | version "2.3.6" 2826 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2827 | dependencies: 2828 | core-util-is "~1.0.0" 2829 | inherits "~2.0.3" 2830 | isarray "~1.0.0" 2831 | process-nextick-args "~2.0.0" 2832 | safe-buffer "~5.1.1" 2833 | string_decoder "~1.1.1" 2834 | util-deprecate "~1.0.1" 2835 | 2836 | readdirp@^2.0.0: 2837 | version "2.1.0" 2838 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2839 | dependencies: 2840 | graceful-fs "^4.1.2" 2841 | minimatch "^3.0.2" 2842 | readable-stream "^2.0.2" 2843 | set-immediate-shim "^1.0.1" 2844 | 2845 | rechoir@^0.6.2: 2846 | version "0.6.2" 2847 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2848 | dependencies: 2849 | resolve "^1.1.6" 2850 | 2851 | regenerate@^1.2.1: 2852 | version "1.4.0" 2853 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 2854 | 2855 | regenerator-runtime@^0.10.5: 2856 | version "0.10.5" 2857 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2858 | 2859 | regenerator-runtime@^0.11.0: 2860 | version "0.11.1" 2861 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2862 | 2863 | regenerator-runtime@^0.12.0: 2864 | version "0.12.0" 2865 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.12.0.tgz#8052ac952d85b10f3425192cd0c53f45cf65c6cb" 2866 | 2867 | regenerator-transform@^0.10.0: 2868 | version "0.10.1" 2869 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2870 | dependencies: 2871 | babel-runtime "^6.18.0" 2872 | babel-types "^6.19.0" 2873 | private "^0.1.6" 2874 | 2875 | regex-cache@^0.4.2: 2876 | version "0.4.4" 2877 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2878 | dependencies: 2879 | is-equal-shallow "^0.1.3" 2880 | 2881 | regex-not@^1.0.0, regex-not@^1.0.2: 2882 | version "1.0.2" 2883 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2884 | dependencies: 2885 | extend-shallow "^3.0.2" 2886 | safe-regex "^1.1.0" 2887 | 2888 | regexp.prototype.flags@^1.2.0: 2889 | version "1.2.0" 2890 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.2.0.tgz#6b30724e306a27833eeb171b66ac8890ba37e41c" 2891 | dependencies: 2892 | define-properties "^1.1.2" 2893 | 2894 | regexpp@^1.0.1, regexpp@^1.1.0: 2895 | version "1.1.0" 2896 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab" 2897 | 2898 | regexpu-core@^2.0.0: 2899 | version "2.0.0" 2900 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2901 | dependencies: 2902 | regenerate "^1.2.1" 2903 | regjsgen "^0.2.0" 2904 | regjsparser "^0.1.4" 2905 | 2906 | regjsgen@^0.2.0: 2907 | version "0.2.0" 2908 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2909 | 2910 | regjsparser@^0.1.4: 2911 | version "0.1.5" 2912 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2913 | dependencies: 2914 | jsesc "~0.5.0" 2915 | 2916 | remove-trailing-separator@^1.0.1: 2917 | version "1.1.0" 2918 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2919 | 2920 | repeat-element@^1.1.2: 2921 | version "1.1.2" 2922 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2923 | 2924 | repeat-string@^1.5.2, repeat-string@^1.6.1: 2925 | version "1.6.1" 2926 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2927 | 2928 | repeating@^2.0.0: 2929 | version "2.0.1" 2930 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2931 | dependencies: 2932 | is-finite "^1.0.0" 2933 | 2934 | require-relative@^0.8.7: 2935 | version "0.8.7" 2936 | resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" 2937 | 2938 | require-uncached@^1.0.3: 2939 | version "1.0.3" 2940 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2941 | dependencies: 2942 | caller-path "^0.1.0" 2943 | resolve-from "^1.0.0" 2944 | 2945 | resolve-from@^1.0.0: 2946 | version "1.0.1" 2947 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2948 | 2949 | resolve-url@^0.2.1: 2950 | version "0.2.1" 2951 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2952 | 2953 | resolve@^1.1.6: 2954 | version "1.8.1" 2955 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" 2956 | dependencies: 2957 | path-parse "^1.0.5" 2958 | 2959 | restore-cursor@^1.0.1: 2960 | version "1.0.1" 2961 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2962 | dependencies: 2963 | exit-hook "^1.0.0" 2964 | onetime "^1.0.0" 2965 | 2966 | restore-cursor@^2.0.0: 2967 | version "2.0.0" 2968 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2969 | dependencies: 2970 | onetime "^2.0.0" 2971 | signal-exit "^3.0.2" 2972 | 2973 | ret@~0.1.10: 2974 | version "0.1.15" 2975 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2976 | 2977 | rimraf@^2.2.8, rimraf@^2.6.1: 2978 | version "2.6.2" 2979 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2980 | dependencies: 2981 | glob "^7.0.5" 2982 | 2983 | run-async@^2.2.0: 2984 | version "2.3.0" 2985 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2986 | dependencies: 2987 | is-promise "^2.1.0" 2988 | 2989 | rx-lite-aggregates@^4.0.8: 2990 | version "4.0.8" 2991 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2992 | dependencies: 2993 | rx-lite "*" 2994 | 2995 | rx-lite@*, rx-lite@^4.0.8: 2996 | version "4.0.8" 2997 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2998 | 2999 | rxjs@^5.5.2: 3000 | version "5.5.11" 3001 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.11.tgz#f733027ca43e3bec6b994473be4ab98ad43ced87" 3002 | dependencies: 3003 | symbol-observable "1.0.1" 3004 | 3005 | rxjs@^6.1.0: 3006 | version "6.2.2" 3007 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.2.2.tgz#eb75fa3c186ff5289907d06483a77884586e1cf9" 3008 | dependencies: 3009 | tslib "^1.9.0" 3010 | 3011 | safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3012 | version "5.1.2" 3013 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 3014 | 3015 | safe-regex@^1.1.0: 3016 | version "1.1.0" 3017 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 3018 | dependencies: 3019 | ret "~0.1.10" 3020 | 3021 | "safer-buffer@>= 2.1.2 < 3": 3022 | version "2.1.2" 3023 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3024 | 3025 | sax@^1.2.4: 3026 | version "1.2.4" 3027 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3028 | 3029 | semver-compare@^1.0.0: 3030 | version "1.0.0" 3031 | resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" 3032 | 3033 | semver@5.5.0, semver@^5.3.0, semver@^5.5.0: 3034 | version "5.5.0" 3035 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 3036 | 3037 | set-blocking@~2.0.0: 3038 | version "2.0.0" 3039 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3040 | 3041 | set-immediate-shim@^1.0.1: 3042 | version "1.0.1" 3043 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3044 | 3045 | set-value@^0.4.3: 3046 | version "0.4.3" 3047 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 3048 | dependencies: 3049 | extend-shallow "^2.0.1" 3050 | is-extendable "^0.1.1" 3051 | is-plain-object "^2.0.1" 3052 | to-object-path "^0.3.0" 3053 | 3054 | set-value@^2.0.0: 3055 | version "2.0.0" 3056 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 3057 | dependencies: 3058 | extend-shallow "^2.0.1" 3059 | is-extendable "^0.1.1" 3060 | is-plain-object "^2.0.3" 3061 | split-string "^3.0.1" 3062 | 3063 | shebang-command@^1.2.0: 3064 | version "1.2.0" 3065 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3066 | dependencies: 3067 | shebang-regex "^1.0.0" 3068 | 3069 | shebang-regex@^1.0.0: 3070 | version "1.0.0" 3071 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3072 | 3073 | shelljs@^0.8.2: 3074 | version "0.8.2" 3075 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.2.tgz#345b7df7763f4c2340d584abb532c5f752ca9e35" 3076 | dependencies: 3077 | glob "^7.0.0" 3078 | interpret "^1.0.0" 3079 | rechoir "^0.6.2" 3080 | 3081 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3082 | version "3.0.2" 3083 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3084 | 3085 | slash@^1.0.0: 3086 | version "1.0.0" 3087 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3088 | 3089 | slice-ansi@0.0.4: 3090 | version "0.0.4" 3091 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3092 | 3093 | slice-ansi@1.0.0: 3094 | version "1.0.0" 3095 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 3096 | dependencies: 3097 | is-fullwidth-code-point "^2.0.0" 3098 | 3099 | snapdragon-node@^2.0.1: 3100 | version "2.1.1" 3101 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3102 | dependencies: 3103 | define-property "^1.0.0" 3104 | isobject "^3.0.0" 3105 | snapdragon-util "^3.0.1" 3106 | 3107 | snapdragon-util@^3.0.1: 3108 | version "3.0.1" 3109 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3110 | dependencies: 3111 | kind-of "^3.2.0" 3112 | 3113 | snapdragon@^0.8.1: 3114 | version "0.8.2" 3115 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3116 | dependencies: 3117 | base "^0.11.1" 3118 | debug "^2.2.0" 3119 | define-property "^0.2.5" 3120 | extend-shallow "^2.0.1" 3121 | map-cache "^0.2.2" 3122 | source-map "^0.5.6" 3123 | source-map-resolve "^0.5.0" 3124 | use "^3.1.0" 3125 | 3126 | source-map-resolve@^0.5.0: 3127 | version "0.5.2" 3128 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 3129 | dependencies: 3130 | atob "^2.1.1" 3131 | decode-uri-component "^0.2.0" 3132 | resolve-url "^0.2.1" 3133 | source-map-url "^0.4.0" 3134 | urix "^0.1.0" 3135 | 3136 | source-map-support@^0.4.15: 3137 | version "0.4.18" 3138 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3139 | dependencies: 3140 | source-map "^0.5.6" 3141 | 3142 | source-map-url@^0.4.0: 3143 | version "0.4.0" 3144 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3145 | 3146 | source-map@^0.5.0, source-map@^0.5.6, source-map@^0.5.7: 3147 | version "0.5.7" 3148 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3149 | 3150 | split-string@^3.0.1, split-string@^3.0.2: 3151 | version "3.1.0" 3152 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3153 | dependencies: 3154 | extend-shallow "^3.0.0" 3155 | 3156 | sprintf-js@~1.0.2: 3157 | version "1.0.3" 3158 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3159 | 3160 | staged-git-files@1.1.1: 3161 | version "1.1.1" 3162 | resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-1.1.1.tgz#37c2218ef0d6d26178b1310719309a16a59f8f7b" 3163 | 3164 | static-extend@^0.1.1: 3165 | version "0.1.2" 3166 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3167 | dependencies: 3168 | define-property "^0.2.5" 3169 | object-copy "^0.1.0" 3170 | 3171 | string-argv@^0.0.2: 3172 | version "0.0.2" 3173 | resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.0.2.tgz#dac30408690c21f3c3630a3ff3a05877bdcbd736" 3174 | 3175 | string-width@^1.0.1: 3176 | version "1.0.2" 3177 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3178 | dependencies: 3179 | code-point-at "^1.0.0" 3180 | is-fullwidth-code-point "^1.0.0" 3181 | strip-ansi "^3.0.0" 3182 | 3183 | "string-width@^1.0.2 || 2", string-width@^2.1.0, string-width@^2.1.1: 3184 | version "2.1.1" 3185 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3186 | dependencies: 3187 | is-fullwidth-code-point "^2.0.0" 3188 | strip-ansi "^4.0.0" 3189 | 3190 | string.prototype.matchall@^2.0.0: 3191 | version "2.0.0" 3192 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-2.0.0.tgz#2af8fe3d2d6dc53ca2a59bd376b089c3c152b3c8" 3193 | dependencies: 3194 | define-properties "^1.1.2" 3195 | es-abstract "^1.10.0" 3196 | function-bind "^1.1.1" 3197 | has-symbols "^1.0.0" 3198 | regexp.prototype.flags "^1.2.0" 3199 | 3200 | string_decoder@~1.1.1: 3201 | version "1.1.1" 3202 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3203 | dependencies: 3204 | safe-buffer "~5.1.0" 3205 | 3206 | stringify-object@^3.2.2: 3207 | version "3.2.2" 3208 | resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.2.2.tgz#9853052e5a88fb605a44cd27445aa257ad7ffbcd" 3209 | dependencies: 3210 | get-own-enumerable-property-symbols "^2.0.1" 3211 | is-obj "^1.0.1" 3212 | is-regexp "^1.0.0" 3213 | 3214 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3215 | version "3.0.1" 3216 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3217 | dependencies: 3218 | ansi-regex "^2.0.0" 3219 | 3220 | strip-ansi@^4.0.0: 3221 | version "4.0.0" 3222 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3223 | dependencies: 3224 | ansi-regex "^3.0.0" 3225 | 3226 | strip-eof@^1.0.0: 3227 | version "1.0.0" 3228 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3229 | 3230 | strip-indent@^2.0.0: 3231 | version "2.0.0" 3232 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 3233 | 3234 | strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: 3235 | version "2.0.1" 3236 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3237 | 3238 | supports-color@5.4.0, supports-color@^5.3.0: 3239 | version "5.4.0" 3240 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 3241 | dependencies: 3242 | has-flag "^3.0.0" 3243 | 3244 | supports-color@^2.0.0: 3245 | version "2.0.0" 3246 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3247 | 3248 | symbol-observable@1.0.1: 3249 | version "1.0.1" 3250 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" 3251 | 3252 | symbol-observable@^1.1.0: 3253 | version "1.2.0" 3254 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" 3255 | 3256 | table@4.0.2: 3257 | version "4.0.2" 3258 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 3259 | dependencies: 3260 | ajv "^5.2.3" 3261 | ajv-keywords "^2.1.0" 3262 | chalk "^2.1.0" 3263 | lodash "^4.17.4" 3264 | slice-ansi "1.0.0" 3265 | string-width "^2.1.1" 3266 | 3267 | table@^4.0.3: 3268 | version "4.0.3" 3269 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.3.tgz#00b5e2b602f1794b9acaf9ca908a76386a7813bc" 3270 | dependencies: 3271 | ajv "^6.0.1" 3272 | ajv-keywords "^3.0.0" 3273 | chalk "^2.1.0" 3274 | lodash "^4.17.4" 3275 | slice-ansi "1.0.0" 3276 | string-width "^2.1.1" 3277 | 3278 | tar@^4: 3279 | version "4.4.4" 3280 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.4.tgz#ec8409fae9f665a4355cc3b4087d0820232bb8cd" 3281 | dependencies: 3282 | chownr "^1.0.1" 3283 | fs-minipass "^1.2.5" 3284 | minipass "^2.3.3" 3285 | minizlib "^1.1.0" 3286 | mkdirp "^0.5.0" 3287 | safe-buffer "^5.1.2" 3288 | yallist "^3.0.2" 3289 | 3290 | text-table@^0.2.0, text-table@~0.2.0: 3291 | version "0.2.0" 3292 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3293 | 3294 | through@^2.3.6: 3295 | version "2.3.8" 3296 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3297 | 3298 | tmp@^0.0.33: 3299 | version "0.0.33" 3300 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3301 | dependencies: 3302 | os-tmpdir "~1.0.2" 3303 | 3304 | to-fast-properties@^1.0.3: 3305 | version "1.0.3" 3306 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3307 | 3308 | to-fast-properties@^2.0.0: 3309 | version "2.0.0" 3310 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3311 | 3312 | to-object-path@^0.3.0: 3313 | version "0.3.0" 3314 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3315 | dependencies: 3316 | kind-of "^3.0.2" 3317 | 3318 | to-regex-range@^2.1.0: 3319 | version "2.1.1" 3320 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3321 | dependencies: 3322 | is-number "^3.0.0" 3323 | repeat-string "^1.6.1" 3324 | 3325 | to-regex@^3.0.1, to-regex@^3.0.2: 3326 | version "3.0.2" 3327 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3328 | dependencies: 3329 | define-property "^2.0.2" 3330 | extend-shallow "^3.0.2" 3331 | regex-not "^1.0.2" 3332 | safe-regex "^1.1.0" 3333 | 3334 | trim-right@^1.0.1: 3335 | version "1.0.1" 3336 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3337 | 3338 | tslib@^1.9.0: 3339 | version "1.9.3" 3340 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" 3341 | 3342 | type-check@~0.3.2: 3343 | version "0.3.2" 3344 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3345 | dependencies: 3346 | prelude-ls "~1.1.2" 3347 | 3348 | type-detect@^4.0.0: 3349 | version "4.0.8" 3350 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 3351 | 3352 | typedarray@^0.0.6: 3353 | version "0.0.6" 3354 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3355 | 3356 | typescript-eslint-parser@^16.0.0: 3357 | version "16.0.1" 3358 | resolved "https://registry.yarnpkg.com/typescript-eslint-parser/-/typescript-eslint-parser-16.0.1.tgz#b40681c7043b222b9772748b700a000b241c031b" 3359 | dependencies: 3360 | lodash.unescape "4.0.1" 3361 | semver "5.5.0" 3362 | 3363 | typescript@^2.5.1: 3364 | version "2.9.2" 3365 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.9.2.tgz#1cbf61d05d6b96269244eb6a3bce4bd914e0f00c" 3366 | 3367 | union-value@^1.0.0: 3368 | version "1.0.0" 3369 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3370 | dependencies: 3371 | arr-union "^3.1.0" 3372 | get-value "^2.0.6" 3373 | is-extendable "^0.1.1" 3374 | set-value "^0.4.3" 3375 | 3376 | unset-value@^1.0.0: 3377 | version "1.0.0" 3378 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3379 | dependencies: 3380 | has-value "^0.3.1" 3381 | isobject "^3.0.0" 3382 | 3383 | uri-js@^4.2.1: 3384 | version "4.2.2" 3385 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 3386 | dependencies: 3387 | punycode "^2.1.0" 3388 | 3389 | urix@^0.1.0: 3390 | version "0.1.0" 3391 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3392 | 3393 | use@^3.1.0: 3394 | version "3.1.1" 3395 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 3396 | 3397 | user-home@^1.1.1: 3398 | version "1.1.1" 3399 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3400 | 3401 | util-deprecate@~1.0.1: 3402 | version "1.0.2" 3403 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3404 | 3405 | v8flags@^2.1.1: 3406 | version "2.1.1" 3407 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3408 | dependencies: 3409 | user-home "^1.1.1" 3410 | 3411 | vue-eslint-parser@^2.0.2: 3412 | version "2.0.3" 3413 | resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-2.0.3.tgz#c268c96c6d94cfe3d938a5f7593959b0ca3360d1" 3414 | dependencies: 3415 | debug "^3.1.0" 3416 | eslint-scope "^3.7.1" 3417 | eslint-visitor-keys "^1.0.0" 3418 | espree "^3.5.2" 3419 | esquery "^1.0.0" 3420 | lodash "^4.17.4" 3421 | 3422 | wcwidth@^1.0.1: 3423 | version "1.0.1" 3424 | resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" 3425 | dependencies: 3426 | defaults "^1.0.3" 3427 | 3428 | which@^1.2.10, which@^1.2.9: 3429 | version "1.3.1" 3430 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3431 | dependencies: 3432 | isexe "^2.0.0" 3433 | 3434 | wide-align@^1.1.0: 3435 | version "1.1.3" 3436 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 3437 | dependencies: 3438 | string-width "^1.0.2 || 2" 3439 | 3440 | wordwrap@~1.0.0: 3441 | version "1.0.0" 3442 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3443 | 3444 | wrappy@1: 3445 | version "1.0.2" 3446 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3447 | 3448 | write@^0.2.1: 3449 | version "0.2.1" 3450 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3451 | dependencies: 3452 | mkdirp "^0.5.1" 3453 | 3454 | yallist@^2.1.2: 3455 | version "2.1.2" 3456 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3457 | 3458 | yallist@^3.0.0, yallist@^3.0.2: 3459 | version "3.0.2" 3460 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 3461 | --------------------------------------------------------------------------------