├── .babelrc ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __mocks__ ├── .eslintrc.json └── fs.js ├── bin └── prettier-tslint.js ├── package.json ├── src ├── check.js ├── cli.js ├── create-ignorer.js ├── create-program.js ├── expand-globs.js ├── fix.js ├── format.js ├── index.js ├── run-prettier.js ├── run-tslint.js └── utils.js ├── test ├── .eslintrc.json ├── __snapshots__ │ ├── fix.test.js.snap │ └── format.test.js.snap ├── check.test.js ├── fix.test.js ├── fixture │ ├── bad-format-bad-lint.ts │ ├── bad-format-good-lint.ts │ ├── good-format-bad-lint.ts │ ├── good-format-good-lint.ts │ ├── ignored │ │ ├── ignored.ts │ │ └── not-ignored.ts │ └── tslint.json ├── format.test.js └── prettierignore.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["env", { "targets": { "node": "4.5" } }]] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | test/fixture 2 | dist 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "extends": ["eslint:recommended"], 4 | "plugins": ["prettier"], 5 | "env": { 6 | "es6": true, 7 | "node": true 8 | }, 9 | "globals": { 10 | "process": true, 11 | "console": true 12 | }, 13 | "rules": { 14 | "curly": ["error"], 15 | "prefer-const": ["error"], 16 | "prettier/prettier": "error", 17 | "no-var": ["error"] 18 | }, 19 | "parserOptions": { 20 | "sourceType": "module" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | *.log 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "es5" 3 | } 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | cache: 3 | yarn: true 4 | directories: 5 | - node_modules 6 | notifications: 7 | email: false 8 | node_js: 9 | - '10' 10 | - '8' 11 | - '6' 12 | env: 13 | - NODE_ENV=development 14 | install: 15 | - yarn 16 | script: 17 | - yarn lint 18 | - yarn build 19 | - yarn test 20 | after_success: 21 | - npm run semantic-release 22 | branches: 23 | except: 24 | - /^v\d+\.\d+\.\d+$/ 25 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to `prettier-tslint` 2 | 3 | Thanks for contributing to `prettier-tslint`! Here's a quick-start guide. 4 | 5 | ## Pre-requisites 6 | 7 | * [Node.js](nodejs.org) v4 or later installed. 8 | * [`yarn`](https://yarnpkg.com) installed. 9 | 10 | ## Setup 11 | 12 | * Clone this repository: 13 | 14 | ```bash 15 | git clone https://github.com/azz/prettier-tslint.git 16 | cd prettier-tslint 17 | ``` 18 | 19 | * Install dependencies: 20 | 21 | ```bash 22 | yarn 23 | ``` 24 | 25 | ## Development 26 | 27 | All of the source code lives in `src/` and the tests are in `test/`. 28 | 29 | Tests are written with [jest](http://facebook.github.io/jest/) and can be run 30 | with: 31 | 32 | ```bash 33 | yarn test 34 | ``` 35 | 36 | All code is linted with [`eslint`](https://eslint.org/) with 37 | [`prettier`](https://prettier.io) integration. To validate your files, run: 38 | 39 | ```bash 40 | yarn lint 41 | ``` 42 | 43 | To fix any auto-fixable problems, run: 44 | 45 | ```bash 46 | yarn lint --fix 47 | ``` 48 | 49 | > With `yarn` before v1, this is `yarn lint -- --fix` 50 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Lucas Azzola 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # prettier-tslint 2 | 3 | Formats your TypeScript using [`prettier`](https://github.com/prettier/prettier) 4 | followed by [`tslint --fix`](https://github.com/palantir/tslint). 5 | 6 | [![Travis](https://img.shields.io/travis/azz/prettier-tslint.svg?style=flat-square)](https://travis-ci.org/azz/prettier-tslint) 7 | [![Prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier) 8 | [![npm](https://img.shields.io/npm/v/prettier-tslint.svg?style=flat-square)](https://npmjs.org/prettier-tslint) 9 | [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release) 10 | [![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](LICENSE) 11 | 12 | ## Install 13 | 14 | With `npm`: 15 | 16 | ```bash 17 | npm install --save-dev prettier-tslint 18 | ``` 19 | 20 | Or with `yarn`: 21 | 22 | ```bash 23 | yarn add --dev prettier-tslint 24 | ``` 25 | 26 | `prettier-tslint` allows you to install your own version of `prettier` and 27 | `typescript`, so make sure you've installed them, too. 28 | 29 | ## Configuration 30 | 31 | `prettier-tslint` find and will respect: 32 | 33 | * `prettier`'s `.prettierrc`, or any other config file such as `package.json`. 34 | * `prettier`'s `.prettierignore` file. 35 | * `tslint`'s `tslint.json`. 36 | 37 | `prettier-tslint` has no additional configuration. 38 | 39 | ## CLI 40 | 41 | ``` 42 | Commands: 43 | fix Fix one or more files 44 | check List files that aren't formatted 45 | 46 | Options: 47 | --version Show version number [boolean] 48 | --help Show help [boolean] 49 | 50 | Examples: 51 | prettier-tslint fix file1.ts file2.ts Fix provided files 52 | prettier-tslint fix '**/*.ts' Fix all TypeScript files 53 | prettier-tslint check '**/*.ts' List all unformatted TypeScript files 54 | ``` 55 | 56 | ## API 57 | 58 | ```js 59 | import { fix, check } from "prettier-tslint"; 60 | 61 | check("file.ts"); // -> false 62 | fix("file.ts"); 63 | check("file.ts"); // -> true 64 | ``` 65 | 66 | Currently the `fix` function will write to disk and not return anything. This behavior **may change** in a minor release before `1.0.0` is released. 67 | 68 | ## Contributing 69 | 70 | See [`CONTRIBUTING.md`](CONTRIBUTING.md) 71 | -------------------------------------------------------------------------------- /__mocks__/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "jest": true 4 | } 5 | } -------------------------------------------------------------------------------- /__mocks__/fs.js: -------------------------------------------------------------------------------- 1 | const path = require("path"); 2 | const actualFs = require.requireActual("fs"); 3 | 4 | let writes = Object.create(null); 5 | 6 | const readdirSync = jest.fn(actualFs.readdirSync); 7 | const statSync = jest.fn(actualFs.statSync); 8 | 9 | const existsSync = jest.fn(filePath => { 10 | const relative = path.relative(process.cwd(), filePath); 11 | if (relative in writes) { 12 | return true; 13 | } 14 | return actualFs.existsSync(filePath); 15 | }); 16 | 17 | const readFileSync = jest.fn(filePath => { 18 | const relative = path.relative(process.cwd(), filePath); 19 | if (relative in writes) { 20 | return writes[relative]; 21 | } 22 | return actualFs.readFileSync(filePath, "utf8"); 23 | }); 24 | 25 | const writeFileSync = jest.fn((filePath, content) => { 26 | const relative = path.relative(process.cwd(), filePath); 27 | writes[relative] = content; 28 | }); 29 | 30 | function __clear() { 31 | writes = Object.create(null); 32 | readdirSync.mockClear(); 33 | existsSync.mockClear(); 34 | statSync.mockClear(); 35 | readFileSync.mockClear(); 36 | writeFileSync.mockClear(); 37 | } 38 | 39 | function __setContents(filePath, contents) { 40 | writes[filePath] = contents; 41 | } 42 | 43 | module.exports = Object.assign({}, actualFs, { 44 | __clear, 45 | __setContents, 46 | readdirSync, 47 | existsSync, 48 | statSync, 49 | readFileSync, 50 | writeFileSync, 51 | }); 52 | -------------------------------------------------------------------------------- /bin/prettier-tslint.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | /* eslint-env node */ 3 | "use strict"; 4 | 5 | require("..").cli(process.argv.slice(2)); 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "prettier-tslint", 3 | "description": 4 | "Formats your TypeScript using Prettier followed by tslint --fix", 5 | "version": "0.0.0-development", 6 | "author": "Lucas Azzola <@azz>", 7 | "license": "MIT", 8 | "main": "dist", 9 | "bin": "./bin/prettier-tslint.js", 10 | "files": ["bin", "dist"], 11 | "dependencies": { 12 | "chalk": "^2.4.0", 13 | "globby": "^8.0.1", 14 | "ignore": "^3.3.7", 15 | "require-relative": "^0.8.7", 16 | "tslint": "^5.9.1", 17 | "yargs": "^11.0.0" 18 | }, 19 | "peerDependencies": { 20 | "prettier": "^1.7.4", 21 | "typescript": "^2.5.3 || ^3.0.0" 22 | }, 23 | "devDependencies": { 24 | "babel-cli": "^6.26.0", 25 | "babel-preset-env": "^1.6.1", 26 | "eslint": "^4.19.1", 27 | "eslint-config-prettier": "^2.9.0", 28 | "eslint-plugin-prettier": "^2.6.0", 29 | "jest": "^21.2.1", 30 | "prettier": "1.12.1", 31 | "semantic-release": "^8.0.3", 32 | "typescript": "~2.8.3" 33 | }, 34 | "scripts": { 35 | "lint": "eslint .", 36 | "test": "jest", 37 | "build": "babel --copy-files --out-dir dist src", 38 | "semantic-release": 39 | "semantic-release pre && npm publish && semantic-release post" 40 | }, 41 | "repository": { 42 | "type": "git", 43 | "url": "https://github.com/azz/prettier-tslint.git" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /src/check.js: -------------------------------------------------------------------------------- 1 | import runTsLint from "./run-tslint"; 2 | import runPrettier from "./run-prettier"; 3 | import createIgnorer from "./create-ignorer"; 4 | 5 | const check = (filePath, isIgnored = createIgnorer()) => { 6 | if (isIgnored(filePath)) { 7 | return null; 8 | } 9 | return runPrettier(filePath, false) && runTsLint(filePath, false); 10 | }; 11 | 12 | export default check; 13 | -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- 1 | /* eslint no-console: 0 */ 2 | 3 | import chalk from "chalk"; 4 | import yargs, { showHelp } from "yargs"; 5 | 6 | import fix from "./fix"; 7 | import check from "./check"; 8 | import expandGlobs from "./expand-globs"; 9 | import createIgnorer from "./create-ignorer"; 10 | 11 | const cli = argv => { 12 | const { 13 | _: [command, ...patterns], 14 | } = yargs 15 | // Fix 16 | .command("fix", "Fix one or more files") 17 | .example("prettier-tslint fix file1.ts file2.ts", "Fix provided files") 18 | .example("prettier-tslint fix '**/*.ts'", "Fix all .ts files") 19 | // Check 20 | .command("check", "List files that aren't formatted") 21 | .example("prettier-tslint check '**/*.ts'", "List unformatted .ts files") 22 | // Meta 23 | .demandCommand(1, "Command not provided.") 24 | .help() 25 | .parse(argv); 26 | 27 | switch (command) { 28 | case "fix": 29 | return fixFiles(patterns); 30 | case "check": 31 | return checkFiles(patterns); 32 | default: 33 | showHelp(); 34 | console.error(`Unknown command: ${command}`); 35 | } 36 | }; 37 | 38 | const fixFiles = filePatterns => { 39 | const ignorer = createIgnorer(); 40 | const files = expandGlobs(filePatterns); 41 | files.forEach(file => { 42 | const changed = !fix(file, ignorer); 43 | console.log(changed ? file : chalk.gray(file)); 44 | }); 45 | }; 46 | 47 | const checkFiles = filePatterns => { 48 | const ignorer = createIgnorer(); 49 | const files = expandGlobs(filePatterns); 50 | const invalid = files.filter(file => !check(file, ignorer)); 51 | if (invalid.length) { 52 | process.exitCode = 1; 53 | } 54 | invalid.forEach(file => console.error(chalk.red.bold(file))); 55 | }; 56 | 57 | export default cli; 58 | -------------------------------------------------------------------------------- /src/create-ignorer.js: -------------------------------------------------------------------------------- 1 | import { existsSync, readFileSync } from "fs"; 2 | import path from "path"; 3 | import ignore from "ignore"; 4 | 5 | const createIgnorer = () => { 6 | const ignorePath = path.resolve(process.cwd(), ".prettierignore"); 7 | if (existsSync(ignorePath)) { 8 | const ignorer = ignore().add(readFileSync(ignorePath, "utf8")); 9 | return filePath => ignorer.ignores(path.relative(process.cwd(), filePath)); 10 | } 11 | 12 | return () => false; 13 | }; 14 | 15 | export default createIgnorer; 16 | -------------------------------------------------------------------------------- /src/create-program.js: -------------------------------------------------------------------------------- 1 | import ts from "typescript"; 2 | 3 | const createProgram = filepath => { 4 | const program = ts.createProgram([filepath], { 5 | noResolve: true, 6 | target: ts.ScriptTarget.Latest, 7 | jsx: "preserve", 8 | }); 9 | 10 | // This ensures the `parent` property of every node exists. More info here: https://github.com/Microsoft/TypeScript/issues/14464#issuecomment-284533993 11 | program.getTypeChecker(); 12 | 13 | return program; 14 | }; 15 | 16 | export default createProgram; 17 | -------------------------------------------------------------------------------- /src/expand-globs.js: -------------------------------------------------------------------------------- 1 | import globby from "globby"; 2 | 3 | const expandGlobs = (globs = []) => { 4 | return globby.sync([...globs, "!**/node_modules/**", "!./node_modules/**"], { 5 | dot: true, 6 | }); 7 | }; 8 | 9 | export default expandGlobs; 10 | -------------------------------------------------------------------------------- /src/fix.js: -------------------------------------------------------------------------------- 1 | import runTsLint from "./run-tslint"; 2 | import runPrettier from "./run-prettier"; 3 | import createIgnorer from "./create-ignorer"; 4 | 5 | const fix = (filePath, isIgnored = createIgnorer()) => { 6 | if (isIgnored(filePath)) { 7 | return null; 8 | } 9 | const prettierCheck = runPrettier(filePath, true); 10 | const tslintCheck = runTsLint(filePath, true); 11 | return prettierCheck && tslintCheck; 12 | }; 13 | 14 | export default fix; 15 | -------------------------------------------------------------------------------- /src/format.js: -------------------------------------------------------------------------------- 1 | import { extname } from "path"; 2 | import { readFileSync } from "fs"; 3 | import { requireModule, getModulePath, getPrettierConfig } from "./utils"; 4 | 5 | /** 6 | * Formats the text with prettier and then eslint based on the given options 7 | * @param {String} options.filePath - the path of the file being formatted 8 | * can be used in leu of `eslintConfig` (eslint will be used to find the 9 | * relevant config for the file). Will also be used to load the `text` if 10 | * `text` is not provided. 11 | * @param {String} options.text - the text (TypeScript code) to format 12 | * @param {String} options.tslintPath - the path to the tslint module to use. 13 | * Will default to require.resolve('tslint') 14 | * @param {String} options.prettierPath - the path to the prettier module. 15 | * Will default to require.resovlve('prettier') 16 | * @param {Object} options.tslintConfig - the config to use for formatting 17 | * with TSLint. 18 | * @param {Object} options.prettierOptions - the options to pass for 19 | * formatting with `prettier`. If not provided, prettier-eslint will attempt 20 | * to create the options based on the eslintConfig 21 | * @param {Object} options.fallbackPrettierOptions - the options to pass for 22 | * formatting with `prettier` if the given option is not inferrable from the 23 | * eslintConfig. 24 | * @param {Boolean} options.prettierLast - Run Prettier Last 25 | * @return {String} - the formatted string 26 | */ 27 | export default function format(options) { 28 | const { filePath } = options; 29 | 30 | const tslintFix = createTSLintFix( 31 | options.tslintConfig, 32 | options.tslintPath || getModulePath(filePath, "tslint") 33 | ); 34 | 35 | const prettify = createPrettify( 36 | options.prettierOptions || options.fallbackPrettierOptions || {}, 37 | options.prettierPath || getModulePath(filePath, "prettier") 38 | ); 39 | 40 | const text = options.text || readFileSync(filePath, "utf8"); 41 | return options.prettierLast 42 | ? prettify(tslintFix(text, filePath), filePath) 43 | : tslintFix(prettify(text, filePath), filePath); 44 | } 45 | 46 | function createPrettify(formatOptions, prettierPath) { 47 | const prettier = requireModule(prettierPath); 48 | return function prettify(text, filePath) { 49 | return prettier.format( 50 | text, 51 | Object.assign( 52 | {}, 53 | formatOptions, 54 | getPrettierConfig(filePath), 55 | filePath && { filepath: filePath } 56 | ) 57 | ); 58 | }; 59 | } 60 | 61 | function createTSLintFix(defaultLintConfig, tslintPath) { 62 | const tslint = requireModule(tslintPath); 63 | const { findConfiguration } = tslint.Configuration; 64 | 65 | // Adapted from: https://github.com/palantir/tslint/blob/5.12.0/src/linter.ts 66 | return function tslintFix(text, filePath) { 67 | // TODO: Use the "fix" option of `new tslint.Linter()` once the following 68 | // issue is triaged: https://github.com/palantir/tslint/issues/4411 69 | const linter = new tslint.Linter({ 70 | fix: false, // Disabled to avoid file operations. 71 | formatter: "json", 72 | }); 73 | 74 | const lintConfig = Object.assign( 75 | {}, 76 | defaultLintConfig, 77 | findConfiguration(null, filePath).results 78 | ); 79 | 80 | linter.lint(filePath, text, lintConfig); 81 | const { failures } = linter.getResult(); 82 | if (!failures.length) { 83 | return text; 84 | } 85 | 86 | // This is a private method, but we're using it as a workaround. 87 | const enabledRules = linter.getEnabledRules( 88 | lintConfig, 89 | extname(filePath) === ".js" 90 | ); 91 | 92 | // To keep rules from interfering with one another, we apply their fixes one 93 | // rule at a time. More info: https://github.com/azz/prettier-tslint/issues/26 94 | return enabledRules.reduce((text, rule) => { 95 | const { ruleName } = rule.getOptions(); 96 | const hasFix = f => f.hasFix() && f.getRuleName() === ruleName; 97 | if (failures.some(hasFix)) { 98 | const sourceFile = tslint.getSourceFile(filePath, text); 99 | const fixableFailures = tslint 100 | .removeDisabledFailures(sourceFile, rule.apply(sourceFile)) 101 | .filter(f => f.hasFix()); 102 | 103 | if (fixableFailures.length) { 104 | const fixes = fixableFailures.map(f => f.getFix()); 105 | return tslint.Replacement.applyFixes(text, fixes); 106 | } 107 | } 108 | return text; 109 | }, text); 110 | }; 111 | } 112 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | export { default as cli } from "./cli"; 2 | export { default as format } from "./format"; 3 | export { default as fix } from "./fix"; 4 | export { default as check } from "./check"; 5 | -------------------------------------------------------------------------------- /src/run-prettier.js: -------------------------------------------------------------------------------- 1 | import { readFileSync, writeFileSync } from "fs"; 2 | import { requireModule, getModulePath, getPrettierConfig } from "./utils"; 3 | 4 | /** 5 | * @returns true iff output === input 6 | */ 7 | const runPrettier = (filepath, fix) => { 8 | const prettier = requireModule(getModulePath(filepath, "prettier")); 9 | const config = getPrettierConfig(filepath, prettier); 10 | const code = readFileSync(filepath, "utf8"); 11 | const options = Object.assign({ filepath }, config); 12 | 13 | if (fix) { 14 | const output = prettier.format(code, options); 15 | if (output !== code) { 16 | writeFileSync(filepath, output); 17 | return false; 18 | } 19 | return true; 20 | } else { 21 | return prettier.check(code, options); 22 | } 23 | }; 24 | 25 | export default runPrettier; 26 | -------------------------------------------------------------------------------- /src/run-tslint.js: -------------------------------------------------------------------------------- 1 | import { readFileSync } from "fs"; 2 | import { requireModule, getModulePath } from "./utils"; 3 | import createProgram from "./create-program"; 4 | 5 | /** 6 | * @returns true iff output === input 7 | */ 8 | const runTsLint = (filepath, fix) => { 9 | const tslint = requireModule(getModulePath(filepath, "tslint")); 10 | const code = readFileSync(filepath, "utf8"); 11 | const config = tslint.Configuration.findConfiguration(null, filepath).results; 12 | 13 | const program = createProgram(filepath); 14 | 15 | // TODO(azz): This actually writes over the file, we don't really want that... 16 | const linter = new tslint.Linter({ fix }, program); 17 | 18 | linter.lint(filepath, code, config); 19 | const result = linter.getResult(); 20 | if (fix) { 21 | // There were no fixes applied 22 | return result.fixes.length === 0; 23 | } else { 24 | // There were no auto-fixable problems 25 | return !result.failures.find(failure => failure.fix); 26 | } 27 | }; 28 | 29 | export default runTsLint; 30 | -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- 1 | import requireRelative from "require-relative"; 2 | 3 | export function requireModule(modulePath) { 4 | try { 5 | return require(modulePath); 6 | } catch (error) { 7 | throw error; 8 | } 9 | } 10 | 11 | export function getModulePath(filePath, moduleName) { 12 | try { 13 | return requireRelative.resolve(moduleName, filePath); 14 | } catch (error) { 15 | return require.resolve(moduleName); 16 | } 17 | } 18 | 19 | export function getPrettierConfig( 20 | filePath, 21 | prettier = requireModule(getModulePath(filePath, "prettier")) 22 | ) { 23 | return ( 24 | (prettier.resolveConfig && 25 | prettier.resolveConfig.sync && 26 | prettier.resolveConfig.sync(filePath)) || 27 | {} 28 | ); 29 | } 30 | -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "jest": true 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /test/__snapshots__/fix.test.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`fix() bad format, bad lint writes fix to disk 1`] = ` 4 | Array [ 5 | "test/fixture/bad-format-bad-lint.ts", 6 | "throw new Error(\\"no-string-throw\\"); 7 | ", 8 | ] 9 | `; 10 | 11 | exports[`fix() bad format, good lint writes fix to disk 1`] = ` 12 | Array [ 13 | "test/fixture/bad-format-good-lint.ts", 14 | "throw new Error(\\"no-string-throw\\"); 15 | ", 16 | ] 17 | `; 18 | 19 | exports[`fix() good format, bad lint writes fix to disk 1`] = ` 20 | Array [ 21 | "test/fixture/good-format-bad-lint.ts", 22 | "throw new Error(\\"no-string-throw\\"); 23 | ", 24 | ] 25 | `; 26 | -------------------------------------------------------------------------------- /test/__snapshots__/format.test.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`format() bad format, bad lint passes format 1`] = ` 4 | "throw new Error(\\"no-string-throw\\"); 5 | " 6 | `; 7 | 8 | exports[`format() bad format, good lint passes format 1`] = ` 9 | "throw new Error(\\"no-string-throw\\"); 10 | " 11 | `; 12 | 13 | exports[`format() good format, bad lint passes format 1`] = ` 14 | "throw new Error(\\"no-string-throw\\"); 15 | " 16 | `; 17 | 18 | exports[`format() good format, good lint passes format 1`] = ` 19 | "throw new Error(\\"no-string-throw\\"); 20 | " 21 | `; 22 | -------------------------------------------------------------------------------- /test/check.test.js: -------------------------------------------------------------------------------- 1 | import check from "../src/check"; 2 | 3 | describe("check()", () => { 4 | test("good format, bad lint fails check", () => { 5 | expect(check("test/fixture/good-format-bad-lint.ts")).toEqual(false); 6 | }); 7 | test("bad format, good lint fails check", () => { 8 | expect(check("test/fixture/bad-format-good-lint.ts")).toEqual(false); 9 | }); 10 | test("bad format, bad lint fails check", () => { 11 | expect(check("test/fixture/bad-format-bad-lint.ts")).toEqual(false); 12 | }); 13 | test("good format, good lint passes check", () => { 14 | expect(check("test/fixture/good-format-good-lint.ts")).toEqual(true); 15 | }); 16 | }); 17 | -------------------------------------------------------------------------------- /test/fix.test.js: -------------------------------------------------------------------------------- 1 | jest.mock("fs"); 2 | 3 | import fix from "../src/fix"; 4 | import fs from "fs"; 5 | 6 | const lastCall = fn => { 7 | return fn.mock.calls[fn.mock.calls.length - 1]; 8 | }; 9 | 10 | describe("fix()", () => { 11 | beforeEach(() => { 12 | fs.__clear(); 13 | }); 14 | 15 | test("good format, bad lint writes fix to disk", () => { 16 | fix("test/fixture/good-format-bad-lint.ts"); 17 | expect(lastCall(fs.writeFileSync)).toMatchSnapshot(); 18 | }); 19 | 20 | test("bad format, good lint writes fix to disk", () => { 21 | fix("test/fixture/bad-format-good-lint.ts"); 22 | expect(lastCall(fs.writeFileSync)).toMatchSnapshot(); 23 | }); 24 | 25 | test("bad format, bad lint writes fix to disk", () => { 26 | fix("test/fixture/bad-format-bad-lint.ts"); 27 | expect(lastCall(fs.writeFileSync)).toMatchSnapshot(); 28 | }); 29 | 30 | test("good format, good lint writes doesn't write to disk", () => { 31 | fix("test/fixture/good-format-good-lint.ts"); 32 | expect(fs.writeFileSync).toHaveBeenCalledTimes(0); 33 | }); 34 | }); 35 | -------------------------------------------------------------------------------- /test/fixture/bad-format-bad-lint.ts: -------------------------------------------------------------------------------- 1 | throw 'no-string-throw' 2 | -------------------------------------------------------------------------------- /test/fixture/bad-format-good-lint.ts: -------------------------------------------------------------------------------- 1 | 2 | throw new Error ("no-string-throw") 3 | 4 | -------------------------------------------------------------------------------- /test/fixture/good-format-bad-lint.ts: -------------------------------------------------------------------------------- 1 | throw "no-string-throw"; 2 | -------------------------------------------------------------------------------- /test/fixture/good-format-good-lint.ts: -------------------------------------------------------------------------------- 1 | throw new Error("no-string-throw"); 2 | -------------------------------------------------------------------------------- /test/fixture/ignored/ignored.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azz/prettier-tslint/06d454d5527fbdd6c933c4632981976d4bd93c82/test/fixture/ignored/ignored.ts -------------------------------------------------------------------------------- /test/fixture/ignored/not-ignored.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azz/prettier-tslint/06d454d5527fbdd6c933c4632981976d4bd93c82/test/fixture/ignored/not-ignored.ts -------------------------------------------------------------------------------- /test/fixture/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "no-string-throw": true 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /test/format.test.js: -------------------------------------------------------------------------------- 1 | import format from "../src/format"; 2 | 3 | describe("format()", () => { 4 | test("good format, bad lint passes format", () => { 5 | expect( 6 | format({ 7 | filePath: "test/fixture/good-format-bad-lint.ts", 8 | }) 9 | ).toMatchSnapshot(); 10 | }); 11 | 12 | test("bad format, good lint passes format", () => { 13 | expect( 14 | format({ 15 | filePath: "test/fixture/bad-format-good-lint.ts", 16 | }) 17 | ).toMatchSnapshot(); 18 | }); 19 | 20 | test("bad format, bad lint passes format", () => { 21 | expect( 22 | format({ 23 | filePath: "test/fixture/bad-format-bad-lint.ts", 24 | }) 25 | ).toMatchSnapshot(); 26 | }); 27 | 28 | test("good format, good lint passes format", () => { 29 | expect( 30 | format({ 31 | filePath: "test/fixture/good-format-good-lint.ts", 32 | }) 33 | ).toMatchSnapshot(); 34 | }); 35 | }); 36 | -------------------------------------------------------------------------------- /test/prettierignore.test.js: -------------------------------------------------------------------------------- 1 | jest.mock("fs"); 2 | 3 | import fs from "fs"; 4 | import check from "../src/check"; 5 | import fix from "../src/fix"; 6 | 7 | describe(".prettierignore", () => { 8 | beforeAll(() => { 9 | fs.__setContents(".prettierignore", "ignored.ts\n"); 10 | }); 11 | afterAll(fs.__clear); 12 | 13 | test("check() returns null when file is ignored", () => { 14 | expect(check("test/fixture/ignored/ignored.ts")).toBeNull(); 15 | }); 16 | test("check() returns false when file is not ignored", () => { 17 | expect(check("test/fixture/ignored/not-ignored.ts")).toEqual(true); 18 | }); 19 | 20 | test("fix() returns null when file is ignored", () => { 21 | expect(fix("test/fixture/ignored/ignored.ts")).toBeNull(); 22 | }); 23 | test("fix() returns false when file is not ignored", () => { 24 | expect(fix("test/fixture/ignored/not-ignored.ts")).toEqual(true); 25 | }); 26 | }); 27 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@mrmlnc/readdir-enhanced@^2.2.1": 6 | version "2.2.1" 7 | resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde" 8 | dependencies: 9 | call-me-maybe "^1.0.1" 10 | glob-to-regexp "^0.3.0" 11 | 12 | "@semantic-release/commit-analyzer@^3.0.1": 13 | version "3.0.7" 14 | resolved "https://registry.yarnpkg.com/@semantic-release/commit-analyzer/-/commit-analyzer-3.0.7.tgz#dc955444a6d3d2ae9b8e21f90c2c80c4e9142b2f" 15 | dependencies: 16 | "@semantic-release/error" "^2.0.0" 17 | conventional-changelog-angular "^1.4.0" 18 | conventional-commits-parser "^2.0.0" 19 | import-from "^2.1.0" 20 | lodash "^4.17.4" 21 | pify "^3.0.0" 22 | 23 | "@semantic-release/condition-travis@^6.0.0": 24 | version "6.2.1" 25 | resolved "https://registry.yarnpkg.com/@semantic-release/condition-travis/-/condition-travis-6.2.1.tgz#e3421e5bce47f27057d66abad79e432382427982" 26 | dependencies: 27 | "@semantic-release/error" "^2.0.0" 28 | github "^12.0.0" 29 | parse-github-repo-url "^1.4.1" 30 | semver "^5.0.3" 31 | travis-deploy-once "^3.0.0" 32 | 33 | "@semantic-release/error@^2.0.0": 34 | version "2.2.0" 35 | resolved "https://registry.yarnpkg.com/@semantic-release/error/-/error-2.2.0.tgz#ee9d5a09c9969eade1ec864776aeda5c5cddbbf0" 36 | 37 | "@semantic-release/last-release-npm@^2.0.0": 38 | version "2.0.2" 39 | resolved "https://registry.yarnpkg.com/@semantic-release/last-release-npm/-/last-release-npm-2.0.2.tgz#c91b1ccb48b0d7095b107be6ebc2c0c08bd88c27" 40 | dependencies: 41 | "@semantic-release/error" "^2.0.0" 42 | npm-registry-client "^8.4.0" 43 | npmlog "^4.0.0" 44 | 45 | "@semantic-release/release-notes-generator@^4.0.0": 46 | version "4.0.5" 47 | resolved "https://registry.yarnpkg.com/@semantic-release/release-notes-generator/-/release-notes-generator-4.0.5.tgz#46cc2f16bdb60fe9674bbcd616bfe0f8bb35347c" 48 | dependencies: 49 | "@semantic-release/error" "^2.0.0" 50 | conventional-changelog-angular "^1.4.0" 51 | conventional-changelog-core "^1.9.0" 52 | get-stream "^3.0.0" 53 | import-from "^2.1.0" 54 | lodash "^4.17.4" 55 | pify "^3.0.0" 56 | 57 | "@sindresorhus/is@^0.7.0": 58 | version "0.7.0" 59 | resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.7.0.tgz#9a06f4f137ee84d7df0460c1fdb1135ffa6c50fd" 60 | 61 | JSONStream@^1.0.4: 62 | version "1.3.2" 63 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.2.tgz#c102371b6ec3a7cf3b847ca00c20bb0fce4c6dea" 64 | dependencies: 65 | jsonparse "^1.2.0" 66 | through ">=2.2.7 <3" 67 | 68 | abab@^1.0.3: 69 | version "1.0.4" 70 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 71 | 72 | abbrev@1: 73 | version "1.1.1" 74 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 75 | 76 | acorn-globals@^3.1.0: 77 | version "3.1.0" 78 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 79 | dependencies: 80 | acorn "^4.0.4" 81 | 82 | acorn-jsx@^3.0.0: 83 | version "3.0.1" 84 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 85 | dependencies: 86 | acorn "^3.0.4" 87 | 88 | acorn@^3.0.4: 89 | version "3.3.0" 90 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 91 | 92 | acorn@^4.0.4: 93 | version "4.0.13" 94 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 95 | 96 | acorn@^5.5.0: 97 | version "5.5.3" 98 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9" 99 | 100 | agent-base@^4.1.0: 101 | version "4.2.0" 102 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.0.tgz#9838b5c3392b962bad031e6a4c5e1024abec45ce" 103 | dependencies: 104 | es6-promisify "^5.0.0" 105 | 106 | ajv-keywords@^2.1.0: 107 | version "2.1.1" 108 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 109 | 110 | ajv@^5.1.0, ajv@^5.2.3, ajv@^5.3.0: 111 | version "5.5.2" 112 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 113 | dependencies: 114 | co "^4.6.0" 115 | fast-deep-equal "^1.0.0" 116 | fast-json-stable-stringify "^2.0.0" 117 | json-schema-traverse "^0.3.0" 118 | 119 | align-text@^0.1.1, align-text@^0.1.3: 120 | version "0.1.4" 121 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 122 | dependencies: 123 | kind-of "^3.0.2" 124 | longest "^1.0.1" 125 | repeat-string "^1.5.2" 126 | 127 | amdefine@>=0.0.4: 128 | version "1.0.1" 129 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 130 | 131 | ansi-escapes@^3.0.0: 132 | version "3.1.0" 133 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 134 | 135 | ansi-regex@^2.0.0: 136 | version "2.1.1" 137 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 138 | 139 | ansi-regex@^3.0.0: 140 | version "3.0.0" 141 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 142 | 143 | ansi-styles@^2.2.1: 144 | version "2.2.1" 145 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 146 | 147 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 148 | version "3.2.1" 149 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 150 | dependencies: 151 | color-convert "^1.9.0" 152 | 153 | anymatch@^1.3.0: 154 | version "1.3.2" 155 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 156 | dependencies: 157 | micromatch "^2.1.5" 158 | normalize-path "^2.0.0" 159 | 160 | anymatch@^2.0.0: 161 | version "2.0.0" 162 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 163 | dependencies: 164 | micromatch "^3.1.4" 165 | normalize-path "^2.1.1" 166 | 167 | append-transform@^0.4.0: 168 | version "0.4.0" 169 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 170 | dependencies: 171 | default-require-extensions "^1.0.0" 172 | 173 | aproba@^1.0.3: 174 | version "1.2.0" 175 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 176 | 177 | are-we-there-yet@~1.1.2: 178 | version "1.1.4" 179 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 180 | dependencies: 181 | delegates "^1.0.0" 182 | readable-stream "^2.0.6" 183 | 184 | argparse@^1.0.7: 185 | version "1.0.10" 186 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 187 | dependencies: 188 | sprintf-js "~1.0.2" 189 | 190 | arr-diff@^2.0.0: 191 | version "2.0.0" 192 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 193 | dependencies: 194 | arr-flatten "^1.0.1" 195 | 196 | arr-diff@^4.0.0: 197 | version "4.0.0" 198 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 199 | 200 | arr-flatten@^1.0.1, arr-flatten@^1.1.0: 201 | version "1.1.0" 202 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 203 | 204 | arr-union@^3.1.0: 205 | version "3.1.0" 206 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 207 | 208 | array-equal@^1.0.0: 209 | version "1.0.0" 210 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 211 | 212 | array-find-index@^1.0.1: 213 | version "1.0.2" 214 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 215 | 216 | array-ify@^1.0.0: 217 | version "1.0.0" 218 | resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" 219 | 220 | array-union@^1.0.1: 221 | version "1.0.2" 222 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 223 | dependencies: 224 | array-uniq "^1.0.1" 225 | 226 | array-uniq@^1.0.1: 227 | version "1.0.3" 228 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 229 | 230 | array-unique@^0.2.1: 231 | version "0.2.1" 232 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 233 | 234 | array-unique@^0.3.2: 235 | version "0.3.2" 236 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 237 | 238 | arrify@^1.0.0, arrify@^1.0.1: 239 | version "1.0.1" 240 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 241 | 242 | asn1@~0.2.3: 243 | version "0.2.3" 244 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 245 | 246 | assert-plus@1.0.0, assert-plus@^1.0.0: 247 | version "1.0.0" 248 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 249 | 250 | assign-symbols@^1.0.0: 251 | version "1.0.0" 252 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 253 | 254 | astral-regex@^1.0.0: 255 | version "1.0.0" 256 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 257 | 258 | async-each@^1.0.0: 259 | version "1.0.1" 260 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 261 | 262 | async@^1.4.0: 263 | version "1.5.2" 264 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 265 | 266 | async@^2.1.4: 267 | version "2.6.0" 268 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 269 | dependencies: 270 | lodash "^4.14.0" 271 | 272 | asynckit@^0.4.0: 273 | version "0.4.0" 274 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 275 | 276 | atob@^2.0.0: 277 | version "2.1.0" 278 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.0.tgz#ab2b150e51d7b122b9efc8d7340c06b6c41076bc" 279 | 280 | aws-sign2@~0.7.0: 281 | version "0.7.0" 282 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 283 | 284 | aws4@^1.6.0: 285 | version "1.7.0" 286 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289" 287 | 288 | babel-cli@^6.26.0: 289 | version "6.26.0" 290 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 291 | dependencies: 292 | babel-core "^6.26.0" 293 | babel-polyfill "^6.26.0" 294 | babel-register "^6.26.0" 295 | babel-runtime "^6.26.0" 296 | commander "^2.11.0" 297 | convert-source-map "^1.5.0" 298 | fs-readdir-recursive "^1.0.0" 299 | glob "^7.1.2" 300 | lodash "^4.17.4" 301 | output-file-sync "^1.1.2" 302 | path-is-absolute "^1.0.1" 303 | slash "^1.0.0" 304 | source-map "^0.5.6" 305 | v8flags "^2.1.1" 306 | optionalDependencies: 307 | chokidar "^1.6.1" 308 | 309 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 310 | version "6.26.0" 311 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 312 | dependencies: 313 | chalk "^1.1.3" 314 | esutils "^2.0.2" 315 | js-tokens "^3.0.2" 316 | 317 | babel-core@^6.0.0, babel-core@^6.26.0: 318 | version "6.26.0" 319 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 320 | dependencies: 321 | babel-code-frame "^6.26.0" 322 | babel-generator "^6.26.0" 323 | babel-helpers "^6.24.1" 324 | babel-messages "^6.23.0" 325 | babel-register "^6.26.0" 326 | babel-runtime "^6.26.0" 327 | babel-template "^6.26.0" 328 | babel-traverse "^6.26.0" 329 | babel-types "^6.26.0" 330 | babylon "^6.18.0" 331 | convert-source-map "^1.5.0" 332 | debug "^2.6.8" 333 | json5 "^0.5.1" 334 | lodash "^4.17.4" 335 | minimatch "^3.0.4" 336 | path-is-absolute "^1.0.1" 337 | private "^0.1.7" 338 | slash "^1.0.0" 339 | source-map "^0.5.6" 340 | 341 | babel-generator@^6.18.0, babel-generator@^6.26.0: 342 | version "6.26.1" 343 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 344 | dependencies: 345 | babel-messages "^6.23.0" 346 | babel-runtime "^6.26.0" 347 | babel-types "^6.26.0" 348 | detect-indent "^4.0.0" 349 | jsesc "^1.3.0" 350 | lodash "^4.17.4" 351 | source-map "^0.5.7" 352 | trim-right "^1.0.1" 353 | 354 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 355 | version "6.24.1" 356 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 357 | dependencies: 358 | babel-helper-explode-assignable-expression "^6.24.1" 359 | babel-runtime "^6.22.0" 360 | babel-types "^6.24.1" 361 | 362 | babel-helper-call-delegate@^6.24.1: 363 | version "6.24.1" 364 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 365 | dependencies: 366 | babel-helper-hoist-variables "^6.24.1" 367 | babel-runtime "^6.22.0" 368 | babel-traverse "^6.24.1" 369 | babel-types "^6.24.1" 370 | 371 | babel-helper-define-map@^6.24.1: 372 | version "6.26.0" 373 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 374 | dependencies: 375 | babel-helper-function-name "^6.24.1" 376 | babel-runtime "^6.26.0" 377 | babel-types "^6.26.0" 378 | lodash "^4.17.4" 379 | 380 | babel-helper-explode-assignable-expression@^6.24.1: 381 | version "6.24.1" 382 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 383 | dependencies: 384 | babel-runtime "^6.22.0" 385 | babel-traverse "^6.24.1" 386 | babel-types "^6.24.1" 387 | 388 | babel-helper-function-name@^6.24.1: 389 | version "6.24.1" 390 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 391 | dependencies: 392 | babel-helper-get-function-arity "^6.24.1" 393 | babel-runtime "^6.22.0" 394 | babel-template "^6.24.1" 395 | babel-traverse "^6.24.1" 396 | babel-types "^6.24.1" 397 | 398 | babel-helper-get-function-arity@^6.24.1: 399 | version "6.24.1" 400 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 401 | dependencies: 402 | babel-runtime "^6.22.0" 403 | babel-types "^6.24.1" 404 | 405 | babel-helper-hoist-variables@^6.24.1: 406 | version "6.24.1" 407 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 408 | dependencies: 409 | babel-runtime "^6.22.0" 410 | babel-types "^6.24.1" 411 | 412 | babel-helper-optimise-call-expression@^6.24.1: 413 | version "6.24.1" 414 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 415 | dependencies: 416 | babel-runtime "^6.22.0" 417 | babel-types "^6.24.1" 418 | 419 | babel-helper-regex@^6.24.1: 420 | version "6.26.0" 421 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 422 | dependencies: 423 | babel-runtime "^6.26.0" 424 | babel-types "^6.26.0" 425 | lodash "^4.17.4" 426 | 427 | babel-helper-remap-async-to-generator@^6.24.1: 428 | version "6.24.1" 429 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 430 | dependencies: 431 | babel-helper-function-name "^6.24.1" 432 | babel-runtime "^6.22.0" 433 | babel-template "^6.24.1" 434 | babel-traverse "^6.24.1" 435 | babel-types "^6.24.1" 436 | 437 | babel-helper-replace-supers@^6.24.1: 438 | version "6.24.1" 439 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 440 | dependencies: 441 | babel-helper-optimise-call-expression "^6.24.1" 442 | babel-messages "^6.23.0" 443 | babel-runtime "^6.22.0" 444 | babel-template "^6.24.1" 445 | babel-traverse "^6.24.1" 446 | babel-types "^6.24.1" 447 | 448 | babel-helpers@^6.24.1: 449 | version "6.24.1" 450 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 451 | dependencies: 452 | babel-runtime "^6.22.0" 453 | babel-template "^6.24.1" 454 | 455 | babel-jest@^21.2.0: 456 | version "21.2.0" 457 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-21.2.0.tgz#2ce059519a9374a2c46f2455b6fbef5ad75d863e" 458 | dependencies: 459 | babel-plugin-istanbul "^4.0.0" 460 | babel-preset-jest "^21.2.0" 461 | 462 | babel-messages@^6.23.0: 463 | version "6.23.0" 464 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 465 | dependencies: 466 | babel-runtime "^6.22.0" 467 | 468 | babel-plugin-check-es2015-constants@^6.22.0: 469 | version "6.22.0" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 471 | dependencies: 472 | babel-runtime "^6.22.0" 473 | 474 | babel-plugin-istanbul@^4.0.0: 475 | version "4.1.6" 476 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45" 477 | dependencies: 478 | babel-plugin-syntax-object-rest-spread "^6.13.0" 479 | find-up "^2.1.0" 480 | istanbul-lib-instrument "^1.10.1" 481 | test-exclude "^4.2.1" 482 | 483 | babel-plugin-jest-hoist@^21.2.0: 484 | version "21.2.0" 485 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.2.0.tgz#2cef637259bd4b628a6cace039de5fcd14dbb006" 486 | 487 | babel-plugin-syntax-async-functions@^6.8.0: 488 | version "6.13.0" 489 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 490 | 491 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 492 | version "6.13.0" 493 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 494 | 495 | babel-plugin-syntax-object-rest-spread@^6.13.0: 496 | version "6.13.0" 497 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 498 | 499 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 500 | version "6.22.0" 501 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 502 | 503 | babel-plugin-transform-async-to-generator@^6.22.0: 504 | version "6.24.1" 505 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 506 | dependencies: 507 | babel-helper-remap-async-to-generator "^6.24.1" 508 | babel-plugin-syntax-async-functions "^6.8.0" 509 | babel-runtime "^6.22.0" 510 | 511 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 512 | version "6.22.0" 513 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 514 | dependencies: 515 | babel-runtime "^6.22.0" 516 | 517 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 518 | version "6.22.0" 519 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 520 | dependencies: 521 | babel-runtime "^6.22.0" 522 | 523 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 524 | version "6.26.0" 525 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 526 | dependencies: 527 | babel-runtime "^6.26.0" 528 | babel-template "^6.26.0" 529 | babel-traverse "^6.26.0" 530 | babel-types "^6.26.0" 531 | lodash "^4.17.4" 532 | 533 | babel-plugin-transform-es2015-classes@^6.23.0: 534 | version "6.24.1" 535 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 536 | dependencies: 537 | babel-helper-define-map "^6.24.1" 538 | babel-helper-function-name "^6.24.1" 539 | babel-helper-optimise-call-expression "^6.24.1" 540 | babel-helper-replace-supers "^6.24.1" 541 | babel-messages "^6.23.0" 542 | babel-runtime "^6.22.0" 543 | babel-template "^6.24.1" 544 | babel-traverse "^6.24.1" 545 | babel-types "^6.24.1" 546 | 547 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 548 | version "6.24.1" 549 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 550 | dependencies: 551 | babel-runtime "^6.22.0" 552 | babel-template "^6.24.1" 553 | 554 | babel-plugin-transform-es2015-destructuring@^6.23.0: 555 | version "6.23.0" 556 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 557 | dependencies: 558 | babel-runtime "^6.22.0" 559 | 560 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 561 | version "6.24.1" 562 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 563 | dependencies: 564 | babel-runtime "^6.22.0" 565 | babel-types "^6.24.1" 566 | 567 | babel-plugin-transform-es2015-for-of@^6.23.0: 568 | version "6.23.0" 569 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 570 | dependencies: 571 | babel-runtime "^6.22.0" 572 | 573 | babel-plugin-transform-es2015-function-name@^6.22.0: 574 | version "6.24.1" 575 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 576 | dependencies: 577 | babel-helper-function-name "^6.24.1" 578 | babel-runtime "^6.22.0" 579 | babel-types "^6.24.1" 580 | 581 | babel-plugin-transform-es2015-literals@^6.22.0: 582 | version "6.22.0" 583 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 584 | dependencies: 585 | babel-runtime "^6.22.0" 586 | 587 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 588 | version "6.24.1" 589 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 590 | dependencies: 591 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 592 | babel-runtime "^6.22.0" 593 | babel-template "^6.24.1" 594 | 595 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 596 | version "6.26.0" 597 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 598 | dependencies: 599 | babel-plugin-transform-strict-mode "^6.24.1" 600 | babel-runtime "^6.26.0" 601 | babel-template "^6.26.0" 602 | babel-types "^6.26.0" 603 | 604 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 605 | version "6.24.1" 606 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 607 | dependencies: 608 | babel-helper-hoist-variables "^6.24.1" 609 | babel-runtime "^6.22.0" 610 | babel-template "^6.24.1" 611 | 612 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 613 | version "6.24.1" 614 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 615 | dependencies: 616 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 617 | babel-runtime "^6.22.0" 618 | babel-template "^6.24.1" 619 | 620 | babel-plugin-transform-es2015-object-super@^6.22.0: 621 | version "6.24.1" 622 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 623 | dependencies: 624 | babel-helper-replace-supers "^6.24.1" 625 | babel-runtime "^6.22.0" 626 | 627 | babel-plugin-transform-es2015-parameters@^6.23.0: 628 | version "6.24.1" 629 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 630 | dependencies: 631 | babel-helper-call-delegate "^6.24.1" 632 | babel-helper-get-function-arity "^6.24.1" 633 | babel-runtime "^6.22.0" 634 | babel-template "^6.24.1" 635 | babel-traverse "^6.24.1" 636 | babel-types "^6.24.1" 637 | 638 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 639 | version "6.24.1" 640 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 641 | dependencies: 642 | babel-runtime "^6.22.0" 643 | babel-types "^6.24.1" 644 | 645 | babel-plugin-transform-es2015-spread@^6.22.0: 646 | version "6.22.0" 647 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 648 | dependencies: 649 | babel-runtime "^6.22.0" 650 | 651 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 652 | version "6.24.1" 653 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 654 | dependencies: 655 | babel-helper-regex "^6.24.1" 656 | babel-runtime "^6.22.0" 657 | babel-types "^6.24.1" 658 | 659 | babel-plugin-transform-es2015-template-literals@^6.22.0: 660 | version "6.22.0" 661 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 662 | dependencies: 663 | babel-runtime "^6.22.0" 664 | 665 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 666 | version "6.23.0" 667 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 668 | dependencies: 669 | babel-runtime "^6.22.0" 670 | 671 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 672 | version "6.24.1" 673 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 674 | dependencies: 675 | babel-helper-regex "^6.24.1" 676 | babel-runtime "^6.22.0" 677 | regexpu-core "^2.0.0" 678 | 679 | babel-plugin-transform-exponentiation-operator@^6.22.0: 680 | version "6.24.1" 681 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 682 | dependencies: 683 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 684 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 685 | babel-runtime "^6.22.0" 686 | 687 | babel-plugin-transform-regenerator@^6.22.0: 688 | version "6.26.0" 689 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 690 | dependencies: 691 | regenerator-transform "^0.10.0" 692 | 693 | babel-plugin-transform-strict-mode@^6.24.1: 694 | version "6.24.1" 695 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 696 | dependencies: 697 | babel-runtime "^6.22.0" 698 | babel-types "^6.24.1" 699 | 700 | babel-polyfill@^6.26.0: 701 | version "6.26.0" 702 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 703 | dependencies: 704 | babel-runtime "^6.26.0" 705 | core-js "^2.5.0" 706 | regenerator-runtime "^0.10.5" 707 | 708 | babel-preset-env@^1.6.1: 709 | version "1.6.1" 710 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 711 | dependencies: 712 | babel-plugin-check-es2015-constants "^6.22.0" 713 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 714 | babel-plugin-transform-async-to-generator "^6.22.0" 715 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 716 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 717 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 718 | babel-plugin-transform-es2015-classes "^6.23.0" 719 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 720 | babel-plugin-transform-es2015-destructuring "^6.23.0" 721 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 722 | babel-plugin-transform-es2015-for-of "^6.23.0" 723 | babel-plugin-transform-es2015-function-name "^6.22.0" 724 | babel-plugin-transform-es2015-literals "^6.22.0" 725 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 726 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 727 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 728 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 729 | babel-plugin-transform-es2015-object-super "^6.22.0" 730 | babel-plugin-transform-es2015-parameters "^6.23.0" 731 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 732 | babel-plugin-transform-es2015-spread "^6.22.0" 733 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 734 | babel-plugin-transform-es2015-template-literals "^6.22.0" 735 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 736 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 737 | babel-plugin-transform-exponentiation-operator "^6.22.0" 738 | babel-plugin-transform-regenerator "^6.22.0" 739 | browserslist "^2.1.2" 740 | invariant "^2.2.2" 741 | semver "^5.3.0" 742 | 743 | babel-preset-jest@^21.2.0: 744 | version "21.2.0" 745 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-21.2.0.tgz#ff9d2bce08abd98e8a36d9a8a5189b9173b85638" 746 | dependencies: 747 | babel-plugin-jest-hoist "^21.2.0" 748 | babel-plugin-syntax-object-rest-spread "^6.13.0" 749 | 750 | babel-register@^6.26.0: 751 | version "6.26.0" 752 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 753 | dependencies: 754 | babel-core "^6.26.0" 755 | babel-runtime "^6.26.0" 756 | core-js "^2.5.0" 757 | home-or-tmp "^2.0.0" 758 | lodash "^4.17.4" 759 | mkdirp "^0.5.1" 760 | source-map-support "^0.4.15" 761 | 762 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 763 | version "6.26.0" 764 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 765 | dependencies: 766 | core-js "^2.4.0" 767 | regenerator-runtime "^0.11.0" 768 | 769 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 770 | version "6.26.0" 771 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 772 | dependencies: 773 | babel-runtime "^6.26.0" 774 | babel-traverse "^6.26.0" 775 | babel-types "^6.26.0" 776 | babylon "^6.18.0" 777 | lodash "^4.17.4" 778 | 779 | babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0: 780 | version "6.26.0" 781 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 782 | dependencies: 783 | babel-code-frame "^6.26.0" 784 | babel-messages "^6.23.0" 785 | babel-runtime "^6.26.0" 786 | babel-types "^6.26.0" 787 | babylon "^6.18.0" 788 | debug "^2.6.8" 789 | globals "^9.18.0" 790 | invariant "^2.2.2" 791 | lodash "^4.17.4" 792 | 793 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 794 | version "6.26.0" 795 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 796 | dependencies: 797 | babel-runtime "^6.26.0" 798 | esutils "^2.0.2" 799 | lodash "^4.17.4" 800 | to-fast-properties "^1.0.3" 801 | 802 | babylon@^6.18.0: 803 | version "6.18.0" 804 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 805 | 806 | balanced-match@^1.0.0: 807 | version "1.0.0" 808 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 809 | 810 | base@^0.11.1: 811 | version "0.11.2" 812 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 813 | dependencies: 814 | cache-base "^1.0.1" 815 | class-utils "^0.3.5" 816 | component-emitter "^1.2.1" 817 | define-property "^1.0.0" 818 | isobject "^3.0.1" 819 | mixin-deep "^1.2.0" 820 | pascalcase "^0.1.1" 821 | 822 | bcrypt-pbkdf@^1.0.0: 823 | version "1.0.1" 824 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 825 | dependencies: 826 | tweetnacl "^0.14.3" 827 | 828 | binary-extensions@^1.0.0: 829 | version "1.11.0" 830 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 831 | 832 | boom@4.x.x: 833 | version "4.3.1" 834 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 835 | dependencies: 836 | hoek "4.x.x" 837 | 838 | boom@5.x.x: 839 | version "5.2.0" 840 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 841 | dependencies: 842 | hoek "4.x.x" 843 | 844 | brace-expansion@^1.1.7: 845 | version "1.1.11" 846 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 847 | dependencies: 848 | balanced-match "^1.0.0" 849 | concat-map "0.0.1" 850 | 851 | braces@^1.8.2: 852 | version "1.8.5" 853 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 854 | dependencies: 855 | expand-range "^1.8.1" 856 | preserve "^0.2.0" 857 | repeat-element "^1.1.2" 858 | 859 | braces@^2.3.1: 860 | version "2.3.2" 861 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 862 | dependencies: 863 | arr-flatten "^1.1.0" 864 | array-unique "^0.3.2" 865 | extend-shallow "^2.0.1" 866 | fill-range "^4.0.0" 867 | isobject "^3.0.1" 868 | repeat-element "^1.1.2" 869 | snapdragon "^0.8.1" 870 | snapdragon-node "^2.0.1" 871 | split-string "^3.0.2" 872 | to-regex "^3.0.1" 873 | 874 | browser-resolve@^1.11.2: 875 | version "1.11.2" 876 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 877 | dependencies: 878 | resolve "1.1.7" 879 | 880 | browserslist@^2.1.2: 881 | version "2.11.3" 882 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.11.3.tgz#fe36167aed1bbcde4827ebfe71347a2cc70b99b2" 883 | dependencies: 884 | caniuse-lite "^1.0.30000792" 885 | electron-to-chromium "^1.3.30" 886 | 887 | bser@^2.0.0: 888 | version "2.0.0" 889 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 890 | dependencies: 891 | node-int64 "^0.4.0" 892 | 893 | buffer-from@^1.0.0: 894 | version "1.0.0" 895 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531" 896 | 897 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 898 | version "1.1.1" 899 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 900 | 901 | builtins@^1.0.3: 902 | version "1.0.3" 903 | resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" 904 | 905 | cache-base@^1.0.1: 906 | version "1.0.1" 907 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 908 | dependencies: 909 | collection-visit "^1.0.0" 910 | component-emitter "^1.2.1" 911 | get-value "^2.0.6" 912 | has-value "^1.0.0" 913 | isobject "^3.0.1" 914 | set-value "^2.0.0" 915 | to-object-path "^0.3.0" 916 | union-value "^1.0.0" 917 | unset-value "^1.0.0" 918 | 919 | cacheable-request@^2.1.1: 920 | version "2.1.4" 921 | resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-2.1.4.tgz#0d808801b6342ad33c91df9d0b44dc09b91e5c3d" 922 | dependencies: 923 | clone-response "1.0.2" 924 | get-stream "3.0.0" 925 | http-cache-semantics "3.8.1" 926 | keyv "3.0.0" 927 | lowercase-keys "1.0.0" 928 | normalize-url "2.0.1" 929 | responselike "1.0.2" 930 | 931 | call-me-maybe@^1.0.1: 932 | version "1.0.1" 933 | resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b" 934 | 935 | caller-path@^0.1.0: 936 | version "0.1.0" 937 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 938 | dependencies: 939 | callsites "^0.2.0" 940 | 941 | callsites@^0.2.0: 942 | version "0.2.0" 943 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 944 | 945 | callsites@^2.0.0: 946 | version "2.0.0" 947 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 948 | 949 | camelcase-keys@^2.0.0: 950 | version "2.1.0" 951 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 952 | dependencies: 953 | camelcase "^2.0.0" 954 | map-obj "^1.0.0" 955 | 956 | camelcase-keys@^4.0.0: 957 | version "4.2.0" 958 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77" 959 | dependencies: 960 | camelcase "^4.1.0" 961 | map-obj "^2.0.0" 962 | quick-lru "^1.0.0" 963 | 964 | camelcase@^1.0.2: 965 | version "1.2.1" 966 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 967 | 968 | camelcase@^2.0.0: 969 | version "2.1.1" 970 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 971 | 972 | camelcase@^4.1.0: 973 | version "4.1.0" 974 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 975 | 976 | caniuse-lite@^1.0.30000792: 977 | version "1.0.30000830" 978 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000830.tgz#cb96b8a2dd3cbfe04acea2af3c4e894249095328" 979 | 980 | caseless@~0.12.0: 981 | version "0.12.0" 982 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 983 | 984 | center-align@^0.1.1: 985 | version "0.1.3" 986 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 987 | dependencies: 988 | align-text "^0.1.3" 989 | lazy-cache "^1.0.3" 990 | 991 | chalk@^1.1.3: 992 | version "1.1.3" 993 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 994 | dependencies: 995 | ansi-styles "^2.2.1" 996 | escape-string-regexp "^1.0.2" 997 | has-ansi "^2.0.0" 998 | strip-ansi "^3.0.0" 999 | supports-color "^2.0.0" 1000 | 1001 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.4.0: 1002 | version "2.4.0" 1003 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.0.tgz#a060a297a6b57e15b61ca63ce84995daa0fe6e52" 1004 | dependencies: 1005 | ansi-styles "^3.2.1" 1006 | escape-string-regexp "^1.0.5" 1007 | supports-color "^5.3.0" 1008 | 1009 | chardet@^0.4.0: 1010 | version "0.4.2" 1011 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 1012 | 1013 | chokidar@^1.6.1: 1014 | version "1.7.0" 1015 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 1016 | dependencies: 1017 | anymatch "^1.3.0" 1018 | async-each "^1.0.0" 1019 | glob-parent "^2.0.0" 1020 | inherits "^2.0.1" 1021 | is-binary-path "^1.0.0" 1022 | is-glob "^2.0.0" 1023 | path-is-absolute "^1.0.0" 1024 | readdirp "^2.0.0" 1025 | optionalDependencies: 1026 | fsevents "^1.0.0" 1027 | 1028 | chownr@^1.1.1: 1029 | version "1.1.3" 1030 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.3.tgz#42d837d5239688d55f303003a508230fa6727142" 1031 | 1032 | ci-info@^1.0.0: 1033 | version "1.1.3" 1034 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.3.tgz#710193264bb05c77b8c90d02f5aaf22216a667b2" 1035 | 1036 | circular-json@^0.3.1: 1037 | version "0.3.3" 1038 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 1039 | 1040 | class-utils@^0.3.5: 1041 | version "0.3.6" 1042 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 1043 | dependencies: 1044 | arr-union "^3.1.0" 1045 | define-property "^0.2.5" 1046 | isobject "^3.0.0" 1047 | static-extend "^0.1.1" 1048 | 1049 | cli-cursor@^2.1.0: 1050 | version "2.1.0" 1051 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 1052 | dependencies: 1053 | restore-cursor "^2.0.0" 1054 | 1055 | cli-width@^2.0.0: 1056 | version "2.2.0" 1057 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 1058 | 1059 | cliui@^2.1.0: 1060 | version "2.1.0" 1061 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1062 | dependencies: 1063 | center-align "^0.1.1" 1064 | right-align "^0.1.1" 1065 | wordwrap "0.0.2" 1066 | 1067 | cliui@^3.2.0: 1068 | version "3.2.0" 1069 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1070 | dependencies: 1071 | string-width "^1.0.1" 1072 | strip-ansi "^3.0.1" 1073 | wrap-ansi "^2.0.0" 1074 | 1075 | cliui@^4.0.0: 1076 | version "4.1.0" 1077 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 1078 | dependencies: 1079 | string-width "^2.1.1" 1080 | strip-ansi "^4.0.0" 1081 | wrap-ansi "^2.0.0" 1082 | 1083 | clone-response@1.0.2: 1084 | version "1.0.2" 1085 | resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" 1086 | dependencies: 1087 | mimic-response "^1.0.0" 1088 | 1089 | co@^4.6.0: 1090 | version "4.6.0" 1091 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1092 | 1093 | code-point-at@^1.0.0: 1094 | version "1.1.0" 1095 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1096 | 1097 | collection-visit@^1.0.0: 1098 | version "1.0.0" 1099 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 1100 | dependencies: 1101 | map-visit "^1.0.0" 1102 | object-visit "^1.0.0" 1103 | 1104 | color-convert@^1.9.0: 1105 | version "1.9.1" 1106 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 1107 | dependencies: 1108 | color-name "^1.1.1" 1109 | 1110 | color-name@^1.1.1: 1111 | version "1.1.3" 1112 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1113 | 1114 | combined-stream@1.0.6, combined-stream@~1.0.5: 1115 | version "1.0.6" 1116 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 1117 | dependencies: 1118 | delayed-stream "~1.0.0" 1119 | 1120 | commander@^2.11.0, commander@^2.12.1: 1121 | version "2.15.1" 1122 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" 1123 | 1124 | compare-func@^1.3.1: 1125 | version "1.3.2" 1126 | resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648" 1127 | dependencies: 1128 | array-ify "^1.0.0" 1129 | dot-prop "^3.0.0" 1130 | 1131 | compare-versions@^3.1.0: 1132 | version "3.1.0" 1133 | resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.1.0.tgz#43310256a5c555aaed4193c04d8f154cf9c6efd5" 1134 | 1135 | component-emitter@^1.2.1: 1136 | version "1.2.1" 1137 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1138 | 1139 | concat-map@0.0.1: 1140 | version "0.0.1" 1141 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1142 | 1143 | concat-stream@^1.5.2, concat-stream@^1.6.0: 1144 | version "1.6.2" 1145 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 1146 | dependencies: 1147 | buffer-from "^1.0.0" 1148 | inherits "^2.0.3" 1149 | readable-stream "^2.2.2" 1150 | typedarray "^0.0.6" 1151 | 1152 | config-chain@~1.1.8: 1153 | version "1.1.11" 1154 | resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.11.tgz#aba09747dfbe4c3e70e766a6e41586e1859fc6f2" 1155 | dependencies: 1156 | ini "^1.3.4" 1157 | proto-list "~1.2.1" 1158 | 1159 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1160 | version "1.1.0" 1161 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1162 | 1163 | content-type-parser@^1.0.1: 1164 | version "1.0.2" 1165 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7" 1166 | 1167 | conventional-changelog-angular@^1.4.0: 1168 | version "1.6.6" 1169 | resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-1.6.6.tgz#b27f2b315c16d0a1f23eb181309d0e6a4698ea0f" 1170 | dependencies: 1171 | compare-func "^1.3.1" 1172 | q "^1.5.1" 1173 | 1174 | conventional-changelog-core@^1.9.0: 1175 | version "1.9.5" 1176 | resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-1.9.5.tgz#5db7566dad7c0cb75daf47fbb2976f7bf9928c1d" 1177 | dependencies: 1178 | conventional-changelog-writer "^2.0.3" 1179 | conventional-commits-parser "^2.1.0" 1180 | dateformat "^1.0.12" 1181 | get-pkg-repo "^1.0.0" 1182 | git-raw-commits "^1.3.0" 1183 | git-remote-origin-url "^2.0.0" 1184 | git-semver-tags "^1.2.3" 1185 | lodash "^4.0.0" 1186 | normalize-package-data "^2.3.5" 1187 | q "^1.4.1" 1188 | read-pkg "^1.1.0" 1189 | read-pkg-up "^1.0.1" 1190 | through2 "^2.0.0" 1191 | 1192 | conventional-changelog-writer@^2.0.3: 1193 | version "2.0.3" 1194 | resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-2.0.3.tgz#073b0c39f1cc8fc0fd9b1566e93833f51489c81c" 1195 | dependencies: 1196 | compare-func "^1.3.1" 1197 | conventional-commits-filter "^1.1.1" 1198 | dateformat "^1.0.11" 1199 | handlebars "^4.0.2" 1200 | json-stringify-safe "^5.0.1" 1201 | lodash "^4.0.0" 1202 | meow "^3.3.0" 1203 | semver "^5.0.1" 1204 | split "^1.0.0" 1205 | through2 "^2.0.0" 1206 | 1207 | conventional-commits-filter@^1.1.1: 1208 | version "1.1.6" 1209 | resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-1.1.6.tgz#4389cd8e58fe89750c0b5fb58f1d7f0cc8ad3831" 1210 | dependencies: 1211 | is-subset "^0.1.1" 1212 | modify-values "^1.0.0" 1213 | 1214 | conventional-commits-parser@^2.0.0, conventional-commits-parser@^2.1.0: 1215 | version "2.1.7" 1216 | resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-2.1.7.tgz#eca45ed6140d72ba9722ee4132674d639e644e8e" 1217 | dependencies: 1218 | JSONStream "^1.0.4" 1219 | is-text-path "^1.0.0" 1220 | lodash "^4.2.1" 1221 | meow "^4.0.0" 1222 | split2 "^2.0.0" 1223 | through2 "^2.0.0" 1224 | trim-off-newlines "^1.0.0" 1225 | 1226 | convert-source-map@^1.4.0, convert-source-map@^1.5.0: 1227 | version "1.5.1" 1228 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 1229 | 1230 | copy-descriptor@^0.1.0: 1231 | version "0.1.1" 1232 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1233 | 1234 | core-js@^2.4.0, core-js@^2.5.0: 1235 | version "2.5.5" 1236 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.5.tgz#b14dde936c640c0579a6b50cabcc132dd6127e3b" 1237 | 1238 | core-util-is@1.0.2, core-util-is@^1.0.1, core-util-is@~1.0.0: 1239 | version "1.0.2" 1240 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1241 | 1242 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 1243 | version "5.1.0" 1244 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1245 | dependencies: 1246 | lru-cache "^4.0.1" 1247 | shebang-command "^1.2.0" 1248 | which "^1.2.9" 1249 | 1250 | cryptiles@3.x.x: 1251 | version "3.1.2" 1252 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 1253 | dependencies: 1254 | boom "5.x.x" 1255 | 1256 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 1257 | version "0.3.2" 1258 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1259 | 1260 | "cssstyle@>= 0.2.37 < 0.3.0": 1261 | version "0.2.37" 1262 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1263 | dependencies: 1264 | cssom "0.3.x" 1265 | 1266 | currently-unhandled@^0.4.1: 1267 | version "0.4.1" 1268 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1269 | dependencies: 1270 | array-find-index "^1.0.1" 1271 | 1272 | dargs@^4.0.1: 1273 | version "4.1.0" 1274 | resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17" 1275 | dependencies: 1276 | number-is-nan "^1.0.0" 1277 | 1278 | dashdash@^1.12.0: 1279 | version "1.14.1" 1280 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1281 | dependencies: 1282 | assert-plus "^1.0.0" 1283 | 1284 | dateformat@^1.0.11, dateformat@^1.0.12: 1285 | version "1.0.12" 1286 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" 1287 | dependencies: 1288 | get-stdin "^4.0.1" 1289 | meow "^3.3.0" 1290 | 1291 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8: 1292 | version "2.6.9" 1293 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1294 | dependencies: 1295 | ms "2.0.0" 1296 | 1297 | debug@^3.1.0: 1298 | version "3.1.0" 1299 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1300 | dependencies: 1301 | ms "2.0.0" 1302 | 1303 | decamelize-keys@^1.0.0: 1304 | version "1.1.0" 1305 | resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" 1306 | dependencies: 1307 | decamelize "^1.1.0" 1308 | map-obj "^1.0.0" 1309 | 1310 | decamelize@^1.0.0, decamelize@^1.1.0, decamelize@^1.1.1, decamelize@^1.1.2: 1311 | version "1.2.0" 1312 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1313 | 1314 | decode-uri-component@^0.2.0: 1315 | version "0.2.0" 1316 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1317 | 1318 | decompress-response@^3.3.0: 1319 | version "3.3.0" 1320 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" 1321 | dependencies: 1322 | mimic-response "^1.0.0" 1323 | 1324 | deep-extend@~0.4.0: 1325 | version "0.4.2" 1326 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1327 | 1328 | deep-is@~0.1.3: 1329 | version "0.1.3" 1330 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1331 | 1332 | default-require-extensions@^1.0.0: 1333 | version "1.0.0" 1334 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1335 | dependencies: 1336 | strip-bom "^2.0.0" 1337 | 1338 | define-property@^0.2.5: 1339 | version "0.2.5" 1340 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1341 | dependencies: 1342 | is-descriptor "^0.1.0" 1343 | 1344 | define-property@^1.0.0: 1345 | version "1.0.0" 1346 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1347 | dependencies: 1348 | is-descriptor "^1.0.0" 1349 | 1350 | define-property@^2.0.2: 1351 | version "2.0.2" 1352 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1353 | dependencies: 1354 | is-descriptor "^1.0.2" 1355 | isobject "^3.0.1" 1356 | 1357 | del@^2.0.2: 1358 | version "2.2.2" 1359 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1360 | dependencies: 1361 | globby "^5.0.0" 1362 | is-path-cwd "^1.0.0" 1363 | is-path-in-cwd "^1.0.0" 1364 | object-assign "^4.0.1" 1365 | pify "^2.0.0" 1366 | pinkie-promise "^2.0.0" 1367 | rimraf "^2.2.8" 1368 | 1369 | delayed-stream@~1.0.0: 1370 | version "1.0.0" 1371 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1372 | 1373 | delegates@^1.0.0: 1374 | version "1.0.0" 1375 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1376 | 1377 | detect-indent@^4.0.0: 1378 | version "4.0.0" 1379 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1380 | dependencies: 1381 | repeating "^2.0.0" 1382 | 1383 | detect-libc@^1.0.2: 1384 | version "1.0.3" 1385 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1386 | 1387 | diff@^3.2.0: 1388 | version "3.5.0" 1389 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 1390 | 1391 | dir-glob@^2.0.0: 1392 | version "2.0.0" 1393 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034" 1394 | dependencies: 1395 | arrify "^1.0.1" 1396 | path-type "^3.0.0" 1397 | 1398 | doctrine@^2.1.0: 1399 | version "2.1.0" 1400 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 1401 | dependencies: 1402 | esutils "^2.0.2" 1403 | 1404 | dot-prop@^3.0.0: 1405 | version "3.0.0" 1406 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 1407 | dependencies: 1408 | is-obj "^1.0.0" 1409 | 1410 | dotenv@^4.0.0: 1411 | version "4.0.0" 1412 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-4.0.0.tgz#864ef1379aced55ce6f95debecdce179f7a0cd1d" 1413 | 1414 | duplexer3@^0.1.4: 1415 | version "0.1.4" 1416 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1417 | 1418 | ecc-jsbn@~0.1.1: 1419 | version "0.1.1" 1420 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1421 | dependencies: 1422 | jsbn "~0.1.0" 1423 | 1424 | electron-to-chromium@^1.3.30: 1425 | version "1.3.42" 1426 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.42.tgz#95c33bf01d0cc405556aec899fe61fd4d76ea0f9" 1427 | 1428 | errno@~0.1.7: 1429 | version "0.1.7" 1430 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" 1431 | dependencies: 1432 | prr "~1.0.1" 1433 | 1434 | error-ex@^1.2.0, error-ex@^1.3.1: 1435 | version "1.3.1" 1436 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1437 | dependencies: 1438 | is-arrayish "^0.2.1" 1439 | 1440 | es6-promise@^4.0.3: 1441 | version "4.2.4" 1442 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.4.tgz#dc4221c2b16518760bd8c39a52d8f356fc00ed29" 1443 | 1444 | es6-promisify@^5.0.0: 1445 | version "5.0.0" 1446 | resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" 1447 | dependencies: 1448 | es6-promise "^4.0.3" 1449 | 1450 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1451 | version "1.0.5" 1452 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1453 | 1454 | escodegen@^1.6.1: 1455 | version "1.9.1" 1456 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.1.tgz#dbae17ef96c8e4bedb1356f4504fa4cc2f7cb7e2" 1457 | dependencies: 1458 | esprima "^3.1.3" 1459 | estraverse "^4.2.0" 1460 | esutils "^2.0.2" 1461 | optionator "^0.8.1" 1462 | optionalDependencies: 1463 | source-map "~0.6.1" 1464 | 1465 | eslint-config-prettier@^2.9.0: 1466 | version "2.9.0" 1467 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.9.0.tgz#5ecd65174d486c22dff389fe036febf502d468a3" 1468 | dependencies: 1469 | get-stdin "^5.0.1" 1470 | 1471 | eslint-plugin-prettier@^2.6.0: 1472 | version "2.6.0" 1473 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.6.0.tgz#33e4e228bdb06142d03c560ce04ec23f6c767dd7" 1474 | dependencies: 1475 | fast-diff "^1.1.1" 1476 | jest-docblock "^21.0.0" 1477 | 1478 | eslint-scope@^3.7.1: 1479 | version "3.7.1" 1480 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1481 | dependencies: 1482 | esrecurse "^4.1.0" 1483 | estraverse "^4.1.1" 1484 | 1485 | eslint-visitor-keys@^1.0.0: 1486 | version "1.0.0" 1487 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 1488 | 1489 | eslint@^4.19.1: 1490 | version "4.19.1" 1491 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300" 1492 | dependencies: 1493 | ajv "^5.3.0" 1494 | babel-code-frame "^6.22.0" 1495 | chalk "^2.1.0" 1496 | concat-stream "^1.6.0" 1497 | cross-spawn "^5.1.0" 1498 | debug "^3.1.0" 1499 | doctrine "^2.1.0" 1500 | eslint-scope "^3.7.1" 1501 | eslint-visitor-keys "^1.0.0" 1502 | espree "^3.5.4" 1503 | esquery "^1.0.0" 1504 | esutils "^2.0.2" 1505 | file-entry-cache "^2.0.0" 1506 | functional-red-black-tree "^1.0.1" 1507 | glob "^7.1.2" 1508 | globals "^11.0.1" 1509 | ignore "^3.3.3" 1510 | imurmurhash "^0.1.4" 1511 | inquirer "^3.0.6" 1512 | is-resolvable "^1.0.0" 1513 | js-yaml "^3.9.1" 1514 | json-stable-stringify-without-jsonify "^1.0.1" 1515 | levn "^0.3.0" 1516 | lodash "^4.17.4" 1517 | minimatch "^3.0.2" 1518 | mkdirp "^0.5.1" 1519 | natural-compare "^1.4.0" 1520 | optionator "^0.8.2" 1521 | path-is-inside "^1.0.2" 1522 | pluralize "^7.0.0" 1523 | progress "^2.0.0" 1524 | regexpp "^1.0.1" 1525 | require-uncached "^1.0.3" 1526 | semver "^5.3.0" 1527 | strip-ansi "^4.0.0" 1528 | strip-json-comments "~2.0.1" 1529 | table "4.0.2" 1530 | text-table "~0.2.0" 1531 | 1532 | espree@^3.5.4: 1533 | version "3.5.4" 1534 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" 1535 | dependencies: 1536 | acorn "^5.5.0" 1537 | acorn-jsx "^3.0.0" 1538 | 1539 | esprima@^3.1.3: 1540 | version "3.1.3" 1541 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1542 | 1543 | esprima@^4.0.0: 1544 | version "4.0.0" 1545 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1546 | 1547 | esquery@^1.0.0: 1548 | version "1.0.1" 1549 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" 1550 | dependencies: 1551 | estraverse "^4.0.0" 1552 | 1553 | esrecurse@^4.1.0: 1554 | version "4.2.1" 1555 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 1556 | dependencies: 1557 | estraverse "^4.1.0" 1558 | 1559 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1560 | version "4.2.0" 1561 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1562 | 1563 | esutils@^2.0.2: 1564 | version "2.0.2" 1565 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1566 | 1567 | exec-sh@^0.2.0: 1568 | version "0.2.1" 1569 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 1570 | dependencies: 1571 | merge "^1.1.3" 1572 | 1573 | execa@^0.7.0: 1574 | version "0.7.0" 1575 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1576 | dependencies: 1577 | cross-spawn "^5.0.1" 1578 | get-stream "^3.0.0" 1579 | is-stream "^1.1.0" 1580 | npm-run-path "^2.0.0" 1581 | p-finally "^1.0.0" 1582 | signal-exit "^3.0.0" 1583 | strip-eof "^1.0.0" 1584 | 1585 | execa@^0.8.0: 1586 | version "0.8.0" 1587 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" 1588 | dependencies: 1589 | cross-spawn "^5.0.1" 1590 | get-stream "^3.0.0" 1591 | is-stream "^1.1.0" 1592 | npm-run-path "^2.0.0" 1593 | p-finally "^1.0.0" 1594 | signal-exit "^3.0.0" 1595 | strip-eof "^1.0.0" 1596 | 1597 | expand-brackets@^0.1.4: 1598 | version "0.1.5" 1599 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1600 | dependencies: 1601 | is-posix-bracket "^0.1.0" 1602 | 1603 | expand-brackets@^2.1.4: 1604 | version "2.1.4" 1605 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1606 | dependencies: 1607 | debug "^2.3.3" 1608 | define-property "^0.2.5" 1609 | extend-shallow "^2.0.1" 1610 | posix-character-classes "^0.1.0" 1611 | regex-not "^1.0.0" 1612 | snapdragon "^0.8.1" 1613 | to-regex "^3.0.1" 1614 | 1615 | expand-range@^1.8.1: 1616 | version "1.8.2" 1617 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1618 | dependencies: 1619 | fill-range "^2.1.0" 1620 | 1621 | expect@^21.2.1: 1622 | version "21.2.1" 1623 | resolved "https://registry.yarnpkg.com/expect/-/expect-21.2.1.tgz#003ac2ac7005c3c29e73b38a272d4afadd6d1d7b" 1624 | dependencies: 1625 | ansi-styles "^3.2.0" 1626 | jest-diff "^21.2.1" 1627 | jest-get-type "^21.2.0" 1628 | jest-matcher-utils "^21.2.1" 1629 | jest-message-util "^21.2.1" 1630 | jest-regex-util "^21.2.0" 1631 | 1632 | extend-shallow@^2.0.1: 1633 | version "2.0.1" 1634 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1635 | dependencies: 1636 | is-extendable "^0.1.0" 1637 | 1638 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1639 | version "3.0.2" 1640 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1641 | dependencies: 1642 | assign-symbols "^1.0.0" 1643 | is-extendable "^1.0.1" 1644 | 1645 | extend@~3.0.1: 1646 | version "3.0.1" 1647 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1648 | 1649 | external-editor@^2.0.4: 1650 | version "2.2.0" 1651 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" 1652 | dependencies: 1653 | chardet "^0.4.0" 1654 | iconv-lite "^0.4.17" 1655 | tmp "^0.0.33" 1656 | 1657 | extglob@^0.3.1: 1658 | version "0.3.2" 1659 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1660 | dependencies: 1661 | is-extglob "^1.0.0" 1662 | 1663 | extglob@^2.0.4: 1664 | version "2.0.4" 1665 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1666 | dependencies: 1667 | array-unique "^0.3.2" 1668 | define-property "^1.0.0" 1669 | expand-brackets "^2.1.4" 1670 | extend-shallow "^2.0.1" 1671 | fragment-cache "^0.2.1" 1672 | regex-not "^1.0.0" 1673 | snapdragon "^0.8.1" 1674 | to-regex "^3.0.1" 1675 | 1676 | extsprintf@1.3.0: 1677 | version "1.3.0" 1678 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1679 | 1680 | extsprintf@^1.2.0: 1681 | version "1.4.0" 1682 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1683 | 1684 | fast-deep-equal@^1.0.0: 1685 | version "1.1.0" 1686 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 1687 | 1688 | fast-diff@^1.1.1: 1689 | version "1.1.2" 1690 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.2.tgz#4b62c42b8e03de3f848460b639079920695d0154" 1691 | 1692 | fast-glob@^2.0.2: 1693 | version "2.2.1" 1694 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.1.tgz#686c2345be88f3741e174add0be6f2e5b6078889" 1695 | dependencies: 1696 | "@mrmlnc/readdir-enhanced" "^2.2.1" 1697 | glob-parent "^3.1.0" 1698 | is-glob "^4.0.0" 1699 | merge2 "^1.2.1" 1700 | micromatch "^3.1.10" 1701 | 1702 | fast-json-stable-stringify@^2.0.0: 1703 | version "2.0.0" 1704 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1705 | 1706 | fast-levenshtein@~2.0.4: 1707 | version "2.0.6" 1708 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1709 | 1710 | fb-watchman@^2.0.0: 1711 | version "2.0.0" 1712 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1713 | dependencies: 1714 | bser "^2.0.0" 1715 | 1716 | figures@^2.0.0: 1717 | version "2.0.0" 1718 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1719 | dependencies: 1720 | escape-string-regexp "^1.0.5" 1721 | 1722 | file-entry-cache@^2.0.0: 1723 | version "2.0.0" 1724 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1725 | dependencies: 1726 | flat-cache "^1.2.1" 1727 | object-assign "^4.0.1" 1728 | 1729 | filename-regex@^2.0.0: 1730 | version "2.0.1" 1731 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1732 | 1733 | fileset@^2.0.2: 1734 | version "2.0.3" 1735 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1736 | dependencies: 1737 | glob "^7.0.3" 1738 | minimatch "^3.0.3" 1739 | 1740 | fill-range@^2.1.0: 1741 | version "2.2.3" 1742 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1743 | dependencies: 1744 | is-number "^2.1.0" 1745 | isobject "^2.0.0" 1746 | randomatic "^1.1.3" 1747 | repeat-element "^1.1.2" 1748 | repeat-string "^1.5.2" 1749 | 1750 | fill-range@^4.0.0: 1751 | version "4.0.0" 1752 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1753 | dependencies: 1754 | extend-shallow "^2.0.1" 1755 | is-number "^3.0.0" 1756 | repeat-string "^1.6.1" 1757 | to-regex-range "^2.1.0" 1758 | 1759 | find-up@^1.0.0: 1760 | version "1.1.2" 1761 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1762 | dependencies: 1763 | path-exists "^2.0.0" 1764 | pinkie-promise "^2.0.0" 1765 | 1766 | find-up@^2.0.0, find-up@^2.1.0: 1767 | version "2.1.0" 1768 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1769 | dependencies: 1770 | locate-path "^2.0.0" 1771 | 1772 | flat-cache@^1.2.1: 1773 | version "1.3.0" 1774 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1775 | dependencies: 1776 | circular-json "^0.3.1" 1777 | del "^2.0.2" 1778 | graceful-fs "^4.1.2" 1779 | write "^0.2.1" 1780 | 1781 | follow-redirects@1.2.6: 1782 | version "1.2.6" 1783 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.2.6.tgz#4dcdc7e4ab3dd6765a97ff89c3b4c258117c79bf" 1784 | dependencies: 1785 | debug "^3.1.0" 1786 | 1787 | for-in@^1.0.1, for-in@^1.0.2: 1788 | version "1.0.2" 1789 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1790 | 1791 | for-own@^0.1.4: 1792 | version "0.1.5" 1793 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1794 | dependencies: 1795 | for-in "^1.0.1" 1796 | 1797 | foreachasync@^3.0.0: 1798 | version "3.0.0" 1799 | resolved "https://registry.yarnpkg.com/foreachasync/-/foreachasync-3.0.0.tgz#5502987dc8714be3392097f32e0071c9dee07cf6" 1800 | 1801 | forever-agent@~0.6.1: 1802 | version "0.6.1" 1803 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1804 | 1805 | form-data@~2.3.1: 1806 | version "2.3.2" 1807 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 1808 | dependencies: 1809 | asynckit "^0.4.0" 1810 | combined-stream "1.0.6" 1811 | mime-types "^2.1.12" 1812 | 1813 | fragment-cache@^0.2.1: 1814 | version "0.2.1" 1815 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1816 | dependencies: 1817 | map-cache "^0.2.2" 1818 | 1819 | from2@^2.1.1: 1820 | version "2.3.0" 1821 | resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" 1822 | dependencies: 1823 | inherits "^2.0.1" 1824 | readable-stream "^2.0.0" 1825 | 1826 | fs-extra@^4.0.2: 1827 | version "4.0.3" 1828 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" 1829 | dependencies: 1830 | graceful-fs "^4.1.2" 1831 | jsonfile "^4.0.0" 1832 | universalify "^0.1.0" 1833 | 1834 | fs-minipass@^1.2.5: 1835 | version "1.2.7" 1836 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" 1837 | dependencies: 1838 | minipass "^2.6.0" 1839 | 1840 | fs-readdir-recursive@^1.0.0: 1841 | version "1.1.0" 1842 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1843 | 1844 | fs.realpath@^1.0.0: 1845 | version "1.0.0" 1846 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1847 | 1848 | fsevents@^1.0.0, fsevents@^1.1.1: 1849 | version "1.2.2" 1850 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.2.tgz#4f598f0f69b273188ef4a62ca4e9e08ace314bbf" 1851 | dependencies: 1852 | nan "^2.9.2" 1853 | node-pre-gyp "^0.9.0" 1854 | 1855 | functional-red-black-tree@^1.0.1: 1856 | version "1.0.1" 1857 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1858 | 1859 | gauge@~2.7.3: 1860 | version "2.7.4" 1861 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1862 | dependencies: 1863 | aproba "^1.0.3" 1864 | console-control-strings "^1.0.0" 1865 | has-unicode "^2.0.0" 1866 | object-assign "^4.1.0" 1867 | signal-exit "^3.0.0" 1868 | string-width "^1.0.1" 1869 | strip-ansi "^3.0.1" 1870 | wide-align "^1.1.0" 1871 | 1872 | get-caller-file@^1.0.1: 1873 | version "1.0.2" 1874 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1875 | 1876 | get-pkg-repo@^1.0.0: 1877 | version "1.4.0" 1878 | resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d" 1879 | dependencies: 1880 | hosted-git-info "^2.1.4" 1881 | meow "^3.3.0" 1882 | normalize-package-data "^2.3.0" 1883 | parse-github-repo-url "^1.3.0" 1884 | through2 "^2.0.0" 1885 | 1886 | get-stdin@^4.0.1: 1887 | version "4.0.1" 1888 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1889 | 1890 | get-stdin@^5.0.1: 1891 | version "5.0.1" 1892 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1893 | 1894 | get-stream@3.0.0, get-stream@^3.0.0: 1895 | version "3.0.0" 1896 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1897 | 1898 | get-value@^2.0.3, get-value@^2.0.6: 1899 | version "2.0.6" 1900 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1901 | 1902 | getpass@^0.1.1: 1903 | version "0.1.7" 1904 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1905 | dependencies: 1906 | assert-plus "^1.0.0" 1907 | 1908 | git-head@^1.2.1: 1909 | version "1.20.1" 1910 | resolved "https://registry.yarnpkg.com/git-head/-/git-head-1.20.1.tgz#036d16a4b374949e4e3daf15827903686d3ccd52" 1911 | dependencies: 1912 | git-refs "^1.1.3" 1913 | 1914 | git-raw-commits@^1.3.0: 1915 | version "1.3.6" 1916 | resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-1.3.6.tgz#27c35a32a67777c1ecd412a239a6c19d71b95aff" 1917 | dependencies: 1918 | dargs "^4.0.1" 1919 | lodash.template "^4.0.2" 1920 | meow "^4.0.0" 1921 | split2 "^2.0.0" 1922 | through2 "^2.0.0" 1923 | 1924 | git-refs@^1.1.3: 1925 | version "1.1.3" 1926 | resolved "https://registry.yarnpkg.com/git-refs/-/git-refs-1.1.3.tgz#83097cb3a92585c4a4926ec54e2182df9e20e89d" 1927 | dependencies: 1928 | path-object "^2.3.0" 1929 | slash "^1.0.0" 1930 | walk "^2.3.9" 1931 | 1932 | git-remote-origin-url@^2.0.0: 1933 | version "2.0.0" 1934 | resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" 1935 | dependencies: 1936 | gitconfiglocal "^1.0.0" 1937 | pify "^2.3.0" 1938 | 1939 | git-semver-tags@^1.2.3: 1940 | version "1.3.6" 1941 | resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-1.3.6.tgz#357ea01f7280794fe0927f2806bee6414d2caba5" 1942 | dependencies: 1943 | meow "^4.0.0" 1944 | semver "^5.5.0" 1945 | 1946 | gitconfiglocal@^1.0.0: 1947 | version "1.0.0" 1948 | resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" 1949 | dependencies: 1950 | ini "^1.3.2" 1951 | 1952 | github@^12.0.0: 1953 | version "12.1.0" 1954 | resolved "https://registry.yarnpkg.com/github/-/github-12.1.0.tgz#f2a2dcbd441178155942257491a4bc08bf661dd7" 1955 | dependencies: 1956 | dotenv "^4.0.0" 1957 | follow-redirects "1.2.6" 1958 | https-proxy-agent "^2.1.0" 1959 | lodash "^4.17.4" 1960 | mime "^2.0.3" 1961 | netrc "^0.1.4" 1962 | 1963 | glob-base@^0.3.0: 1964 | version "0.3.0" 1965 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1966 | dependencies: 1967 | glob-parent "^2.0.0" 1968 | is-glob "^2.0.0" 1969 | 1970 | glob-parent@^2.0.0: 1971 | version "2.0.0" 1972 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1973 | dependencies: 1974 | is-glob "^2.0.0" 1975 | 1976 | glob-parent@^3.1.0: 1977 | version "3.1.0" 1978 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1979 | dependencies: 1980 | is-glob "^3.1.0" 1981 | path-dirname "^1.0.0" 1982 | 1983 | glob-to-regexp@^0.3.0: 1984 | version "0.3.0" 1985 | resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" 1986 | 1987 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1988 | version "7.1.2" 1989 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1990 | dependencies: 1991 | fs.realpath "^1.0.0" 1992 | inflight "^1.0.4" 1993 | inherits "2" 1994 | minimatch "^3.0.4" 1995 | once "^1.3.0" 1996 | path-is-absolute "^1.0.0" 1997 | 1998 | globals@^11.0.1: 1999 | version "11.4.0" 2000 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.4.0.tgz#b85c793349561c16076a3c13549238a27945f1bc" 2001 | 2002 | globals@^9.18.0: 2003 | version "9.18.0" 2004 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 2005 | 2006 | globby@^5.0.0: 2007 | version "5.0.0" 2008 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 2009 | dependencies: 2010 | array-union "^1.0.1" 2011 | arrify "^1.0.0" 2012 | glob "^7.0.3" 2013 | object-assign "^4.0.1" 2014 | pify "^2.0.0" 2015 | pinkie-promise "^2.0.0" 2016 | 2017 | globby@^8.0.1: 2018 | version "8.0.1" 2019 | resolved "https://registry.yarnpkg.com/globby/-/globby-8.0.1.tgz#b5ad48b8aa80b35b814fc1281ecc851f1d2b5b50" 2020 | dependencies: 2021 | array-union "^1.0.1" 2022 | dir-glob "^2.0.0" 2023 | fast-glob "^2.0.2" 2024 | glob "^7.1.2" 2025 | ignore "^3.3.5" 2026 | pify "^3.0.0" 2027 | slash "^1.0.0" 2028 | 2029 | got@^8.0.1: 2030 | version "8.3.0" 2031 | resolved "https://registry.yarnpkg.com/got/-/got-8.3.0.tgz#6ba26e75f8a6cc4c6b3eb1fe7ce4fec7abac8533" 2032 | dependencies: 2033 | "@sindresorhus/is" "^0.7.0" 2034 | cacheable-request "^2.1.1" 2035 | decompress-response "^3.3.0" 2036 | duplexer3 "^0.1.4" 2037 | get-stream "^3.0.0" 2038 | into-stream "^3.1.0" 2039 | is-retry-allowed "^1.1.0" 2040 | isurl "^1.0.0-alpha5" 2041 | lowercase-keys "^1.0.0" 2042 | mimic-response "^1.0.0" 2043 | p-cancelable "^0.4.0" 2044 | p-timeout "^2.0.1" 2045 | pify "^3.0.0" 2046 | safe-buffer "^5.1.1" 2047 | timed-out "^4.0.1" 2048 | url-parse-lax "^3.0.0" 2049 | url-to-options "^1.0.1" 2050 | 2051 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6: 2052 | version "4.1.11" 2053 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 2054 | 2055 | growly@^1.3.0: 2056 | version "1.3.0" 2057 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 2058 | 2059 | handlebars@^4.0.2, handlebars@^4.0.3: 2060 | version "4.0.11" 2061 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 2062 | dependencies: 2063 | async "^1.4.0" 2064 | optimist "^0.6.1" 2065 | source-map "^0.4.4" 2066 | optionalDependencies: 2067 | uglify-js "^2.6" 2068 | 2069 | har-schema@^2.0.0: 2070 | version "2.0.0" 2071 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 2072 | 2073 | har-validator@~5.0.3: 2074 | version "5.0.3" 2075 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 2076 | dependencies: 2077 | ajv "^5.1.0" 2078 | har-schema "^2.0.0" 2079 | 2080 | has-ansi@^2.0.0: 2081 | version "2.0.0" 2082 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 2083 | dependencies: 2084 | ansi-regex "^2.0.0" 2085 | 2086 | has-flag@^1.0.0: 2087 | version "1.0.0" 2088 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 2089 | 2090 | has-flag@^3.0.0: 2091 | version "3.0.0" 2092 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 2093 | 2094 | has-symbol-support-x@^1.4.1: 2095 | version "1.4.2" 2096 | resolved "https://registry.yarnpkg.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455" 2097 | 2098 | has-to-string-tag-x@^1.2.0: 2099 | version "1.4.1" 2100 | resolved "https://registry.yarnpkg.com/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz#a045ab383d7b4b2012a00148ab0aa5f290044d4d" 2101 | dependencies: 2102 | has-symbol-support-x "^1.4.1" 2103 | 2104 | has-unicode@^2.0.0: 2105 | version "2.0.1" 2106 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 2107 | 2108 | has-value@^0.3.1: 2109 | version "0.3.1" 2110 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 2111 | dependencies: 2112 | get-value "^2.0.3" 2113 | has-values "^0.1.4" 2114 | isobject "^2.0.0" 2115 | 2116 | has-value@^1.0.0: 2117 | version "1.0.0" 2118 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 2119 | dependencies: 2120 | get-value "^2.0.6" 2121 | has-values "^1.0.0" 2122 | isobject "^3.0.0" 2123 | 2124 | has-values@^0.1.4: 2125 | version "0.1.4" 2126 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 2127 | 2128 | has-values@^1.0.0: 2129 | version "1.0.0" 2130 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 2131 | dependencies: 2132 | is-number "^3.0.0" 2133 | kind-of "^4.0.0" 2134 | 2135 | hawk@~6.0.2: 2136 | version "6.0.2" 2137 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 2138 | dependencies: 2139 | boom "4.x.x" 2140 | cryptiles "3.x.x" 2141 | hoek "4.x.x" 2142 | sntp "2.x.x" 2143 | 2144 | hoek@4.x.x: 2145 | version "4.2.1" 2146 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.1.tgz#9634502aa12c445dd5a7c5734b572bb8738aacbb" 2147 | 2148 | home-or-tmp@^2.0.0: 2149 | version "2.0.0" 2150 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 2151 | dependencies: 2152 | os-homedir "^1.0.0" 2153 | os-tmpdir "^1.0.1" 2154 | 2155 | hosted-git-info@^2.1.4, hosted-git-info@^2.6.0: 2156 | version "2.6.0" 2157 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" 2158 | 2159 | html-encoding-sniffer@^1.0.1: 2160 | version "1.0.2" 2161 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 2162 | dependencies: 2163 | whatwg-encoding "^1.0.1" 2164 | 2165 | http-cache-semantics@3.8.1: 2166 | version "3.8.1" 2167 | resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2" 2168 | 2169 | http-signature@~1.2.0: 2170 | version "1.2.0" 2171 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 2172 | dependencies: 2173 | assert-plus "^1.0.0" 2174 | jsprim "^1.2.2" 2175 | sshpk "^1.7.0" 2176 | 2177 | https-proxy-agent@^2.1.0: 2178 | version "2.2.1" 2179 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz#51552970fa04d723e04c56d04178c3f92592bbc0" 2180 | dependencies: 2181 | agent-base "^4.1.0" 2182 | debug "^3.1.0" 2183 | 2184 | iconv-lite@0.4.19: 2185 | version "0.4.19" 2186 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 2187 | 2188 | iconv-lite@^0.4.17, iconv-lite@^0.4.4: 2189 | version "0.4.21" 2190 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.21.tgz#c47f8733d02171189ebc4a400f3218d348094798" 2191 | dependencies: 2192 | safer-buffer "^2.1.0" 2193 | 2194 | ignore-walk@^3.0.1: 2195 | version "3.0.1" 2196 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 2197 | dependencies: 2198 | minimatch "^3.0.4" 2199 | 2200 | ignore@^3.3.3, ignore@^3.3.5, ignore@^3.3.7: 2201 | version "3.3.7" 2202 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 2203 | 2204 | import-from@^2.1.0: 2205 | version "2.1.0" 2206 | resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1" 2207 | dependencies: 2208 | resolve-from "^3.0.0" 2209 | 2210 | imurmurhash@^0.1.4: 2211 | version "0.1.4" 2212 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2213 | 2214 | indent-string@^2.1.0: 2215 | version "2.1.0" 2216 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 2217 | dependencies: 2218 | repeating "^2.0.0" 2219 | 2220 | indent-string@^3.0.0: 2221 | version "3.2.0" 2222 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 2223 | 2224 | inflight@^1.0.4: 2225 | version "1.0.6" 2226 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2227 | dependencies: 2228 | once "^1.3.0" 2229 | wrappy "1" 2230 | 2231 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: 2232 | version "2.0.3" 2233 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2234 | 2235 | ini@^1.2.0, ini@^1.3.2, ini@^1.3.4, ini@~1.3.0: 2236 | version "1.3.5" 2237 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 2238 | 2239 | inquirer@^3.0.6: 2240 | version "3.3.0" 2241 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 2242 | dependencies: 2243 | ansi-escapes "^3.0.0" 2244 | chalk "^2.0.0" 2245 | cli-cursor "^2.1.0" 2246 | cli-width "^2.0.0" 2247 | external-editor "^2.0.4" 2248 | figures "^2.0.0" 2249 | lodash "^4.3.0" 2250 | mute-stream "0.0.7" 2251 | run-async "^2.2.0" 2252 | rx-lite "^4.0.8" 2253 | rx-lite-aggregates "^4.0.8" 2254 | string-width "^2.1.0" 2255 | strip-ansi "^4.0.0" 2256 | through "^2.3.6" 2257 | 2258 | into-stream@^3.1.0: 2259 | version "3.1.0" 2260 | resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-3.1.0.tgz#96fb0a936c12babd6ff1752a17d05616abd094c6" 2261 | dependencies: 2262 | from2 "^2.1.1" 2263 | p-is-promise "^1.1.0" 2264 | 2265 | invariant@^2.2.2: 2266 | version "2.2.4" 2267 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 2268 | dependencies: 2269 | loose-envify "^1.0.0" 2270 | 2271 | invert-kv@^1.0.0: 2272 | version "1.0.0" 2273 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2274 | 2275 | is-accessor-descriptor@^0.1.6: 2276 | version "0.1.6" 2277 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 2278 | dependencies: 2279 | kind-of "^3.0.2" 2280 | 2281 | is-accessor-descriptor@^1.0.0: 2282 | version "1.0.0" 2283 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 2284 | dependencies: 2285 | kind-of "^6.0.0" 2286 | 2287 | is-arrayish@^0.2.1: 2288 | version "0.2.1" 2289 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2290 | 2291 | is-binary-path@^1.0.0: 2292 | version "1.0.1" 2293 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2294 | dependencies: 2295 | binary-extensions "^1.0.0" 2296 | 2297 | is-buffer@^1.1.5: 2298 | version "1.1.6" 2299 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 2300 | 2301 | is-builtin-module@^1.0.0: 2302 | version "1.0.0" 2303 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2304 | dependencies: 2305 | builtin-modules "^1.0.0" 2306 | 2307 | is-ci@^1.0.10: 2308 | version "1.1.0" 2309 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" 2310 | dependencies: 2311 | ci-info "^1.0.0" 2312 | 2313 | is-data-descriptor@^0.1.4: 2314 | version "0.1.4" 2315 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 2316 | dependencies: 2317 | kind-of "^3.0.2" 2318 | 2319 | is-data-descriptor@^1.0.0: 2320 | version "1.0.0" 2321 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 2322 | dependencies: 2323 | kind-of "^6.0.0" 2324 | 2325 | is-descriptor@^0.1.0: 2326 | version "0.1.6" 2327 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 2328 | dependencies: 2329 | is-accessor-descriptor "^0.1.6" 2330 | is-data-descriptor "^0.1.4" 2331 | kind-of "^5.0.0" 2332 | 2333 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 2334 | version "1.0.2" 2335 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 2336 | dependencies: 2337 | is-accessor-descriptor "^1.0.0" 2338 | is-data-descriptor "^1.0.0" 2339 | kind-of "^6.0.2" 2340 | 2341 | is-dotfile@^1.0.0: 2342 | version "1.0.3" 2343 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 2344 | 2345 | is-equal-shallow@^0.1.3: 2346 | version "0.1.3" 2347 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2348 | dependencies: 2349 | is-primitive "^2.0.0" 2350 | 2351 | is-extendable@^0.1.0, is-extendable@^0.1.1: 2352 | version "0.1.1" 2353 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2354 | 2355 | is-extendable@^1.0.1: 2356 | version "1.0.1" 2357 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 2358 | dependencies: 2359 | is-plain-object "^2.0.4" 2360 | 2361 | is-extglob@^1.0.0: 2362 | version "1.0.0" 2363 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2364 | 2365 | is-extglob@^2.1.0, is-extglob@^2.1.1: 2366 | version "2.1.1" 2367 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 2368 | 2369 | is-finite@^1.0.0: 2370 | version "1.0.2" 2371 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2372 | dependencies: 2373 | number-is-nan "^1.0.0" 2374 | 2375 | is-fullwidth-code-point@^1.0.0: 2376 | version "1.0.0" 2377 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2378 | dependencies: 2379 | number-is-nan "^1.0.0" 2380 | 2381 | is-fullwidth-code-point@^2.0.0: 2382 | version "2.0.0" 2383 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2384 | 2385 | is-glob@^2.0.0, is-glob@^2.0.1: 2386 | version "2.0.1" 2387 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2388 | dependencies: 2389 | is-extglob "^1.0.0" 2390 | 2391 | is-glob@^3.1.0: 2392 | version "3.1.0" 2393 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 2394 | dependencies: 2395 | is-extglob "^2.1.0" 2396 | 2397 | is-glob@^4.0.0: 2398 | version "4.0.0" 2399 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 2400 | dependencies: 2401 | is-extglob "^2.1.1" 2402 | 2403 | is-number@^2.1.0: 2404 | version "2.1.0" 2405 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2406 | dependencies: 2407 | kind-of "^3.0.2" 2408 | 2409 | is-number@^3.0.0: 2410 | version "3.0.0" 2411 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2412 | dependencies: 2413 | kind-of "^3.0.2" 2414 | 2415 | is-number@^4.0.0: 2416 | version "4.0.0" 2417 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 2418 | 2419 | is-obj@^1.0.0: 2420 | version "1.0.1" 2421 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 2422 | 2423 | is-object@^1.0.1: 2424 | version "1.0.1" 2425 | resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470" 2426 | 2427 | is-odd@^2.0.0: 2428 | version "2.0.0" 2429 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" 2430 | dependencies: 2431 | is-number "^4.0.0" 2432 | 2433 | is-path-cwd@^1.0.0: 2434 | version "1.0.0" 2435 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2436 | 2437 | is-path-in-cwd@^1.0.0: 2438 | version "1.0.1" 2439 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" 2440 | dependencies: 2441 | is-path-inside "^1.0.0" 2442 | 2443 | is-path-inside@^1.0.0: 2444 | version "1.0.1" 2445 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 2446 | dependencies: 2447 | path-is-inside "^1.0.1" 2448 | 2449 | is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: 2450 | version "1.1.0" 2451 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 2452 | 2453 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 2454 | version "2.0.4" 2455 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 2456 | dependencies: 2457 | isobject "^3.0.1" 2458 | 2459 | is-posix-bracket@^0.1.0: 2460 | version "0.1.1" 2461 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2462 | 2463 | is-primitive@^2.0.0: 2464 | version "2.0.0" 2465 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2466 | 2467 | is-promise@^2.1.0: 2468 | version "2.1.0" 2469 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2470 | 2471 | is-resolvable@^1.0.0: 2472 | version "1.1.0" 2473 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 2474 | 2475 | is-retry-allowed@^1.1.0: 2476 | version "1.1.0" 2477 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 2478 | 2479 | is-stream@^1.1.0: 2480 | version "1.1.0" 2481 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2482 | 2483 | is-subset@^0.1.1: 2484 | version "0.1.1" 2485 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" 2486 | 2487 | is-text-path@^1.0.0: 2488 | version "1.0.1" 2489 | resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" 2490 | dependencies: 2491 | text-extensions "^1.0.0" 2492 | 2493 | is-typedarray@~1.0.0: 2494 | version "1.0.0" 2495 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2496 | 2497 | is-utf8@^0.2.0: 2498 | version "0.2.1" 2499 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2500 | 2501 | is-windows@^1.0.2: 2502 | version "1.0.2" 2503 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 2504 | 2505 | isarray@1.0.0, isarray@~1.0.0: 2506 | version "1.0.0" 2507 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2508 | 2509 | isexe@^2.0.0: 2510 | version "2.0.0" 2511 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2512 | 2513 | isobject@^2.0.0: 2514 | version "2.1.0" 2515 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2516 | dependencies: 2517 | isarray "1.0.0" 2518 | 2519 | isobject@^3.0.0, isobject@^3.0.1: 2520 | version "3.0.1" 2521 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 2522 | 2523 | isstream@~0.1.2: 2524 | version "0.1.2" 2525 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2526 | 2527 | istanbul-api@^1.1.1: 2528 | version "1.3.1" 2529 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.1.tgz#4c3b05d18c0016d1022e079b98dc82c40f488954" 2530 | dependencies: 2531 | async "^2.1.4" 2532 | compare-versions "^3.1.0" 2533 | fileset "^2.0.2" 2534 | istanbul-lib-coverage "^1.2.0" 2535 | istanbul-lib-hook "^1.2.0" 2536 | istanbul-lib-instrument "^1.10.1" 2537 | istanbul-lib-report "^1.1.4" 2538 | istanbul-lib-source-maps "^1.2.4" 2539 | istanbul-reports "^1.3.0" 2540 | js-yaml "^3.7.0" 2541 | mkdirp "^0.5.1" 2542 | once "^1.4.0" 2543 | 2544 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.2, istanbul-lib-coverage@^1.2.0: 2545 | version "1.2.0" 2546 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341" 2547 | 2548 | istanbul-lib-hook@^1.2.0: 2549 | version "1.2.0" 2550 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.0.tgz#ae556fd5a41a6e8efa0b1002b1e416dfeaf9816c" 2551 | dependencies: 2552 | append-transform "^0.4.0" 2553 | 2554 | istanbul-lib-instrument@^1.10.1, istanbul-lib-instrument@^1.4.2: 2555 | version "1.10.1" 2556 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz#724b4b6caceba8692d3f1f9d0727e279c401af7b" 2557 | dependencies: 2558 | babel-generator "^6.18.0" 2559 | babel-template "^6.16.0" 2560 | babel-traverse "^6.18.0" 2561 | babel-types "^6.18.0" 2562 | babylon "^6.18.0" 2563 | istanbul-lib-coverage "^1.2.0" 2564 | semver "^5.3.0" 2565 | 2566 | istanbul-lib-report@^1.1.4: 2567 | version "1.1.4" 2568 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz#e886cdf505c4ebbd8e099e4396a90d0a28e2acb5" 2569 | dependencies: 2570 | istanbul-lib-coverage "^1.2.0" 2571 | mkdirp "^0.5.1" 2572 | path-parse "^1.0.5" 2573 | supports-color "^3.1.2" 2574 | 2575 | istanbul-lib-source-maps@^1.1.0: 2576 | version "1.2.3" 2577 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.3.tgz#20fb54b14e14b3fb6edb6aca3571fd2143db44e6" 2578 | dependencies: 2579 | debug "^3.1.0" 2580 | istanbul-lib-coverage "^1.1.2" 2581 | mkdirp "^0.5.1" 2582 | rimraf "^2.6.1" 2583 | source-map "^0.5.3" 2584 | 2585 | istanbul-lib-source-maps@^1.2.4: 2586 | version "1.2.4" 2587 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.4.tgz#cc7ccad61629f4efff8e2f78adb8c522c9976ec7" 2588 | dependencies: 2589 | debug "^3.1.0" 2590 | istanbul-lib-coverage "^1.2.0" 2591 | mkdirp "^0.5.1" 2592 | rimraf "^2.6.1" 2593 | source-map "^0.5.3" 2594 | 2595 | istanbul-reports@^1.3.0: 2596 | version "1.3.0" 2597 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.3.0.tgz#2f322e81e1d9520767597dca3c20a0cce89a3554" 2598 | dependencies: 2599 | handlebars "^4.0.3" 2600 | 2601 | isurl@^1.0.0-alpha5: 2602 | version "1.0.0" 2603 | resolved "https://registry.yarnpkg.com/isurl/-/isurl-1.0.0.tgz#b27f4f49f3cdaa3ea44a0a5b7f3462e6edc39d67" 2604 | dependencies: 2605 | has-to-string-tag-x "^1.2.0" 2606 | is-object "^1.0.1" 2607 | 2608 | jest-changed-files@^21.2.0: 2609 | version "21.2.0" 2610 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-21.2.0.tgz#5dbeecad42f5d88b482334902ce1cba6d9798d29" 2611 | dependencies: 2612 | throat "^4.0.0" 2613 | 2614 | jest-cli@^21.2.1: 2615 | version "21.2.1" 2616 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-21.2.1.tgz#9c528b6629d651911138d228bdb033c157ec8c00" 2617 | dependencies: 2618 | ansi-escapes "^3.0.0" 2619 | chalk "^2.0.1" 2620 | glob "^7.1.2" 2621 | graceful-fs "^4.1.11" 2622 | is-ci "^1.0.10" 2623 | istanbul-api "^1.1.1" 2624 | istanbul-lib-coverage "^1.0.1" 2625 | istanbul-lib-instrument "^1.4.2" 2626 | istanbul-lib-source-maps "^1.1.0" 2627 | jest-changed-files "^21.2.0" 2628 | jest-config "^21.2.1" 2629 | jest-environment-jsdom "^21.2.1" 2630 | jest-haste-map "^21.2.0" 2631 | jest-message-util "^21.2.1" 2632 | jest-regex-util "^21.2.0" 2633 | jest-resolve-dependencies "^21.2.0" 2634 | jest-runner "^21.2.1" 2635 | jest-runtime "^21.2.1" 2636 | jest-snapshot "^21.2.1" 2637 | jest-util "^21.2.1" 2638 | micromatch "^2.3.11" 2639 | node-notifier "^5.0.2" 2640 | pify "^3.0.0" 2641 | slash "^1.0.0" 2642 | string-length "^2.0.0" 2643 | strip-ansi "^4.0.0" 2644 | which "^1.2.12" 2645 | worker-farm "^1.3.1" 2646 | yargs "^9.0.0" 2647 | 2648 | jest-config@^21.2.1: 2649 | version "21.2.1" 2650 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-21.2.1.tgz#c7586c79ead0bcc1f38c401e55f964f13bf2a480" 2651 | dependencies: 2652 | chalk "^2.0.1" 2653 | glob "^7.1.1" 2654 | jest-environment-jsdom "^21.2.1" 2655 | jest-environment-node "^21.2.1" 2656 | jest-get-type "^21.2.0" 2657 | jest-jasmine2 "^21.2.1" 2658 | jest-regex-util "^21.2.0" 2659 | jest-resolve "^21.2.0" 2660 | jest-util "^21.2.1" 2661 | jest-validate "^21.2.1" 2662 | pretty-format "^21.2.1" 2663 | 2664 | jest-diff@^21.2.1: 2665 | version "21.2.1" 2666 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-21.2.1.tgz#46cccb6cab2d02ce98bc314011764bb95b065b4f" 2667 | dependencies: 2668 | chalk "^2.0.1" 2669 | diff "^3.2.0" 2670 | jest-get-type "^21.2.0" 2671 | pretty-format "^21.2.1" 2672 | 2673 | jest-docblock@^21.0.0, jest-docblock@^21.2.0: 2674 | version "21.2.0" 2675 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" 2676 | 2677 | jest-environment-jsdom@^21.2.1: 2678 | version "21.2.1" 2679 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-21.2.1.tgz#38d9980c8259b2a608ec232deee6289a60d9d5b4" 2680 | dependencies: 2681 | jest-mock "^21.2.0" 2682 | jest-util "^21.2.1" 2683 | jsdom "^9.12.0" 2684 | 2685 | jest-environment-node@^21.2.1: 2686 | version "21.2.1" 2687 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-21.2.1.tgz#98c67df5663c7fbe20f6e792ac2272c740d3b8c8" 2688 | dependencies: 2689 | jest-mock "^21.2.0" 2690 | jest-util "^21.2.1" 2691 | 2692 | jest-get-type@^21.2.0: 2693 | version "21.2.0" 2694 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23" 2695 | 2696 | jest-haste-map@^21.2.0: 2697 | version "21.2.0" 2698 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-21.2.0.tgz#1363f0a8bb4338f24f001806571eff7a4b2ff3d8" 2699 | dependencies: 2700 | fb-watchman "^2.0.0" 2701 | graceful-fs "^4.1.11" 2702 | jest-docblock "^21.2.0" 2703 | micromatch "^2.3.11" 2704 | sane "^2.0.0" 2705 | worker-farm "^1.3.1" 2706 | 2707 | jest-jasmine2@^21.2.1: 2708 | version "21.2.1" 2709 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-21.2.1.tgz#9cc6fc108accfa97efebce10c4308548a4ea7592" 2710 | dependencies: 2711 | chalk "^2.0.1" 2712 | expect "^21.2.1" 2713 | graceful-fs "^4.1.11" 2714 | jest-diff "^21.2.1" 2715 | jest-matcher-utils "^21.2.1" 2716 | jest-message-util "^21.2.1" 2717 | jest-snapshot "^21.2.1" 2718 | p-cancelable "^0.3.0" 2719 | 2720 | jest-matcher-utils@^21.2.1: 2721 | version "21.2.1" 2722 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-21.2.1.tgz#72c826eaba41a093ac2b4565f865eb8475de0f64" 2723 | dependencies: 2724 | chalk "^2.0.1" 2725 | jest-get-type "^21.2.0" 2726 | pretty-format "^21.2.1" 2727 | 2728 | jest-message-util@^21.2.1: 2729 | version "21.2.1" 2730 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-21.2.1.tgz#bfe5d4692c84c827d1dcf41823795558f0a1acbe" 2731 | dependencies: 2732 | chalk "^2.0.1" 2733 | micromatch "^2.3.11" 2734 | slash "^1.0.0" 2735 | 2736 | jest-mock@^21.2.0: 2737 | version "21.2.0" 2738 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-21.2.0.tgz#7eb0770e7317968165f61ea2a7281131534b3c0f" 2739 | 2740 | jest-regex-util@^21.2.0: 2741 | version "21.2.0" 2742 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-21.2.0.tgz#1b1e33e63143babc3e0f2e6c9b5ba1eb34b2d530" 2743 | 2744 | jest-resolve-dependencies@^21.2.0: 2745 | version "21.2.0" 2746 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-21.2.0.tgz#9e231e371e1a736a1ad4e4b9a843bc72bfe03d09" 2747 | dependencies: 2748 | jest-regex-util "^21.2.0" 2749 | 2750 | jest-resolve@^21.2.0: 2751 | version "21.2.0" 2752 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-21.2.0.tgz#068913ad2ba6a20218e5fd32471f3874005de3a6" 2753 | dependencies: 2754 | browser-resolve "^1.11.2" 2755 | chalk "^2.0.1" 2756 | is-builtin-module "^1.0.0" 2757 | 2758 | jest-runner@^21.2.1: 2759 | version "21.2.1" 2760 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-21.2.1.tgz#194732e3e518bfb3d7cbfc0fd5871246c7e1a467" 2761 | dependencies: 2762 | jest-config "^21.2.1" 2763 | jest-docblock "^21.2.0" 2764 | jest-haste-map "^21.2.0" 2765 | jest-jasmine2 "^21.2.1" 2766 | jest-message-util "^21.2.1" 2767 | jest-runtime "^21.2.1" 2768 | jest-util "^21.2.1" 2769 | pify "^3.0.0" 2770 | throat "^4.0.0" 2771 | worker-farm "^1.3.1" 2772 | 2773 | jest-runtime@^21.2.1: 2774 | version "21.2.1" 2775 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-21.2.1.tgz#99dce15309c670442eee2ebe1ff53a3cbdbbb73e" 2776 | dependencies: 2777 | babel-core "^6.0.0" 2778 | babel-jest "^21.2.0" 2779 | babel-plugin-istanbul "^4.0.0" 2780 | chalk "^2.0.1" 2781 | convert-source-map "^1.4.0" 2782 | graceful-fs "^4.1.11" 2783 | jest-config "^21.2.1" 2784 | jest-haste-map "^21.2.0" 2785 | jest-regex-util "^21.2.0" 2786 | jest-resolve "^21.2.0" 2787 | jest-util "^21.2.1" 2788 | json-stable-stringify "^1.0.1" 2789 | micromatch "^2.3.11" 2790 | slash "^1.0.0" 2791 | strip-bom "3.0.0" 2792 | write-file-atomic "^2.1.0" 2793 | yargs "^9.0.0" 2794 | 2795 | jest-snapshot@^21.2.1: 2796 | version "21.2.1" 2797 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-21.2.1.tgz#29e49f16202416e47343e757e5eff948c07fd7b0" 2798 | dependencies: 2799 | chalk "^2.0.1" 2800 | jest-diff "^21.2.1" 2801 | jest-matcher-utils "^21.2.1" 2802 | mkdirp "^0.5.1" 2803 | natural-compare "^1.4.0" 2804 | pretty-format "^21.2.1" 2805 | 2806 | jest-util@^21.2.1: 2807 | version "21.2.1" 2808 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-21.2.1.tgz#a274b2f726b0897494d694a6c3d6a61ab819bb78" 2809 | dependencies: 2810 | callsites "^2.0.0" 2811 | chalk "^2.0.1" 2812 | graceful-fs "^4.1.11" 2813 | jest-message-util "^21.2.1" 2814 | jest-mock "^21.2.0" 2815 | jest-validate "^21.2.1" 2816 | mkdirp "^0.5.1" 2817 | 2818 | jest-validate@^21.2.1: 2819 | version "21.2.1" 2820 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7" 2821 | dependencies: 2822 | chalk "^2.0.1" 2823 | jest-get-type "^21.2.0" 2824 | leven "^2.1.0" 2825 | pretty-format "^21.2.1" 2826 | 2827 | jest@^21.2.1: 2828 | version "21.2.1" 2829 | resolved "https://registry.yarnpkg.com/jest/-/jest-21.2.1.tgz#c964e0b47383768a1438e3ccf3c3d470327604e1" 2830 | dependencies: 2831 | jest-cli "^21.2.1" 2832 | 2833 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2834 | version "3.0.2" 2835 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2836 | 2837 | js-yaml@^3.7.0, js-yaml@^3.9.1: 2838 | version "3.11.0" 2839 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef" 2840 | dependencies: 2841 | argparse "^1.0.7" 2842 | esprima "^4.0.0" 2843 | 2844 | jsbn@~0.1.0: 2845 | version "0.1.1" 2846 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2847 | 2848 | jsdom@^9.12.0: 2849 | version "9.12.0" 2850 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2851 | dependencies: 2852 | abab "^1.0.3" 2853 | acorn "^4.0.4" 2854 | acorn-globals "^3.1.0" 2855 | array-equal "^1.0.0" 2856 | content-type-parser "^1.0.1" 2857 | cssom ">= 0.3.2 < 0.4.0" 2858 | cssstyle ">= 0.2.37 < 0.3.0" 2859 | escodegen "^1.6.1" 2860 | html-encoding-sniffer "^1.0.1" 2861 | nwmatcher ">= 1.3.9 < 2.0.0" 2862 | parse5 "^1.5.1" 2863 | request "^2.79.0" 2864 | sax "^1.2.1" 2865 | symbol-tree "^3.2.1" 2866 | tough-cookie "^2.3.2" 2867 | webidl-conversions "^4.0.0" 2868 | whatwg-encoding "^1.0.1" 2869 | whatwg-url "^4.3.0" 2870 | xml-name-validator "^2.0.1" 2871 | 2872 | jsesc@^1.3.0: 2873 | version "1.3.0" 2874 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2875 | 2876 | jsesc@~0.5.0: 2877 | version "0.5.0" 2878 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2879 | 2880 | json-buffer@3.0.0: 2881 | version "3.0.0" 2882 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" 2883 | 2884 | json-parse-better-errors@^1.0.1: 2885 | version "1.0.2" 2886 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 2887 | 2888 | json-schema-traverse@^0.3.0: 2889 | version "0.3.1" 2890 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2891 | 2892 | json-schema@0.2.3: 2893 | version "0.2.3" 2894 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2895 | 2896 | json-stable-stringify-without-jsonify@^1.0.1: 2897 | version "1.0.1" 2898 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2899 | 2900 | json-stable-stringify@^1.0.1: 2901 | version "1.0.1" 2902 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2903 | dependencies: 2904 | jsonify "~0.0.0" 2905 | 2906 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: 2907 | version "5.0.1" 2908 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2909 | 2910 | json5@^0.5.1: 2911 | version "0.5.1" 2912 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2913 | 2914 | jsonfile@^4.0.0: 2915 | version "4.0.0" 2916 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 2917 | optionalDependencies: 2918 | graceful-fs "^4.1.6" 2919 | 2920 | jsonify@~0.0.0: 2921 | version "0.0.0" 2922 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2923 | 2924 | jsonparse@^1.2.0: 2925 | version "1.3.1" 2926 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 2927 | 2928 | jsprim@^1.2.2: 2929 | version "1.4.1" 2930 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2931 | dependencies: 2932 | assert-plus "1.0.0" 2933 | extsprintf "1.3.0" 2934 | json-schema "0.2.3" 2935 | verror "1.10.0" 2936 | 2937 | keyv@3.0.0: 2938 | version "3.0.0" 2939 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.0.0.tgz#44923ba39e68b12a7cec7df6c3268c031f2ef373" 2940 | dependencies: 2941 | json-buffer "3.0.0" 2942 | 2943 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2944 | version "3.2.2" 2945 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2946 | dependencies: 2947 | is-buffer "^1.1.5" 2948 | 2949 | kind-of@^4.0.0: 2950 | version "4.0.0" 2951 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2952 | dependencies: 2953 | is-buffer "^1.1.5" 2954 | 2955 | kind-of@^5.0.0: 2956 | version "5.1.0" 2957 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2958 | 2959 | kind-of@^6.0.0, kind-of@^6.0.2: 2960 | version "6.0.2" 2961 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2962 | 2963 | lazy-cache@^1.0.3: 2964 | version "1.0.4" 2965 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2966 | 2967 | lcid@^1.0.0: 2968 | version "1.0.0" 2969 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2970 | dependencies: 2971 | invert-kv "^1.0.0" 2972 | 2973 | leven@^2.1.0: 2974 | version "2.1.0" 2975 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2976 | 2977 | levn@^0.3.0, levn@~0.3.0: 2978 | version "0.3.0" 2979 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2980 | dependencies: 2981 | prelude-ls "~1.1.2" 2982 | type-check "~0.3.2" 2983 | 2984 | load-json-file@^1.0.0: 2985 | version "1.1.0" 2986 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2987 | dependencies: 2988 | graceful-fs "^4.1.2" 2989 | parse-json "^2.2.0" 2990 | pify "^2.0.0" 2991 | pinkie-promise "^2.0.0" 2992 | strip-bom "^2.0.0" 2993 | 2994 | load-json-file@^2.0.0: 2995 | version "2.0.0" 2996 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2997 | dependencies: 2998 | graceful-fs "^4.1.2" 2999 | parse-json "^2.2.0" 3000 | pify "^2.0.0" 3001 | strip-bom "^3.0.0" 3002 | 3003 | load-json-file@^4.0.0: 3004 | version "4.0.0" 3005 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 3006 | dependencies: 3007 | graceful-fs "^4.1.2" 3008 | parse-json "^4.0.0" 3009 | pify "^3.0.0" 3010 | strip-bom "^3.0.0" 3011 | 3012 | locate-path@^2.0.0: 3013 | version "2.0.0" 3014 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 3015 | dependencies: 3016 | p-locate "^2.0.0" 3017 | path-exists "^3.0.0" 3018 | 3019 | lodash._baseassign@^3.0.0: 3020 | version "3.2.0" 3021 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 3022 | dependencies: 3023 | lodash._basecopy "^3.0.0" 3024 | lodash.keys "^3.0.0" 3025 | 3026 | lodash._basecopy@^3.0.0: 3027 | version "3.0.1" 3028 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 3029 | 3030 | lodash._bindcallback@^3.0.0: 3031 | version "3.0.1" 3032 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 3033 | 3034 | lodash._createassigner@^3.0.0: 3035 | version "3.1.1" 3036 | resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 3037 | dependencies: 3038 | lodash._bindcallback "^3.0.0" 3039 | lodash._isiterateecall "^3.0.0" 3040 | lodash.restparam "^3.0.0" 3041 | 3042 | lodash._getnative@^3.0.0: 3043 | version "3.9.1" 3044 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 3045 | 3046 | lodash._isiterateecall@^3.0.0: 3047 | version "3.0.9" 3048 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 3049 | 3050 | lodash._reinterpolate@~3.0.0: 3051 | version "3.0.0" 3052 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 3053 | 3054 | lodash.assign@^3.0.0: 3055 | version "3.2.0" 3056 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 3057 | dependencies: 3058 | lodash._baseassign "^3.0.0" 3059 | lodash._createassigner "^3.0.0" 3060 | lodash.keys "^3.0.0" 3061 | 3062 | lodash.isarguments@^3.0.0: 3063 | version "3.1.0" 3064 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 3065 | 3066 | lodash.isarray@^3.0.0: 3067 | version "3.0.4" 3068 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 3069 | 3070 | lodash.keys@^3.0.0: 3071 | version "3.1.2" 3072 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 3073 | dependencies: 3074 | lodash._getnative "^3.0.0" 3075 | lodash.isarguments "^3.0.0" 3076 | lodash.isarray "^3.0.0" 3077 | 3078 | lodash.restparam@^3.0.0: 3079 | version "3.6.1" 3080 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 3081 | 3082 | lodash.template@^4.0.2: 3083 | version "4.4.0" 3084 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0" 3085 | dependencies: 3086 | lodash._reinterpolate "~3.0.0" 3087 | lodash.templatesettings "^4.0.0" 3088 | 3089 | lodash.templatesettings@^4.0.0: 3090 | version "4.1.0" 3091 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz#2b4d4e95ba440d915ff08bc899e4553666713316" 3092 | dependencies: 3093 | lodash._reinterpolate "~3.0.0" 3094 | 3095 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.1, lodash@^4.3.0: 3096 | version "4.17.5" 3097 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" 3098 | 3099 | longest@^1.0.1: 3100 | version "1.0.1" 3101 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 3102 | 3103 | loose-envify@^1.0.0: 3104 | version "1.3.1" 3105 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 3106 | dependencies: 3107 | js-tokens "^3.0.0" 3108 | 3109 | loud-rejection@^1.0.0: 3110 | version "1.6.0" 3111 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 3112 | dependencies: 3113 | currently-unhandled "^0.4.1" 3114 | signal-exit "^3.0.0" 3115 | 3116 | lowercase-keys@1.0.0: 3117 | version "1.0.0" 3118 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 3119 | 3120 | lowercase-keys@^1.0.0: 3121 | version "1.0.1" 3122 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 3123 | 3124 | lru-cache@^4.0.1: 3125 | version "4.1.2" 3126 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.2.tgz#45234b2e6e2f2b33da125624c4664929a0224c3f" 3127 | dependencies: 3128 | pseudomap "^1.0.2" 3129 | yallist "^2.1.2" 3130 | 3131 | makeerror@1.0.x: 3132 | version "1.0.11" 3133 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 3134 | dependencies: 3135 | tmpl "1.0.x" 3136 | 3137 | map-cache@^0.2.2: 3138 | version "0.2.2" 3139 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 3140 | 3141 | map-obj@^1.0.0, map-obj@^1.0.1: 3142 | version "1.0.1" 3143 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 3144 | 3145 | map-obj@^2.0.0: 3146 | version "2.0.0" 3147 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" 3148 | 3149 | map-visit@^1.0.0: 3150 | version "1.0.0" 3151 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 3152 | dependencies: 3153 | object-visit "^1.0.0" 3154 | 3155 | mem@^1.1.0: 3156 | version "1.1.0" 3157 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 3158 | dependencies: 3159 | mimic-fn "^1.0.0" 3160 | 3161 | meow@^3.3.0: 3162 | version "3.7.0" 3163 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 3164 | dependencies: 3165 | camelcase-keys "^2.0.0" 3166 | decamelize "^1.1.2" 3167 | loud-rejection "^1.0.0" 3168 | map-obj "^1.0.1" 3169 | minimist "^1.1.3" 3170 | normalize-package-data "^2.3.4" 3171 | object-assign "^4.0.1" 3172 | read-pkg-up "^1.0.1" 3173 | redent "^1.0.0" 3174 | trim-newlines "^1.0.0" 3175 | 3176 | meow@^4.0.0: 3177 | version "4.0.0" 3178 | resolved "https://registry.yarnpkg.com/meow/-/meow-4.0.0.tgz#fd5855dd008db5b92c552082db1c307cba20b29d" 3179 | dependencies: 3180 | camelcase-keys "^4.0.0" 3181 | decamelize-keys "^1.0.0" 3182 | loud-rejection "^1.0.0" 3183 | minimist "^1.1.3" 3184 | minimist-options "^3.0.1" 3185 | normalize-package-data "^2.3.4" 3186 | read-pkg-up "^3.0.0" 3187 | redent "^2.0.0" 3188 | trim-newlines "^2.0.0" 3189 | 3190 | merge2@^1.2.1: 3191 | version "1.2.1" 3192 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.2.1.tgz#271d2516ff52d4af7f7b710b8bf3e16e183fef66" 3193 | 3194 | merge@^1.1.3: 3195 | version "1.2.0" 3196 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 3197 | 3198 | micromatch@^2.1.5, micromatch@^2.3.11: 3199 | version "2.3.11" 3200 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 3201 | dependencies: 3202 | arr-diff "^2.0.0" 3203 | array-unique "^0.2.1" 3204 | braces "^1.8.2" 3205 | expand-brackets "^0.1.4" 3206 | extglob "^0.3.1" 3207 | filename-regex "^2.0.0" 3208 | is-extglob "^1.0.0" 3209 | is-glob "^2.0.1" 3210 | kind-of "^3.0.2" 3211 | normalize-path "^2.0.1" 3212 | object.omit "^2.0.0" 3213 | parse-glob "^3.0.4" 3214 | regex-cache "^0.4.2" 3215 | 3216 | micromatch@^3.1.10, micromatch@^3.1.4, micromatch@^3.1.8: 3217 | version "3.1.10" 3218 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 3219 | dependencies: 3220 | arr-diff "^4.0.0" 3221 | array-unique "^0.3.2" 3222 | braces "^2.3.1" 3223 | define-property "^2.0.2" 3224 | extend-shallow "^3.0.2" 3225 | extglob "^2.0.4" 3226 | fragment-cache "^0.2.1" 3227 | kind-of "^6.0.2" 3228 | nanomatch "^1.2.9" 3229 | object.pick "^1.3.0" 3230 | regex-not "^1.0.0" 3231 | snapdragon "^0.8.1" 3232 | to-regex "^3.0.2" 3233 | 3234 | mime-db@~1.33.0: 3235 | version "1.33.0" 3236 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 3237 | 3238 | mime-types@^2.1.12, mime-types@~2.1.17: 3239 | version "2.1.18" 3240 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 3241 | dependencies: 3242 | mime-db "~1.33.0" 3243 | 3244 | mime@^2.0.3: 3245 | version "2.3.1" 3246 | resolved "https://registry.yarnpkg.com/mime/-/mime-2.3.1.tgz#b1621c54d63b97c47d3cfe7f7215f7d64517c369" 3247 | 3248 | mimic-fn@^1.0.0: 3249 | version "1.2.0" 3250 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 3251 | 3252 | mimic-response@^1.0.0: 3253 | version "1.0.0" 3254 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.0.tgz#df3d3652a73fded6b9b0b24146e6fd052353458e" 3255 | 3256 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 3257 | version "3.0.4" 3258 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 3259 | dependencies: 3260 | brace-expansion "^1.1.7" 3261 | 3262 | minimist-options@^3.0.1: 3263 | version "3.0.2" 3264 | resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954" 3265 | dependencies: 3266 | arrify "^1.0.1" 3267 | is-plain-obj "^1.1.0" 3268 | 3269 | minimist@0.0.8: 3270 | version "0.0.8" 3271 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 3272 | 3273 | minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: 3274 | version "1.2.0" 3275 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 3276 | 3277 | minimist@~0.0.1: 3278 | version "0.0.10" 3279 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 3280 | 3281 | minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: 3282 | version "2.9.0" 3283 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" 3284 | dependencies: 3285 | safe-buffer "^5.1.2" 3286 | yallist "^3.0.0" 3287 | 3288 | minizlib@^1.2.1: 3289 | version "1.3.3" 3290 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" 3291 | dependencies: 3292 | minipass "^2.9.0" 3293 | 3294 | mixin-deep@^1.2.0: 3295 | version "1.3.1" 3296 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 3297 | dependencies: 3298 | for-in "^1.0.2" 3299 | is-extendable "^1.0.1" 3300 | 3301 | mkdirp@^0.5.0, mkdirp@^0.5.1: 3302 | version "0.5.1" 3303 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 3304 | dependencies: 3305 | minimist "0.0.8" 3306 | 3307 | modify-values@^1.0.0: 3308 | version "1.0.1" 3309 | resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" 3310 | 3311 | ms@2.0.0: 3312 | version "2.0.0" 3313 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 3314 | 3315 | mute-stream@0.0.7: 3316 | version "0.0.7" 3317 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 3318 | 3319 | nan@^2.9.2: 3320 | version "2.10.0" 3321 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 3322 | 3323 | nanomatch@^1.2.9: 3324 | version "1.2.9" 3325 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" 3326 | dependencies: 3327 | arr-diff "^4.0.0" 3328 | array-unique "^0.3.2" 3329 | define-property "^2.0.2" 3330 | extend-shallow "^3.0.2" 3331 | fragment-cache "^0.2.1" 3332 | is-odd "^2.0.0" 3333 | is-windows "^1.0.2" 3334 | kind-of "^6.0.2" 3335 | object.pick "^1.3.0" 3336 | regex-not "^1.0.0" 3337 | snapdragon "^0.8.1" 3338 | to-regex "^3.0.1" 3339 | 3340 | natural-compare@^1.4.0: 3341 | version "1.4.0" 3342 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 3343 | 3344 | needle@^2.2.0: 3345 | version "2.2.0" 3346 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.0.tgz#f14efc69cee1024b72c8b21c7bdf94a731dc12fa" 3347 | dependencies: 3348 | debug "^2.1.2" 3349 | iconv-lite "^0.4.4" 3350 | sax "^1.2.4" 3351 | 3352 | nerf-dart@^1.0.0: 3353 | version "1.0.0" 3354 | resolved "https://registry.yarnpkg.com/nerf-dart/-/nerf-dart-1.0.0.tgz#e6dab7febf5ad816ea81cf5c629c5a0ebde72c1a" 3355 | 3356 | netrc@^0.1.4: 3357 | version "0.1.4" 3358 | resolved "https://registry.yarnpkg.com/netrc/-/netrc-0.1.4.tgz#6be94fcaca8d77ade0a9670dc460914c94472444" 3359 | 3360 | node-int64@^0.4.0: 3361 | version "0.4.0" 3362 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 3363 | 3364 | node-notifier@^5.0.2: 3365 | version "5.2.1" 3366 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" 3367 | dependencies: 3368 | growly "^1.3.0" 3369 | semver "^5.4.1" 3370 | shellwords "^0.1.1" 3371 | which "^1.3.0" 3372 | 3373 | node-pre-gyp@^0.9.0: 3374 | version "0.9.1" 3375 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.9.1.tgz#f11c07516dd92f87199dbc7e1838eab7cd56c9e0" 3376 | dependencies: 3377 | detect-libc "^1.0.2" 3378 | mkdirp "^0.5.1" 3379 | needle "^2.2.0" 3380 | nopt "^4.0.1" 3381 | npm-packlist "^1.1.6" 3382 | npmlog "^4.0.2" 3383 | rc "^1.1.7" 3384 | rimraf "^2.6.1" 3385 | semver "^5.3.0" 3386 | tar "^4" 3387 | 3388 | nopt@^4.0.0, nopt@^4.0.1: 3389 | version "4.0.1" 3390 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 3391 | dependencies: 3392 | abbrev "1" 3393 | osenv "^0.1.4" 3394 | 3395 | nopt@~3.0.1: 3396 | version "3.0.6" 3397 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 3398 | dependencies: 3399 | abbrev "1" 3400 | 3401 | normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5, "normalize-package-data@~1.0.1 || ^2.0.0": 3402 | version "2.4.0" 3403 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 3404 | dependencies: 3405 | hosted-git-info "^2.1.4" 3406 | is-builtin-module "^1.0.0" 3407 | semver "2 || 3 || 4 || 5" 3408 | validate-npm-package-license "^3.0.1" 3409 | 3410 | normalize-path@^2.0.0, normalize-path@^2.0.1, normalize-path@^2.1.1: 3411 | version "2.1.1" 3412 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 3413 | dependencies: 3414 | remove-trailing-separator "^1.0.1" 3415 | 3416 | normalize-url@2.0.1: 3417 | version "2.0.1" 3418 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-2.0.1.tgz#835a9da1551fa26f70e92329069a23aa6574d7e6" 3419 | dependencies: 3420 | prepend-http "^2.0.0" 3421 | query-string "^5.0.1" 3422 | sort-keys "^2.0.0" 3423 | 3424 | npm-bundled@^1.0.1: 3425 | version "1.0.3" 3426 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" 3427 | 3428 | "npm-package-arg@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0": 3429 | version "6.1.0" 3430 | resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-6.1.0.tgz#15ae1e2758a5027efb4c250554b85a737db7fcc1" 3431 | dependencies: 3432 | hosted-git-info "^2.6.0" 3433 | osenv "^0.1.5" 3434 | semver "^5.5.0" 3435 | validate-npm-package-name "^3.0.0" 3436 | 3437 | npm-packlist@^1.1.6: 3438 | version "1.1.10" 3439 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a" 3440 | dependencies: 3441 | ignore-walk "^3.0.1" 3442 | npm-bundled "^1.0.1" 3443 | 3444 | npm-registry-client@^8.4.0: 3445 | version "8.5.1" 3446 | resolved "https://registry.yarnpkg.com/npm-registry-client/-/npm-registry-client-8.5.1.tgz#8115809c0a4b40938b8a109b8ea74d26c6f5d7f1" 3447 | dependencies: 3448 | concat-stream "^1.5.2" 3449 | graceful-fs "^4.1.6" 3450 | normalize-package-data "~1.0.1 || ^2.0.0" 3451 | npm-package-arg "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0" 3452 | once "^1.3.3" 3453 | request "^2.74.0" 3454 | retry "^0.10.0" 3455 | safe-buffer "^5.1.1" 3456 | semver "2 >=2.2.1 || 3.x || 4 || 5" 3457 | slide "^1.1.3" 3458 | ssri "^5.2.4" 3459 | optionalDependencies: 3460 | npmlog "2 || ^3.1.0 || ^4.0.0" 3461 | 3462 | npm-run-path@^2.0.0: 3463 | version "2.0.2" 3464 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 3465 | dependencies: 3466 | path-key "^2.0.0" 3467 | 3468 | npmconf@^2.1.2: 3469 | version "2.1.2" 3470 | resolved "https://registry.yarnpkg.com/npmconf/-/npmconf-2.1.2.tgz#66606a4a736f1e77a059aa071a79c94ab781853a" 3471 | dependencies: 3472 | config-chain "~1.1.8" 3473 | inherits "~2.0.0" 3474 | ini "^1.2.0" 3475 | mkdirp "^0.5.0" 3476 | nopt "~3.0.1" 3477 | once "~1.3.0" 3478 | osenv "^0.1.0" 3479 | semver "2 || 3 || 4" 3480 | uid-number "0.0.5" 3481 | 3482 | "npmlog@2 || ^3.1.0 || ^4.0.0", npmlog@^4.0.0, npmlog@^4.0.2: 3483 | version "4.1.2" 3484 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 3485 | dependencies: 3486 | are-we-there-yet "~1.1.2" 3487 | console-control-strings "~1.1.0" 3488 | gauge "~2.7.3" 3489 | set-blocking "~2.0.0" 3490 | 3491 | number-is-nan@^1.0.0: 3492 | version "1.0.1" 3493 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 3494 | 3495 | "nwmatcher@>= 1.3.9 < 2.0.0": 3496 | version "1.4.4" 3497 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.4.tgz#2285631f34a95f0d0395cd900c96ed39b58f346e" 3498 | 3499 | oauth-sign@~0.8.2: 3500 | version "0.8.2" 3501 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 3502 | 3503 | object-assign@^4.0.1, object-assign@^4.1.0: 3504 | version "4.1.1" 3505 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 3506 | 3507 | object-copy@^0.1.0: 3508 | version "0.1.0" 3509 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 3510 | dependencies: 3511 | copy-descriptor "^0.1.0" 3512 | define-property "^0.2.5" 3513 | kind-of "^3.0.3" 3514 | 3515 | object-visit@^1.0.0: 3516 | version "1.0.1" 3517 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 3518 | dependencies: 3519 | isobject "^3.0.0" 3520 | 3521 | object.omit@^2.0.0: 3522 | version "2.0.1" 3523 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 3524 | dependencies: 3525 | for-own "^0.1.4" 3526 | is-extendable "^0.1.1" 3527 | 3528 | object.pick@^1.3.0: 3529 | version "1.3.0" 3530 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 3531 | dependencies: 3532 | isobject "^3.0.1" 3533 | 3534 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 3535 | version "1.4.0" 3536 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3537 | dependencies: 3538 | wrappy "1" 3539 | 3540 | once@~1.3.0: 3541 | version "1.3.3" 3542 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 3543 | dependencies: 3544 | wrappy "1" 3545 | 3546 | onetime@^2.0.0: 3547 | version "2.0.1" 3548 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 3549 | dependencies: 3550 | mimic-fn "^1.0.0" 3551 | 3552 | optimist@^0.6.1: 3553 | version "0.6.1" 3554 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 3555 | dependencies: 3556 | minimist "~0.0.1" 3557 | wordwrap "~0.0.2" 3558 | 3559 | optionator@^0.8.1, optionator@^0.8.2: 3560 | version "0.8.2" 3561 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3562 | dependencies: 3563 | deep-is "~0.1.3" 3564 | fast-levenshtein "~2.0.4" 3565 | levn "~0.3.0" 3566 | prelude-ls "~1.1.2" 3567 | type-check "~0.3.2" 3568 | wordwrap "~1.0.0" 3569 | 3570 | os-homedir@^1.0.0: 3571 | version "1.0.2" 3572 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3573 | 3574 | os-locale@^2.0.0: 3575 | version "2.1.0" 3576 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 3577 | dependencies: 3578 | execa "^0.7.0" 3579 | lcid "^1.0.0" 3580 | mem "^1.1.0" 3581 | 3582 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 3583 | version "1.0.2" 3584 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3585 | 3586 | osenv@^0.1.0, osenv@^0.1.4, osenv@^0.1.5: 3587 | version "0.1.5" 3588 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 3589 | dependencies: 3590 | os-homedir "^1.0.0" 3591 | os-tmpdir "^1.0.0" 3592 | 3593 | output-file-sync@^1.1.2: 3594 | version "1.1.2" 3595 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 3596 | dependencies: 3597 | graceful-fs "^4.1.4" 3598 | mkdirp "^0.5.1" 3599 | object-assign "^4.1.0" 3600 | 3601 | p-cancelable@^0.3.0: 3602 | version "0.3.0" 3603 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" 3604 | 3605 | p-cancelable@^0.4.0: 3606 | version "0.4.1" 3607 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.4.1.tgz#35f363d67d52081c8d9585e37bcceb7e0bbcb2a0" 3608 | 3609 | p-finally@^1.0.0: 3610 | version "1.0.0" 3611 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 3612 | 3613 | p-is-promise@^1.1.0: 3614 | version "1.1.0" 3615 | resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-1.1.0.tgz#9c9456989e9f6588017b0434d56097675c3da05e" 3616 | 3617 | p-limit@^1.1.0: 3618 | version "1.2.0" 3619 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 3620 | dependencies: 3621 | p-try "^1.0.0" 3622 | 3623 | p-locate@^2.0.0: 3624 | version "2.0.0" 3625 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 3626 | dependencies: 3627 | p-limit "^1.1.0" 3628 | 3629 | p-reduce@^1.0.0: 3630 | version "1.0.0" 3631 | resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa" 3632 | 3633 | p-retry@^1.0.0: 3634 | version "1.0.0" 3635 | resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-1.0.0.tgz#3927332a4b7d70269b535515117fc547da1a6968" 3636 | dependencies: 3637 | retry "^0.10.0" 3638 | 3639 | p-series@^1.0.0: 3640 | version "1.1.0" 3641 | resolved "https://registry.yarnpkg.com/p-series/-/p-series-1.1.0.tgz#f2d8522cdfd58b464eb9685651d465037ee3c957" 3642 | dependencies: 3643 | "@sindresorhus/is" "^0.7.0" 3644 | p-reduce "^1.0.0" 3645 | 3646 | p-timeout@^2.0.1: 3647 | version "2.0.1" 3648 | resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-2.0.1.tgz#d8dd1979595d2dc0139e1fe46b8b646cb3cdf038" 3649 | dependencies: 3650 | p-finally "^1.0.0" 3651 | 3652 | p-try@^1.0.0: 3653 | version "1.0.0" 3654 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 3655 | 3656 | parse-github-repo-url@^1.3.0, parse-github-repo-url@^1.4.1: 3657 | version "1.4.1" 3658 | resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50" 3659 | 3660 | parse-glob@^3.0.4: 3661 | version "3.0.4" 3662 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3663 | dependencies: 3664 | glob-base "^0.3.0" 3665 | is-dotfile "^1.0.0" 3666 | is-extglob "^1.0.0" 3667 | is-glob "^2.0.0" 3668 | 3669 | parse-json@^2.2.0: 3670 | version "2.2.0" 3671 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3672 | dependencies: 3673 | error-ex "^1.2.0" 3674 | 3675 | parse-json@^4.0.0: 3676 | version "4.0.0" 3677 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 3678 | dependencies: 3679 | error-ex "^1.3.1" 3680 | json-parse-better-errors "^1.0.1" 3681 | 3682 | parse5@^1.5.1: 3683 | version "1.5.1" 3684 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 3685 | 3686 | pascalcase@^0.1.1: 3687 | version "0.1.1" 3688 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 3689 | 3690 | path-dirname@^1.0.0: 3691 | version "1.0.2" 3692 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 3693 | 3694 | path-exists@^2.0.0: 3695 | version "2.1.0" 3696 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3697 | dependencies: 3698 | pinkie-promise "^2.0.0" 3699 | 3700 | path-exists@^3.0.0: 3701 | version "3.0.0" 3702 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3703 | 3704 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 3705 | version "1.0.1" 3706 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3707 | 3708 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 3709 | version "1.0.2" 3710 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3711 | 3712 | path-key@^2.0.0: 3713 | version "2.0.1" 3714 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 3715 | 3716 | path-object@^2.3.0: 3717 | version "2.3.0" 3718 | resolved "https://registry.yarnpkg.com/path-object/-/path-object-2.3.0.tgz#03e46653e5c375c60af1cabdd94bc6448a5d9110" 3719 | dependencies: 3720 | core-util-is "^1.0.1" 3721 | lodash.assign "^3.0.0" 3722 | 3723 | path-parse@^1.0.5: 3724 | version "1.0.5" 3725 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3726 | 3727 | path-type@^1.0.0: 3728 | version "1.1.0" 3729 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3730 | dependencies: 3731 | graceful-fs "^4.1.2" 3732 | pify "^2.0.0" 3733 | pinkie-promise "^2.0.0" 3734 | 3735 | path-type@^2.0.0: 3736 | version "2.0.0" 3737 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3738 | dependencies: 3739 | pify "^2.0.0" 3740 | 3741 | path-type@^3.0.0: 3742 | version "3.0.0" 3743 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 3744 | dependencies: 3745 | pify "^3.0.0" 3746 | 3747 | performance-now@^2.1.0: 3748 | version "2.1.0" 3749 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 3750 | 3751 | pify@^2.0.0, pify@^2.3.0: 3752 | version "2.3.0" 3753 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3754 | 3755 | pify@^3.0.0: 3756 | version "3.0.0" 3757 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 3758 | 3759 | pinkie-promise@^2.0.0: 3760 | version "2.0.1" 3761 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3762 | dependencies: 3763 | pinkie "^2.0.0" 3764 | 3765 | pinkie@^2.0.0: 3766 | version "2.0.4" 3767 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3768 | 3769 | pluralize@^7.0.0: 3770 | version "7.0.0" 3771 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 3772 | 3773 | posix-character-classes@^0.1.0: 3774 | version "0.1.1" 3775 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 3776 | 3777 | prelude-ls@~1.1.2: 3778 | version "1.1.2" 3779 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3780 | 3781 | prepend-http@^2.0.0: 3782 | version "2.0.0" 3783 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" 3784 | 3785 | preserve@^0.2.0: 3786 | version "0.2.0" 3787 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3788 | 3789 | prettier@1.12.1: 3790 | version "1.12.1" 3791 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.12.1.tgz#c1ad20e803e7749faf905a409d2367e06bbe7325" 3792 | 3793 | pretty-format@^21.2.1: 3794 | version "21.2.1" 3795 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.2.1.tgz#ae5407f3cf21066cd011aa1ba5fce7b6a2eddb36" 3796 | dependencies: 3797 | ansi-regex "^3.0.0" 3798 | ansi-styles "^3.2.0" 3799 | 3800 | private@^0.1.6, private@^0.1.7: 3801 | version "0.1.8" 3802 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 3803 | 3804 | process-nextick-args@~2.0.0: 3805 | version "2.0.0" 3806 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 3807 | 3808 | progress@^2.0.0: 3809 | version "2.0.0" 3810 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 3811 | 3812 | proto-list@~1.2.1: 3813 | version "1.2.4" 3814 | resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 3815 | 3816 | prr@~1.0.1: 3817 | version "1.0.1" 3818 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" 3819 | 3820 | pseudomap@^1.0.2: 3821 | version "1.0.2" 3822 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3823 | 3824 | punycode@^1.4.1: 3825 | version "1.4.1" 3826 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3827 | 3828 | q@^1.4.1, q@^1.5.1: 3829 | version "1.5.1" 3830 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 3831 | 3832 | qs@~6.5.1: 3833 | version "6.5.1" 3834 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 3835 | 3836 | query-string@^5.0.1: 3837 | version "5.1.1" 3838 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-5.1.1.tgz#a78c012b71c17e05f2e3fa2319dd330682efb3cb" 3839 | dependencies: 3840 | decode-uri-component "^0.2.0" 3841 | object-assign "^4.1.0" 3842 | strict-uri-encode "^1.0.0" 3843 | 3844 | quick-lru@^1.0.0: 3845 | version "1.1.0" 3846 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" 3847 | 3848 | randomatic@^1.1.3: 3849 | version "1.1.7" 3850 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 3851 | dependencies: 3852 | is-number "^3.0.0" 3853 | kind-of "^4.0.0" 3854 | 3855 | rc@^1.1.7: 3856 | version "1.2.6" 3857 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.6.tgz#eb18989c6d4f4f162c399f79ddd29f3835568092" 3858 | dependencies: 3859 | deep-extend "~0.4.0" 3860 | ini "~1.3.0" 3861 | minimist "^1.2.0" 3862 | strip-json-comments "~2.0.1" 3863 | 3864 | read-pkg-up@^1.0.1: 3865 | version "1.0.1" 3866 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3867 | dependencies: 3868 | find-up "^1.0.0" 3869 | read-pkg "^1.0.0" 3870 | 3871 | read-pkg-up@^2.0.0: 3872 | version "2.0.0" 3873 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3874 | dependencies: 3875 | find-up "^2.0.0" 3876 | read-pkg "^2.0.0" 3877 | 3878 | read-pkg-up@^3.0.0: 3879 | version "3.0.0" 3880 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" 3881 | dependencies: 3882 | find-up "^2.0.0" 3883 | read-pkg "^3.0.0" 3884 | 3885 | read-pkg@^1.0.0, read-pkg@^1.1.0: 3886 | version "1.1.0" 3887 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3888 | dependencies: 3889 | load-json-file "^1.0.0" 3890 | normalize-package-data "^2.3.2" 3891 | path-type "^1.0.0" 3892 | 3893 | read-pkg@^2.0.0: 3894 | version "2.0.0" 3895 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3896 | dependencies: 3897 | load-json-file "^2.0.0" 3898 | normalize-package-data "^2.3.2" 3899 | path-type "^2.0.0" 3900 | 3901 | read-pkg@^3.0.0: 3902 | version "3.0.0" 3903 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 3904 | dependencies: 3905 | load-json-file "^4.0.0" 3906 | normalize-package-data "^2.3.2" 3907 | path-type "^3.0.0" 3908 | 3909 | readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2: 3910 | version "2.3.6" 3911 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 3912 | dependencies: 3913 | core-util-is "~1.0.0" 3914 | inherits "~2.0.3" 3915 | isarray "~1.0.0" 3916 | process-nextick-args "~2.0.0" 3917 | safe-buffer "~5.1.1" 3918 | string_decoder "~1.1.1" 3919 | util-deprecate "~1.0.1" 3920 | 3921 | readdirp@^2.0.0: 3922 | version "2.1.0" 3923 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3924 | dependencies: 3925 | graceful-fs "^4.1.2" 3926 | minimatch "^3.0.2" 3927 | readable-stream "^2.0.2" 3928 | set-immediate-shim "^1.0.1" 3929 | 3930 | redent@^1.0.0: 3931 | version "1.0.0" 3932 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 3933 | dependencies: 3934 | indent-string "^2.1.0" 3935 | strip-indent "^1.0.1" 3936 | 3937 | redent@^2.0.0: 3938 | version "2.0.0" 3939 | resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa" 3940 | dependencies: 3941 | indent-string "^3.0.0" 3942 | strip-indent "^2.0.0" 3943 | 3944 | regenerate@^1.2.1: 3945 | version "1.3.3" 3946 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 3947 | 3948 | regenerator-runtime@^0.10.5: 3949 | version "0.10.5" 3950 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3951 | 3952 | regenerator-runtime@^0.11.0: 3953 | version "0.11.1" 3954 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 3955 | 3956 | regenerator-transform@^0.10.0: 3957 | version "0.10.1" 3958 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 3959 | dependencies: 3960 | babel-runtime "^6.18.0" 3961 | babel-types "^6.19.0" 3962 | private "^0.1.6" 3963 | 3964 | regex-cache@^0.4.2: 3965 | version "0.4.4" 3966 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 3967 | dependencies: 3968 | is-equal-shallow "^0.1.3" 3969 | 3970 | regex-not@^1.0.0, regex-not@^1.0.2: 3971 | version "1.0.2" 3972 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 3973 | dependencies: 3974 | extend-shallow "^3.0.2" 3975 | safe-regex "^1.1.0" 3976 | 3977 | regexpp@^1.0.1: 3978 | version "1.1.0" 3979 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab" 3980 | 3981 | regexpu-core@^2.0.0: 3982 | version "2.0.0" 3983 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3984 | dependencies: 3985 | regenerate "^1.2.1" 3986 | regjsgen "^0.2.0" 3987 | regjsparser "^0.1.4" 3988 | 3989 | regjsgen@^0.2.0: 3990 | version "0.2.0" 3991 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3992 | 3993 | regjsparser@^0.1.4: 3994 | version "0.1.5" 3995 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3996 | dependencies: 3997 | jsesc "~0.5.0" 3998 | 3999 | remove-trailing-separator@^1.0.1: 4000 | version "1.1.0" 4001 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 4002 | 4003 | repeat-element@^1.1.2: 4004 | version "1.1.2" 4005 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 4006 | 4007 | repeat-string@^1.5.2, repeat-string@^1.6.1: 4008 | version "1.6.1" 4009 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 4010 | 4011 | repeating@^2.0.0: 4012 | version "2.0.1" 4013 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 4014 | dependencies: 4015 | is-finite "^1.0.0" 4016 | 4017 | request@^2.74.0, request@^2.79.0: 4018 | version "2.85.0" 4019 | resolved "https://registry.yarnpkg.com/request/-/request-2.85.0.tgz#5a03615a47c61420b3eb99b7dba204f83603e1fa" 4020 | dependencies: 4021 | aws-sign2 "~0.7.0" 4022 | aws4 "^1.6.0" 4023 | caseless "~0.12.0" 4024 | combined-stream "~1.0.5" 4025 | extend "~3.0.1" 4026 | forever-agent "~0.6.1" 4027 | form-data "~2.3.1" 4028 | har-validator "~5.0.3" 4029 | hawk "~6.0.2" 4030 | http-signature "~1.2.0" 4031 | is-typedarray "~1.0.0" 4032 | isstream "~0.1.2" 4033 | json-stringify-safe "~5.0.1" 4034 | mime-types "~2.1.17" 4035 | oauth-sign "~0.8.2" 4036 | performance-now "^2.1.0" 4037 | qs "~6.5.1" 4038 | safe-buffer "^5.1.1" 4039 | stringstream "~0.0.5" 4040 | tough-cookie "~2.3.3" 4041 | tunnel-agent "^0.6.0" 4042 | uuid "^3.1.0" 4043 | 4044 | require-directory@^2.1.1: 4045 | version "2.1.1" 4046 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 4047 | 4048 | require-main-filename@^1.0.1: 4049 | version "1.0.1" 4050 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 4051 | 4052 | require-relative@^0.8.7: 4053 | version "0.8.7" 4054 | resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" 4055 | 4056 | require-uncached@^1.0.3: 4057 | version "1.0.3" 4058 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 4059 | dependencies: 4060 | caller-path "^0.1.0" 4061 | resolve-from "^1.0.0" 4062 | 4063 | resolve-from@^1.0.0: 4064 | version "1.0.1" 4065 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 4066 | 4067 | resolve-from@^3.0.0: 4068 | version "3.0.0" 4069 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 4070 | 4071 | resolve-url@^0.2.1: 4072 | version "0.2.1" 4073 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 4074 | 4075 | resolve@1.1.7: 4076 | version "1.1.7" 4077 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 4078 | 4079 | resolve@^1.3.2: 4080 | version "1.7.1" 4081 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.7.1.tgz#aadd656374fd298aee895bc026b8297418677fd3" 4082 | dependencies: 4083 | path-parse "^1.0.5" 4084 | 4085 | responselike@1.0.2: 4086 | version "1.0.2" 4087 | resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" 4088 | dependencies: 4089 | lowercase-keys "^1.0.0" 4090 | 4091 | restore-cursor@^2.0.0: 4092 | version "2.0.0" 4093 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 4094 | dependencies: 4095 | onetime "^2.0.0" 4096 | signal-exit "^3.0.2" 4097 | 4098 | ret@~0.1.10: 4099 | version "0.1.15" 4100 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 4101 | 4102 | retry@^0.10.0: 4103 | version "0.10.1" 4104 | resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" 4105 | 4106 | right-align@^0.1.1: 4107 | version "0.1.3" 4108 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 4109 | dependencies: 4110 | align-text "^0.1.1" 4111 | 4112 | rimraf@^2.2.8, rimraf@^2.6.1: 4113 | version "2.6.2" 4114 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 4115 | dependencies: 4116 | glob "^7.0.5" 4117 | 4118 | run-async@^2.2.0: 4119 | version "2.3.0" 4120 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 4121 | dependencies: 4122 | is-promise "^2.1.0" 4123 | 4124 | rx-lite-aggregates@^4.0.8: 4125 | version "4.0.8" 4126 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 4127 | dependencies: 4128 | rx-lite "*" 4129 | 4130 | rx-lite@*, rx-lite@^4.0.8: 4131 | version "4.0.8" 4132 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 4133 | 4134 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2: 4135 | version "5.2.0" 4136 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" 4137 | 4138 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 4139 | version "5.1.1" 4140 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 4141 | 4142 | safe-regex@^1.1.0: 4143 | version "1.1.0" 4144 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 4145 | dependencies: 4146 | ret "~0.1.10" 4147 | 4148 | safer-buffer@^2.1.0: 4149 | version "2.1.2" 4150 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 4151 | 4152 | sane@^2.0.0: 4153 | version "2.5.0" 4154 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.5.0.tgz#6359cd676f5efd9988b264d8ce3b827dd6b27bec" 4155 | dependencies: 4156 | anymatch "^2.0.0" 4157 | exec-sh "^0.2.0" 4158 | fb-watchman "^2.0.0" 4159 | micromatch "^3.1.4" 4160 | minimist "^1.1.1" 4161 | walker "~1.0.5" 4162 | watch "~0.18.0" 4163 | optionalDependencies: 4164 | fsevents "^1.1.1" 4165 | 4166 | sax@^1.2.1, sax@^1.2.4: 4167 | version "1.2.4" 4168 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 4169 | 4170 | semantic-release@^8.0.3: 4171 | version "8.2.3" 4172 | resolved "https://registry.yarnpkg.com/semantic-release/-/semantic-release-8.2.3.tgz#a746a0a588be1c24aa8c212ee8dc3bda9ec85d46" 4173 | dependencies: 4174 | "@semantic-release/commit-analyzer" "^3.0.1" 4175 | "@semantic-release/condition-travis" "^6.0.0" 4176 | "@semantic-release/error" "^2.0.0" 4177 | "@semantic-release/last-release-npm" "^2.0.0" 4178 | "@semantic-release/release-notes-generator" "^4.0.0" 4179 | execa "^0.8.0" 4180 | fs-extra "^4.0.2" 4181 | git-head "^1.2.1" 4182 | github "^12.0.0" 4183 | lodash "^4.0.0" 4184 | nerf-dart "^1.0.0" 4185 | nopt "^4.0.0" 4186 | normalize-package-data "^2.3.4" 4187 | npmconf "^2.1.2" 4188 | npmlog "^4.0.0" 4189 | p-series "^1.0.0" 4190 | parse-github-repo-url "^1.3.0" 4191 | require-relative "^0.8.7" 4192 | semver "^5.4.1" 4193 | 4194 | "semver@2 >=2.2.1 || 3.x || 4 || 5", "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.0.3, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0: 4195 | version "5.5.0" 4196 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 4197 | 4198 | "semver@2 || 3 || 4": 4199 | version "4.3.6" 4200 | resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" 4201 | 4202 | set-blocking@^2.0.0, set-blocking@~2.0.0: 4203 | version "2.0.0" 4204 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 4205 | 4206 | set-immediate-shim@^1.0.1: 4207 | version "1.0.1" 4208 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 4209 | 4210 | set-value@^0.4.3: 4211 | version "0.4.3" 4212 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 4213 | dependencies: 4214 | extend-shallow "^2.0.1" 4215 | is-extendable "^0.1.1" 4216 | is-plain-object "^2.0.1" 4217 | to-object-path "^0.3.0" 4218 | 4219 | set-value@^2.0.0: 4220 | version "2.0.0" 4221 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 4222 | dependencies: 4223 | extend-shallow "^2.0.1" 4224 | is-extendable "^0.1.1" 4225 | is-plain-object "^2.0.3" 4226 | split-string "^3.0.1" 4227 | 4228 | shebang-command@^1.2.0: 4229 | version "1.2.0" 4230 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 4231 | dependencies: 4232 | shebang-regex "^1.0.0" 4233 | 4234 | shebang-regex@^1.0.0: 4235 | version "1.0.0" 4236 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 4237 | 4238 | shellwords@^0.1.1: 4239 | version "0.1.1" 4240 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 4241 | 4242 | signal-exit@^3.0.0, signal-exit@^3.0.2: 4243 | version "3.0.2" 4244 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 4245 | 4246 | slash@^1.0.0: 4247 | version "1.0.0" 4248 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 4249 | 4250 | slice-ansi@1.0.0: 4251 | version "1.0.0" 4252 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 4253 | dependencies: 4254 | is-fullwidth-code-point "^2.0.0" 4255 | 4256 | slide@^1.1.3: 4257 | version "1.1.6" 4258 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 4259 | 4260 | snapdragon-node@^2.0.1: 4261 | version "2.1.1" 4262 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 4263 | dependencies: 4264 | define-property "^1.0.0" 4265 | isobject "^3.0.0" 4266 | snapdragon-util "^3.0.1" 4267 | 4268 | snapdragon-util@^3.0.1: 4269 | version "3.0.1" 4270 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 4271 | dependencies: 4272 | kind-of "^3.2.0" 4273 | 4274 | snapdragon@^0.8.1: 4275 | version "0.8.2" 4276 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 4277 | dependencies: 4278 | base "^0.11.1" 4279 | debug "^2.2.0" 4280 | define-property "^0.2.5" 4281 | extend-shallow "^2.0.1" 4282 | map-cache "^0.2.2" 4283 | source-map "^0.5.6" 4284 | source-map-resolve "^0.5.0" 4285 | use "^3.1.0" 4286 | 4287 | sntp@2.x.x: 4288 | version "2.1.0" 4289 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 4290 | dependencies: 4291 | hoek "4.x.x" 4292 | 4293 | sort-keys@^2.0.0: 4294 | version "2.0.0" 4295 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" 4296 | dependencies: 4297 | is-plain-obj "^1.0.0" 4298 | 4299 | source-map-resolve@^0.5.0: 4300 | version "0.5.1" 4301 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a" 4302 | dependencies: 4303 | atob "^2.0.0" 4304 | decode-uri-component "^0.2.0" 4305 | resolve-url "^0.2.1" 4306 | source-map-url "^0.4.0" 4307 | urix "^0.1.0" 4308 | 4309 | source-map-support@^0.4.15: 4310 | version "0.4.18" 4311 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 4312 | dependencies: 4313 | source-map "^0.5.6" 4314 | 4315 | source-map-url@^0.4.0: 4316 | version "0.4.0" 4317 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 4318 | 4319 | source-map@^0.4.4: 4320 | version "0.4.4" 4321 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 4322 | dependencies: 4323 | amdefine ">=0.0.4" 4324 | 4325 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1: 4326 | version "0.5.7" 4327 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 4328 | 4329 | source-map@~0.6.1: 4330 | version "0.6.1" 4331 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 4332 | 4333 | spdx-correct@^3.0.0: 4334 | version "3.0.0" 4335 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 4336 | dependencies: 4337 | spdx-expression-parse "^3.0.0" 4338 | spdx-license-ids "^3.0.0" 4339 | 4340 | spdx-exceptions@^2.1.0: 4341 | version "2.1.0" 4342 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 4343 | 4344 | spdx-expression-parse@^3.0.0: 4345 | version "3.0.0" 4346 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 4347 | dependencies: 4348 | spdx-exceptions "^2.1.0" 4349 | spdx-license-ids "^3.0.0" 4350 | 4351 | spdx-license-ids@^3.0.0: 4352 | version "3.0.0" 4353 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 4354 | 4355 | split-string@^3.0.1, split-string@^3.0.2: 4356 | version "3.1.0" 4357 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 4358 | dependencies: 4359 | extend-shallow "^3.0.0" 4360 | 4361 | split2@^2.0.0: 4362 | version "2.2.0" 4363 | resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" 4364 | dependencies: 4365 | through2 "^2.0.2" 4366 | 4367 | split@^1.0.0: 4368 | version "1.0.1" 4369 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" 4370 | dependencies: 4371 | through "2" 4372 | 4373 | sprintf-js@~1.0.2: 4374 | version "1.0.3" 4375 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 4376 | 4377 | sshpk@^1.7.0: 4378 | version "1.14.1" 4379 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.1.tgz#130f5975eddad963f1d56f92b9ac6c51fa9f83eb" 4380 | dependencies: 4381 | asn1 "~0.2.3" 4382 | assert-plus "^1.0.0" 4383 | dashdash "^1.12.0" 4384 | getpass "^0.1.1" 4385 | optionalDependencies: 4386 | bcrypt-pbkdf "^1.0.0" 4387 | ecc-jsbn "~0.1.1" 4388 | jsbn "~0.1.0" 4389 | tweetnacl "~0.14.0" 4390 | 4391 | ssri@^5.2.4: 4392 | version "5.3.0" 4393 | resolved "https://registry.yarnpkg.com/ssri/-/ssri-5.3.0.tgz#ba3872c9c6d33a0704a7d71ff045e5ec48999d06" 4394 | dependencies: 4395 | safe-buffer "^5.1.1" 4396 | 4397 | static-extend@^0.1.1: 4398 | version "0.1.2" 4399 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 4400 | dependencies: 4401 | define-property "^0.2.5" 4402 | object-copy "^0.1.0" 4403 | 4404 | strict-uri-encode@^1.0.0: 4405 | version "1.1.0" 4406 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" 4407 | 4408 | string-length@^2.0.0: 4409 | version "2.0.0" 4410 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 4411 | dependencies: 4412 | astral-regex "^1.0.0" 4413 | strip-ansi "^4.0.0" 4414 | 4415 | string-width@^1.0.1, string-width@^1.0.2: 4416 | version "1.0.2" 4417 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 4418 | dependencies: 4419 | code-point-at "^1.0.0" 4420 | is-fullwidth-code-point "^1.0.0" 4421 | strip-ansi "^3.0.0" 4422 | 4423 | string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 4424 | version "2.1.1" 4425 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 4426 | dependencies: 4427 | is-fullwidth-code-point "^2.0.0" 4428 | strip-ansi "^4.0.0" 4429 | 4430 | string_decoder@~1.1.1: 4431 | version "1.1.1" 4432 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 4433 | dependencies: 4434 | safe-buffer "~5.1.0" 4435 | 4436 | stringstream@~0.0.5: 4437 | version "0.0.5" 4438 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 4439 | 4440 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 4441 | version "3.0.1" 4442 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 4443 | dependencies: 4444 | ansi-regex "^2.0.0" 4445 | 4446 | strip-ansi@^4.0.0: 4447 | version "4.0.0" 4448 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 4449 | dependencies: 4450 | ansi-regex "^3.0.0" 4451 | 4452 | strip-bom@3.0.0, strip-bom@^3.0.0: 4453 | version "3.0.0" 4454 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 4455 | 4456 | strip-bom@^2.0.0: 4457 | version "2.0.0" 4458 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 4459 | dependencies: 4460 | is-utf8 "^0.2.0" 4461 | 4462 | strip-eof@^1.0.0: 4463 | version "1.0.0" 4464 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 4465 | 4466 | strip-indent@^1.0.1: 4467 | version "1.0.1" 4468 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 4469 | dependencies: 4470 | get-stdin "^4.0.1" 4471 | 4472 | strip-indent@^2.0.0: 4473 | version "2.0.0" 4474 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 4475 | 4476 | strip-json-comments@~2.0.1: 4477 | version "2.0.1" 4478 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 4479 | 4480 | supports-color@^2.0.0: 4481 | version "2.0.0" 4482 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 4483 | 4484 | supports-color@^3.1.2: 4485 | version "3.2.3" 4486 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 4487 | dependencies: 4488 | has-flag "^1.0.0" 4489 | 4490 | supports-color@^5.3.0: 4491 | version "5.4.0" 4492 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 4493 | dependencies: 4494 | has-flag "^3.0.0" 4495 | 4496 | symbol-tree@^3.2.1: 4497 | version "3.2.2" 4498 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 4499 | 4500 | table@4.0.2: 4501 | version "4.0.2" 4502 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 4503 | dependencies: 4504 | ajv "^5.2.3" 4505 | ajv-keywords "^2.1.0" 4506 | chalk "^2.1.0" 4507 | lodash "^4.17.4" 4508 | slice-ansi "1.0.0" 4509 | string-width "^2.1.1" 4510 | 4511 | tar@^4: 4512 | version "4.4.13" 4513 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" 4514 | dependencies: 4515 | chownr "^1.1.1" 4516 | fs-minipass "^1.2.5" 4517 | minipass "^2.8.6" 4518 | minizlib "^1.2.1" 4519 | mkdirp "^0.5.0" 4520 | safe-buffer "^5.1.2" 4521 | yallist "^3.0.3" 4522 | 4523 | test-exclude@^4.2.1: 4524 | version "4.2.1" 4525 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.1.tgz#dfa222f03480bca69207ca728b37d74b45f724fa" 4526 | dependencies: 4527 | arrify "^1.0.1" 4528 | micromatch "^3.1.8" 4529 | object-assign "^4.1.0" 4530 | read-pkg-up "^1.0.1" 4531 | require-main-filename "^1.0.1" 4532 | 4533 | text-extensions@^1.0.0: 4534 | version "1.7.0" 4535 | resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.7.0.tgz#faaaba2625ed746d568a23e4d0aacd9bf08a8b39" 4536 | 4537 | text-table@~0.2.0: 4538 | version "0.2.0" 4539 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 4540 | 4541 | throat@^4.0.0: 4542 | version "4.1.0" 4543 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 4544 | 4545 | through2@^2.0.0, through2@^2.0.2: 4546 | version "2.0.3" 4547 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 4548 | dependencies: 4549 | readable-stream "^2.1.5" 4550 | xtend "~4.0.1" 4551 | 4552 | through@2, "through@>=2.2.7 <3", through@^2.3.6: 4553 | version "2.3.8" 4554 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 4555 | 4556 | timed-out@^4.0.1: 4557 | version "4.0.1" 4558 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 4559 | 4560 | tmp@^0.0.33: 4561 | version "0.0.33" 4562 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 4563 | dependencies: 4564 | os-tmpdir "~1.0.2" 4565 | 4566 | tmpl@1.0.x: 4567 | version "1.0.4" 4568 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 4569 | 4570 | to-fast-properties@^1.0.3: 4571 | version "1.0.3" 4572 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 4573 | 4574 | to-object-path@^0.3.0: 4575 | version "0.3.0" 4576 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 4577 | dependencies: 4578 | kind-of "^3.0.2" 4579 | 4580 | to-regex-range@^2.1.0: 4581 | version "2.1.1" 4582 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 4583 | dependencies: 4584 | is-number "^3.0.0" 4585 | repeat-string "^1.6.1" 4586 | 4587 | to-regex@^3.0.1, to-regex@^3.0.2: 4588 | version "3.0.2" 4589 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 4590 | dependencies: 4591 | define-property "^2.0.2" 4592 | extend-shallow "^3.0.2" 4593 | regex-not "^1.0.2" 4594 | safe-regex "^1.1.0" 4595 | 4596 | tough-cookie@^2.3.2, tough-cookie@~2.3.3: 4597 | version "2.3.4" 4598 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 4599 | dependencies: 4600 | punycode "^1.4.1" 4601 | 4602 | tr46@~0.0.3: 4603 | version "0.0.3" 4604 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 4605 | 4606 | travis-deploy-once@^3.0.0: 4607 | version "3.3.0" 4608 | resolved "https://registry.yarnpkg.com/travis-deploy-once/-/travis-deploy-once-3.3.0.tgz#066800f8f76db401479b1c5edf0c5c03d3621981" 4609 | dependencies: 4610 | chalk "^2.1.0" 4611 | got "^8.0.1" 4612 | p-retry "^1.0.0" 4613 | semver "^5.4.1" 4614 | url-join "^2.0.2" 4615 | 4616 | trim-newlines@^1.0.0: 4617 | version "1.0.0" 4618 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 4619 | 4620 | trim-newlines@^2.0.0: 4621 | version "2.0.0" 4622 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20" 4623 | 4624 | trim-off-newlines@^1.0.0: 4625 | version "1.0.1" 4626 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" 4627 | 4628 | trim-right@^1.0.1: 4629 | version "1.0.1" 4630 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 4631 | 4632 | tslib@^1.8.0, tslib@^1.8.1: 4633 | version "1.9.0" 4634 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8" 4635 | 4636 | tslint@^5.9.1: 4637 | version "5.9.1" 4638 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.9.1.tgz#1255f87a3ff57eb0b0e1f0e610a8b4748046c9ae" 4639 | dependencies: 4640 | babel-code-frame "^6.22.0" 4641 | builtin-modules "^1.1.1" 4642 | chalk "^2.3.0" 4643 | commander "^2.12.1" 4644 | diff "^3.2.0" 4645 | glob "^7.1.1" 4646 | js-yaml "^3.7.0" 4647 | minimatch "^3.0.4" 4648 | resolve "^1.3.2" 4649 | semver "^5.3.0" 4650 | tslib "^1.8.0" 4651 | tsutils "^2.12.1" 4652 | 4653 | tsutils@^2.12.1: 4654 | version "2.26.1" 4655 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.26.1.tgz#9e4a0cb9ff173863f34c22a961969081270d1878" 4656 | dependencies: 4657 | tslib "^1.8.1" 4658 | 4659 | tunnel-agent@^0.6.0: 4660 | version "0.6.0" 4661 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 4662 | dependencies: 4663 | safe-buffer "^5.0.1" 4664 | 4665 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 4666 | version "0.14.5" 4667 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 4668 | 4669 | type-check@~0.3.2: 4670 | version "0.3.2" 4671 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 4672 | dependencies: 4673 | prelude-ls "~1.1.2" 4674 | 4675 | typedarray@^0.0.6: 4676 | version "0.0.6" 4677 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 4678 | 4679 | typescript@~2.8.3: 4680 | version "2.8.3" 4681 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.8.3.tgz#5d817f9b6f31bb871835f4edf0089f21abe6c170" 4682 | 4683 | uglify-js@^2.6: 4684 | version "2.8.29" 4685 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 4686 | dependencies: 4687 | source-map "~0.5.1" 4688 | yargs "~3.10.0" 4689 | optionalDependencies: 4690 | uglify-to-browserify "~1.0.0" 4691 | 4692 | uglify-to-browserify@~1.0.0: 4693 | version "1.0.2" 4694 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 4695 | 4696 | uid-number@0.0.5: 4697 | version "0.0.5" 4698 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.5.tgz#5a3db23ef5dbd55b81fce0ec9a2ac6fccdebb81e" 4699 | 4700 | union-value@^1.0.0: 4701 | version "1.0.0" 4702 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 4703 | dependencies: 4704 | arr-union "^3.1.0" 4705 | get-value "^2.0.6" 4706 | is-extendable "^0.1.1" 4707 | set-value "^0.4.3" 4708 | 4709 | universalify@^0.1.0: 4710 | version "0.1.1" 4711 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" 4712 | 4713 | unset-value@^1.0.0: 4714 | version "1.0.0" 4715 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 4716 | dependencies: 4717 | has-value "^0.3.1" 4718 | isobject "^3.0.0" 4719 | 4720 | urix@^0.1.0: 4721 | version "0.1.0" 4722 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 4723 | 4724 | url-join@^2.0.2: 4725 | version "2.0.5" 4726 | resolved "https://registry.yarnpkg.com/url-join/-/url-join-2.0.5.tgz#5af22f18c052a000a48d7b82c5e9c2e2feeda728" 4727 | 4728 | url-parse-lax@^3.0.0: 4729 | version "3.0.0" 4730 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" 4731 | dependencies: 4732 | prepend-http "^2.0.0" 4733 | 4734 | url-to-options@^1.0.1: 4735 | version "1.0.1" 4736 | resolved "https://registry.yarnpkg.com/url-to-options/-/url-to-options-1.0.1.tgz#1505a03a289a48cbd7a434efbaeec5055f5633a9" 4737 | 4738 | use@^3.1.0: 4739 | version "3.1.0" 4740 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544" 4741 | dependencies: 4742 | kind-of "^6.0.2" 4743 | 4744 | user-home@^1.1.1: 4745 | version "1.1.1" 4746 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 4747 | 4748 | util-deprecate@~1.0.1: 4749 | version "1.0.2" 4750 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4751 | 4752 | uuid@^3.1.0: 4753 | version "3.2.1" 4754 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 4755 | 4756 | v8flags@^2.1.1: 4757 | version "2.1.1" 4758 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 4759 | dependencies: 4760 | user-home "^1.1.1" 4761 | 4762 | validate-npm-package-license@^3.0.1: 4763 | version "3.0.3" 4764 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" 4765 | dependencies: 4766 | spdx-correct "^3.0.0" 4767 | spdx-expression-parse "^3.0.0" 4768 | 4769 | validate-npm-package-name@^3.0.0: 4770 | version "3.0.0" 4771 | resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" 4772 | dependencies: 4773 | builtins "^1.0.3" 4774 | 4775 | verror@1.10.0: 4776 | version "1.10.0" 4777 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 4778 | dependencies: 4779 | assert-plus "^1.0.0" 4780 | core-util-is "1.0.2" 4781 | extsprintf "^1.2.0" 4782 | 4783 | walk@^2.3.9: 4784 | version "2.3.13" 4785 | resolved "https://registry.yarnpkg.com/walk/-/walk-2.3.13.tgz#400852ade80df679f54637e4f08654ed6628f6da" 4786 | dependencies: 4787 | foreachasync "^3.0.0" 4788 | 4789 | walker@~1.0.5: 4790 | version "1.0.7" 4791 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 4792 | dependencies: 4793 | makeerror "1.0.x" 4794 | 4795 | watch@~0.18.0: 4796 | version "0.18.0" 4797 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 4798 | dependencies: 4799 | exec-sh "^0.2.0" 4800 | minimist "^1.2.0" 4801 | 4802 | webidl-conversions@^3.0.0: 4803 | version "3.0.1" 4804 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 4805 | 4806 | webidl-conversions@^4.0.0: 4807 | version "4.0.2" 4808 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 4809 | 4810 | whatwg-encoding@^1.0.1: 4811 | version "1.0.3" 4812 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" 4813 | dependencies: 4814 | iconv-lite "0.4.19" 4815 | 4816 | whatwg-url@^4.3.0: 4817 | version "4.8.0" 4818 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 4819 | dependencies: 4820 | tr46 "~0.0.3" 4821 | webidl-conversions "^3.0.0" 4822 | 4823 | which-module@^2.0.0: 4824 | version "2.0.0" 4825 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 4826 | 4827 | which@^1.2.12, which@^1.2.9, which@^1.3.0: 4828 | version "1.3.0" 4829 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 4830 | dependencies: 4831 | isexe "^2.0.0" 4832 | 4833 | wide-align@^1.1.0: 4834 | version "1.1.2" 4835 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 4836 | dependencies: 4837 | string-width "^1.0.2" 4838 | 4839 | window-size@0.1.0: 4840 | version "0.1.0" 4841 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4842 | 4843 | wordwrap@0.0.2: 4844 | version "0.0.2" 4845 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4846 | 4847 | wordwrap@~0.0.2: 4848 | version "0.0.3" 4849 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4850 | 4851 | wordwrap@~1.0.0: 4852 | version "1.0.0" 4853 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4854 | 4855 | worker-farm@^1.3.1: 4856 | version "1.6.0" 4857 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.6.0.tgz#aecc405976fab5a95526180846f0dba288f3a4a0" 4858 | dependencies: 4859 | errno "~0.1.7" 4860 | 4861 | wrap-ansi@^2.0.0: 4862 | version "2.1.0" 4863 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4864 | dependencies: 4865 | string-width "^1.0.1" 4866 | strip-ansi "^3.0.1" 4867 | 4868 | wrappy@1: 4869 | version "1.0.2" 4870 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4871 | 4872 | write-file-atomic@^2.1.0: 4873 | version "2.3.0" 4874 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 4875 | dependencies: 4876 | graceful-fs "^4.1.11" 4877 | imurmurhash "^0.1.4" 4878 | signal-exit "^3.0.2" 4879 | 4880 | write@^0.2.1: 4881 | version "0.2.1" 4882 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4883 | dependencies: 4884 | mkdirp "^0.5.1" 4885 | 4886 | xml-name-validator@^2.0.1: 4887 | version "2.0.1" 4888 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 4889 | 4890 | xtend@~4.0.1: 4891 | version "4.0.1" 4892 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4893 | 4894 | y18n@^3.2.1: 4895 | version "3.2.1" 4896 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4897 | 4898 | yallist@^2.1.2: 4899 | version "2.1.2" 4900 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4901 | 4902 | yallist@^3.0.0, yallist@^3.0.3: 4903 | version "3.1.1" 4904 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" 4905 | 4906 | yargs-parser@^7.0.0: 4907 | version "7.0.0" 4908 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 4909 | dependencies: 4910 | camelcase "^4.1.0" 4911 | 4912 | yargs-parser@^9.0.2: 4913 | version "9.0.2" 4914 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 4915 | dependencies: 4916 | camelcase "^4.1.0" 4917 | 4918 | yargs@^11.0.0: 4919 | version "11.0.0" 4920 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.0.0.tgz#c052931006c5eee74610e5fc0354bedfd08a201b" 4921 | dependencies: 4922 | cliui "^4.0.0" 4923 | decamelize "^1.1.1" 4924 | find-up "^2.1.0" 4925 | get-caller-file "^1.0.1" 4926 | os-locale "^2.0.0" 4927 | require-directory "^2.1.1" 4928 | require-main-filename "^1.0.1" 4929 | set-blocking "^2.0.0" 4930 | string-width "^2.0.0" 4931 | which-module "^2.0.0" 4932 | y18n "^3.2.1" 4933 | yargs-parser "^9.0.2" 4934 | 4935 | yargs@^9.0.0: 4936 | version "9.0.1" 4937 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" 4938 | dependencies: 4939 | camelcase "^4.1.0" 4940 | cliui "^3.2.0" 4941 | decamelize "^1.1.1" 4942 | get-caller-file "^1.0.1" 4943 | os-locale "^2.0.0" 4944 | read-pkg-up "^2.0.0" 4945 | require-directory "^2.1.1" 4946 | require-main-filename "^1.0.1" 4947 | set-blocking "^2.0.0" 4948 | string-width "^2.0.0" 4949 | which-module "^2.0.0" 4950 | y18n "^3.2.1" 4951 | yargs-parser "^7.0.0" 4952 | 4953 | yargs@~3.10.0: 4954 | version "3.10.0" 4955 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4956 | dependencies: 4957 | camelcase "^1.0.2" 4958 | cliui "^2.1.0" 4959 | decamelize "^1.0.0" 4960 | window-size "0.1.0" 4961 | --------------------------------------------------------------------------------