├── src ├── __tests__ │ ├── __fixtures__ │ │ ├── success-results.json │ │ └── failure-results.json │ ├── prettyResults.test.ts │ ├── __snapshots__ │ │ ├── index.test.ts.snap │ │ └── prettyResults.test.ts.snap │ └── index.test.ts ├── ambient.d.ts ├── prettyResults.ts ├── resultHandlers.ts └── index.ts ├── screenshots ├── failure.png └── success.png ├── dangerfile.ts ├── tslint.json ├── .editorconfig ├── scripts └── deploy-docs.js ├── .travis.yml ├── tsconfig.json ├── LICENSE.md ├── .gitignore ├── package.json ├── README.md └── yarn.lock /src/__tests__/__fixtures__/success-results.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /screenshots/failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/screenshots/failure.png -------------------------------------------------------------------------------- /screenshots/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/screenshots/success.png -------------------------------------------------------------------------------- /dangerfile.ts: -------------------------------------------------------------------------------- 1 | import * as path from 'path' 2 | import tslint from './src' 3 | 4 | tslint({ 5 | lintResultsJsonPath: path.resolve(__dirname, 'reports', 'lint-results.json'), 6 | }) 7 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "tslint:recommended" 4 | ], 5 | "rules": { 6 | "semicolon": [true, "never"], 7 | "quotemark": [true, "single"] 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/ambient.d.ts: -------------------------------------------------------------------------------- 1 | // Danger global functions 2 | declare function fail(message: string): void 3 | declare function warn(message: string): void 4 | declare function message(message: string): void 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | indent_size = 2 7 | indent_style = space 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false -------------------------------------------------------------------------------- /src/__tests__/prettyResults.test.ts: -------------------------------------------------------------------------------- 1 | import { prettyResults } from '../prettyResults' 2 | 3 | test('it formats failures', () => { 4 | const failureResults = require('./__fixtures__/failure-results.json') 5 | expect(prettyResults(failureResults)).toMatchSnapshot() 6 | }) 7 | -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`throws when config is not supplied 1`] = `"Configuration not supplied"`; 4 | 5 | exports[`throws when lintResultsJsonPath is not supplied 1`] = `"'lintResultsJsonPath' not supplied"`; 6 | -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/prettyResults.test.ts.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`it formats failures 1`] = ` 4 | "- ERROR: src/index.ts[48, 57]: Unnecessary semicolon 5 | - ERROR: src/index.ts[49, 38]: Unnecessary semicolon 6 | - ERROR: src/index.ts[53, 18]: Unnecessary semicolon" 7 | `; 8 | -------------------------------------------------------------------------------- /scripts/deploy-docs.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const ghpages = require('gh-pages') 4 | 5 | const docsDir = 'docs' 6 | const options = { 7 | user: { 8 | name: 'Macklin Underdown', 9 | email: 'macklinu@users.noreply.github.com' 10 | }, 11 | } 12 | const callback = (err) => { 13 | if (err) { 14 | console.error(err) 15 | } else { 16 | console.log('🚀 Docs deployed to GitHub Pages') 17 | } 18 | } 19 | 20 | ghpages.publish(docsDir, options, callback) 21 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | cache: 3 | yarn: true 4 | notifications: 5 | email: false 6 | node_js: 7 | - '8' 8 | - '6' 9 | - '4' 10 | before_install: yarn global add greenkeeper-lockfile@1 11 | before_script: 12 | - greenkeeper-lockfile-update 13 | - npm prune 14 | script: 15 | - mkdir -p reports 16 | - yarn add jest 17 | - yarn run test -- --coverage 18 | - yarn run lint --silent -- -t json | tee reports/lint-results.json 19 | - yarn run danger 20 | after_success: 21 | - greenkeeper-lockfile-upload 22 | - yarn run semantic-release 23 | branches: 24 | except: 25 | - /^v\d+\.\d+\.\d+$/ 26 | -------------------------------------------------------------------------------- /src/prettyResults.ts: -------------------------------------------------------------------------------- 1 | import { oneLine } from 'common-tags' 2 | import { IRuleFailureJson, IRuleFailurePositionJson } from 'tslint' 3 | 4 | const lineAndCharacter = (position: IRuleFailurePositionJson) => { 5 | const line = position.line + 1 6 | const character = position.character + 1 7 | return `${line}, ${character}` 8 | } 9 | 10 | export function prettyResults(results: IRuleFailureJson[]): string { 11 | return results 12 | .map((result) => oneLine` 13 | ${result.ruleSeverity}: 14 | ${result.name}[${lineAndCharacter(result.startPosition)}]: 15 | ${result.failure} 16 | `) 17 | .map((item: string) => `- ${item}`) 18 | .join('\n') 19 | } 20 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "declaration": true, 4 | "declarationDir": "dist", 5 | "lib": ["es5", "es2015"], 6 | "module": "commonjs", 7 | "moduleResolution": "node", 8 | "noImplicitAny": true, 9 | "noImplicitReturns": true, 10 | "noImplicitThis": true, 11 | "noUnusedLocals": true, 12 | "noUnusedParameters": true, 13 | "outDir": "dist", 14 | "pretty": true, 15 | "sourceMap": false, 16 | "strictNullChecks": true, 17 | "suppressImplicitAnyIndexErrors": true, 18 | "target": "es5", 19 | "types": ["node"] 20 | }, 21 | "include": [ 22 | "src/**/*.ts" 23 | ], 24 | "exclude": [ 25 | "node_modules", 26 | "src/**/*.test.ts" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/resultHandlers.ts: -------------------------------------------------------------------------------- 1 | import { stripIndents } from 'common-tags' 2 | import { IRuleFailureJson } from 'tslint' 3 | import { prettyResults } from './prettyResults' 4 | 5 | export function defaultResultHandler(results: IRuleFailureJson[]): void { 6 | if (results.length > 0) { 7 | const prettyLintResults = prettyResults(results) 8 | const hasFixableViolations = results.filter((result) => result.hasOwnProperty('fix')).length > 0 9 | const fixMessage = hasFixableViolations 10 | ? 'You can fix them by adding `--fix` to your TSLint command. :+1:' 11 | : '' 12 | fail(stripIndents` 13 | There are ${results.length} lint violations: 14 | 15 | ${prettyLintResults} 16 | 17 | ${fixMessage} 18 | `.trim()) 19 | } else { 20 | message(':white_check_mark: TSLint passed') 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright 2017 Macklin Underdown 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /src/__tests__/index.test.ts: -------------------------------------------------------------------------------- 1 | import * as path from 'path' 2 | 3 | import tslint from '../' 4 | 5 | // tslint:disable:no-string-literal 6 | 7 | beforeEach(() => { 8 | global['fail'] = jest.fn() 9 | global['message'] = jest.fn() 10 | global['warn'] = jest.fn() 11 | }) 12 | 13 | describe('default results handler', () => { 14 | test('handles successful results', () => { 15 | tslint({ 16 | lintResultsJsonPath: path.resolve(__dirname, '__fixtures__', 'success-results.json'), 17 | }) 18 | expect(global['message']).toHaveBeenCalled() 19 | }) 20 | test('handles lint failures', () => { 21 | tslint({ 22 | lintResultsJsonPath: path.resolve(__dirname, '__fixtures__', 'failure-results.json'), 23 | }) 24 | expect(global['fail']).toHaveBeenCalled() 25 | }) 26 | test('warns when cannot find results', () => { 27 | tslint({ 28 | lintResultsJsonPath: path.resolve(__dirname, '__fixtures__', 'missing-file.json'), 29 | }) 30 | expect(global['warn']).toHaveBeenCalled() 31 | }) 32 | }) 33 | 34 | test('throws when config is not supplied', () => { 35 | expect(() => tslint()).toThrowErrorMatchingSnapshot() 36 | }) 37 | 38 | test('throws when lintResultsJsonPath is not supplied', () => { 39 | expect(() => tslint({})).toThrowErrorMatchingSnapshot() 40 | }) 41 | -------------------------------------------------------------------------------- /src/__tests__/__fixtures__/failure-results.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "endPosition": { 4 | "character": 57, 5 | "line": 47, 6 | "position": 1506 7 | }, 8 | "failure": "Unnecessary semicolon", 9 | "fix": { 10 | "innerStart": 1505, 11 | "innerLength": 1, 12 | "innerText": "" 13 | }, 14 | "name": "src/index.ts", 15 | "ruleName": "semicolon", 16 | "ruleSeverity": "ERROR", 17 | "startPosition": { 18 | "character": 56, 19 | "line": 47, 20 | "position": 1505 21 | } 22 | }, 23 | { 24 | "endPosition": { 25 | "character": 38, 26 | "line": 48, 27 | "position": 1545 28 | }, 29 | "failure": "Unnecessary semicolon", 30 | "fix": { 31 | "innerStart": 1544, 32 | "innerLength": 1, 33 | "innerText": "" 34 | }, 35 | "name": "src/index.ts", 36 | "ruleName": "semicolon", 37 | "ruleSeverity": "ERROR", 38 | "startPosition": { 39 | "character": 37, 40 | "line": 48, 41 | "position": 1544 42 | } 43 | }, 44 | { 45 | "endPosition": { 46 | "character": 18, 47 | "line": 52, 48 | "position": 1650 49 | }, 50 | "failure": "Unnecessary semicolon", 51 | "fix": { 52 | "innerStart": 1649, 53 | "innerLength": 1, 54 | "innerText": "" 55 | }, 56 | "name": "src/index.ts", 57 | "ruleName": "semicolon", 58 | "ruleSeverity": "ERROR", 59 | "startPosition": { 60 | "character": 17, 61 | "line": 52, 62 | "position": 1649 63 | } 64 | } 65 | ] 66 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/node,visualstudiocode 3 | 4 | ### Node ### 5 | # Logs 6 | logs 7 | *.log 8 | npm-debug.log* 9 | yarn-debug.log* 10 | yarn-error.log* 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | 24 | # nyc test coverage 25 | .nyc_output 26 | 27 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 28 | .grunt 29 | 30 | # Bower dependency directory (https://bower.io/) 31 | bower_components 32 | 33 | # node-waf configuration 34 | .lock-wscript 35 | 36 | # Compiled binary addons (http://nodejs.org/api/addons.html) 37 | build/Release 38 | 39 | # Dependency directories 40 | node_modules/ 41 | jspm_packages/ 42 | 43 | # Typescript v1 declaration files 44 | typings/ 45 | 46 | # Optional npm cache directory 47 | .npm 48 | 49 | # Optional eslint cache 50 | .eslintcache 51 | 52 | # Optional REPL history 53 | .node_repl_history 54 | 55 | # Output of 'npm pack' 56 | *.tgz 57 | 58 | # Yarn Integrity file 59 | .yarn-integrity 60 | 61 | # dotenv environment variables file 62 | .env 63 | 64 | # Generated docs 65 | docs/ 66 | 67 | # Generated source 68 | dist/ 69 | 70 | # Generated reports 71 | reports/ 72 | 73 | ### VisualStudioCode ### 74 | .vscode/* 75 | !.vscode/settings.json 76 | !.vscode/tasks.json 77 | !.vscode/launch.json 78 | !.vscode/extensions.json 79 | 80 | # End of https://www.gitignore.io/api/node,visualstudiocode 81 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @module tslint 3 | */ 4 | /** 5 | * This second comment is required until 6 | * https://github.com/christopherthielen/typedoc-plugin-external-module-name/issues/6 is resolved. 7 | */ 8 | 9 | import * as fs from 'fs' 10 | import { IRuleFailureJson } from 'tslint' 11 | 12 | import { defaultResultHandler } from './resultHandlers' 13 | 14 | export interface IPluginConfig { 15 | /** 16 | * The path to the file generated by running `tslint --format json`. 17 | */ 18 | lintResultsJsonPath: string 19 | /** 20 | * An optional function to handle TSLint results. 21 | * When there are no violations, `results` will be an empty array. 22 | * Otherwise, TSLint has reported violations. 23 | * 24 | * It is up to the caller to format each lint result 25 | * and call the appropriate Danger functions (e.g., `fail()`). 26 | * 27 | * See the `defaultResultHandler` in `src/resultHandlers.ts` 28 | * for the default implementation. 29 | */ 30 | handleResults?(results: IRuleFailureJson[]): void 31 | } 32 | 33 | /** 34 | * Runs TSLint on a project's source code and reports results to Danger. 35 | * 36 | * * If there are any lint violations, Danger will fail the build and post results in a comment. 37 | * * If there are no lint violations, Danger will comment saying that TSLint passed. 38 | * * If the `config.lintResultsJsonPath` JSON file cannot be read, Danger will comment with a warning. 39 | * 40 | * @export 41 | * @param config The plugin config object. 42 | */ 43 | export default function tslint(config: IPluginConfig): void { 44 | /** Reads */ 45 | const getLintResults = (path: string): IRuleFailureJson[] | null => { 46 | try { 47 | const fileContents = fs.readFileSync(path, 'utf8') 48 | return JSON.parse(fileContents) 49 | } catch (e) { 50 | // tslint:disable-next-line:no-console 51 | console.error(e) 52 | return null 53 | } 54 | } 55 | 56 | if (!config) { 57 | throw Error('Configuration not supplied') 58 | } 59 | 60 | const { 61 | lintResultsJsonPath, 62 | handleResults = defaultResultHandler, 63 | } = config 64 | 65 | if (!lintResultsJsonPath) { 66 | throw Error(`'lintResultsJsonPath' not supplied`) 67 | } 68 | 69 | const results = getLintResults(lintResultsJsonPath) 70 | if (results === null) { 71 | warn('Couldn\'t read TSLint results file') 72 | } else { 73 | handleResults(results) 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "danger-plugin-tslint", 3 | "version": "0.0.0-development", 4 | "description": "Danger plugin for TSLint", 5 | "main": "dist/index.js", 6 | "types": "dist/index.d.ts", 7 | "files": [ 8 | "dist" 9 | ], 10 | "scripts": { 11 | "precommit": "lint-staged", 12 | "prepush": "npm run test", 13 | "commit": "git-cz", 14 | "commitmsg": "validate-commit-msg", 15 | "build": "tsc -p tsconfig.json", 16 | "lint": "tslint '{dangerfile.ts,src/**/*.ts}'", 17 | "test": "jest --env=node", 18 | "danger": "danger", 19 | "docs": "typedoc --theme minimal --out docs src/index.ts", 20 | "docs:serve": "npm run docs && serve docs", 21 | "docs:deploy": "npm run docs && node scripts/deploy-docs.js", 22 | "prepublish": "npm run build", 23 | "semantic-release": "semantic-release pre && npm publish && semantic-release post" 24 | }, 25 | "repository": { 26 | "type": "git", 27 | "url": "https://github.com/macklinu/danger-plugin-tslint.git" 28 | }, 29 | "keywords": [ 30 | "danger", 31 | "danger-plugin", 32 | "tslint" 33 | ], 34 | "author": "Macklin Underdown ", 35 | "license": "MIT", 36 | "bugs": { 37 | "url": "https://github.com/macklinu/danger-plugin-tslint/issues" 38 | }, 39 | "homepage": "https://github.com/macklinu/danger-plugin-tslint#readme", 40 | "devDependencies": { 41 | "@types/common-tags": "^1.2.5", 42 | "@types/jest": "^21.1.2", 43 | "@types/node": "^8.0.6", 44 | "commitizen": "^2.9.6", 45 | "cz-conventional-changelog": "^2.0.0", 46 | "danger": "^1.0.0", 47 | "gh-pages": "^1.0.0", 48 | "husky": "^0.14.1", 49 | "jest": "^21.2.1", 50 | "lint-staged": "^4.0.0", 51 | "semantic-release": "^6.3.6", 52 | "ts-jest": "^21.1.2", 53 | "tslint": "^5.0.0", 54 | "typedoc": "^0.7.1", 55 | "typedoc-plugin-external-module-name": "^1.0.9", 56 | "typescript": "^2.4.1", 57 | "validate-commit-msg": "^2.12.1" 58 | }, 59 | "peerDependencies": { 60 | "tslint": "^5.0.0" 61 | }, 62 | "optionalDependencies": { 63 | "serve": "^6.0.0" 64 | }, 65 | "jest": { 66 | "testRegex": ".*\\.test\\.ts$", 67 | "transform": { 68 | ".(ts|tsx)": "/node_modules/ts-jest/preprocessor.js" 69 | }, 70 | "moduleFileExtensions": [ 71 | "ts", 72 | "js" 73 | ] 74 | }, 75 | "config": { 76 | "commitizen": { 77 | "path": "cz-conventional-changelog" 78 | } 79 | }, 80 | "lint-staged": { 81 | "*.ts": [ 82 | "tslint --fix", 83 | "git add" 84 | ] 85 | }, 86 | "dependencies": { 87 | "common-tags": "^1.4.0" 88 | } 89 | } 90 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # danger-plugin-tslint 2 | 3 | [![Build Status](https://travis-ci.org/macklinu/danger-plugin-tslint.svg?branch=master)](https://travis-ci.org/macklinu/danger-plugin-tslint) 4 | [![npm version](https://badge.fury.io/js/danger-plugin-tslint.svg)](https://badge.fury.io/js/danger-plugin-tslint) 5 | [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) 6 | [![Greenkeeper badge](https://badges.greenkeeper.io/macklinu/danger-plugin-tslint.svg)](https://greenkeeper.io/) 7 | 8 | > [Danger](https://github.com/danger/danger-js) plugin for TSLint 9 | 10 | 11 | ## Usage 12 | 13 | ### Setup TSLint 14 | 15 | This Danger plugin requires that you output the TSLint results as a JSON file before running `danger` on CI. 16 | 17 | One way to do this is to use TSLint's JSON formatter and [`tee`](https://en.wikipedia.org/wiki/Tee_(command)). 18 | 19 | Given a `package.json` with a "lint" script: 20 | 21 | ```json 22 | { 23 | "scripts": { 24 | "lint": "tslint 'src/**/*.{ts,tsx}'" 25 | } 26 | } 27 | ``` 28 | 29 | Running `yarn run lint --silent -- --format json` will only output the JSON results, which are piped into `tee` and written to disk in the `reports/lint-results.json` file. 30 | 31 | ```sh 32 | # ci-script.sh 33 | 34 | mkdir -p reports/ 35 | yarn run lint --silent -- --format json | tee reports/lint-results.json 36 | 37 | yarn run danger 38 | ``` 39 | 40 | > In this example, may also want to add the `reports/` directory to your `.gitignore` file, as this file does not need to be checked into source control. 41 | 42 | ### Setup Danger 43 | 44 | Install: 45 | 46 | ```sh 47 | yarn add danger-plugin-tslint --dev 48 | ``` 49 | 50 | At a glance: 51 | 52 | ```js 53 | // dangerfile.js 54 | import path from 'path' 55 | import tslint from 'danger-plugin-tslint' 56 | 57 | // Handle TSLint results in `reports/lint-results.json` and leave a Danger comment on the PR 58 | tslint({ 59 | lintResultsJsonPath: path.resolve(__dirname, 'reports', 'lint-results.json'), 60 | }) 61 | ``` 62 | 63 | By default `tslint()` will use the `defaultResultHandler` in [`src/resultHandlers.ts`](https://github.com/macklinu/danger-plugin-tslint/blob/master/src/resultHandlers.ts). If you want to supply a custom result handler, which also requires you to call Danger functions like `fail()` and `message()` , you can do that too: 64 | 65 | ```js 66 | // dangerfile.js 67 | import path from 'path' 68 | import tslint from 'danger-plugin-tslint' 69 | 70 | tslint({ 71 | lintResultsJsonPath: path.resolve(__dirname, 'reports', 'lint-results.json'), 72 | handleResults: (results) => { 73 | if (results.length > 0) { 74 | const formattedResults = formatResults(results) 75 | fail(`TSLint failed\n\n${formattedResults}`) 76 | } else { 77 | message('👍 TSLint passed') 78 | } 79 | } 80 | }) 81 | ``` 82 | 83 | Here are examples of what the Danger comment will look like for success or failure: 84 | 85 | ![success](screenshots/success.png) 86 | ![failure](screenshots/failure.png) 87 | 88 | See the [documentation](http://macklin.underdown.me/danger-plugin-tslint/modules/tslint.html#tslint-1) for detailed information (and also check out [`src/index.ts`](https://github.com/macklinu/danger-plugin-tslint/blob/master/src/index.ts)). 89 | 90 | ## Changelog 91 | 92 | See the GitHub [release history](https://github.com/macklinu/danger-plugin-tslint/releases). 93 | 94 | ## Development 95 | 96 | Install [Yarn](https://yarnpkg.com/en/), and install the dependencies - `yarn install`. 97 | 98 | Run the [Jest](https://facebook.github.io/jest/) test suite with `yarn test`. 99 | 100 | This project uses [semantic-release](https://github.com/semantic-release/semantic-release) for automated NPM package publishing. 101 | 102 | The main caveat: instead of running `git commit`, run `yarn commit` and follow the prompts to input a conventional changelog message via [commitizen](https://github.com/commitizen/cz-cli). 103 | 104 | :heart: 105 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@semantic-release/commit-analyzer@^2.0.0": 6 | version "2.0.0" 7 | resolved "https://registry.yarnpkg.com/@semantic-release/commit-analyzer/-/commit-analyzer-2.0.0.tgz#924d1e2c30167c6a472bed9f66ee8f8e077489b2" 8 | dependencies: 9 | conventional-changelog "0.0.17" 10 | 11 | "@semantic-release/condition-travis@^5.0.2": 12 | version "5.0.2" 13 | resolved "https://registry.yarnpkg.com/@semantic-release/condition-travis/-/condition-travis-5.0.2.tgz#f4bb777a6c6db5565d70754a9b629233bd4a6597" 14 | dependencies: 15 | "@semantic-release/error" "^1.0.0" 16 | semver "^5.0.3" 17 | travis-deploy-once "1.0.0-node-0.10-support" 18 | 19 | "@semantic-release/error@^1.0.0": 20 | version "1.0.0" 21 | resolved "https://registry.yarnpkg.com/@semantic-release/error/-/error-1.0.0.tgz#bb8f8eeedd5c7f8c46f96b37ef39e1b8c376c1cc" 22 | 23 | "@semantic-release/last-release-npm@^1.2.1": 24 | version "1.2.1" 25 | resolved "https://registry.yarnpkg.com/@semantic-release/last-release-npm/-/last-release-npm-1.2.1.tgz#ff748142ecf15354b833a86ba18205f7fce594ee" 26 | dependencies: 27 | "@semantic-release/error" "^1.0.0" 28 | npm-registry-client "^7.0.1" 29 | npmlog "^1.2.1" 30 | 31 | "@semantic-release/release-notes-generator@^2.0.0": 32 | version "2.0.0" 33 | resolved "https://registry.yarnpkg.com/@semantic-release/release-notes-generator/-/release-notes-generator-2.0.0.tgz#7c5da65689466d536a53fdfa9f4d62a3bd13c16e" 34 | dependencies: 35 | conventional-changelog "0.0.17" 36 | github-url-from-git "^1.4.0" 37 | 38 | "@types/common-tags@^1.2.5": 39 | version "1.2.5" 40 | resolved "https://registry.yarnpkg.com/@types/common-tags/-/common-tags-1.2.5.tgz#14f29893992eb325594b83d739af02f2b6520f46" 41 | 42 | "@types/fs-extra@^3.0.0": 43 | version "3.0.2" 44 | resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-3.0.2.tgz#00cbf48563f377f9ce5cf24237b21b3d9779e055" 45 | dependencies: 46 | "@types/node" "*" 47 | 48 | "@types/handlebars@^4.0.31": 49 | version "4.0.32" 50 | resolved "https://registry.yarnpkg.com/@types/handlebars/-/handlebars-4.0.32.tgz#637e8d945a9354aab47df7125005490fe9f8e592" 51 | 52 | "@types/highlight.js@^9.1.8": 53 | version "9.1.9" 54 | resolved "https://registry.yarnpkg.com/@types/highlight.js/-/highlight.js-9.1.9.tgz#ed6336955eaf233b75eb7923b9b1f373d045ef01" 55 | 56 | "@types/jest@^21.1.2": 57 | version "21.1.2" 58 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-21.1.2.tgz#05ebfa64817b626694ced56745a7949281981048" 59 | 60 | "@types/lodash@^4.14.37": 61 | version "4.14.64" 62 | resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.64.tgz#979cf3a3d4a368670840bf9b3e448dc33ffe84ee" 63 | 64 | "@types/marked@0.0.28": 65 | version "0.0.28" 66 | resolved "https://registry.yarnpkg.com/@types/marked/-/marked-0.0.28.tgz#44ba754e9fa51432583e8eb30a7c4dd249b52faa" 67 | 68 | "@types/minimatch@^2.0.29": 69 | version "2.0.29" 70 | resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-2.0.29.tgz#5002e14f75e2d71e564281df0431c8c1b4a2a36a" 71 | 72 | "@types/node@*", "@types/node@^8.0.6": 73 | version "8.0.6" 74 | resolved "https://registry.yarnpkg.com/@types/node/-/node-8.0.6.tgz#ed2c3e011cb51ccd3cf874989130f1b9ffe06069" 75 | 76 | "@types/shelljs@^0.7.0": 77 | version "0.7.1" 78 | resolved "https://registry.yarnpkg.com/@types/shelljs/-/shelljs-0.7.1.tgz#30fe144e3bdd37c11c174445bc54190cb7992a45" 79 | dependencies: 80 | "@types/node" "*" 81 | 82 | abab@^1.0.3: 83 | version "1.0.3" 84 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 85 | 86 | abbrev@1: 87 | version "1.1.0" 88 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 89 | 90 | accepts@~1.3.3: 91 | version "1.3.3" 92 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 93 | dependencies: 94 | mime-types "~2.1.11" 95 | negotiator "0.6.1" 96 | 97 | acorn-globals@^3.1.0: 98 | version "3.1.0" 99 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 100 | dependencies: 101 | acorn "^4.0.4" 102 | 103 | acorn@^4.0.4: 104 | version "4.0.11" 105 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 106 | 107 | address@^1.0.1: 108 | version "1.0.2" 109 | resolved "https://registry.yarnpkg.com/address/-/address-1.0.2.tgz#480081e82b587ba319459fef512f516fe03d58af" 110 | 111 | agent-base@2: 112 | version "2.0.1" 113 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-2.0.1.tgz#bd8f9e86a8eb221fffa07bd14befd55df142815e" 114 | dependencies: 115 | extend "~3.0.0" 116 | semver "~5.0.1" 117 | 118 | ajv@^4.9.1: 119 | version "4.11.8" 120 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 121 | dependencies: 122 | co "^4.6.0" 123 | json-stable-stringify "^1.0.1" 124 | 125 | align-text@^0.1.1, align-text@^0.1.3: 126 | version "0.1.4" 127 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 128 | dependencies: 129 | kind-of "^3.0.2" 130 | longest "^1.0.1" 131 | repeat-string "^1.5.2" 132 | 133 | amdefine@>=0.0.4: 134 | version "1.0.1" 135 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 136 | 137 | ansi-align@^2.0.0: 138 | version "2.0.0" 139 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 140 | dependencies: 141 | string-width "^2.0.0" 142 | 143 | ansi-escapes@^1.0.0, ansi-escapes@^1.1.0: 144 | version "1.4.0" 145 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 146 | 147 | ansi-escapes@^3.0.0: 148 | version "3.0.0" 149 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 150 | 151 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 152 | version "2.1.1" 153 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 154 | 155 | ansi-regex@^3.0.0: 156 | version "3.0.0" 157 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 158 | 159 | ansi-styles@^2.2.1: 160 | version "2.2.1" 161 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 162 | 163 | ansi-styles@^3.0.0: 164 | version "3.0.0" 165 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.0.0.tgz#5404e93a544c4fec7f048262977bebfe3155e0c1" 166 | dependencies: 167 | color-convert "^1.0.0" 168 | 169 | ansi-styles@^3.1.0, ansi-styles@^3.2.0: 170 | version "3.2.0" 171 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 172 | dependencies: 173 | color-convert "^1.9.0" 174 | 175 | ansi@^0.3.0, ansi@~0.3.0: 176 | version "0.3.1" 177 | resolved "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz#0c42d4fb17160d5a9af1e484bace1c66922c1b21" 178 | 179 | any-promise@^1.0.0, any-promise@^1.3.0: 180 | version "1.3.0" 181 | resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" 182 | 183 | anymatch@^1.3.0: 184 | version "1.3.0" 185 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 186 | dependencies: 187 | arrify "^1.0.0" 188 | micromatch "^2.1.5" 189 | 190 | app-root-path@^2.0.0: 191 | version "2.0.1" 192 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" 193 | 194 | append-transform@^0.4.0: 195 | version "0.4.0" 196 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 197 | dependencies: 198 | default-require-extensions "^1.0.0" 199 | 200 | aproba@^1.0.3: 201 | version "1.1.1" 202 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 203 | 204 | are-we-there-yet@~1.0.0: 205 | version "1.0.6" 206 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.0.6.tgz#a2d28c93102aa6cc96245a26cb954de06ec53f0c" 207 | dependencies: 208 | delegates "^1.0.0" 209 | readable-stream "^2.0.0 || ^1.1.13" 210 | 211 | are-we-there-yet@~1.1.2: 212 | version "1.1.4" 213 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 214 | dependencies: 215 | delegates "^1.0.0" 216 | readable-stream "^2.0.6" 217 | 218 | argparse@^1.0.7: 219 | version "1.0.9" 220 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 221 | dependencies: 222 | sprintf-js "~1.0.2" 223 | 224 | args@2.6.1: 225 | version "2.6.1" 226 | resolved "https://registry.yarnpkg.com/args/-/args-2.6.1.tgz#b2590ed4168cd31b62444199bdc5166bb1920c2f" 227 | dependencies: 228 | camelcase "4.1.0" 229 | chalk "1.1.3" 230 | minimist "1.2.0" 231 | pkginfo "0.4.0" 232 | string-similarity "1.1.0" 233 | 234 | args@3.0.2: 235 | version "3.0.2" 236 | resolved "https://registry.yarnpkg.com/args/-/args-3.0.2.tgz#850bb8e881f3139203a5e4cb176431092b562c2d" 237 | dependencies: 238 | camelcase "4.1.0" 239 | chalk "1.1.3" 240 | minimist "1.2.0" 241 | pkginfo "0.4.0" 242 | string-similarity "1.1.0" 243 | 244 | arr-diff@^2.0.0: 245 | version "2.0.0" 246 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 247 | dependencies: 248 | arr-flatten "^1.0.1" 249 | 250 | arr-flatten@^1.0.1: 251 | version "1.0.3" 252 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 253 | 254 | array-equal@^1.0.0: 255 | version "1.0.0" 256 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 257 | 258 | array-find-index@^1.0.1: 259 | version "1.0.2" 260 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 261 | 262 | array-union@^1.0.1: 263 | version "1.0.2" 264 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 265 | dependencies: 266 | array-uniq "^1.0.1" 267 | 268 | array-uniq@^1.0.1: 269 | version "1.0.3" 270 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 271 | 272 | array-unique@^0.2.1: 273 | version "0.2.1" 274 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 275 | 276 | arrify@^1.0.0, arrify@^1.0.1: 277 | version "1.0.1" 278 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 279 | 280 | asap@^2.0.0: 281 | version "2.0.5" 282 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 283 | 284 | asn1@~0.2.3: 285 | version "0.2.3" 286 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 287 | 288 | assert-plus@1.0.0, assert-plus@^1.0.0: 289 | version "1.0.0" 290 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 291 | 292 | assert-plus@^0.2.0: 293 | version "0.2.0" 294 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 295 | 296 | astral-regex@^1.0.0: 297 | version "1.0.0" 298 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 299 | 300 | async-to-gen@1.3.3: 301 | version "1.3.3" 302 | resolved "https://registry.yarnpkg.com/async-to-gen/-/async-to-gen-1.3.3.tgz#d52c9fb4801f0df44abc4d2de1870b48b60e20bb" 303 | dependencies: 304 | babylon "^6.14.0" 305 | magic-string "^0.19.0" 306 | 307 | async@2.1.4, async@^2.0.1, async@^2.1.4: 308 | version "2.1.4" 309 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.4.tgz#2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4" 310 | dependencies: 311 | lodash "^4.14.0" 312 | 313 | async@^1.4.0: 314 | version "1.5.2" 315 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 316 | 317 | asynckit@^0.4.0: 318 | version "0.4.0" 319 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 320 | 321 | aws-sign2@~0.6.0: 322 | version "0.6.0" 323 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 324 | 325 | aws4@^1.2.1: 326 | version "1.6.0" 327 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 328 | 329 | babel-code-frame@^6.22.0: 330 | version "6.22.0" 331 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 332 | dependencies: 333 | chalk "^1.1.0" 334 | esutils "^2.0.2" 335 | js-tokens "^3.0.0" 336 | 337 | babel-core@^6.0.0, babel-core@^6.24.1: 338 | version "6.24.1" 339 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 340 | dependencies: 341 | babel-code-frame "^6.22.0" 342 | babel-generator "^6.24.1" 343 | babel-helpers "^6.24.1" 344 | babel-messages "^6.23.0" 345 | babel-register "^6.24.1" 346 | babel-runtime "^6.22.0" 347 | babel-template "^6.24.1" 348 | babel-traverse "^6.24.1" 349 | babel-types "^6.24.1" 350 | babylon "^6.11.0" 351 | convert-source-map "^1.1.0" 352 | debug "^2.1.1" 353 | json5 "^0.5.0" 354 | lodash "^4.2.0" 355 | minimatch "^3.0.2" 356 | path-is-absolute "^1.0.0" 357 | private "^0.1.6" 358 | slash "^1.0.0" 359 | source-map "^0.5.0" 360 | 361 | babel-generator@^6.18.0, babel-generator@^6.24.1: 362 | version "6.24.1" 363 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 364 | dependencies: 365 | babel-messages "^6.23.0" 366 | babel-runtime "^6.22.0" 367 | babel-types "^6.24.1" 368 | detect-indent "^4.0.0" 369 | jsesc "^1.3.0" 370 | lodash "^4.2.0" 371 | source-map "^0.5.0" 372 | trim-right "^1.0.1" 373 | 374 | babel-helpers@^6.24.1: 375 | version "6.24.1" 376 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 377 | dependencies: 378 | babel-runtime "^6.22.0" 379 | babel-template "^6.24.1" 380 | 381 | babel-jest@^20.0.3: 382 | version "20.0.3" 383 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 384 | dependencies: 385 | babel-core "^6.0.0" 386 | babel-plugin-istanbul "^4.0.0" 387 | babel-preset-jest "^20.0.3" 388 | 389 | babel-jest@^21.2.0: 390 | version "21.2.0" 391 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-21.2.0.tgz#2ce059519a9374a2c46f2455b6fbef5ad75d863e" 392 | dependencies: 393 | babel-plugin-istanbul "^4.0.0" 394 | babel-preset-jest "^21.2.0" 395 | 396 | babel-messages@^6.23.0: 397 | version "6.23.0" 398 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 399 | dependencies: 400 | babel-runtime "^6.22.0" 401 | 402 | babel-plugin-istanbul@^4.0.0: 403 | version "4.1.3" 404 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.3.tgz#6ee6280410dcf59c7747518c3dfd98680958f102" 405 | dependencies: 406 | find-up "^2.1.0" 407 | istanbul-lib-instrument "^1.7.1" 408 | test-exclude "^4.1.0" 409 | 410 | babel-plugin-istanbul@^4.1.4: 411 | version "4.1.5" 412 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e" 413 | dependencies: 414 | find-up "^2.1.0" 415 | istanbul-lib-instrument "^1.7.5" 416 | test-exclude "^4.1.1" 417 | 418 | babel-plugin-jest-hoist@^20.0.3: 419 | version "20.0.3" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 421 | 422 | babel-plugin-jest-hoist@^21.2.0: 423 | version "21.2.0" 424 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.2.0.tgz#2cef637259bd4b628a6cace039de5fcd14dbb006" 425 | 426 | babel-plugin-syntax-object-rest-spread@^6.13.0: 427 | version "6.13.0" 428 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 429 | 430 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 431 | version "6.24.1" 432 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 433 | dependencies: 434 | babel-plugin-transform-strict-mode "^6.24.1" 435 | babel-runtime "^6.22.0" 436 | babel-template "^6.24.1" 437 | babel-types "^6.24.1" 438 | 439 | babel-plugin-transform-strict-mode@^6.24.1: 440 | version "6.24.1" 441 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 442 | dependencies: 443 | babel-runtime "^6.22.0" 444 | babel-types "^6.24.1" 445 | 446 | babel-polyfill@^6.16.0, babel-polyfill@^6.20.0: 447 | version "6.23.0" 448 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 449 | dependencies: 450 | babel-runtime "^6.22.0" 451 | core-js "^2.4.0" 452 | regenerator-runtime "^0.10.0" 453 | 454 | babel-preset-jest@^20.0.3: 455 | version "20.0.3" 456 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 457 | dependencies: 458 | babel-plugin-jest-hoist "^20.0.3" 459 | 460 | babel-preset-jest@^21.2.0: 461 | version "21.2.0" 462 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-21.2.0.tgz#ff9d2bce08abd98e8a36d9a8a5189b9173b85638" 463 | dependencies: 464 | babel-plugin-jest-hoist "^21.2.0" 465 | babel-plugin-syntax-object-rest-spread "^6.13.0" 466 | 467 | babel-register@^6.24.1: 468 | version "6.24.1" 469 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 470 | dependencies: 471 | babel-core "^6.24.1" 472 | babel-runtime "^6.22.0" 473 | core-js "^2.4.0" 474 | home-or-tmp "^2.0.0" 475 | lodash "^4.2.0" 476 | mkdirp "^0.5.1" 477 | source-map-support "^0.4.2" 478 | 479 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 480 | version "6.23.0" 481 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 482 | dependencies: 483 | core-js "^2.4.0" 484 | regenerator-runtime "^0.10.0" 485 | 486 | babel-template@^6.16.0, babel-template@^6.24.1: 487 | version "6.24.1" 488 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 489 | dependencies: 490 | babel-runtime "^6.22.0" 491 | babel-traverse "^6.24.1" 492 | babel-types "^6.24.1" 493 | babylon "^6.11.0" 494 | lodash "^4.2.0" 495 | 496 | babel-traverse@^6.18.0, babel-traverse@^6.24.1: 497 | version "6.24.1" 498 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 499 | dependencies: 500 | babel-code-frame "^6.22.0" 501 | babel-messages "^6.23.0" 502 | babel-runtime "^6.22.0" 503 | babel-types "^6.24.1" 504 | babylon "^6.15.0" 505 | debug "^2.2.0" 506 | globals "^9.0.0" 507 | invariant "^2.2.0" 508 | lodash "^4.2.0" 509 | 510 | babel-types@^6.18.0, babel-types@^6.24.1: 511 | version "6.24.1" 512 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 513 | dependencies: 514 | babel-runtime "^6.22.0" 515 | esutils "^2.0.2" 516 | lodash "^4.2.0" 517 | to-fast-properties "^1.0.1" 518 | 519 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.14.0, babylon@^6.15.0: 520 | version "6.17.1" 521 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.1.tgz#17f14fddf361b695981fe679385e4f1c01ebd86f" 522 | 523 | babylon@^6.18.0: 524 | version "6.18.0" 525 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 526 | 527 | balanced-match@^0.4.1: 528 | version "0.4.2" 529 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 530 | 531 | base64url@^2.0.0: 532 | version "2.0.0" 533 | resolved "https://registry.yarnpkg.com/base64url/-/base64url-2.0.0.tgz#eac16e03ea1438eff9423d69baa36262ed1f70bb" 534 | 535 | basic-auth@1.1.0: 536 | version "1.1.0" 537 | resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-1.1.0.tgz#45221ee429f7ee1e5035be3f51533f1cdfd29884" 538 | 539 | bcrypt-pbkdf@^1.0.0: 540 | version "1.0.1" 541 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 542 | dependencies: 543 | tweetnacl "^0.14.3" 544 | 545 | bl@~1.1.2: 546 | version "1.1.2" 547 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.1.2.tgz#fdca871a99713aa00d19e3bbba41c44787a65398" 548 | dependencies: 549 | readable-stream "~2.0.5" 550 | 551 | block-stream@*: 552 | version "0.0.9" 553 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 554 | dependencies: 555 | inherits "~2.0.0" 556 | 557 | bluebird@3.5.0, bluebird@^3.4.6, bluebird@^3.5.0: 558 | version "3.5.0" 559 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" 560 | 561 | boom@2.x.x: 562 | version "2.10.1" 563 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 564 | dependencies: 565 | hoek "2.x.x" 566 | 567 | boxen@1.1.0, boxen@^1.0.0: 568 | version "1.1.0" 569 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.1.0.tgz#b1b69dd522305e807a99deee777dbd6e5167b102" 570 | dependencies: 571 | ansi-align "^2.0.0" 572 | camelcase "^4.0.0" 573 | chalk "^1.1.1" 574 | cli-boxes "^1.0.0" 575 | string-width "^2.0.0" 576 | term-size "^0.1.0" 577 | widest-line "^1.0.0" 578 | 579 | brace-expansion@^1.1.7: 580 | version "1.1.7" 581 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 582 | dependencies: 583 | balanced-match "^0.4.1" 584 | concat-map "0.0.1" 585 | 586 | braces@^1.8.2: 587 | version "1.8.5" 588 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 589 | dependencies: 590 | expand-range "^1.8.1" 591 | preserve "^0.2.0" 592 | repeat-element "^1.1.2" 593 | 594 | browser-resolve@^1.11.2: 595 | version "1.11.2" 596 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 597 | dependencies: 598 | resolve "1.1.7" 599 | 600 | bser@1.0.2: 601 | version "1.0.2" 602 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 603 | dependencies: 604 | node-int64 "^0.4.0" 605 | 606 | bser@^2.0.0: 607 | version "2.0.0" 608 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 609 | dependencies: 610 | node-int64 "^0.4.0" 611 | 612 | buffer-shims@~1.0.0: 613 | version "1.0.0" 614 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 615 | 616 | builtin-modules@^1.0.0: 617 | version "1.1.1" 618 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 619 | 620 | bytes@2.3.0: 621 | version "2.3.0" 622 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.3.0.tgz#d5b680a165b6201739acb611542aabc2d8ceb070" 623 | 624 | bytes@2.4.0: 625 | version "2.4.0" 626 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339" 627 | 628 | cachedir@^1.1.0: 629 | version "1.1.1" 630 | resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-1.1.1.tgz#e1363075ea206a12767d92bb711c8a2f76a10f62" 631 | dependencies: 632 | os-homedir "^1.0.1" 633 | 634 | callsites@^2.0.0: 635 | version "2.0.0" 636 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 637 | 638 | camelcase-keys@^2.0.0: 639 | version "2.1.0" 640 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 641 | dependencies: 642 | camelcase "^2.0.0" 643 | map-obj "^1.0.0" 644 | 645 | camelcase@4.1.0, camelcase@^4.0.0, camelcase@^4.1.0: 646 | version "4.1.0" 647 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 648 | 649 | camelcase@^1.0.2: 650 | version "1.2.1" 651 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 652 | 653 | camelcase@^2.0.0: 654 | version "2.1.1" 655 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 656 | 657 | camelcase@^3.0.0: 658 | version "3.0.0" 659 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 660 | 661 | capture-stack-trace@^1.0.0: 662 | version "1.0.0" 663 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 664 | 665 | caseless@~0.11.0: 666 | version "0.11.0" 667 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 668 | 669 | caseless@~0.12.0: 670 | version "0.12.0" 671 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 672 | 673 | center-align@^0.1.1: 674 | version "0.1.3" 675 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 676 | dependencies: 677 | align-text "^0.1.3" 678 | lazy-cache "^1.0.3" 679 | 680 | chalk@1.1.3, chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 681 | version "1.1.3" 682 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 683 | dependencies: 684 | ansi-styles "^2.2.1" 685 | escape-string-regexp "^1.0.2" 686 | has-ansi "^2.0.0" 687 | strip-ansi "^3.0.0" 688 | supports-color "^2.0.0" 689 | 690 | chalk@^2.0.1: 691 | version "2.1.0" 692 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 693 | dependencies: 694 | ansi-styles "^3.1.0" 695 | escape-string-regexp "^1.0.5" 696 | supports-color "^4.0.0" 697 | 698 | ci-info@^1.0.0: 699 | version "1.0.0" 700 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 701 | 702 | cli-boxes@^1.0.0: 703 | version "1.0.0" 704 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 705 | 706 | cli-cursor@^1.0.1, cli-cursor@^1.0.2: 707 | version "1.0.2" 708 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 709 | dependencies: 710 | restore-cursor "^1.0.1" 711 | 712 | cli-spinners@^0.1.2: 713 | version "0.1.2" 714 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 715 | 716 | cli-truncate@^0.2.1: 717 | version "0.2.1" 718 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 719 | dependencies: 720 | slice-ansi "0.0.4" 721 | string-width "^1.0.1" 722 | 723 | cli-width@^2.0.0: 724 | version "2.1.0" 725 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 726 | 727 | clipboardy@1.1.1: 728 | version "1.1.1" 729 | resolved "https://registry.yarnpkg.com/clipboardy/-/clipboardy-1.1.1.tgz#75b5a7ac50d83c98025fb6303298c6a9007c16c7" 730 | dependencies: 731 | execa "^0.6.0" 732 | 733 | clipboardy@1.1.4: 734 | version "1.1.4" 735 | resolved "https://registry.yarnpkg.com/clipboardy/-/clipboardy-1.1.4.tgz#51b17574fc682588e2dd295cfa6e6aa109eab5ee" 736 | dependencies: 737 | execa "^0.6.0" 738 | 739 | cliui@^2.1.0: 740 | version "2.1.0" 741 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 742 | dependencies: 743 | center-align "^0.1.1" 744 | right-align "^0.1.1" 745 | wordwrap "0.0.2" 746 | 747 | cliui@^3.2.0: 748 | version "3.2.0" 749 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 750 | dependencies: 751 | string-width "^1.0.1" 752 | strip-ansi "^3.0.1" 753 | wrap-ansi "^2.0.0" 754 | 755 | co@^4.6.0: 756 | version "4.6.0" 757 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 758 | 759 | code-point-at@^1.0.0: 760 | version "1.1.0" 761 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 762 | 763 | color-convert@^1.0.0, color-convert@^1.9.0: 764 | version "1.9.0" 765 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 766 | dependencies: 767 | color-name "^1.1.1" 768 | 769 | color-name@^1.1.1: 770 | version "1.1.2" 771 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 772 | 773 | colors@^1.1.2: 774 | version "1.1.2" 775 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 776 | 777 | colors@~0.6.0-1: 778 | version "0.6.2" 779 | resolved "https://registry.yarnpkg.com/colors/-/colors-0.6.2.tgz#2423fe6678ac0c5dae8852e5d0e5be08c997abcc" 780 | 781 | combined-stream@^1.0.5, combined-stream@~1.0.5: 782 | version "1.0.5" 783 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 784 | dependencies: 785 | delayed-stream "~1.0.0" 786 | 787 | commander@2.9.0, commander@^2.9.0: 788 | version "2.9.0" 789 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 790 | dependencies: 791 | graceful-readlink ">= 1.0.0" 792 | 793 | commander@~2.1.0: 794 | version "2.1.0" 795 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.1.0.tgz#d121bbae860d9992a3d517ba96f56588e47c6781" 796 | 797 | commitizen@^2.9.6: 798 | version "2.9.6" 799 | resolved "https://registry.yarnpkg.com/commitizen/-/commitizen-2.9.6.tgz#c0d00535ef264da7f63737edfda4228983fa2291" 800 | dependencies: 801 | cachedir "^1.1.0" 802 | chalk "1.1.3" 803 | cz-conventional-changelog "1.2.0" 804 | dedent "0.6.0" 805 | detect-indent "4.0.0" 806 | find-node-modules "1.0.4" 807 | find-root "1.0.0" 808 | fs-extra "^1.0.0" 809 | glob "7.1.1" 810 | inquirer "1.2.3" 811 | lodash "4.17.2" 812 | minimist "1.2.0" 813 | path-exists "2.1.0" 814 | shelljs "0.7.6" 815 | strip-json-comments "2.0.1" 816 | 817 | common-tags@^1.4.0: 818 | version "1.4.0" 819 | resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.4.0.tgz#1187be4f3d4cf0c0427d43f74eef1f73501614c0" 820 | dependencies: 821 | babel-runtime "^6.18.0" 822 | 823 | compressible@~2.0.8: 824 | version "2.0.10" 825 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.10.tgz#feda1c7f7617912732b29bf8cf26252a20b9eecd" 826 | dependencies: 827 | mime-db ">= 1.27.0 < 2" 828 | 829 | compression@^1.6.2: 830 | version "1.6.2" 831 | resolved "https://registry.yarnpkg.com/compression/-/compression-1.6.2.tgz#cceb121ecc9d09c52d7ad0c3350ea93ddd402bc3" 832 | dependencies: 833 | accepts "~1.3.3" 834 | bytes "2.3.0" 835 | compressible "~2.0.8" 836 | debug "~2.2.0" 837 | on-headers "~1.0.1" 838 | vary "~1.1.0" 839 | 840 | concat-map@0.0.1: 841 | version "0.0.1" 842 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 843 | 844 | concat-stream@^1.4.7, concat-stream@^1.5.2: 845 | version "1.6.0" 846 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 847 | dependencies: 848 | inherits "^2.0.3" 849 | readable-stream "^2.2.2" 850 | typedarray "^0.0.6" 851 | 852 | config-chain@~1.1.8: 853 | version "1.1.11" 854 | resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.11.tgz#aba09747dfbe4c3e70e766a6e41586e1859fc6f2" 855 | dependencies: 856 | ini "^1.3.4" 857 | proto-list "~1.2.1" 858 | 859 | configstore@^3.0.0: 860 | version "3.1.0" 861 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.0.tgz#45df907073e26dfa1cf4b2d52f5b60545eaa11d1" 862 | dependencies: 863 | dot-prop "^4.1.0" 864 | graceful-fs "^4.1.2" 865 | make-dir "^1.0.0" 866 | unique-string "^1.0.0" 867 | write-file-atomic "^2.0.0" 868 | xdg-basedir "^3.0.0" 869 | 870 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 871 | version "1.1.0" 872 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 873 | 874 | content-type-parser@^1.0.1: 875 | version "1.0.1" 876 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 877 | 878 | conventional-changelog@0.0.17: 879 | version "0.0.17" 880 | resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-0.0.17.tgz#5e0216600f4686190f0c82efbb0b3dd11b49ce34" 881 | dependencies: 882 | dateformat "^1.0.11" 883 | event-stream "^3.3.0" 884 | github-url-from-git "^1.4.0" 885 | lodash "^3.6.0" 886 | normalize-package-data "^1.0.3" 887 | 888 | conventional-commit-types@^2.0.0: 889 | version "2.1.0" 890 | resolved "https://registry.yarnpkg.com/conventional-commit-types/-/conventional-commit-types-2.1.0.tgz#45d860386c9a2e6537ee91d8a1b61bd0411b3d04" 891 | 892 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 893 | version "1.5.0" 894 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 895 | 896 | core-js@^2.4.0: 897 | version "2.4.1" 898 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 899 | 900 | core-util-is@^1.0.1, core-util-is@~1.0.0: 901 | version "1.0.2" 902 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 903 | 904 | cosmiconfig@^1.1.0: 905 | version "1.1.0" 906 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-1.1.0.tgz#0dea0f9804efdfb929fbb1b188e25553ea053d37" 907 | dependencies: 908 | graceful-fs "^4.1.2" 909 | js-yaml "^3.4.3" 910 | minimist "^1.2.0" 911 | object-assign "^4.0.1" 912 | os-homedir "^1.0.1" 913 | parse-json "^2.2.0" 914 | pinkie-promise "^2.0.0" 915 | require-from-string "^1.1.0" 916 | 917 | create-error-class@^3.0.0: 918 | version "3.0.2" 919 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 920 | dependencies: 921 | capture-stack-trace "^1.0.0" 922 | 923 | cross-spawn-async@^2.1.1: 924 | version "2.2.5" 925 | resolved "https://registry.yarnpkg.com/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz#845ff0c0834a3ded9d160daca6d390906bb288cc" 926 | dependencies: 927 | lru-cache "^4.0.0" 928 | which "^1.2.8" 929 | 930 | cross-spawn@^4.0.0: 931 | version "4.0.2" 932 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 933 | dependencies: 934 | lru-cache "^4.0.1" 935 | which "^1.2.9" 936 | 937 | cross-spawn@^5.0.1: 938 | version "5.1.0" 939 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 940 | dependencies: 941 | lru-cache "^4.0.1" 942 | shebang-command "^1.2.0" 943 | which "^1.2.9" 944 | 945 | cryptiles@2.x.x: 946 | version "2.0.5" 947 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 948 | dependencies: 949 | boom "2.x.x" 950 | 951 | crypto-random-string@^1.0.0: 952 | version "1.0.0" 953 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 954 | 955 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 956 | version "0.3.2" 957 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 958 | 959 | "cssstyle@>= 0.2.37 < 0.3.0": 960 | version "0.2.37" 961 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 962 | dependencies: 963 | cssom "0.3.x" 964 | 965 | currently-unhandled@^0.4.1: 966 | version "0.4.1" 967 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 968 | dependencies: 969 | array-find-index "^1.0.1" 970 | 971 | cz-conventional-changelog@1.2.0: 972 | version "1.2.0" 973 | resolved "https://registry.yarnpkg.com/cz-conventional-changelog/-/cz-conventional-changelog-1.2.0.tgz#2bca04964c8919b23f3fd6a89ef5e6008b31b3f8" 974 | dependencies: 975 | conventional-commit-types "^2.0.0" 976 | lodash.map "^4.5.1" 977 | longest "^1.0.1" 978 | pad-right "^0.2.2" 979 | right-pad "^1.0.1" 980 | word-wrap "^1.0.3" 981 | 982 | cz-conventional-changelog@^2.0.0: 983 | version "2.0.0" 984 | resolved "https://registry.yarnpkg.com/cz-conventional-changelog/-/cz-conventional-changelog-2.0.0.tgz#55a979afdfe95e7024879d2a0f5924630170b533" 985 | dependencies: 986 | conventional-commit-types "^2.0.0" 987 | lodash.map "^4.5.1" 988 | longest "^1.0.1" 989 | pad-right "^0.2.2" 990 | right-pad "^1.0.1" 991 | word-wrap "^1.0.3" 992 | 993 | danger@^1.0.0: 994 | version "1.0.0" 995 | resolved "https://registry.yarnpkg.com/danger/-/danger-1.0.0.tgz#abad492dcf22f72407c3a96f00082835418040ef" 996 | dependencies: 997 | babel-polyfill "^6.20.0" 998 | chalk "^1.1.1" 999 | commander "^2.9.0" 1000 | debug "^2.6.0" 1001 | github "^9.2.0" 1002 | jest-config "^20.0.0" 1003 | jest-environment-node "^20.0.0" 1004 | jest-runtime "^20.0.0" 1005 | jsome "^2.3.25" 1006 | jsonpointer "^4.0.1" 1007 | lodash.find "^4.6.0" 1008 | lodash.includes "^4.3.0" 1009 | lodash.isobject "^2.4.1" 1010 | lodash.keys "^4.0.8" 1011 | node-fetch "^1.6.3" 1012 | parse-diff "^0.4.0" 1013 | rfc6902 "^1.3.0" 1014 | voca "^1.2.0" 1015 | optionalDependencies: 1016 | dtslint "^0.1.2" 1017 | 1018 | dargs@5.1.0: 1019 | version "5.1.0" 1020 | resolved "https://registry.yarnpkg.com/dargs/-/dargs-5.1.0.tgz#ec7ea50c78564cd36c9d5ec18f66329fade27829" 1021 | 1022 | dashdash@^1.12.0: 1023 | version "1.14.1" 1024 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1025 | dependencies: 1026 | assert-plus "^1.0.0" 1027 | 1028 | date-fns@^1.27.2: 1029 | version "1.28.5" 1030 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.28.5.tgz#257cfc45d322df45ef5658665967ee841cd73faf" 1031 | 1032 | dateformat@^1.0.11: 1033 | version "1.0.12" 1034 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" 1035 | dependencies: 1036 | get-stdin "^4.0.1" 1037 | meow "^3.3.0" 1038 | 1039 | debug@2, debug@^2.1.1, debug@^2.2.0, debug@^2.6.0, debug@^2.6.3: 1040 | version "2.6.8" 1041 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1042 | dependencies: 1043 | ms "2.0.0" 1044 | 1045 | debug@2.6.7: 1046 | version "2.6.7" 1047 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.7.tgz#92bad1f6d05bbb6bba22cca88bcd0ec894c2861e" 1048 | dependencies: 1049 | ms "2.0.0" 1050 | 1051 | debug@~2.2.0: 1052 | version "2.2.0" 1053 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1054 | dependencies: 1055 | ms "0.7.1" 1056 | 1057 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 1058 | version "1.2.0" 1059 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1060 | 1061 | dedent@0.6.0: 1062 | version "0.6.0" 1063 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.6.0.tgz#0e6da8f0ce52838ef5cec5c8f9396b0c1b64a3cb" 1064 | 1065 | deep-extend@~0.4.0: 1066 | version "0.4.2" 1067 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1068 | 1069 | deep-is@~0.1.3: 1070 | version "0.1.3" 1071 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1072 | 1073 | default-require-extensions@^1.0.0: 1074 | version "1.0.0" 1075 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1076 | dependencies: 1077 | strip-bom "^2.0.0" 1078 | 1079 | delayed-stream@~1.0.0: 1080 | version "1.0.0" 1081 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1082 | 1083 | delegates@^1.0.0: 1084 | version "1.0.0" 1085 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1086 | 1087 | depd@1.1.0, depd@~1.1.0: 1088 | version "1.1.0" 1089 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 1090 | 1091 | destroy@~1.0.4: 1092 | version "1.0.4" 1093 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1094 | 1095 | detect-file@^0.1.0: 1096 | version "0.1.0" 1097 | resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-0.1.0.tgz#4935dedfd9488648e006b0129566e9386711ea63" 1098 | dependencies: 1099 | fs-exists-sync "^0.1.0" 1100 | 1101 | detect-indent@4.0.0, detect-indent@^4.0.0: 1102 | version "4.0.0" 1103 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1104 | dependencies: 1105 | repeating "^2.0.0" 1106 | 1107 | detect-port@1.2.1: 1108 | version "1.2.1" 1109 | resolved "https://registry.yarnpkg.com/detect-port/-/detect-port-1.2.1.tgz#a2c0a048aa9df2b703fc54bb4436ce2118f09b5a" 1110 | dependencies: 1111 | address "^1.0.1" 1112 | debug "^2.6.0" 1113 | 1114 | dezalgo@^1.0.1: 1115 | version "1.0.3" 1116 | resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456" 1117 | dependencies: 1118 | asap "^2.0.0" 1119 | wrappy "1" 1120 | 1121 | diff@^3.2.0: 1122 | version "3.2.0" 1123 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1124 | 1125 | dot-prop@^4.1.0: 1126 | version "4.1.1" 1127 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.1.1.tgz#a8493f0b7b5eeec82525b5c7587fa7de7ca859c1" 1128 | dependencies: 1129 | is-obj "^1.0.0" 1130 | 1131 | dtslint@^0.1.2: 1132 | version "0.1.2" 1133 | resolved "https://registry.yarnpkg.com/dtslint/-/dtslint-0.1.2.tgz#574beb72633f452689605de1806da6281452ac2e" 1134 | dependencies: 1135 | fs-promise "^2.0.0" 1136 | parsimmon "^1.2.0" 1137 | strip-json-comments "^2.0.1" 1138 | tsutils "^1.1.0" 1139 | 1140 | duplexer3@^0.1.4: 1141 | version "0.1.4" 1142 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1143 | 1144 | duplexer@~0.1.1: 1145 | version "0.1.1" 1146 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 1147 | 1148 | ecc-jsbn@~0.1.1: 1149 | version "0.1.1" 1150 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1151 | dependencies: 1152 | jsbn "~0.1.0" 1153 | 1154 | ee-first@1.1.1: 1155 | version "1.1.1" 1156 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1157 | 1158 | elegant-spinner@^1.0.1: 1159 | version "1.0.1" 1160 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 1161 | 1162 | encodeurl@~1.0.1: 1163 | version "1.0.1" 1164 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 1165 | 1166 | encoding@^0.1.11: 1167 | version "0.1.12" 1168 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1169 | dependencies: 1170 | iconv-lite "~0.4.13" 1171 | 1172 | "errno@>=0.1.1 <0.2.0-0": 1173 | version "0.1.4" 1174 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1175 | dependencies: 1176 | prr "~0.0.0" 1177 | 1178 | error-ex@^1.2.0: 1179 | version "1.3.1" 1180 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1181 | dependencies: 1182 | is-arrayish "^0.2.1" 1183 | 1184 | escape-html@~1.0.3: 1185 | version "1.0.3" 1186 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1187 | 1188 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1189 | version "1.0.5" 1190 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1191 | 1192 | escodegen@^1.6.1: 1193 | version "1.8.1" 1194 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1195 | dependencies: 1196 | esprima "^2.7.1" 1197 | estraverse "^1.9.1" 1198 | esutils "^2.0.2" 1199 | optionator "^0.8.1" 1200 | optionalDependencies: 1201 | source-map "~0.2.0" 1202 | 1203 | esprima@^2.7.1: 1204 | version "2.7.3" 1205 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1206 | 1207 | esprima@^3.1.1: 1208 | version "3.1.3" 1209 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1210 | 1211 | estraverse@^1.9.1: 1212 | version "1.9.3" 1213 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1214 | 1215 | esutils@^2.0.2: 1216 | version "2.0.2" 1217 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1218 | 1219 | etag@~1.8.0: 1220 | version "1.8.0" 1221 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.0.tgz#6f631aef336d6c46362b51764044ce216be3c051" 1222 | 1223 | event-stream@^3.3.0: 1224 | version "3.3.4" 1225 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 1226 | dependencies: 1227 | duplexer "~0.1.1" 1228 | from "~0" 1229 | map-stream "~0.1.0" 1230 | pause-stream "0.0.11" 1231 | split "0.3" 1232 | stream-combiner "~0.0.4" 1233 | through "~2.3.1" 1234 | 1235 | exec-sh@^0.2.0: 1236 | version "0.2.0" 1237 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1238 | dependencies: 1239 | merge "^1.1.3" 1240 | 1241 | execa@^0.4.0: 1242 | version "0.4.0" 1243 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.4.0.tgz#4eb6467a36a095fabb2970ff9d5e3fb7bce6ebc3" 1244 | dependencies: 1245 | cross-spawn-async "^2.1.1" 1246 | is-stream "^1.1.0" 1247 | npm-run-path "^1.0.0" 1248 | object-assign "^4.0.1" 1249 | path-key "^1.0.0" 1250 | strip-eof "^1.0.0" 1251 | 1252 | execa@^0.5.0: 1253 | version "0.5.1" 1254 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.1.tgz#de3fb85cb8d6e91c85bcbceb164581785cb57b36" 1255 | dependencies: 1256 | cross-spawn "^4.0.0" 1257 | get-stream "^2.2.0" 1258 | is-stream "^1.1.0" 1259 | npm-run-path "^2.0.0" 1260 | p-finally "^1.0.0" 1261 | signal-exit "^3.0.0" 1262 | strip-eof "^1.0.0" 1263 | 1264 | execa@^0.6.0: 1265 | version "0.6.3" 1266 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.6.3.tgz#57b69a594f081759c69e5370f0d17b9cb11658fe" 1267 | dependencies: 1268 | cross-spawn "^5.0.1" 1269 | get-stream "^3.0.0" 1270 | is-stream "^1.1.0" 1271 | npm-run-path "^2.0.0" 1272 | p-finally "^1.0.0" 1273 | signal-exit "^3.0.0" 1274 | strip-eof "^1.0.0" 1275 | 1276 | execa@^0.7.0: 1277 | version "0.7.0" 1278 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1279 | dependencies: 1280 | cross-spawn "^5.0.1" 1281 | get-stream "^3.0.0" 1282 | is-stream "^1.1.0" 1283 | npm-run-path "^2.0.0" 1284 | p-finally "^1.0.0" 1285 | signal-exit "^3.0.0" 1286 | strip-eof "^1.0.0" 1287 | 1288 | exit-hook@^1.0.0: 1289 | version "1.1.1" 1290 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1291 | 1292 | expand-brackets@^0.1.4: 1293 | version "0.1.5" 1294 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1295 | dependencies: 1296 | is-posix-bracket "^0.1.0" 1297 | 1298 | expand-range@^1.8.1: 1299 | version "1.8.2" 1300 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1301 | dependencies: 1302 | fill-range "^2.1.0" 1303 | 1304 | expand-tilde@^1.2.2: 1305 | version "1.2.2" 1306 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449" 1307 | dependencies: 1308 | os-homedir "^1.0.1" 1309 | 1310 | expect@^21.2.1: 1311 | version "21.2.1" 1312 | resolved "https://registry.yarnpkg.com/expect/-/expect-21.2.1.tgz#003ac2ac7005c3c29e73b38a272d4afadd6d1d7b" 1313 | dependencies: 1314 | ansi-styles "^3.2.0" 1315 | jest-diff "^21.2.1" 1316 | jest-get-type "^21.2.0" 1317 | jest-matcher-utils "^21.2.1" 1318 | jest-message-util "^21.2.1" 1319 | jest-regex-util "^21.2.0" 1320 | 1321 | extend@3, extend@^3.0.0, extend@~3.0.0: 1322 | version "3.0.1" 1323 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1324 | 1325 | external-editor@^1.1.0: 1326 | version "1.1.1" 1327 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-1.1.1.tgz#12d7b0db850f7ff7e7081baf4005700060c4600b" 1328 | dependencies: 1329 | extend "^3.0.0" 1330 | spawn-sync "^1.0.15" 1331 | tmp "^0.0.29" 1332 | 1333 | extglob@^0.3.1: 1334 | version "0.3.2" 1335 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1336 | dependencies: 1337 | is-extglob "^1.0.0" 1338 | 1339 | extsprintf@1.0.2: 1340 | version "1.0.2" 1341 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1342 | 1343 | fast-levenshtein@~2.0.4: 1344 | version "2.0.6" 1345 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1346 | 1347 | fb-watchman@^1.8.0: 1348 | version "1.9.2" 1349 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1350 | dependencies: 1351 | bser "1.0.2" 1352 | 1353 | fb-watchman@^2.0.0: 1354 | version "2.0.0" 1355 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1356 | dependencies: 1357 | bser "^2.0.0" 1358 | 1359 | figures@^1.3.5, figures@^1.7.0: 1360 | version "1.7.0" 1361 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1362 | dependencies: 1363 | escape-string-regexp "^1.0.5" 1364 | object-assign "^4.1.0" 1365 | 1366 | filename-regex@^2.0.0: 1367 | version "2.0.1" 1368 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1369 | 1370 | fileset@^2.0.2: 1371 | version "2.0.3" 1372 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1373 | dependencies: 1374 | glob "^7.0.3" 1375 | minimatch "^3.0.3" 1376 | 1377 | filesize@3.5.10: 1378 | version "3.5.10" 1379 | resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.5.10.tgz#fc8fa23ddb4ef9e5e0ab6e1e64f679a24a56761f" 1380 | 1381 | fill-range@^2.1.0: 1382 | version "2.2.3" 1383 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1384 | dependencies: 1385 | is-number "^2.1.0" 1386 | isobject "^2.0.0" 1387 | randomatic "^1.1.3" 1388 | repeat-element "^1.1.2" 1389 | repeat-string "^1.5.2" 1390 | 1391 | find-node-modules@1.0.4: 1392 | version "1.0.4" 1393 | resolved "https://registry.yarnpkg.com/find-node-modules/-/find-node-modules-1.0.4.tgz#b6deb3cccb699c87037677bcede2c5f5862b2550" 1394 | dependencies: 1395 | findup-sync "0.4.2" 1396 | merge "^1.2.0" 1397 | 1398 | find-parent-dir@^0.3.0: 1399 | version "0.3.0" 1400 | resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" 1401 | 1402 | find-root@1.0.0: 1403 | version "1.0.0" 1404 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.0.0.tgz#962ff211aab25c6520feeeb8d6287f8f6e95807a" 1405 | 1406 | find-up@^1.0.0: 1407 | version "1.1.2" 1408 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1409 | dependencies: 1410 | path-exists "^2.0.0" 1411 | pinkie-promise "^2.0.0" 1412 | 1413 | find-up@^2.0.0, find-up@^2.1.0: 1414 | version "2.1.0" 1415 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1416 | dependencies: 1417 | locate-path "^2.0.0" 1418 | 1419 | findup-sync@0.4.2: 1420 | version "0.4.2" 1421 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.4.2.tgz#a8117d0f73124f5a4546839579fe52d7129fb5e5" 1422 | dependencies: 1423 | detect-file "^0.1.0" 1424 | is-glob "^2.0.1" 1425 | micromatch "^2.3.7" 1426 | resolve-dir "^0.1.0" 1427 | 1428 | findup@0.1.5: 1429 | version "0.1.5" 1430 | resolved "https://registry.yarnpkg.com/findup/-/findup-0.1.5.tgz#8ad929a3393bac627957a7e5de4623b06b0e2ceb" 1431 | dependencies: 1432 | colors "~0.6.0-1" 1433 | commander "~2.1.0" 1434 | 1435 | follow-redirects@0.0.7: 1436 | version "0.0.7" 1437 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-0.0.7.tgz#34b90bab2a911aa347571da90f22bd36ecd8a919" 1438 | dependencies: 1439 | debug "^2.2.0" 1440 | stream-consume "^0.1.0" 1441 | 1442 | for-in@^1.0.1: 1443 | version "1.0.2" 1444 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1445 | 1446 | for-own@^0.1.4: 1447 | version "0.1.5" 1448 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1449 | dependencies: 1450 | for-in "^1.0.1" 1451 | 1452 | foreachasync@^3.0.0: 1453 | version "3.0.0" 1454 | resolved "https://registry.yarnpkg.com/foreachasync/-/foreachasync-3.0.0.tgz#5502987dc8714be3392097f32e0071c9dee07cf6" 1455 | 1456 | forever-agent@~0.6.1: 1457 | version "0.6.1" 1458 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1459 | 1460 | form-data@~1.0.0-rc4: 1461 | version "1.0.1" 1462 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-1.0.1.tgz#ae315db9a4907fa065502304a66d7733475ee37c" 1463 | dependencies: 1464 | async "^2.0.1" 1465 | combined-stream "^1.0.5" 1466 | mime-types "^2.1.11" 1467 | 1468 | form-data@~2.1.1: 1469 | version "2.1.4" 1470 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1471 | dependencies: 1472 | asynckit "^0.4.0" 1473 | combined-stream "^1.0.5" 1474 | mime-types "^2.1.12" 1475 | 1476 | fresh@0.5.0: 1477 | version "0.5.0" 1478 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.0.tgz#f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e" 1479 | 1480 | from@~0: 1481 | version "0.1.7" 1482 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 1483 | 1484 | fs-exists-sync@^0.1.0: 1485 | version "0.1.0" 1486 | resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add" 1487 | 1488 | fs-extra@3.0.1, fs-extra@^3.0.0, fs-extra@^3.0.1: 1489 | version "3.0.1" 1490 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-3.0.1.tgz#3794f378c58b342ea7dbbb23095109c4b3b62291" 1491 | dependencies: 1492 | graceful-fs "^4.1.2" 1493 | jsonfile "^3.0.0" 1494 | universalify "^0.1.0" 1495 | 1496 | fs-extra@^1.0.0: 1497 | version "1.0.0" 1498 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" 1499 | dependencies: 1500 | graceful-fs "^4.1.2" 1501 | jsonfile "^2.1.0" 1502 | klaw "^1.0.0" 1503 | 1504 | fs-extra@^2.0.0: 1505 | version "2.1.2" 1506 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-2.1.2.tgz#046c70163cef9aad46b0e4a7fa467fb22d71de35" 1507 | dependencies: 1508 | graceful-fs "^4.1.2" 1509 | jsonfile "^2.1.0" 1510 | 1511 | fs-extra@^4.0.0: 1512 | version "4.0.2" 1513 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.2.tgz#f91704c53d1b461f893452b0c307d9997647ab6b" 1514 | dependencies: 1515 | graceful-fs "^4.1.2" 1516 | jsonfile "^4.0.0" 1517 | universalify "^0.1.0" 1518 | 1519 | fs-promise@^2.0.0: 1520 | version "2.0.3" 1521 | resolved "https://registry.yarnpkg.com/fs-promise/-/fs-promise-2.0.3.tgz#f64e4f854bcf689aa8bddcba268916db3db46854" 1522 | dependencies: 1523 | any-promise "^1.3.0" 1524 | fs-extra "^2.0.0" 1525 | mz "^2.6.0" 1526 | thenify-all "^1.6.0" 1527 | 1528 | fs.realpath@^1.0.0: 1529 | version "1.0.0" 1530 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1531 | 1532 | fsevents@^1.1.1: 1533 | version "1.1.2" 1534 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1535 | dependencies: 1536 | nan "^2.3.0" 1537 | node-pre-gyp "^0.6.36" 1538 | 1539 | fstream-ignore@^1.0.5: 1540 | version "1.0.5" 1541 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1542 | dependencies: 1543 | fstream "^1.0.0" 1544 | inherits "2" 1545 | minimatch "^3.0.0" 1546 | 1547 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1548 | version "1.0.11" 1549 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1550 | dependencies: 1551 | graceful-fs "^4.1.2" 1552 | inherits "~2.0.0" 1553 | mkdirp ">=0.5 0" 1554 | rimraf "2" 1555 | 1556 | gauge@~1.2.0: 1557 | version "1.2.7" 1558 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-1.2.7.tgz#e9cec5483d3d4ee0ef44b60a7d99e4935e136d93" 1559 | dependencies: 1560 | ansi "^0.3.0" 1561 | has-unicode "^2.0.0" 1562 | lodash.pad "^4.1.0" 1563 | lodash.padend "^4.1.0" 1564 | lodash.padstart "^4.1.0" 1565 | 1566 | gauge@~2.7.3: 1567 | version "2.7.4" 1568 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1569 | dependencies: 1570 | aproba "^1.0.3" 1571 | console-control-strings "^1.0.0" 1572 | has-unicode "^2.0.0" 1573 | object-assign "^4.1.0" 1574 | signal-exit "^3.0.0" 1575 | string-width "^1.0.1" 1576 | strip-ansi "^3.0.1" 1577 | wide-align "^1.1.0" 1578 | 1579 | generate-function@^2.0.0: 1580 | version "2.0.0" 1581 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1582 | 1583 | generate-object-property@^1.1.0: 1584 | version "1.2.0" 1585 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1586 | dependencies: 1587 | is-property "^1.0.0" 1588 | 1589 | get-caller-file@^1.0.1: 1590 | version "1.0.2" 1591 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1592 | 1593 | get-port@3.1.0: 1594 | version "3.1.0" 1595 | resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.1.0.tgz#ef01b18a84ca6486970ff99e54446141a73ffd3e" 1596 | 1597 | get-stdin@^4.0.1: 1598 | version "4.0.1" 1599 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1600 | 1601 | get-stream@^2.2.0: 1602 | version "2.3.1" 1603 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" 1604 | dependencies: 1605 | object-assign "^4.0.1" 1606 | pinkie-promise "^2.0.0" 1607 | 1608 | get-stream@^3.0.0: 1609 | version "3.0.0" 1610 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1611 | 1612 | getpass@^0.1.1: 1613 | version "0.1.7" 1614 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1615 | dependencies: 1616 | assert-plus "^1.0.0" 1617 | 1618 | gh-pages@^1.0.0: 1619 | version "1.0.0" 1620 | resolved "https://registry.yarnpkg.com/gh-pages/-/gh-pages-1.0.0.tgz#4a46f4c25439f7a2b7e6835504d4a49e949f04ca" 1621 | dependencies: 1622 | async "2.1.4" 1623 | base64url "^2.0.0" 1624 | commander "2.9.0" 1625 | fs-extra "^3.0.1" 1626 | globby "^6.1.0" 1627 | graceful-fs "4.1.11" 1628 | rimraf "^2.5.4" 1629 | 1630 | git-head@^1.2.1: 1631 | version "1.20.1" 1632 | resolved "https://registry.yarnpkg.com/git-head/-/git-head-1.20.1.tgz#036d16a4b374949e4e3daf15827903686d3ccd52" 1633 | dependencies: 1634 | git-refs "^1.1.3" 1635 | 1636 | git-refs@^1.1.3: 1637 | version "1.1.3" 1638 | resolved "https://registry.yarnpkg.com/git-refs/-/git-refs-1.1.3.tgz#83097cb3a92585c4a4926ec54e2182df9e20e89d" 1639 | dependencies: 1640 | path-object "^2.3.0" 1641 | slash "^1.0.0" 1642 | walk "^2.3.9" 1643 | 1644 | github-url-from-git@^1.3.0, github-url-from-git@^1.4.0: 1645 | version "1.5.0" 1646 | resolved "https://registry.yarnpkg.com/github-url-from-git/-/github-url-from-git-1.5.0.tgz#f985fedcc0a9aa579dc88d7aff068d55cc6251a0" 1647 | 1648 | github-url-from-username-repo@^1.0.0: 1649 | version "1.0.2" 1650 | resolved "https://registry.yarnpkg.com/github-url-from-username-repo/-/github-url-from-username-repo-1.0.2.tgz#7dd79330d2abe69c10c2cef79714c97215791dfa" 1651 | 1652 | github@^8.0.0: 1653 | version "8.2.1" 1654 | resolved "https://registry.yarnpkg.com/github/-/github-8.2.1.tgz#616b2211fbcd1cc8631669aed67653e62eb53816" 1655 | dependencies: 1656 | follow-redirects "0.0.7" 1657 | https-proxy-agent "^1.0.0" 1658 | mime "^1.2.11" 1659 | netrc "^0.1.4" 1660 | 1661 | github@^9.2.0: 1662 | version "9.2.0" 1663 | resolved "https://registry.yarnpkg.com/github/-/github-9.2.0.tgz#8a886dc40dd63636707dcaf99df3df26c59f16fc" 1664 | dependencies: 1665 | follow-redirects "0.0.7" 1666 | https-proxy-agent "^1.0.0" 1667 | mime "^1.2.11" 1668 | netrc "^0.1.4" 1669 | 1670 | github@~0.1.10: 1671 | version "0.1.16" 1672 | resolved "https://registry.yarnpkg.com/github/-/github-0.1.16.tgz#895d2a85b0feb7980d89ac0ce4f44dcaa03f17b5" 1673 | 1674 | glob-base@^0.3.0: 1675 | version "0.3.0" 1676 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1677 | dependencies: 1678 | glob-parent "^2.0.0" 1679 | is-glob "^2.0.0" 1680 | 1681 | glob-parent@^2.0.0: 1682 | version "2.0.0" 1683 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1684 | dependencies: 1685 | is-glob "^2.0.0" 1686 | 1687 | glob@7.1.1, glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: 1688 | version "7.1.1" 1689 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1690 | dependencies: 1691 | fs.realpath "^1.0.0" 1692 | inflight "^1.0.4" 1693 | inherits "2" 1694 | minimatch "^3.0.2" 1695 | once "^1.3.0" 1696 | path-is-absolute "^1.0.0" 1697 | 1698 | glob@^7.1.2: 1699 | version "7.1.2" 1700 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1701 | dependencies: 1702 | fs.realpath "^1.0.0" 1703 | inflight "^1.0.4" 1704 | inherits "2" 1705 | minimatch "^3.0.4" 1706 | once "^1.3.0" 1707 | path-is-absolute "^1.0.0" 1708 | 1709 | global-modules@^0.2.3: 1710 | version "0.2.3" 1711 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d" 1712 | dependencies: 1713 | global-prefix "^0.1.4" 1714 | is-windows "^0.2.0" 1715 | 1716 | global-prefix@^0.1.4: 1717 | version "0.1.5" 1718 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.5.tgz#8d3bc6b8da3ca8112a160d8d496ff0462bfef78f" 1719 | dependencies: 1720 | homedir-polyfill "^1.0.0" 1721 | ini "^1.3.4" 1722 | is-windows "^0.2.0" 1723 | which "^1.2.12" 1724 | 1725 | globals@^9.0.0: 1726 | version "9.17.0" 1727 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1728 | 1729 | globby@^6.1.0: 1730 | version "6.1.0" 1731 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 1732 | dependencies: 1733 | array-union "^1.0.1" 1734 | glob "^7.0.3" 1735 | object-assign "^4.0.1" 1736 | pify "^2.0.0" 1737 | pinkie-promise "^2.0.0" 1738 | 1739 | got@^6.7.1: 1740 | version "6.7.1" 1741 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1742 | dependencies: 1743 | create-error-class "^3.0.0" 1744 | duplexer3 "^0.1.4" 1745 | get-stream "^3.0.0" 1746 | is-redirect "^1.0.0" 1747 | is-retry-allowed "^1.0.0" 1748 | is-stream "^1.0.0" 1749 | lowercase-keys "^1.0.0" 1750 | safe-buffer "^5.0.1" 1751 | timed-out "^4.0.0" 1752 | unzip-response "^2.0.1" 1753 | url-parse-lax "^1.0.0" 1754 | 1755 | graceful-fs@4.1.11, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 1756 | version "4.1.11" 1757 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1758 | 1759 | "graceful-readlink@>= 1.0.0": 1760 | version "1.0.1" 1761 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1762 | 1763 | growly@^1.3.0: 1764 | version "1.3.0" 1765 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1766 | 1767 | handlebars@4.0.10, handlebars@^4.0.3: 1768 | version "4.0.10" 1769 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1770 | dependencies: 1771 | async "^1.4.0" 1772 | optimist "^0.6.1" 1773 | source-map "^0.4.4" 1774 | optionalDependencies: 1775 | uglify-js "^2.6" 1776 | 1777 | handlebars@^4.0.6: 1778 | version "4.0.8" 1779 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.8.tgz#22b875cd3f0e6cbea30314f144e82bc7a72ff420" 1780 | dependencies: 1781 | async "^1.4.0" 1782 | optimist "^0.6.1" 1783 | source-map "^0.4.4" 1784 | optionalDependencies: 1785 | uglify-js "^2.6" 1786 | 1787 | har-schema@^1.0.5: 1788 | version "1.0.5" 1789 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1790 | 1791 | har-validator@~2.0.6: 1792 | version "2.0.6" 1793 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1794 | dependencies: 1795 | chalk "^1.1.1" 1796 | commander "^2.9.0" 1797 | is-my-json-valid "^2.12.4" 1798 | pinkie-promise "^2.0.0" 1799 | 1800 | har-validator@~4.2.1: 1801 | version "4.2.1" 1802 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1803 | dependencies: 1804 | ajv "^4.9.1" 1805 | har-schema "^1.0.5" 1806 | 1807 | has-ansi@^2.0.0: 1808 | version "2.0.0" 1809 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1810 | dependencies: 1811 | ansi-regex "^2.0.0" 1812 | 1813 | has-flag@^1.0.0: 1814 | version "1.0.0" 1815 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1816 | 1817 | has-flag@^2.0.0: 1818 | version "2.0.0" 1819 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1820 | 1821 | has-unicode@^2.0.0: 1822 | version "2.0.1" 1823 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1824 | 1825 | hawk@3.1.3, hawk@~3.1.3: 1826 | version "3.1.3" 1827 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1828 | dependencies: 1829 | boom "2.x.x" 1830 | cryptiles "2.x.x" 1831 | hoek "2.x.x" 1832 | sntp "1.x.x" 1833 | 1834 | highlight.js@^9.0.0: 1835 | version "9.11.0" 1836 | resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.11.0.tgz#47f98c7399918700db2caf230ded12cec41a84ae" 1837 | 1838 | hoek@2.x.x: 1839 | version "2.16.3" 1840 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1841 | 1842 | home-or-tmp@^2.0.0: 1843 | version "2.0.0" 1844 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1845 | dependencies: 1846 | os-homedir "^1.0.0" 1847 | os-tmpdir "^1.0.1" 1848 | 1849 | homedir-polyfill@^1.0.0: 1850 | version "1.0.1" 1851 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" 1852 | dependencies: 1853 | parse-passwd "^1.0.0" 1854 | 1855 | hosted-git-info@^2.1.4, hosted-git-info@^2.1.5: 1856 | version "2.4.2" 1857 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1858 | 1859 | html-encoding-sniffer@^1.0.1: 1860 | version "1.0.1" 1861 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1862 | dependencies: 1863 | whatwg-encoding "^1.0.1" 1864 | 1865 | http-errors@~1.6.1: 1866 | version "1.6.1" 1867 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.1.tgz#5f8b8ed98aca545656bf572997387f904a722257" 1868 | dependencies: 1869 | depd "1.1.0" 1870 | inherits "2.0.3" 1871 | setprototypeof "1.0.3" 1872 | statuses ">= 1.3.1 < 2" 1873 | 1874 | http-signature@~1.1.0: 1875 | version "1.1.1" 1876 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1877 | dependencies: 1878 | assert-plus "^0.2.0" 1879 | jsprim "^1.2.2" 1880 | sshpk "^1.7.0" 1881 | 1882 | https-proxy-agent@^1.0.0: 1883 | version "1.0.0" 1884 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz#35f7da6c48ce4ddbfa264891ac593ee5ff8671e6" 1885 | dependencies: 1886 | agent-base "2" 1887 | debug "2" 1888 | extend "3" 1889 | 1890 | husky@^0.14.1: 1891 | version "0.14.1" 1892 | resolved "https://registry.yarnpkg.com/husky/-/husky-0.14.1.tgz#8edba33e728ceed75343e88bb8002e4cbd8d1b40" 1893 | dependencies: 1894 | is-ci "^1.0.10" 1895 | normalize-path "^1.0.0" 1896 | strip-indent "^2.0.0" 1897 | 1898 | iconv-lite@0.4.13: 1899 | version "0.4.13" 1900 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1901 | 1902 | iconv-lite@0.4.15, iconv-lite@~0.4.13: 1903 | version "0.4.15" 1904 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 1905 | 1906 | import-lazy@^2.1.0: 1907 | version "2.1.0" 1908 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 1909 | 1910 | imurmurhash@^0.1.4: 1911 | version "0.1.4" 1912 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1913 | 1914 | indent-string@^2.1.0: 1915 | version "2.1.0" 1916 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1917 | dependencies: 1918 | repeating "^2.0.0" 1919 | 1920 | indent-string@^3.0.0: 1921 | version "3.1.0" 1922 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.1.0.tgz#08ff4334603388399b329e6b9538dc7a3cf5de7d" 1923 | 1924 | inflight@^1.0.4: 1925 | version "1.0.6" 1926 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1927 | dependencies: 1928 | once "^1.3.0" 1929 | wrappy "1" 1930 | 1931 | inherits@2, inherits@2.0.3, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1932 | version "2.0.3" 1933 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1934 | 1935 | ini@^1.2.0, ini@^1.3.4, ini@~1.3.0: 1936 | version "1.3.4" 1937 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1938 | 1939 | inquirer@1.2.3: 1940 | version "1.2.3" 1941 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-1.2.3.tgz#4dec6f32f37ef7bb0b2ed3f1d1a5c3f545074918" 1942 | dependencies: 1943 | ansi-escapes "^1.1.0" 1944 | chalk "^1.0.0" 1945 | cli-cursor "^1.0.1" 1946 | cli-width "^2.0.0" 1947 | external-editor "^1.1.0" 1948 | figures "^1.3.5" 1949 | lodash "^4.3.0" 1950 | mute-stream "0.0.6" 1951 | pinkie-promise "^2.0.0" 1952 | run-async "^2.2.0" 1953 | rx "^4.1.0" 1954 | string-width "^1.0.1" 1955 | strip-ansi "^3.0.0" 1956 | through "^2.3.6" 1957 | 1958 | interpret@^1.0.0: 1959 | version "1.0.3" 1960 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 1961 | 1962 | invariant@^2.2.0: 1963 | version "2.2.2" 1964 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1965 | dependencies: 1966 | loose-envify "^1.0.0" 1967 | 1968 | invert-kv@^1.0.0: 1969 | version "1.0.0" 1970 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1971 | 1972 | ip@1.1.5: 1973 | version "1.1.5" 1974 | resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" 1975 | 1976 | is-arrayish@^0.2.1: 1977 | version "0.2.1" 1978 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1979 | 1980 | is-async-supported@1.2.0: 1981 | version "1.2.0" 1982 | resolved "https://registry.yarnpkg.com/is-async-supported/-/is-async-supported-1.2.0.tgz#20d58ac4d6707eb1cb3712dd38480c0536f27c07" 1983 | 1984 | is-buffer@^1.1.5: 1985 | version "1.1.5" 1986 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1987 | 1988 | is-builtin-module@^1.0.0: 1989 | version "1.0.0" 1990 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1991 | dependencies: 1992 | builtin-modules "^1.0.0" 1993 | 1994 | is-ci@^1.0.10: 1995 | version "1.0.10" 1996 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1997 | dependencies: 1998 | ci-info "^1.0.0" 1999 | 2000 | is-dotfile@^1.0.0: 2001 | version "1.0.2" 2002 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 2003 | 2004 | is-equal-shallow@^0.1.3: 2005 | version "0.1.3" 2006 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2007 | dependencies: 2008 | is-primitive "^2.0.0" 2009 | 2010 | is-extendable@^0.1.1: 2011 | version "0.1.1" 2012 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2013 | 2014 | is-extglob@^1.0.0: 2015 | version "1.0.0" 2016 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2017 | 2018 | is-finite@^1.0.0: 2019 | version "1.0.2" 2020 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2021 | dependencies: 2022 | number-is-nan "^1.0.0" 2023 | 2024 | is-fullwidth-code-point@^1.0.0: 2025 | version "1.0.0" 2026 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2027 | dependencies: 2028 | number-is-nan "^1.0.0" 2029 | 2030 | is-fullwidth-code-point@^2.0.0: 2031 | version "2.0.0" 2032 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2033 | 2034 | is-glob@^2.0.0, is-glob@^2.0.1: 2035 | version "2.0.1" 2036 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2037 | dependencies: 2038 | is-extglob "^1.0.0" 2039 | 2040 | is-my-json-valid@^2.12.4: 2041 | version "2.16.0" 2042 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 2043 | dependencies: 2044 | generate-function "^2.0.0" 2045 | generate-object-property "^1.1.0" 2046 | jsonpointer "^4.0.0" 2047 | xtend "^4.0.0" 2048 | 2049 | is-npm@^1.0.0: 2050 | version "1.0.0" 2051 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 2052 | 2053 | is-number@^2.0.2, is-number@^2.1.0: 2054 | version "2.1.0" 2055 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2056 | dependencies: 2057 | kind-of "^3.0.2" 2058 | 2059 | is-obj@^1.0.0: 2060 | version "1.0.1" 2061 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 2062 | 2063 | is-posix-bracket@^0.1.0: 2064 | version "0.1.1" 2065 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2066 | 2067 | is-primitive@^2.0.0: 2068 | version "2.0.0" 2069 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2070 | 2071 | is-promise@^2.1.0: 2072 | version "2.1.0" 2073 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2074 | 2075 | is-property@^1.0.0: 2076 | version "1.0.2" 2077 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2078 | 2079 | is-redirect@^1.0.0: 2080 | version "1.0.0" 2081 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 2082 | 2083 | is-retry-allowed@^1.0.0: 2084 | version "1.1.0" 2085 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 2086 | 2087 | is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0: 2088 | version "1.1.0" 2089 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2090 | 2091 | is-typedarray@~1.0.0: 2092 | version "1.0.0" 2093 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2094 | 2095 | is-utf8@^0.2.0: 2096 | version "0.2.1" 2097 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2098 | 2099 | is-windows@^0.2.0: 2100 | version "0.2.0" 2101 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" 2102 | 2103 | is-wsl@^1.1.0: 2104 | version "1.1.0" 2105 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" 2106 | 2107 | isarray@1.0.0, isarray@~1.0.0: 2108 | version "1.0.0" 2109 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2110 | 2111 | isexe@^2.0.0: 2112 | version "2.0.0" 2113 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2114 | 2115 | isobject@^2.0.0: 2116 | version "2.1.0" 2117 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2118 | dependencies: 2119 | isarray "1.0.0" 2120 | 2121 | isstream@0.1.2, isstream@~0.1.2: 2122 | version "0.1.2" 2123 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2124 | 2125 | istanbul-api@^1.1.1: 2126 | version "1.1.8" 2127 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.8.tgz#a844e55c6f9aeee292e7f42942196f60b23dc93e" 2128 | dependencies: 2129 | async "^2.1.4" 2130 | fileset "^2.0.2" 2131 | istanbul-lib-coverage "^1.1.0" 2132 | istanbul-lib-hook "^1.0.6" 2133 | istanbul-lib-instrument "^1.7.1" 2134 | istanbul-lib-report "^1.1.0" 2135 | istanbul-lib-source-maps "^1.2.0" 2136 | istanbul-reports "^1.1.0" 2137 | js-yaml "^3.7.0" 2138 | mkdirp "^0.5.1" 2139 | once "^1.4.0" 2140 | 2141 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.0: 2142 | version "1.1.0" 2143 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.0.tgz#caca19decaef3525b5d6331d701f3f3b7ad48528" 2144 | 2145 | istanbul-lib-coverage@^1.1.1: 2146 | version "1.1.1" 2147 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 2148 | 2149 | istanbul-lib-hook@^1.0.6: 2150 | version "1.0.6" 2151 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.6.tgz#c0866d1e81cf2d5319249510131fc16dee49231f" 2152 | dependencies: 2153 | append-transform "^0.4.0" 2154 | 2155 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.1: 2156 | version "1.7.1" 2157 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.1.tgz#169e31bc62c778851a99439dd99c3cc12184d360" 2158 | dependencies: 2159 | babel-generator "^6.18.0" 2160 | babel-template "^6.16.0" 2161 | babel-traverse "^6.18.0" 2162 | babel-types "^6.18.0" 2163 | babylon "^6.13.0" 2164 | istanbul-lib-coverage "^1.1.0" 2165 | semver "^5.3.0" 2166 | 2167 | istanbul-lib-instrument@^1.7.5: 2168 | version "1.8.0" 2169 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.8.0.tgz#66f6c9421cc9ec4704f76f2db084ba9078a2b532" 2170 | dependencies: 2171 | babel-generator "^6.18.0" 2172 | babel-template "^6.16.0" 2173 | babel-traverse "^6.18.0" 2174 | babel-types "^6.18.0" 2175 | babylon "^6.18.0" 2176 | istanbul-lib-coverage "^1.1.1" 2177 | semver "^5.3.0" 2178 | 2179 | istanbul-lib-report@^1.1.0: 2180 | version "1.1.0" 2181 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.0.tgz#444c4ecca9afa93cf584f56b10f195bf768c0770" 2182 | dependencies: 2183 | istanbul-lib-coverage "^1.1.0" 2184 | mkdirp "^0.5.1" 2185 | path-parse "^1.0.5" 2186 | supports-color "^3.1.2" 2187 | 2188 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.0: 2189 | version "1.2.0" 2190 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.0.tgz#8c7706d497e26feeb6af3e0c28fd5b0669598d0e" 2191 | dependencies: 2192 | debug "^2.6.3" 2193 | istanbul-lib-coverage "^1.1.0" 2194 | mkdirp "^0.5.1" 2195 | rimraf "^2.6.1" 2196 | source-map "^0.5.3" 2197 | 2198 | istanbul-reports@^1.1.0: 2199 | version "1.1.0" 2200 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.0.tgz#1ef3b795889219cfb5fad16365f6ce108d5f8c66" 2201 | dependencies: 2202 | handlebars "^4.0.3" 2203 | 2204 | jest-changed-files@^21.2.0: 2205 | version "21.2.0" 2206 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-21.2.0.tgz#5dbeecad42f5d88b482334902ce1cba6d9798d29" 2207 | dependencies: 2208 | throat "^4.0.0" 2209 | 2210 | jest-cli@^21.2.1: 2211 | version "21.2.1" 2212 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-21.2.1.tgz#9c528b6629d651911138d228bdb033c157ec8c00" 2213 | dependencies: 2214 | ansi-escapes "^3.0.0" 2215 | chalk "^2.0.1" 2216 | glob "^7.1.2" 2217 | graceful-fs "^4.1.11" 2218 | is-ci "^1.0.10" 2219 | istanbul-api "^1.1.1" 2220 | istanbul-lib-coverage "^1.0.1" 2221 | istanbul-lib-instrument "^1.4.2" 2222 | istanbul-lib-source-maps "^1.1.0" 2223 | jest-changed-files "^21.2.0" 2224 | jest-config "^21.2.1" 2225 | jest-environment-jsdom "^21.2.1" 2226 | jest-haste-map "^21.2.0" 2227 | jest-message-util "^21.2.1" 2228 | jest-regex-util "^21.2.0" 2229 | jest-resolve-dependencies "^21.2.0" 2230 | jest-runner "^21.2.1" 2231 | jest-runtime "^21.2.1" 2232 | jest-snapshot "^21.2.1" 2233 | jest-util "^21.2.1" 2234 | micromatch "^2.3.11" 2235 | node-notifier "^5.0.2" 2236 | pify "^3.0.0" 2237 | slash "^1.0.0" 2238 | string-length "^2.0.0" 2239 | strip-ansi "^4.0.0" 2240 | which "^1.2.12" 2241 | worker-farm "^1.3.1" 2242 | yargs "^9.0.0" 2243 | 2244 | jest-config@^20.0.0, jest-config@^20.0.3: 2245 | version "20.0.3" 2246 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.3.tgz#a934f27eea764915801cdda26f6f8eec2ac79266" 2247 | dependencies: 2248 | chalk "^1.1.3" 2249 | glob "^7.1.1" 2250 | jest-environment-jsdom "^20.0.3" 2251 | jest-environment-node "^20.0.3" 2252 | jest-jasmine2 "^20.0.3" 2253 | jest-matcher-utils "^20.0.3" 2254 | jest-regex-util "^20.0.3" 2255 | jest-resolve "^20.0.3" 2256 | jest-validate "^20.0.3" 2257 | pretty-format "^20.0.3" 2258 | 2259 | jest-config@^21.2.1: 2260 | version "21.2.1" 2261 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-21.2.1.tgz#c7586c79ead0bcc1f38c401e55f964f13bf2a480" 2262 | dependencies: 2263 | chalk "^2.0.1" 2264 | glob "^7.1.1" 2265 | jest-environment-jsdom "^21.2.1" 2266 | jest-environment-node "^21.2.1" 2267 | jest-get-type "^21.2.0" 2268 | jest-jasmine2 "^21.2.1" 2269 | jest-regex-util "^21.2.0" 2270 | jest-resolve "^21.2.0" 2271 | jest-util "^21.2.1" 2272 | jest-validate "^21.2.1" 2273 | pretty-format "^21.2.1" 2274 | 2275 | jest-diff@^20.0.3: 2276 | version "20.0.3" 2277 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 2278 | dependencies: 2279 | chalk "^1.1.3" 2280 | diff "^3.2.0" 2281 | jest-matcher-utils "^20.0.3" 2282 | pretty-format "^20.0.3" 2283 | 2284 | jest-diff@^21.2.1: 2285 | version "21.2.1" 2286 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-21.2.1.tgz#46cccb6cab2d02ce98bc314011764bb95b065b4f" 2287 | dependencies: 2288 | chalk "^2.0.1" 2289 | diff "^3.2.0" 2290 | jest-get-type "^21.2.0" 2291 | pretty-format "^21.2.1" 2292 | 2293 | jest-docblock@^20.0.3: 2294 | version "20.0.3" 2295 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 2296 | 2297 | jest-docblock@^21.2.0: 2298 | version "21.2.0" 2299 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" 2300 | 2301 | jest-environment-jsdom@^20.0.3: 2302 | version "20.0.3" 2303 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 2304 | dependencies: 2305 | jest-mock "^20.0.3" 2306 | jest-util "^20.0.3" 2307 | jsdom "^9.12.0" 2308 | 2309 | jest-environment-jsdom@^21.2.1: 2310 | version "21.2.1" 2311 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-21.2.1.tgz#38d9980c8259b2a608ec232deee6289a60d9d5b4" 2312 | dependencies: 2313 | jest-mock "^21.2.0" 2314 | jest-util "^21.2.1" 2315 | jsdom "^9.12.0" 2316 | 2317 | jest-environment-node@^20.0.0, jest-environment-node@^20.0.3: 2318 | version "20.0.3" 2319 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 2320 | dependencies: 2321 | jest-mock "^20.0.3" 2322 | jest-util "^20.0.3" 2323 | 2324 | jest-environment-node@^21.2.1: 2325 | version "21.2.1" 2326 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-21.2.1.tgz#98c67df5663c7fbe20f6e792ac2272c740d3b8c8" 2327 | dependencies: 2328 | jest-mock "^21.2.0" 2329 | jest-util "^21.2.1" 2330 | 2331 | jest-get-type@^21.2.0: 2332 | version "21.2.0" 2333 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23" 2334 | 2335 | jest-haste-map@^20.0.3: 2336 | version "20.0.3" 2337 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.3.tgz#6377d537eaf34eb5f75121a691cae3fde82ba971" 2338 | dependencies: 2339 | fb-watchman "^2.0.0" 2340 | graceful-fs "^4.1.11" 2341 | jest-docblock "^20.0.3" 2342 | micromatch "^2.3.11" 2343 | sane "~1.6.0" 2344 | worker-farm "^1.3.1" 2345 | 2346 | jest-haste-map@^21.2.0: 2347 | version "21.2.0" 2348 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-21.2.0.tgz#1363f0a8bb4338f24f001806571eff7a4b2ff3d8" 2349 | dependencies: 2350 | fb-watchman "^2.0.0" 2351 | graceful-fs "^4.1.11" 2352 | jest-docblock "^21.2.0" 2353 | micromatch "^2.3.11" 2354 | sane "^2.0.0" 2355 | worker-farm "^1.3.1" 2356 | 2357 | jest-jasmine2@^20.0.3: 2358 | version "20.0.3" 2359 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.3.tgz#18c4e9d029da7ed1ae727c55300064d1a0542974" 2360 | dependencies: 2361 | chalk "^1.1.3" 2362 | graceful-fs "^4.1.11" 2363 | jest-diff "^20.0.3" 2364 | jest-matcher-utils "^20.0.3" 2365 | jest-matchers "^20.0.3" 2366 | jest-message-util "^20.0.3" 2367 | jest-snapshot "^20.0.3" 2368 | once "^1.4.0" 2369 | p-map "^1.1.1" 2370 | 2371 | jest-jasmine2@^21.2.1: 2372 | version "21.2.1" 2373 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-21.2.1.tgz#9cc6fc108accfa97efebce10c4308548a4ea7592" 2374 | dependencies: 2375 | chalk "^2.0.1" 2376 | expect "^21.2.1" 2377 | graceful-fs "^4.1.11" 2378 | jest-diff "^21.2.1" 2379 | jest-matcher-utils "^21.2.1" 2380 | jest-message-util "^21.2.1" 2381 | jest-snapshot "^21.2.1" 2382 | p-cancelable "^0.3.0" 2383 | 2384 | jest-matcher-utils@^20.0.3: 2385 | version "20.0.3" 2386 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 2387 | dependencies: 2388 | chalk "^1.1.3" 2389 | pretty-format "^20.0.3" 2390 | 2391 | jest-matcher-utils@^21.2.1: 2392 | version "21.2.1" 2393 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-21.2.1.tgz#72c826eaba41a093ac2b4565f865eb8475de0f64" 2394 | dependencies: 2395 | chalk "^2.0.1" 2396 | jest-get-type "^21.2.0" 2397 | pretty-format "^21.2.1" 2398 | 2399 | jest-matchers@^20.0.3: 2400 | version "20.0.3" 2401 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 2402 | dependencies: 2403 | jest-diff "^20.0.3" 2404 | jest-matcher-utils "^20.0.3" 2405 | jest-message-util "^20.0.3" 2406 | jest-regex-util "^20.0.3" 2407 | 2408 | jest-message-util@^20.0.3: 2409 | version "20.0.3" 2410 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 2411 | dependencies: 2412 | chalk "^1.1.3" 2413 | micromatch "^2.3.11" 2414 | slash "^1.0.0" 2415 | 2416 | jest-message-util@^21.2.1: 2417 | version "21.2.1" 2418 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-21.2.1.tgz#bfe5d4692c84c827d1dcf41823795558f0a1acbe" 2419 | dependencies: 2420 | chalk "^2.0.1" 2421 | micromatch "^2.3.11" 2422 | slash "^1.0.0" 2423 | 2424 | jest-mock@^20.0.3: 2425 | version "20.0.3" 2426 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 2427 | 2428 | jest-mock@^21.2.0: 2429 | version "21.2.0" 2430 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-21.2.0.tgz#7eb0770e7317968165f61ea2a7281131534b3c0f" 2431 | 2432 | jest-regex-util@^20.0.3: 2433 | version "20.0.3" 2434 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 2435 | 2436 | jest-regex-util@^21.2.0: 2437 | version "21.2.0" 2438 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-21.2.0.tgz#1b1e33e63143babc3e0f2e6c9b5ba1eb34b2d530" 2439 | 2440 | jest-resolve-dependencies@^21.2.0: 2441 | version "21.2.0" 2442 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-21.2.0.tgz#9e231e371e1a736a1ad4e4b9a843bc72bfe03d09" 2443 | dependencies: 2444 | jest-regex-util "^21.2.0" 2445 | 2446 | jest-resolve@^20.0.3: 2447 | version "20.0.3" 2448 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.3.tgz#375307aa40f78532d40ff8b17d5300b1519f8dd4" 2449 | dependencies: 2450 | browser-resolve "^1.11.2" 2451 | is-builtin-module "^1.0.0" 2452 | resolve "^1.3.2" 2453 | 2454 | jest-resolve@^21.2.0: 2455 | version "21.2.0" 2456 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-21.2.0.tgz#068913ad2ba6a20218e5fd32471f3874005de3a6" 2457 | dependencies: 2458 | browser-resolve "^1.11.2" 2459 | chalk "^2.0.1" 2460 | is-builtin-module "^1.0.0" 2461 | 2462 | jest-runner@^21.2.1: 2463 | version "21.2.1" 2464 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-21.2.1.tgz#194732e3e518bfb3d7cbfc0fd5871246c7e1a467" 2465 | dependencies: 2466 | jest-config "^21.2.1" 2467 | jest-docblock "^21.2.0" 2468 | jest-haste-map "^21.2.0" 2469 | jest-jasmine2 "^21.2.1" 2470 | jest-message-util "^21.2.1" 2471 | jest-runtime "^21.2.1" 2472 | jest-util "^21.2.1" 2473 | pify "^3.0.0" 2474 | throat "^4.0.0" 2475 | worker-farm "^1.3.1" 2476 | 2477 | jest-runtime@^20.0.0: 2478 | version "20.0.3" 2479 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.3.tgz#dddd22bbc429e26e6a96d1acd46ca55714b09252" 2480 | dependencies: 2481 | babel-core "^6.0.0" 2482 | babel-jest "^20.0.3" 2483 | babel-plugin-istanbul "^4.0.0" 2484 | chalk "^1.1.3" 2485 | convert-source-map "^1.4.0" 2486 | graceful-fs "^4.1.11" 2487 | jest-config "^20.0.3" 2488 | jest-haste-map "^20.0.3" 2489 | jest-regex-util "^20.0.3" 2490 | jest-resolve "^20.0.3" 2491 | jest-util "^20.0.3" 2492 | json-stable-stringify "^1.0.1" 2493 | micromatch "^2.3.11" 2494 | strip-bom "3.0.0" 2495 | yargs "^7.0.2" 2496 | 2497 | jest-runtime@^21.2.1: 2498 | version "21.2.1" 2499 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-21.2.1.tgz#99dce15309c670442eee2ebe1ff53a3cbdbbb73e" 2500 | dependencies: 2501 | babel-core "^6.0.0" 2502 | babel-jest "^21.2.0" 2503 | babel-plugin-istanbul "^4.0.0" 2504 | chalk "^2.0.1" 2505 | convert-source-map "^1.4.0" 2506 | graceful-fs "^4.1.11" 2507 | jest-config "^21.2.1" 2508 | jest-haste-map "^21.2.0" 2509 | jest-regex-util "^21.2.0" 2510 | jest-resolve "^21.2.0" 2511 | jest-util "^21.2.1" 2512 | json-stable-stringify "^1.0.1" 2513 | micromatch "^2.3.11" 2514 | slash "^1.0.0" 2515 | strip-bom "3.0.0" 2516 | write-file-atomic "^2.1.0" 2517 | yargs "^9.0.0" 2518 | 2519 | jest-snapshot@^20.0.3: 2520 | version "20.0.3" 2521 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 2522 | dependencies: 2523 | chalk "^1.1.3" 2524 | jest-diff "^20.0.3" 2525 | jest-matcher-utils "^20.0.3" 2526 | jest-util "^20.0.3" 2527 | natural-compare "^1.4.0" 2528 | pretty-format "^20.0.3" 2529 | 2530 | jest-snapshot@^21.2.1: 2531 | version "21.2.1" 2532 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-21.2.1.tgz#29e49f16202416e47343e757e5eff948c07fd7b0" 2533 | dependencies: 2534 | chalk "^2.0.1" 2535 | jest-diff "^21.2.1" 2536 | jest-matcher-utils "^21.2.1" 2537 | mkdirp "^0.5.1" 2538 | natural-compare "^1.4.0" 2539 | pretty-format "^21.2.1" 2540 | 2541 | jest-util@^20.0.3: 2542 | version "20.0.3" 2543 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 2544 | dependencies: 2545 | chalk "^1.1.3" 2546 | graceful-fs "^4.1.11" 2547 | jest-message-util "^20.0.3" 2548 | jest-mock "^20.0.3" 2549 | jest-validate "^20.0.3" 2550 | leven "^2.1.0" 2551 | mkdirp "^0.5.1" 2552 | 2553 | jest-util@^21.2.1: 2554 | version "21.2.1" 2555 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-21.2.1.tgz#a274b2f726b0897494d694a6c3d6a61ab819bb78" 2556 | dependencies: 2557 | callsites "^2.0.0" 2558 | chalk "^2.0.1" 2559 | graceful-fs "^4.1.11" 2560 | jest-message-util "^21.2.1" 2561 | jest-mock "^21.2.0" 2562 | jest-validate "^21.2.1" 2563 | mkdirp "^0.5.1" 2564 | 2565 | jest-validate@^20.0.3: 2566 | version "20.0.3" 2567 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 2568 | dependencies: 2569 | chalk "^1.1.3" 2570 | jest-matcher-utils "^20.0.3" 2571 | leven "^2.1.0" 2572 | pretty-format "^20.0.3" 2573 | 2574 | jest-validate@^21.2.1: 2575 | version "21.2.1" 2576 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7" 2577 | dependencies: 2578 | chalk "^2.0.1" 2579 | jest-get-type "^21.2.0" 2580 | leven "^2.1.0" 2581 | pretty-format "^21.2.1" 2582 | 2583 | jest@^21.2.1: 2584 | version "21.2.1" 2585 | resolved "https://registry.yarnpkg.com/jest/-/jest-21.2.1.tgz#c964e0b47383768a1438e3ccf3c3d470327604e1" 2586 | dependencies: 2587 | jest-cli "^21.2.1" 2588 | 2589 | jodid25519@^1.0.0: 2590 | version "1.0.2" 2591 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2592 | dependencies: 2593 | jsbn "~0.1.0" 2594 | 2595 | js-tokens@^3.0.0: 2596 | version "3.0.1" 2597 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2598 | 2599 | js-yaml@^3.4.3, js-yaml@^3.7.0: 2600 | version "3.8.4" 2601 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 2602 | dependencies: 2603 | argparse "^1.0.7" 2604 | esprima "^3.1.1" 2605 | 2606 | jsbn@~0.1.0: 2607 | version "0.1.1" 2608 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2609 | 2610 | jsdom@^9.12.0: 2611 | version "9.12.0" 2612 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2613 | dependencies: 2614 | abab "^1.0.3" 2615 | acorn "^4.0.4" 2616 | acorn-globals "^3.1.0" 2617 | array-equal "^1.0.0" 2618 | content-type-parser "^1.0.1" 2619 | cssom ">= 0.3.2 < 0.4.0" 2620 | cssstyle ">= 0.2.37 < 0.3.0" 2621 | escodegen "^1.6.1" 2622 | html-encoding-sniffer "^1.0.1" 2623 | nwmatcher ">= 1.3.9 < 2.0.0" 2624 | parse5 "^1.5.1" 2625 | request "^2.79.0" 2626 | sax "^1.2.1" 2627 | symbol-tree "^3.2.1" 2628 | tough-cookie "^2.3.2" 2629 | webidl-conversions "^4.0.0" 2630 | whatwg-encoding "^1.0.1" 2631 | whatwg-url "^4.3.0" 2632 | xml-name-validator "^2.0.1" 2633 | 2634 | jsesc@^1.3.0: 2635 | version "1.3.0" 2636 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2637 | 2638 | jsome@^2.3.25: 2639 | version "2.3.26" 2640 | resolved "https://registry.yarnpkg.com/jsome/-/jsome-2.3.26.tgz#8cb4438924d2c9dd5294c90adf03f35414fb3ca9" 2641 | dependencies: 2642 | chalk "^1.1.3" 2643 | json-stringify-safe "^5.0.1" 2644 | yargs "^4.8.0" 2645 | 2646 | json-schema@0.2.3: 2647 | version "0.2.3" 2648 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2649 | 2650 | json-stable-stringify@^1.0.1: 2651 | version "1.0.1" 2652 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2653 | dependencies: 2654 | jsonify "~0.0.0" 2655 | 2656 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: 2657 | version "5.0.1" 2658 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2659 | 2660 | json5@^0.5.0: 2661 | version "0.5.1" 2662 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2663 | 2664 | jsonfile@^2.1.0: 2665 | version "2.4.0" 2666 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 2667 | optionalDependencies: 2668 | graceful-fs "^4.1.6" 2669 | 2670 | jsonfile@^3.0.0: 2671 | version "3.0.0" 2672 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-3.0.0.tgz#92e7c7444e5ffd5fa32e6a9ae8b85034df8347d0" 2673 | optionalDependencies: 2674 | graceful-fs "^4.1.6" 2675 | 2676 | jsonfile@^4.0.0: 2677 | version "4.0.0" 2678 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 2679 | optionalDependencies: 2680 | graceful-fs "^4.1.6" 2681 | 2682 | jsonify@~0.0.0: 2683 | version "0.0.0" 2684 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2685 | 2686 | jsonpointer@^4.0.0, jsonpointer@^4.0.1: 2687 | version "4.0.1" 2688 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2689 | 2690 | jsprim@^1.2.2: 2691 | version "1.4.0" 2692 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2693 | dependencies: 2694 | assert-plus "1.0.0" 2695 | extsprintf "1.0.2" 2696 | json-schema "0.2.3" 2697 | verror "1.3.6" 2698 | 2699 | kind-of@^3.0.2: 2700 | version "3.2.2" 2701 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2702 | dependencies: 2703 | is-buffer "^1.1.5" 2704 | 2705 | klaw@^1.0.0: 2706 | version "1.3.1" 2707 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 2708 | optionalDependencies: 2709 | graceful-fs "^4.1.9" 2710 | 2711 | latest-version@^3.0.0: 2712 | version "3.1.0" 2713 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 2714 | dependencies: 2715 | package-json "^4.0.0" 2716 | 2717 | lazy-cache@^1.0.3: 2718 | version "1.0.4" 2719 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2720 | 2721 | lazy-req@^2.0.0: 2722 | version "2.0.0" 2723 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-2.0.0.tgz#c9450a363ecdda2e6f0c70132ad4f37f8f06f2b4" 2724 | 2725 | lcid@^1.0.0: 2726 | version "1.0.0" 2727 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2728 | dependencies: 2729 | invert-kv "^1.0.0" 2730 | 2731 | leven@^2.1.0: 2732 | version "2.1.0" 2733 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2734 | 2735 | levn@~0.3.0: 2736 | version "0.3.0" 2737 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2738 | dependencies: 2739 | prelude-ls "~1.1.2" 2740 | type-check "~0.3.2" 2741 | 2742 | lint-staged@^4.0.0: 2743 | version "4.0.0" 2744 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-4.0.0.tgz#c15669f598614a6e68090303e175a799d48e0d85" 2745 | dependencies: 2746 | app-root-path "^2.0.0" 2747 | cosmiconfig "^1.1.0" 2748 | execa "^0.7.0" 2749 | listr "^0.12.0" 2750 | lodash.chunk "^4.2.0" 2751 | minimatch "^3.0.0" 2752 | npm-which "^3.0.1" 2753 | p-map "^1.1.1" 2754 | staged-git-files "0.0.4" 2755 | 2756 | listr-silent-renderer@^1.1.1: 2757 | version "1.1.1" 2758 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" 2759 | 2760 | listr-update-renderer@^0.2.0: 2761 | version "0.2.0" 2762 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.2.0.tgz#ca80e1779b4e70266807e8eed1ad6abe398550f9" 2763 | dependencies: 2764 | chalk "^1.1.3" 2765 | cli-truncate "^0.2.1" 2766 | elegant-spinner "^1.0.1" 2767 | figures "^1.7.0" 2768 | indent-string "^3.0.0" 2769 | log-symbols "^1.0.2" 2770 | log-update "^1.0.2" 2771 | strip-ansi "^3.0.1" 2772 | 2773 | listr-verbose-renderer@^0.4.0: 2774 | version "0.4.0" 2775 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.0.tgz#44dc01bb0c34a03c572154d4d08cde9b1dc5620f" 2776 | dependencies: 2777 | chalk "^1.1.3" 2778 | cli-cursor "^1.0.2" 2779 | date-fns "^1.27.2" 2780 | figures "^1.7.0" 2781 | 2782 | listr@^0.12.0: 2783 | version "0.12.0" 2784 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.12.0.tgz#6bce2c0f5603fa49580ea17cd6a00cc0e5fa451a" 2785 | dependencies: 2786 | chalk "^1.1.3" 2787 | cli-truncate "^0.2.1" 2788 | figures "^1.7.0" 2789 | indent-string "^2.1.0" 2790 | is-promise "^2.1.0" 2791 | is-stream "^1.1.0" 2792 | listr-silent-renderer "^1.1.1" 2793 | listr-update-renderer "^0.2.0" 2794 | listr-verbose-renderer "^0.4.0" 2795 | log-symbols "^1.0.2" 2796 | log-update "^1.0.2" 2797 | ora "^0.2.3" 2798 | p-map "^1.1.1" 2799 | rxjs "^5.0.0-beta.11" 2800 | stream-to-observable "^0.1.0" 2801 | strip-ansi "^3.0.1" 2802 | 2803 | load-json-file@^1.0.0: 2804 | version "1.1.0" 2805 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2806 | dependencies: 2807 | graceful-fs "^4.1.2" 2808 | parse-json "^2.2.0" 2809 | pify "^2.0.0" 2810 | pinkie-promise "^2.0.0" 2811 | strip-bom "^2.0.0" 2812 | 2813 | load-json-file@^2.0.0: 2814 | version "2.0.0" 2815 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2816 | dependencies: 2817 | graceful-fs "^4.1.2" 2818 | parse-json "^2.2.0" 2819 | pify "^2.0.0" 2820 | strip-bom "^3.0.0" 2821 | 2822 | locate-path@^2.0.0: 2823 | version "2.0.0" 2824 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2825 | dependencies: 2826 | p-locate "^2.0.0" 2827 | path-exists "^3.0.0" 2828 | 2829 | lodash._baseassign@^3.0.0: 2830 | version "3.2.0" 2831 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 2832 | dependencies: 2833 | lodash._basecopy "^3.0.0" 2834 | lodash.keys "^3.0.0" 2835 | 2836 | lodash._basecopy@^3.0.0: 2837 | version "3.0.1" 2838 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 2839 | 2840 | lodash._bindcallback@^3.0.0: 2841 | version "3.0.1" 2842 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 2843 | 2844 | lodash._createassigner@^3.0.0: 2845 | version "3.1.1" 2846 | resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 2847 | dependencies: 2848 | lodash._bindcallback "^3.0.0" 2849 | lodash._isiterateecall "^3.0.0" 2850 | lodash.restparam "^3.0.0" 2851 | 2852 | lodash._getnative@^3.0.0: 2853 | version "3.9.1" 2854 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2855 | 2856 | lodash._isiterateecall@^3.0.0: 2857 | version "3.0.9" 2858 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 2859 | 2860 | lodash._objecttypes@~2.4.1: 2861 | version "2.4.1" 2862 | resolved "https://registry.yarnpkg.com/lodash._objecttypes/-/lodash._objecttypes-2.4.1.tgz#7c0b7f69d98a1f76529f890b0cdb1b4dfec11c11" 2863 | 2864 | lodash.assign@^3.0.0: 2865 | version "3.2.0" 2866 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 2867 | dependencies: 2868 | lodash._baseassign "^3.0.0" 2869 | lodash._createassigner "^3.0.0" 2870 | lodash.keys "^3.0.0" 2871 | 2872 | lodash.assign@^4.0.3, lodash.assign@^4.0.6: 2873 | version "4.2.0" 2874 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 2875 | 2876 | lodash.chunk@^4.2.0: 2877 | version "4.2.0" 2878 | resolved "https://registry.yarnpkg.com/lodash.chunk/-/lodash.chunk-4.2.0.tgz#66e5ce1f76ed27b4303d8c6512e8d1216e8106bc" 2879 | 2880 | lodash.find@^4.6.0: 2881 | version "4.6.0" 2882 | resolved "https://registry.yarnpkg.com/lodash.find/-/lodash.find-4.6.0.tgz#cb0704d47ab71789ffa0de8b97dd926fb88b13b1" 2883 | 2884 | lodash.includes@^4.3.0: 2885 | version "4.3.0" 2886 | resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f" 2887 | 2888 | lodash.isarguments@^3.0.0: 2889 | version "3.1.0" 2890 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2891 | 2892 | lodash.isarray@^3.0.0: 2893 | version "3.0.4" 2894 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2895 | 2896 | lodash.isobject@^2.4.1: 2897 | version "2.4.1" 2898 | resolved "https://registry.yarnpkg.com/lodash.isobject/-/lodash.isobject-2.4.1.tgz#5a2e47fe69953f1ee631a7eba1fe64d2d06558f5" 2899 | dependencies: 2900 | lodash._objecttypes "~2.4.1" 2901 | 2902 | lodash.keys@^3.0.0: 2903 | version "3.1.2" 2904 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2905 | dependencies: 2906 | lodash._getnative "^3.0.0" 2907 | lodash.isarguments "^3.0.0" 2908 | lodash.isarray "^3.0.0" 2909 | 2910 | lodash.keys@^4.0.8: 2911 | version "4.2.0" 2912 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-4.2.0.tgz#a08602ac12e4fb83f91fc1fb7a360a4d9ba35205" 2913 | 2914 | lodash.map@^4.5.1: 2915 | version "4.6.0" 2916 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" 2917 | 2918 | lodash.pad@^4.1.0: 2919 | version "4.5.1" 2920 | resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" 2921 | 2922 | lodash.padend@^4.1.0: 2923 | version "4.6.1" 2924 | resolved "https://registry.yarnpkg.com/lodash.padend/-/lodash.padend-4.6.1.tgz#53ccba047d06e158d311f45da625f4e49e6f166e" 2925 | 2926 | lodash.padstart@^4.1.0: 2927 | version "4.6.1" 2928 | resolved "https://registry.yarnpkg.com/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b" 2929 | 2930 | lodash.restparam@^3.0.0: 2931 | version "3.6.1" 2932 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 2933 | 2934 | lodash@4.17.2, lodash@^4.0.0, lodash@^4.13.1, lodash@^4.14.0, lodash@^4.2.0, lodash@^4.3.0: 2935 | version "4.17.2" 2936 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.2.tgz#34a3055babe04ce42467b607d700072c7ff6bf42" 2937 | 2938 | lodash@^3.6.0: 2939 | version "3.10.1" 2940 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 2941 | 2942 | lodash@~1.3.1: 2943 | version "1.3.1" 2944 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-1.3.1.tgz#a4663b53686b895ff074e2ba504dfb76a8e2b770" 2945 | 2946 | log-symbols@^1.0.2: 2947 | version "1.0.2" 2948 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 2949 | dependencies: 2950 | chalk "^1.0.0" 2951 | 2952 | log-update@^1.0.2: 2953 | version "1.0.2" 2954 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" 2955 | dependencies: 2956 | ansi-escapes "^1.0.0" 2957 | cli-cursor "^1.0.2" 2958 | 2959 | longest@^1.0.1: 2960 | version "1.0.1" 2961 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2962 | 2963 | loose-envify@^1.0.0: 2964 | version "1.3.1" 2965 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2966 | dependencies: 2967 | js-tokens "^3.0.0" 2968 | 2969 | loud-rejection@^1.0.0: 2970 | version "1.6.0" 2971 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2972 | dependencies: 2973 | currently-unhandled "^0.4.1" 2974 | signal-exit "^3.0.0" 2975 | 2976 | lowercase-keys@^1.0.0: 2977 | version "1.0.0" 2978 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2979 | 2980 | lru-cache@^4.0.0, lru-cache@^4.0.1: 2981 | version "4.0.2" 2982 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2983 | dependencies: 2984 | pseudomap "^1.0.1" 2985 | yallist "^2.0.0" 2986 | 2987 | magic-string@^0.19.0: 2988 | version "0.19.1" 2989 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.19.1.tgz#14d768013caf2ec8fdea16a49af82fc377e75201" 2990 | dependencies: 2991 | vlq "^0.2.1" 2992 | 2993 | make-dir@^1.0.0: 2994 | version "1.0.0" 2995 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978" 2996 | dependencies: 2997 | pify "^2.3.0" 2998 | 2999 | makeerror@1.0.x: 3000 | version "1.0.11" 3001 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 3002 | dependencies: 3003 | tmpl "1.0.x" 3004 | 3005 | map-obj@^1.0.0, map-obj@^1.0.1: 3006 | version "1.0.1" 3007 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 3008 | 3009 | map-stream@~0.1.0: 3010 | version "0.1.0" 3011 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 3012 | 3013 | marked@^0.3.5: 3014 | version "0.3.6" 3015 | resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.6.tgz#b2c6c618fccece4ef86c4fc6cb8a7cbf5aeda8d7" 3016 | 3017 | media-typer@0.3.0: 3018 | version "0.3.0" 3019 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 3020 | 3021 | mem@^1.1.0: 3022 | version "1.1.0" 3023 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 3024 | dependencies: 3025 | mimic-fn "^1.0.0" 3026 | 3027 | meow@^3.3.0: 3028 | version "3.7.0" 3029 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 3030 | dependencies: 3031 | camelcase-keys "^2.0.0" 3032 | decamelize "^1.1.2" 3033 | loud-rejection "^1.0.0" 3034 | map-obj "^1.0.1" 3035 | minimist "^1.1.3" 3036 | normalize-package-data "^2.3.4" 3037 | object-assign "^4.0.1" 3038 | read-pkg-up "^1.0.1" 3039 | redent "^1.0.0" 3040 | trim-newlines "^1.0.0" 3041 | 3042 | merge@^1.1.3, merge@^1.2.0: 3043 | version "1.2.0" 3044 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 3045 | 3046 | micro-compress@1.0.0: 3047 | version "1.0.0" 3048 | resolved "https://registry.yarnpkg.com/micro-compress/-/micro-compress-1.0.0.tgz#53f5a80b4ad0320ca165a559b6e3df145d4f704f" 3049 | dependencies: 3050 | compression "^1.6.2" 3051 | 3052 | micro@7.3.3: 3053 | version "7.3.3" 3054 | resolved "https://registry.yarnpkg.com/micro/-/micro-7.3.3.tgz#8261c56d2a31a7df93986eff86441396f2b4b070" 3055 | dependencies: 3056 | args "2.6.1" 3057 | async-to-gen "1.3.3" 3058 | bluebird "3.5.0" 3059 | boxen "1.1.0" 3060 | chalk "1.1.3" 3061 | clipboardy "1.1.1" 3062 | get-port "3.1.0" 3063 | ip "1.1.5" 3064 | is-async-supported "1.2.0" 3065 | isstream "0.1.2" 3066 | media-typer "0.3.0" 3067 | node-version "1.0.0" 3068 | raw-body "2.2.0" 3069 | update-notifier "2.1.0" 3070 | 3071 | micromatch@^2.1.5, micromatch@^2.3.11, micromatch@^2.3.7: 3072 | version "2.3.11" 3073 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 3074 | dependencies: 3075 | arr-diff "^2.0.0" 3076 | array-unique "^0.2.1" 3077 | braces "^1.8.2" 3078 | expand-brackets "^0.1.4" 3079 | extglob "^0.3.1" 3080 | filename-regex "^2.0.0" 3081 | is-extglob "^1.0.0" 3082 | is-glob "^2.0.1" 3083 | kind-of "^3.0.2" 3084 | normalize-path "^2.0.1" 3085 | object.omit "^2.0.0" 3086 | parse-glob "^3.0.4" 3087 | regex-cache "^0.4.2" 3088 | 3089 | "mime-db@>= 1.27.0 < 2", mime-db@~1.27.0: 3090 | version "1.27.0" 3091 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 3092 | 3093 | mime-types@2.1.15, mime-types@^2.1.11, mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.7: 3094 | version "2.1.15" 3095 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 3096 | dependencies: 3097 | mime-db "~1.27.0" 3098 | 3099 | mime@1.3.4: 3100 | version "1.3.4" 3101 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 3102 | 3103 | mime@^1.2.11: 3104 | version "1.3.6" 3105 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.6.tgz#591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0" 3106 | 3107 | mimic-fn@^1.0.0: 3108 | version "1.1.0" 3109 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 3110 | 3111 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 3112 | version "3.0.4" 3113 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 3114 | dependencies: 3115 | brace-expansion "^1.1.7" 3116 | 3117 | minimist@0.0.8, minimist@~0.0.1: 3118 | version "0.0.8" 3119 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 3120 | 3121 | minimist@1.2.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: 3122 | version "1.2.0" 3123 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 3124 | 3125 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 3126 | version "0.5.1" 3127 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 3128 | dependencies: 3129 | minimist "0.0.8" 3130 | 3131 | ms@0.7.1: 3132 | version "0.7.1" 3133 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 3134 | 3135 | ms@2.0.0: 3136 | version "2.0.0" 3137 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 3138 | 3139 | mute-stream@0.0.6: 3140 | version "0.0.6" 3141 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.6.tgz#48962b19e169fd1dfc240b3f1e7317627bbc47db" 3142 | 3143 | mz@^2.6.0: 3144 | version "2.6.0" 3145 | resolved "https://registry.yarnpkg.com/mz/-/mz-2.6.0.tgz#c8b8521d958df0a4f2768025db69c719ee4ef1ce" 3146 | dependencies: 3147 | any-promise "^1.0.0" 3148 | object-assign "^4.0.1" 3149 | thenify-all "^1.0.0" 3150 | 3151 | nan@^2.3.0: 3152 | version "2.7.0" 3153 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 3154 | 3155 | natural-compare@^1.4.0: 3156 | version "1.4.0" 3157 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 3158 | 3159 | negotiator@0.6.1: 3160 | version "0.6.1" 3161 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 3162 | 3163 | nerf-dart@^1.0.0: 3164 | version "1.0.0" 3165 | resolved "https://registry.yarnpkg.com/nerf-dart/-/nerf-dart-1.0.0.tgz#e6dab7febf5ad816ea81cf5c629c5a0ebde72c1a" 3166 | 3167 | netrc@^0.1.4: 3168 | version "0.1.4" 3169 | resolved "https://registry.yarnpkg.com/netrc/-/netrc-0.1.4.tgz#6be94fcaca8d77ade0a9670dc460914c94472444" 3170 | 3171 | node-fetch@^1.6.3: 3172 | version "1.7.0" 3173 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.0.tgz#3ff6c56544f9b7fb00682338bb55ee6f54a8a0ef" 3174 | dependencies: 3175 | encoding "^0.1.11" 3176 | is-stream "^1.0.1" 3177 | 3178 | node-int64@^0.4.0: 3179 | version "0.4.0" 3180 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 3181 | 3182 | node-notifier@^5.0.2: 3183 | version "5.1.2" 3184 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 3185 | dependencies: 3186 | growly "^1.3.0" 3187 | semver "^5.3.0" 3188 | shellwords "^0.1.0" 3189 | which "^1.2.12" 3190 | 3191 | node-pre-gyp@^0.6.36: 3192 | version "0.6.38" 3193 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.38.tgz#e92a20f83416415bb4086f6d1fb78b3da73d113d" 3194 | dependencies: 3195 | hawk "3.1.3" 3196 | mkdirp "^0.5.1" 3197 | nopt "^4.0.1" 3198 | npmlog "^4.0.2" 3199 | rc "^1.1.7" 3200 | request "2.81.0" 3201 | rimraf "^2.6.1" 3202 | semver "^5.3.0" 3203 | tar "^2.2.1" 3204 | tar-pack "^3.4.0" 3205 | 3206 | node-uuid@~1.4.7: 3207 | version "1.4.8" 3208 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.8.tgz#b040eb0923968afabf8d32fb1f17f1167fdab907" 3209 | 3210 | node-version@1.0.0: 3211 | version "1.0.0" 3212 | resolved "https://registry.yarnpkg.com/node-version/-/node-version-1.0.0.tgz#1b9b9584a9a7f7a6123f215cd14a652bf21ab19e" 3213 | 3214 | nopt@^4.0.0, nopt@^4.0.1: 3215 | version "4.0.1" 3216 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 3217 | dependencies: 3218 | abbrev "1" 3219 | osenv "^0.1.4" 3220 | 3221 | nopt@~3.0.1: 3222 | version "3.0.6" 3223 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 3224 | dependencies: 3225 | abbrev "1" 3226 | 3227 | normalize-package-data@^1.0.3: 3228 | version "1.0.3" 3229 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-1.0.3.tgz#8be955b8907af975f1a4584ea8bb9b41492312f5" 3230 | dependencies: 3231 | github-url-from-git "^1.3.0" 3232 | github-url-from-username-repo "^1.0.0" 3233 | semver "2 || 3 || 4" 3234 | 3235 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, "normalize-package-data@~1.0.1 || ^2.0.0": 3236 | version "2.3.8" 3237 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 3238 | dependencies: 3239 | hosted-git-info "^2.1.4" 3240 | is-builtin-module "^1.0.0" 3241 | semver "2 || 3 || 4 || 5" 3242 | validate-npm-package-license "^3.0.1" 3243 | 3244 | normalize-path@^1.0.0: 3245 | version "1.0.0" 3246 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" 3247 | 3248 | normalize-path@^2.0.1: 3249 | version "2.1.1" 3250 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 3251 | dependencies: 3252 | remove-trailing-separator "^1.0.1" 3253 | 3254 | "npm-package-arg@^3.0.0 || ^4.0.0": 3255 | version "4.2.1" 3256 | resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-4.2.1.tgz#593303fdea85f7c422775f17f9eb7670f680e3ec" 3257 | dependencies: 3258 | hosted-git-info "^2.1.5" 3259 | semver "^5.1.0" 3260 | 3261 | npm-path@^2.0.2: 3262 | version "2.0.3" 3263 | resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.3.tgz#15cff4e1c89a38da77f56f6055b24f975dfb2bbe" 3264 | dependencies: 3265 | which "^1.2.10" 3266 | 3267 | npm-registry-client@^7.0.1: 3268 | version "7.5.0" 3269 | resolved "https://registry.yarnpkg.com/npm-registry-client/-/npm-registry-client-7.5.0.tgz#0f6dd6e5d11424cfa99fce5b930feaf09b4f7f04" 3270 | dependencies: 3271 | concat-stream "^1.5.2" 3272 | graceful-fs "^4.1.6" 3273 | normalize-package-data "~1.0.1 || ^2.0.0" 3274 | npm-package-arg "^3.0.0 || ^4.0.0" 3275 | once "^1.3.3" 3276 | request "^2.74.0" 3277 | retry "^0.10.0" 3278 | semver "2 >=2.2.1 || 3.x || 4 || 5" 3279 | slide "^1.1.3" 3280 | optionalDependencies: 3281 | npmlog "2 || ^3.1.0 || ^4.0.0" 3282 | 3283 | npm-run-path@^1.0.0: 3284 | version "1.0.0" 3285 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-1.0.0.tgz#f5c32bf595fe81ae927daec52e82f8b000ac3c8f" 3286 | dependencies: 3287 | path-key "^1.0.0" 3288 | 3289 | npm-run-path@^2.0.0: 3290 | version "2.0.2" 3291 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 3292 | dependencies: 3293 | path-key "^2.0.0" 3294 | 3295 | npm-which@^3.0.1: 3296 | version "3.0.1" 3297 | resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" 3298 | dependencies: 3299 | commander "^2.9.0" 3300 | npm-path "^2.0.2" 3301 | which "^1.2.10" 3302 | 3303 | npmconf@^2.1.2: 3304 | version "2.1.2" 3305 | resolved "https://registry.yarnpkg.com/npmconf/-/npmconf-2.1.2.tgz#66606a4a736f1e77a059aa071a79c94ab781853a" 3306 | dependencies: 3307 | config-chain "~1.1.8" 3308 | inherits "~2.0.0" 3309 | ini "^1.2.0" 3310 | mkdirp "^0.5.0" 3311 | nopt "~3.0.1" 3312 | once "~1.3.0" 3313 | osenv "^0.1.0" 3314 | semver "2 || 3 || 4" 3315 | uid-number "0.0.5" 3316 | 3317 | "npmlog@2 || ^3.1.0 || ^4.0.0", npmlog@^4.0.0: 3318 | version "4.1.0" 3319 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 3320 | dependencies: 3321 | are-we-there-yet "~1.1.2" 3322 | console-control-strings "~1.1.0" 3323 | gauge "~2.7.3" 3324 | set-blocking "~2.0.0" 3325 | 3326 | npmlog@^1.2.1: 3327 | version "1.2.1" 3328 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-1.2.1.tgz#28e7be619609b53f7ad1dd300a10d64d716268b6" 3329 | dependencies: 3330 | ansi "~0.3.0" 3331 | are-we-there-yet "~1.0.0" 3332 | gauge "~1.2.0" 3333 | 3334 | npmlog@^4.0.2: 3335 | version "4.1.2" 3336 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 3337 | dependencies: 3338 | are-we-there-yet "~1.1.2" 3339 | console-control-strings "~1.1.0" 3340 | gauge "~2.7.3" 3341 | set-blocking "~2.0.0" 3342 | 3343 | number-is-nan@^1.0.0: 3344 | version "1.0.1" 3345 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 3346 | 3347 | "nwmatcher@>= 1.3.9 < 2.0.0": 3348 | version "1.4.0" 3349 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.0.tgz#b4389362170e7ef9798c3c7716d80ebc0106fccf" 3350 | 3351 | oauth-sign@~0.8.1: 3352 | version "0.8.2" 3353 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 3354 | 3355 | object-assign@^4.0.1, object-assign@^4.1.0: 3356 | version "4.1.1" 3357 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 3358 | 3359 | object.omit@^2.0.0: 3360 | version "2.0.1" 3361 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 3362 | dependencies: 3363 | for-own "^0.1.4" 3364 | is-extendable "^0.1.1" 3365 | 3366 | on-finished@~2.3.0: 3367 | version "2.3.0" 3368 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 3369 | dependencies: 3370 | ee-first "1.1.1" 3371 | 3372 | on-headers@~1.0.1: 3373 | version "1.0.1" 3374 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 3375 | 3376 | once@^1.3.0, once@~1.3.0: 3377 | version "1.3.3" 3378 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 3379 | dependencies: 3380 | wrappy "1" 3381 | 3382 | once@^1.3.3, once@^1.4.0: 3383 | version "1.4.0" 3384 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3385 | dependencies: 3386 | wrappy "1" 3387 | 3388 | onetime@^1.0.0: 3389 | version "1.1.0" 3390 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 3391 | 3392 | opn@5.1.0: 3393 | version "5.1.0" 3394 | resolved "https://registry.yarnpkg.com/opn/-/opn-5.1.0.tgz#72ce2306a17dbea58ff1041853352b4a8fc77519" 3395 | dependencies: 3396 | is-wsl "^1.1.0" 3397 | 3398 | optimist@^0.6.1, optimist@~0.6.0: 3399 | version "0.6.1" 3400 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 3401 | dependencies: 3402 | minimist "~0.0.1" 3403 | wordwrap "~0.0.2" 3404 | 3405 | optionator@^0.8.1: 3406 | version "0.8.2" 3407 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3408 | dependencies: 3409 | deep-is "~0.1.3" 3410 | fast-levenshtein "~2.0.4" 3411 | levn "~0.3.0" 3412 | prelude-ls "~1.1.2" 3413 | type-check "~0.3.2" 3414 | wordwrap "~1.0.0" 3415 | 3416 | ora@^0.2.3: 3417 | version "0.2.3" 3418 | resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" 3419 | dependencies: 3420 | chalk "^1.1.1" 3421 | cli-cursor "^1.0.2" 3422 | cli-spinners "^0.1.2" 3423 | object-assign "^4.0.1" 3424 | 3425 | os-homedir@^1.0.0, os-homedir@^1.0.1: 3426 | version "1.0.2" 3427 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3428 | 3429 | os-locale@^1.4.0: 3430 | version "1.4.0" 3431 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 3432 | dependencies: 3433 | lcid "^1.0.0" 3434 | 3435 | os-locale@^2.0.0: 3436 | version "2.0.0" 3437 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.0.0.tgz#15918ded510522b81ee7ae5a309d54f639fc39a4" 3438 | dependencies: 3439 | execa "^0.5.0" 3440 | lcid "^1.0.0" 3441 | mem "^1.1.0" 3442 | 3443 | os-shim@^0.1.2: 3444 | version "0.1.3" 3445 | resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 3446 | 3447 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 3448 | version "1.0.2" 3449 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3450 | 3451 | osenv@^0.1.0, osenv@^0.1.4: 3452 | version "0.1.4" 3453 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 3454 | dependencies: 3455 | os-homedir "^1.0.0" 3456 | os-tmpdir "^1.0.0" 3457 | 3458 | p-cancelable@^0.3.0: 3459 | version "0.3.0" 3460 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" 3461 | 3462 | p-finally@^1.0.0: 3463 | version "1.0.0" 3464 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 3465 | 3466 | p-limit@^1.1.0: 3467 | version "1.1.0" 3468 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 3469 | 3470 | p-locate@^2.0.0: 3471 | version "2.0.0" 3472 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 3473 | dependencies: 3474 | p-limit "^1.1.0" 3475 | 3476 | p-map@^1.1.1: 3477 | version "1.1.1" 3478 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 3479 | 3480 | package-json@^4.0.0: 3481 | version "4.0.1" 3482 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 3483 | dependencies: 3484 | got "^6.7.1" 3485 | registry-auth-token "^3.0.1" 3486 | registry-url "^3.0.3" 3487 | semver "^5.1.0" 3488 | 3489 | pad-right@^0.2.2: 3490 | version "0.2.2" 3491 | resolved "https://registry.yarnpkg.com/pad-right/-/pad-right-0.2.2.tgz#6fbc924045d244f2a2a244503060d3bfc6009774" 3492 | dependencies: 3493 | repeat-string "^1.5.2" 3494 | 3495 | parse-diff@^0.4.0: 3496 | version "0.4.0" 3497 | resolved "https://registry.yarnpkg.com/parse-diff/-/parse-diff-0.4.0.tgz#9ce35bcce8fc0b7c58f46d71113394fc0b4982dd" 3498 | 3499 | parse-github-repo-url@^1.3.0: 3500 | version "1.4.0" 3501 | resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.0.tgz#286c53e2c9962e0641649ee3ac9508fca4dd959c" 3502 | 3503 | parse-glob@^3.0.4: 3504 | version "3.0.4" 3505 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3506 | dependencies: 3507 | glob-base "^0.3.0" 3508 | is-dotfile "^1.0.0" 3509 | is-extglob "^1.0.0" 3510 | is-glob "^2.0.0" 3511 | 3512 | parse-json@^2.2.0: 3513 | version "2.2.0" 3514 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3515 | dependencies: 3516 | error-ex "^1.2.0" 3517 | 3518 | parse-passwd@^1.0.0: 3519 | version "1.0.0" 3520 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 3521 | 3522 | parse5@^1.5.1: 3523 | version "1.5.1" 3524 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 3525 | 3526 | parsimmon@^1.2.0: 3527 | version "1.2.0" 3528 | resolved "https://registry.yarnpkg.com/parsimmon/-/parsimmon-1.2.0.tgz#3ed4ae6c8913066969f3faeafe39961fdcadf399" 3529 | 3530 | path-exists@2.1.0, path-exists@^2.0.0: 3531 | version "2.1.0" 3532 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3533 | dependencies: 3534 | pinkie-promise "^2.0.0" 3535 | 3536 | path-exists@^3.0.0: 3537 | version "3.0.0" 3538 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3539 | 3540 | path-is-absolute@^1.0.0: 3541 | version "1.0.1" 3542 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3543 | 3544 | path-key@^1.0.0: 3545 | version "1.0.0" 3546 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-1.0.0.tgz#5d53d578019646c0d68800db4e146e6bdc2ac7af" 3547 | 3548 | path-key@^2.0.0: 3549 | version "2.0.1" 3550 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 3551 | 3552 | path-object@^2.3.0: 3553 | version "2.3.0" 3554 | resolved "https://registry.yarnpkg.com/path-object/-/path-object-2.3.0.tgz#03e46653e5c375c60af1cabdd94bc6448a5d9110" 3555 | dependencies: 3556 | core-util-is "^1.0.1" 3557 | lodash.assign "^3.0.0" 3558 | 3559 | path-parse@^1.0.5: 3560 | version "1.0.5" 3561 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3562 | 3563 | path-type@2.0.0, path-type@^2.0.0: 3564 | version "2.0.0" 3565 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3566 | dependencies: 3567 | pify "^2.0.0" 3568 | 3569 | path-type@^1.0.0: 3570 | version "1.1.0" 3571 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3572 | dependencies: 3573 | graceful-fs "^4.1.2" 3574 | pify "^2.0.0" 3575 | pinkie-promise "^2.0.0" 3576 | 3577 | pause-stream@0.0.11: 3578 | version "0.0.11" 3579 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 3580 | dependencies: 3581 | through "~2.3" 3582 | 3583 | performance-now@^0.2.0: 3584 | version "0.2.0" 3585 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 3586 | 3587 | pify@^2.0.0, pify@^2.3.0: 3588 | version "2.3.0" 3589 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3590 | 3591 | pify@^3.0.0: 3592 | version "3.0.0" 3593 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 3594 | 3595 | pinkie-promise@^2.0.0: 3596 | version "2.0.1" 3597 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3598 | dependencies: 3599 | pinkie "^2.0.0" 3600 | 3601 | pinkie@^2.0.0: 3602 | version "2.0.4" 3603 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3604 | 3605 | pkg-dir@^2.0.0: 3606 | version "2.0.0" 3607 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 3608 | dependencies: 3609 | find-up "^2.1.0" 3610 | 3611 | pkginfo@0.4.0: 3612 | version "0.4.0" 3613 | resolved "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.4.0.tgz#349dbb7ffd38081fcadc0853df687f0c7744cd65" 3614 | 3615 | prelude-ls@~1.1.2: 3616 | version "1.1.2" 3617 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3618 | 3619 | prepend-http@^1.0.1: 3620 | version "1.0.4" 3621 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 3622 | 3623 | preserve@^0.2.0: 3624 | version "0.2.0" 3625 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3626 | 3627 | pretty-format@^20.0.3: 3628 | version "20.0.3" 3629 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 3630 | dependencies: 3631 | ansi-regex "^2.1.1" 3632 | ansi-styles "^3.0.0" 3633 | 3634 | pretty-format@^21.2.1: 3635 | version "21.2.1" 3636 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.2.1.tgz#ae5407f3cf21066cd011aa1ba5fce7b6a2eddb36" 3637 | dependencies: 3638 | ansi-regex "^3.0.0" 3639 | ansi-styles "^3.2.0" 3640 | 3641 | private@^0.1.6: 3642 | version "0.1.7" 3643 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 3644 | 3645 | process-nextick-args@~1.0.6: 3646 | version "1.0.7" 3647 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3648 | 3649 | progress@^2.0.0: 3650 | version "2.0.0" 3651 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 3652 | 3653 | proto-list@~1.2.1: 3654 | version "1.2.4" 3655 | resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 3656 | 3657 | prr@~0.0.0: 3658 | version "0.0.0" 3659 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 3660 | 3661 | pseudomap@^1.0.1: 3662 | version "1.0.2" 3663 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3664 | 3665 | punycode@^1.4.1: 3666 | version "1.4.1" 3667 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3668 | 3669 | qs@~6.2.0: 3670 | version "6.2.3" 3671 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.3.tgz#1cfcb25c10a9b2b483053ff39f5dfc9233908cfe" 3672 | 3673 | qs@~6.4.0: 3674 | version "6.4.0" 3675 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3676 | 3677 | randomatic@^1.1.3: 3678 | version "1.1.6" 3679 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 3680 | dependencies: 3681 | is-number "^2.0.2" 3682 | kind-of "^3.0.2" 3683 | 3684 | range-parser@~1.2.0: 3685 | version "1.2.0" 3686 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 3687 | 3688 | raw-body@2.2.0: 3689 | version "2.2.0" 3690 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.2.0.tgz#994976cf6a5096a41162840492f0bdc5d6e7fb96" 3691 | dependencies: 3692 | bytes "2.4.0" 3693 | iconv-lite "0.4.15" 3694 | unpipe "1.0.0" 3695 | 3696 | rc@^1.0.1, rc@^1.1.6: 3697 | version "1.2.1" 3698 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 3699 | dependencies: 3700 | deep-extend "~0.4.0" 3701 | ini "~1.3.0" 3702 | minimist "^1.2.0" 3703 | strip-json-comments "~2.0.1" 3704 | 3705 | rc@^1.1.7: 3706 | version "1.2.2" 3707 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 3708 | dependencies: 3709 | deep-extend "~0.4.0" 3710 | ini "~1.3.0" 3711 | minimist "^1.2.0" 3712 | strip-json-comments "~2.0.1" 3713 | 3714 | read-pkg-up@^1.0.1: 3715 | version "1.0.1" 3716 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3717 | dependencies: 3718 | find-up "^1.0.0" 3719 | read-pkg "^1.0.0" 3720 | 3721 | read-pkg-up@^2.0.0: 3722 | version "2.0.0" 3723 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3724 | dependencies: 3725 | find-up "^2.0.0" 3726 | read-pkg "^2.0.0" 3727 | 3728 | read-pkg@^1.0.0: 3729 | version "1.1.0" 3730 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3731 | dependencies: 3732 | load-json-file "^1.0.0" 3733 | normalize-package-data "^2.3.2" 3734 | path-type "^1.0.0" 3735 | 3736 | read-pkg@^2.0.0: 3737 | version "2.0.0" 3738 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3739 | dependencies: 3740 | load-json-file "^2.0.0" 3741 | normalize-package-data "^2.3.2" 3742 | path-type "^2.0.0" 3743 | 3744 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.6, readable-stream@^2.2.2: 3745 | version "2.2.9" 3746 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 3747 | dependencies: 3748 | buffer-shims "~1.0.0" 3749 | core-util-is "~1.0.0" 3750 | inherits "~2.0.1" 3751 | isarray "~1.0.0" 3752 | process-nextick-args "~1.0.6" 3753 | string_decoder "~1.0.0" 3754 | util-deprecate "~1.0.1" 3755 | 3756 | readable-stream@^2.1.4: 3757 | version "2.3.3" 3758 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 3759 | dependencies: 3760 | core-util-is "~1.0.0" 3761 | inherits "~2.0.3" 3762 | isarray "~1.0.0" 3763 | process-nextick-args "~1.0.6" 3764 | safe-buffer "~5.1.1" 3765 | string_decoder "~1.0.3" 3766 | util-deprecate "~1.0.1" 3767 | 3768 | readable-stream@~2.0.5: 3769 | version "2.0.6" 3770 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 3771 | dependencies: 3772 | core-util-is "~1.0.0" 3773 | inherits "~2.0.1" 3774 | isarray "~1.0.0" 3775 | process-nextick-args "~1.0.6" 3776 | string_decoder "~0.10.x" 3777 | util-deprecate "~1.0.1" 3778 | 3779 | rechoir@^0.6.2: 3780 | version "0.6.2" 3781 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 3782 | dependencies: 3783 | resolve "^1.1.6" 3784 | 3785 | redent@^1.0.0: 3786 | version "1.0.0" 3787 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 3788 | dependencies: 3789 | indent-string "^2.1.0" 3790 | strip-indent "^1.0.1" 3791 | 3792 | regenerator-runtime@^0.10.0: 3793 | version "0.10.5" 3794 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3795 | 3796 | regex-cache@^0.4.2: 3797 | version "0.4.3" 3798 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3799 | dependencies: 3800 | is-equal-shallow "^0.1.3" 3801 | is-primitive "^2.0.0" 3802 | 3803 | registry-auth-token@^3.0.1: 3804 | version "3.3.1" 3805 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" 3806 | dependencies: 3807 | rc "^1.1.6" 3808 | safe-buffer "^5.0.1" 3809 | 3810 | registry-url@^3.0.3: 3811 | version "3.1.0" 3812 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 3813 | dependencies: 3814 | rc "^1.0.1" 3815 | 3816 | remove-trailing-separator@^1.0.1: 3817 | version "1.0.1" 3818 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 3819 | 3820 | repeat-element@^1.1.2: 3821 | version "1.1.2" 3822 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3823 | 3824 | repeat-string@^1.5.2: 3825 | version "1.6.1" 3826 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3827 | 3828 | repeating@^2.0.0: 3829 | version "2.0.1" 3830 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3831 | dependencies: 3832 | is-finite "^1.0.0" 3833 | 3834 | request-promise-core@1.1.1: 3835 | version "1.1.1" 3836 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 3837 | dependencies: 3838 | lodash "^4.13.1" 3839 | 3840 | request-promise@^4.1.1: 3841 | version "4.2.1" 3842 | resolved "https://registry.yarnpkg.com/request-promise/-/request-promise-4.2.1.tgz#7eec56c89317a822cbfea99b039ce543c2e15f67" 3843 | dependencies: 3844 | bluebird "^3.5.0" 3845 | request-promise-core "1.1.1" 3846 | stealthy-require "^1.1.0" 3847 | tough-cookie ">=2.3.0" 3848 | 3849 | request@2.81.0, request@^2.74.0, request@^2.78.0, request@^2.79.0: 3850 | version "2.81.0" 3851 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3852 | dependencies: 3853 | aws-sign2 "~0.6.0" 3854 | aws4 "^1.2.1" 3855 | caseless "~0.12.0" 3856 | combined-stream "~1.0.5" 3857 | extend "~3.0.0" 3858 | forever-agent "~0.6.1" 3859 | form-data "~2.1.1" 3860 | har-validator "~4.2.1" 3861 | hawk "~3.1.3" 3862 | http-signature "~1.1.0" 3863 | is-typedarray "~1.0.0" 3864 | isstream "~0.1.2" 3865 | json-stringify-safe "~5.0.1" 3866 | mime-types "~2.1.7" 3867 | oauth-sign "~0.8.1" 3868 | performance-now "^0.2.0" 3869 | qs "~6.4.0" 3870 | safe-buffer "^5.0.1" 3871 | stringstream "~0.0.4" 3872 | tough-cookie "~2.3.0" 3873 | tunnel-agent "^0.6.0" 3874 | uuid "^3.0.0" 3875 | 3876 | request@~2.74.0: 3877 | version "2.74.0" 3878 | resolved "https://registry.yarnpkg.com/request/-/request-2.74.0.tgz#7693ca768bbb0ea5c8ce08c084a45efa05b892ab" 3879 | dependencies: 3880 | aws-sign2 "~0.6.0" 3881 | aws4 "^1.2.1" 3882 | bl "~1.1.2" 3883 | caseless "~0.11.0" 3884 | combined-stream "~1.0.5" 3885 | extend "~3.0.0" 3886 | forever-agent "~0.6.1" 3887 | form-data "~1.0.0-rc4" 3888 | har-validator "~2.0.6" 3889 | hawk "~3.1.3" 3890 | http-signature "~1.1.0" 3891 | is-typedarray "~1.0.0" 3892 | isstream "~0.1.2" 3893 | json-stringify-safe "~5.0.1" 3894 | mime-types "~2.1.7" 3895 | node-uuid "~1.4.7" 3896 | oauth-sign "~0.8.1" 3897 | qs "~6.2.0" 3898 | stringstream "~0.0.4" 3899 | tough-cookie "~2.3.0" 3900 | tunnel-agent "~0.4.1" 3901 | 3902 | require-directory@^2.1.1: 3903 | version "2.1.1" 3904 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3905 | 3906 | require-from-string@^1.1.0: 3907 | version "1.2.1" 3908 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" 3909 | 3910 | require-main-filename@^1.0.1: 3911 | version "1.0.1" 3912 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3913 | 3914 | require-relative@^0.8.7: 3915 | version "0.8.7" 3916 | resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" 3917 | 3918 | resolve-dir@^0.1.0: 3919 | version "0.1.1" 3920 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e" 3921 | dependencies: 3922 | expand-tilde "^1.2.2" 3923 | global-modules "^0.2.3" 3924 | 3925 | resolve@1.1.7: 3926 | version "1.1.7" 3927 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3928 | 3929 | resolve@^1.1.6, resolve@^1.3.2: 3930 | version "1.3.3" 3931 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 3932 | dependencies: 3933 | path-parse "^1.0.5" 3934 | 3935 | restore-cursor@^1.0.1: 3936 | version "1.0.1" 3937 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3938 | dependencies: 3939 | exit-hook "^1.0.0" 3940 | onetime "^1.0.0" 3941 | 3942 | retry@^0.10.0: 3943 | version "0.10.1" 3944 | resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" 3945 | 3946 | rfc6902@^1.3.0: 3947 | version "1.3.0" 3948 | resolved "https://registry.yarnpkg.com/rfc6902/-/rfc6902-1.3.0.tgz#85b2c69c42dcf116082437b9829a962446b4c4a5" 3949 | 3950 | right-align@^0.1.1: 3951 | version "0.1.3" 3952 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3953 | dependencies: 3954 | align-text "^0.1.1" 3955 | 3956 | right-pad@^1.0.1: 3957 | version "1.0.1" 3958 | resolved "https://registry.yarnpkg.com/right-pad/-/right-pad-1.0.1.tgz#8ca08c2cbb5b55e74dafa96bf7fd1a27d568c8d0" 3959 | 3960 | rimraf@2, rimraf@^2.5.1: 3961 | version "2.6.2" 3962 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3963 | dependencies: 3964 | glob "^7.0.5" 3965 | 3966 | rimraf@^2.5.4, rimraf@^2.6.1: 3967 | version "2.6.1" 3968 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3969 | dependencies: 3970 | glob "^7.0.5" 3971 | 3972 | run-async@^2.2.0: 3973 | version "2.3.0" 3974 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3975 | dependencies: 3976 | is-promise "^2.1.0" 3977 | 3978 | run-auto@^2.0.0: 3979 | version "2.0.0" 3980 | resolved "https://registry.yarnpkg.com/run-auto/-/run-auto-2.0.0.tgz#5f4353f58adbd6b74926489b4f259e1dad6a78d6" 3981 | dependencies: 3982 | dezalgo "^1.0.1" 3983 | 3984 | run-series@^1.1.3: 3985 | version "1.1.4" 3986 | resolved "https://registry.yarnpkg.com/run-series/-/run-series-1.1.4.tgz#89a73ddc5e75c9ef8ab6320c0a1600d6a41179b9" 3987 | 3988 | rx@^4.1.0: 3989 | version "4.1.0" 3990 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" 3991 | 3992 | rxjs@^5.0.0-beta.11: 3993 | version "5.4.0" 3994 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.4.0.tgz#a7db14ab157f9d7aac6a56e655e7a3860d39bf26" 3995 | dependencies: 3996 | symbol-observable "^1.0.1" 3997 | 3998 | safe-buffer@^5.0.1: 3999 | version "5.0.1" 4000 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 4001 | 4002 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 4003 | version "5.1.1" 4004 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 4005 | 4006 | sane@^2.0.0: 4007 | version "2.2.0" 4008 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.2.0.tgz#d6d2e2fcab00e3d283c93b912b7c3a20846f1d56" 4009 | dependencies: 4010 | anymatch "^1.3.0" 4011 | exec-sh "^0.2.0" 4012 | fb-watchman "^2.0.0" 4013 | minimatch "^3.0.2" 4014 | minimist "^1.1.1" 4015 | walker "~1.0.5" 4016 | watch "~0.18.0" 4017 | optionalDependencies: 4018 | fsevents "^1.1.1" 4019 | 4020 | sane@~1.6.0: 4021 | version "1.6.0" 4022 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 4023 | dependencies: 4024 | anymatch "^1.3.0" 4025 | exec-sh "^0.2.0" 4026 | fb-watchman "^1.8.0" 4027 | minimatch "^3.0.2" 4028 | minimist "^1.1.1" 4029 | walker "~1.0.5" 4030 | watch "~0.10.0" 4031 | 4032 | sax@^1.2.1: 4033 | version "1.2.2" 4034 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 4035 | 4036 | semantic-release@^6.3.6: 4037 | version "6.3.6" 4038 | resolved "https://registry.yarnpkg.com/semantic-release/-/semantic-release-6.3.6.tgz#629d0aec90b38a2957a57a4a9ee1214af51928c7" 4039 | dependencies: 4040 | "@semantic-release/commit-analyzer" "^2.0.0" 4041 | "@semantic-release/condition-travis" "^5.0.2" 4042 | "@semantic-release/error" "^1.0.0" 4043 | "@semantic-release/last-release-npm" "^1.2.1" 4044 | "@semantic-release/release-notes-generator" "^2.0.0" 4045 | git-head "^1.2.1" 4046 | github "^8.0.0" 4047 | lodash "^4.0.0" 4048 | nerf-dart "^1.0.0" 4049 | nopt "^4.0.0" 4050 | normalize-package-data "^2.3.4" 4051 | npmconf "^2.1.2" 4052 | npmlog "^4.0.0" 4053 | parse-github-repo-url "^1.3.0" 4054 | require-relative "^0.8.7" 4055 | run-auto "^2.0.0" 4056 | run-series "^1.1.3" 4057 | semver "^5.2.0" 4058 | 4059 | semver-diff@^2.0.0: 4060 | version "2.1.0" 4061 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 4062 | dependencies: 4063 | semver "^5.0.3" 4064 | 4065 | semver-regex@1.0.0: 4066 | version "1.0.0" 4067 | resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-1.0.0.tgz#92a4969065f9c70c694753d55248fc68f8f652c9" 4068 | 4069 | "semver@2 >=2.2.1 || 3.x || 4 || 5", "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.2.0, semver@^5.3.0: 4070 | version "5.3.0" 4071 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 4072 | 4073 | "semver@2 || 3 || 4": 4074 | version "4.3.6" 4075 | resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" 4076 | 4077 | semver@~5.0.1: 4078 | version "5.0.3" 4079 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.0.3.tgz#77466de589cd5d3c95f138aa78bc569a3cb5d27a" 4080 | 4081 | send@0.15.3: 4082 | version "0.15.3" 4083 | resolved "https://registry.yarnpkg.com/send/-/send-0.15.3.tgz#5013f9f99023df50d1bd9892c19e3defd1d53309" 4084 | dependencies: 4085 | debug "2.6.7" 4086 | depd "~1.1.0" 4087 | destroy "~1.0.4" 4088 | encodeurl "~1.0.1" 4089 | escape-html "~1.0.3" 4090 | etag "~1.8.0" 4091 | fresh "0.5.0" 4092 | http-errors "~1.6.1" 4093 | mime "1.3.4" 4094 | ms "2.0.0" 4095 | on-finished "~2.3.0" 4096 | range-parser "~1.2.0" 4097 | statuses "~1.3.1" 4098 | 4099 | serve@^6.0.0: 4100 | version "6.0.0" 4101 | resolved "https://registry.yarnpkg.com/serve/-/serve-6.0.0.tgz#9b7e2f8c478a6759c87c5de7f5d32c124d09f429" 4102 | dependencies: 4103 | args "3.0.2" 4104 | basic-auth "1.1.0" 4105 | bluebird "3.5.0" 4106 | boxen "1.1.0" 4107 | chalk "1.1.3" 4108 | clipboardy "1.1.4" 4109 | dargs "5.1.0" 4110 | detect-port "1.2.1" 4111 | filesize "3.5.10" 4112 | fs-extra "3.0.1" 4113 | handlebars "4.0.10" 4114 | ip "1.1.5" 4115 | micro "7.3.3" 4116 | micro-compress "1.0.0" 4117 | mime-types "2.1.15" 4118 | node-version "1.0.0" 4119 | opn "5.1.0" 4120 | path-type "2.0.0" 4121 | send "0.15.3" 4122 | update-notifier "2.2.0" 4123 | 4124 | set-blocking@^2.0.0, set-blocking@~2.0.0: 4125 | version "2.0.0" 4126 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 4127 | 4128 | setprototypeof@1.0.3: 4129 | version "1.0.3" 4130 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" 4131 | 4132 | shebang-command@^1.2.0: 4133 | version "1.2.0" 4134 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 4135 | dependencies: 4136 | shebang-regex "^1.0.0" 4137 | 4138 | shebang-regex@^1.0.0: 4139 | version "1.0.0" 4140 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 4141 | 4142 | shelljs@0.7.6, shelljs@^0.7.0: 4143 | version "0.7.6" 4144 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.6.tgz#379cccfb56b91c8601e4793356eb5382924de9ad" 4145 | dependencies: 4146 | glob "^7.0.0" 4147 | interpret "^1.0.0" 4148 | rechoir "^0.6.2" 4149 | 4150 | shellwords@^0.1.0: 4151 | version "0.1.0" 4152 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 4153 | 4154 | signal-exit@^3.0.0, signal-exit@^3.0.2: 4155 | version "3.0.2" 4156 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 4157 | 4158 | slash@^1.0.0: 4159 | version "1.0.0" 4160 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 4161 | 4162 | slice-ansi@0.0.4: 4163 | version "0.0.4" 4164 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 4165 | 4166 | slide@^1.1.3, slide@^1.1.5: 4167 | version "1.1.6" 4168 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 4169 | 4170 | sntp@1.x.x: 4171 | version "1.0.9" 4172 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 4173 | dependencies: 4174 | hoek "2.x.x" 4175 | 4176 | source-map-support@^0.4.2: 4177 | version "0.4.15" 4178 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 4179 | dependencies: 4180 | source-map "^0.5.6" 4181 | 4182 | source-map-support@^0.5.0: 4183 | version "0.5.0" 4184 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.0.tgz#2018a7ad2bdf8faf2691e5fddab26bed5a2bacab" 4185 | dependencies: 4186 | source-map "^0.6.0" 4187 | 4188 | source-map@^0.4.4: 4189 | version "0.4.4" 4190 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 4191 | dependencies: 4192 | amdefine ">=0.0.4" 4193 | 4194 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 4195 | version "0.5.6" 4196 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 4197 | 4198 | source-map@^0.6.0: 4199 | version "0.6.1" 4200 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 4201 | 4202 | source-map@~0.2.0: 4203 | version "0.2.0" 4204 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 4205 | dependencies: 4206 | amdefine ">=0.0.4" 4207 | 4208 | spawn-sync@^1.0.15: 4209 | version "1.0.15" 4210 | resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476" 4211 | dependencies: 4212 | concat-stream "^1.4.7" 4213 | os-shim "^0.1.2" 4214 | 4215 | spdx-correct@~1.0.0: 4216 | version "1.0.2" 4217 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 4218 | dependencies: 4219 | spdx-license-ids "^1.0.2" 4220 | 4221 | spdx-expression-parse@~1.0.0: 4222 | version "1.0.4" 4223 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 4224 | 4225 | spdx-license-ids@^1.0.2: 4226 | version "1.2.2" 4227 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 4228 | 4229 | split@0.3: 4230 | version "0.3.3" 4231 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 4232 | dependencies: 4233 | through "2" 4234 | 4235 | sprintf-js@~1.0.2: 4236 | version "1.0.3" 4237 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 4238 | 4239 | sshpk@^1.7.0: 4240 | version "1.13.0" 4241 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 4242 | dependencies: 4243 | asn1 "~0.2.3" 4244 | assert-plus "^1.0.0" 4245 | dashdash "^1.12.0" 4246 | getpass "^0.1.1" 4247 | optionalDependencies: 4248 | bcrypt-pbkdf "^1.0.0" 4249 | ecc-jsbn "~0.1.1" 4250 | jodid25519 "^1.0.0" 4251 | jsbn "~0.1.0" 4252 | tweetnacl "~0.14.0" 4253 | 4254 | staged-git-files@0.0.4: 4255 | version "0.0.4" 4256 | resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-0.0.4.tgz#d797e1b551ca7a639dec0237dc6eb4bb9be17d35" 4257 | 4258 | "statuses@>= 1.3.1 < 2", statuses@~1.3.1: 4259 | version "1.3.1" 4260 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 4261 | 4262 | stealthy-require@^1.1.0: 4263 | version "1.1.1" 4264 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 4265 | 4266 | stream-combiner@~0.0.4: 4267 | version "0.0.4" 4268 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 4269 | dependencies: 4270 | duplexer "~0.1.1" 4271 | 4272 | stream-consume@^0.1.0: 4273 | version "0.1.0" 4274 | resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.0.tgz#a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f" 4275 | 4276 | stream-to-observable@^0.1.0: 4277 | version "0.1.0" 4278 | resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.1.0.tgz#45bf1d9f2d7dc09bed81f1c307c430e68b84cffe" 4279 | 4280 | string-length@^2.0.0: 4281 | version "2.0.0" 4282 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 4283 | dependencies: 4284 | astral-regex "^1.0.0" 4285 | strip-ansi "^4.0.0" 4286 | 4287 | string-similarity@1.1.0: 4288 | version "1.1.0" 4289 | resolved "https://registry.yarnpkg.com/string-similarity/-/string-similarity-1.1.0.tgz#3c66498858a465ec7c40c7d81739bbd995904914" 4290 | dependencies: 4291 | lodash "^4.13.1" 4292 | 4293 | string-width@^1.0.1, string-width@^1.0.2: 4294 | version "1.0.2" 4295 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 4296 | dependencies: 4297 | code-point-at "^1.0.0" 4298 | is-fullwidth-code-point "^1.0.0" 4299 | strip-ansi "^3.0.0" 4300 | 4301 | string-width@^2.0.0: 4302 | version "2.0.0" 4303 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 4304 | dependencies: 4305 | is-fullwidth-code-point "^2.0.0" 4306 | strip-ansi "^3.0.0" 4307 | 4308 | string_decoder@~0.10.x: 4309 | version "0.10.31" 4310 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 4311 | 4312 | string_decoder@~1.0.0: 4313 | version "1.0.1" 4314 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.1.tgz#62e200f039955a6810d8df0a33ffc0f013662d98" 4315 | dependencies: 4316 | safe-buffer "^5.0.1" 4317 | 4318 | string_decoder@~1.0.3: 4319 | version "1.0.3" 4320 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 4321 | dependencies: 4322 | safe-buffer "~5.1.0" 4323 | 4324 | stringstream@~0.0.4: 4325 | version "0.0.5" 4326 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 4327 | 4328 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 4329 | version "3.0.1" 4330 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 4331 | dependencies: 4332 | ansi-regex "^2.0.0" 4333 | 4334 | strip-ansi@^4.0.0: 4335 | version "4.0.0" 4336 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 4337 | dependencies: 4338 | ansi-regex "^3.0.0" 4339 | 4340 | strip-bom@3.0.0, strip-bom@^3.0.0: 4341 | version "3.0.0" 4342 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 4343 | 4344 | strip-bom@^2.0.0: 4345 | version "2.0.0" 4346 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 4347 | dependencies: 4348 | is-utf8 "^0.2.0" 4349 | 4350 | strip-eof@^1.0.0: 4351 | version "1.0.0" 4352 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 4353 | 4354 | strip-indent@^1.0.1: 4355 | version "1.0.1" 4356 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 4357 | dependencies: 4358 | get-stdin "^4.0.1" 4359 | 4360 | strip-indent@^2.0.0: 4361 | version "2.0.0" 4362 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 4363 | 4364 | strip-json-comments@2.0.1, strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: 4365 | version "2.0.1" 4366 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 4367 | 4368 | supports-color@^2.0.0: 4369 | version "2.0.0" 4370 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 4371 | 4372 | supports-color@^3.1.2: 4373 | version "3.2.3" 4374 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 4375 | dependencies: 4376 | has-flag "^1.0.0" 4377 | 4378 | supports-color@^4.0.0: 4379 | version "4.4.0" 4380 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 4381 | dependencies: 4382 | has-flag "^2.0.0" 4383 | 4384 | symbol-observable@^1.0.1: 4385 | version "1.0.4" 4386 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 4387 | 4388 | symbol-tree@^3.2.1: 4389 | version "3.2.2" 4390 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 4391 | 4392 | tar-pack@^3.4.0: 4393 | version "3.4.0" 4394 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 4395 | dependencies: 4396 | debug "^2.2.0" 4397 | fstream "^1.0.10" 4398 | fstream-ignore "^1.0.5" 4399 | once "^1.3.3" 4400 | readable-stream "^2.1.4" 4401 | rimraf "^2.5.1" 4402 | tar "^2.2.1" 4403 | uid-number "^0.0.6" 4404 | 4405 | tar@^2.2.1: 4406 | version "2.2.1" 4407 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 4408 | dependencies: 4409 | block-stream "*" 4410 | fstream "^1.0.2" 4411 | inherits "2" 4412 | 4413 | term-size@^0.1.0: 4414 | version "0.1.1" 4415 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-0.1.1.tgz#87360b96396cab5760963714cda0d0cbeecad9ca" 4416 | dependencies: 4417 | execa "^0.4.0" 4418 | 4419 | test-exclude@^4.1.0: 4420 | version "4.1.0" 4421 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.0.tgz#04ca70b7390dd38c98d4a003a173806ca7991c91" 4422 | dependencies: 4423 | arrify "^1.0.1" 4424 | micromatch "^2.3.11" 4425 | object-assign "^4.1.0" 4426 | read-pkg-up "^1.0.1" 4427 | require-main-filename "^1.0.1" 4428 | 4429 | test-exclude@^4.1.1: 4430 | version "4.1.1" 4431 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 4432 | dependencies: 4433 | arrify "^1.0.1" 4434 | micromatch "^2.3.11" 4435 | object-assign "^4.1.0" 4436 | read-pkg-up "^1.0.1" 4437 | require-main-filename "^1.0.1" 4438 | 4439 | thenify-all@^1.0.0, thenify-all@^1.6.0: 4440 | version "1.6.0" 4441 | resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" 4442 | dependencies: 4443 | thenify ">= 3.1.0 < 4" 4444 | 4445 | "thenify@>= 3.1.0 < 4": 4446 | version "3.3.0" 4447 | resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.0.tgz#e69e38a1babe969b0108207978b9f62b88604839" 4448 | dependencies: 4449 | any-promise "^1.0.0" 4450 | 4451 | throat@^4.0.0: 4452 | version "4.1.0" 4453 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 4454 | 4455 | through@2, through@^2.3.6, through@~2.3, through@~2.3.1: 4456 | version "2.3.8" 4457 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 4458 | 4459 | timed-out@^4.0.0: 4460 | version "4.0.1" 4461 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 4462 | 4463 | tmp@^0.0.29: 4464 | version "0.0.29" 4465 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.29.tgz#f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0" 4466 | dependencies: 4467 | os-tmpdir "~1.0.1" 4468 | 4469 | tmpl@1.0.x: 4470 | version "1.0.4" 4471 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 4472 | 4473 | to-fast-properties@^1.0.1: 4474 | version "1.0.3" 4475 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 4476 | 4477 | tough-cookie@>=2.3.0, tough-cookie@^2.3.2, tough-cookie@~2.3.0: 4478 | version "2.3.2" 4479 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 4480 | dependencies: 4481 | punycode "^1.4.1" 4482 | 4483 | tr46@~0.0.3: 4484 | version "0.0.3" 4485 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 4486 | 4487 | travis-ci@^2.1.1: 4488 | version "2.1.1" 4489 | resolved "https://registry.yarnpkg.com/travis-ci/-/travis-ci-2.1.1.tgz#98696265af827ae3576f31aa06d876e74b4b082e" 4490 | dependencies: 4491 | github "~0.1.10" 4492 | lodash "~1.3.1" 4493 | request "~2.74.0" 4494 | underscore.string "~2.2.0rc" 4495 | 4496 | travis-deploy-once@1.0.0-node-0.10-support: 4497 | version "1.0.0-node-0.10-support" 4498 | resolved "https://registry.yarnpkg.com/travis-deploy-once/-/travis-deploy-once-1.0.0-node-0.10-support.tgz#98ecce7d95b2f4ba5dcdeeebf54b9df87713d5e6" 4499 | dependencies: 4500 | babel-polyfill "^6.16.0" 4501 | bluebird "^3.4.6" 4502 | request "^2.78.0" 4503 | request-promise "^4.1.1" 4504 | travis-ci "^2.1.1" 4505 | 4506 | trim-newlines@^1.0.0: 4507 | version "1.0.0" 4508 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 4509 | 4510 | trim-right@^1.0.1: 4511 | version "1.0.1" 4512 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 4513 | 4514 | ts-jest@^21.1.2: 4515 | version "21.1.2" 4516 | resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-21.1.2.tgz#3f5aa88125d9f6e9ae07b745e20062d069c22ad9" 4517 | dependencies: 4518 | babel-core "^6.24.1" 4519 | babel-plugin-istanbul "^4.1.4" 4520 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 4521 | babel-preset-jest "^21.2.0" 4522 | fs-extra "^4.0.0" 4523 | jest-config "^21.2.1" 4524 | jest-util "^21.2.1" 4525 | pkg-dir "^2.0.0" 4526 | source-map-support "^0.5.0" 4527 | yargs "^9.0.1" 4528 | 4529 | tslib@^1.6.0: 4530 | version "1.7.1" 4531 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.7.1.tgz#bc8004164691923a79fe8378bbeb3da2017538ec" 4532 | 4533 | tslint@^5.0.0: 4534 | version "5.3.2" 4535 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.3.2.tgz#e56459fb095a7307f103b84052174f5e3bbef6ed" 4536 | dependencies: 4537 | babel-code-frame "^6.22.0" 4538 | colors "^1.1.2" 4539 | diff "^3.2.0" 4540 | glob "^7.1.1" 4541 | optimist "~0.6.0" 4542 | resolve "^1.3.2" 4543 | semver "^5.3.0" 4544 | tslib "^1.6.0" 4545 | tsutils "^2.0.0" 4546 | 4547 | tsutils@^1.1.0: 4548 | version "1.9.1" 4549 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-1.9.1.tgz#b9f9ab44e55af9681831d5f28d0aeeaf5c750cb0" 4550 | 4551 | tsutils@^2.0.0: 4552 | version "2.1.0" 4553 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.1.0.tgz#5be8376c929528f65b302de9e17b0004e4c1eb20" 4554 | 4555 | tunnel-agent@^0.6.0: 4556 | version "0.6.0" 4557 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 4558 | dependencies: 4559 | safe-buffer "^5.0.1" 4560 | 4561 | tunnel-agent@~0.4.1: 4562 | version "0.4.3" 4563 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 4564 | 4565 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 4566 | version "0.14.5" 4567 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 4568 | 4569 | type-check@~0.3.2: 4570 | version "0.3.2" 4571 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 4572 | dependencies: 4573 | prelude-ls "~1.1.2" 4574 | 4575 | typedarray@^0.0.6: 4576 | version "0.0.6" 4577 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 4578 | 4579 | typedoc-default-themes@^0.5.0: 4580 | version "0.5.0" 4581 | resolved "https://registry.yarnpkg.com/typedoc-default-themes/-/typedoc-default-themes-0.5.0.tgz#6dc2433e78ed8bea8e887a3acde2f31785bd6227" 4582 | 4583 | typedoc-plugin-external-module-name@^1.0.9: 4584 | version "1.0.9" 4585 | resolved "https://registry.yarnpkg.com/typedoc-plugin-external-module-name/-/typedoc-plugin-external-module-name-1.0.9.tgz#8e95e4b6680ef36c8da678c63edeb770e408959e" 4586 | 4587 | typedoc@^0.7.1: 4588 | version "0.7.1" 4589 | resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.7.1.tgz#b441bffe246bb3e0e598d9ae474e743594bda769" 4590 | dependencies: 4591 | "@types/fs-extra" "^3.0.0" 4592 | "@types/handlebars" "^4.0.31" 4593 | "@types/highlight.js" "^9.1.8" 4594 | "@types/lodash" "^4.14.37" 4595 | "@types/marked" "0.0.28" 4596 | "@types/minimatch" "^2.0.29" 4597 | "@types/shelljs" "^0.7.0" 4598 | fs-extra "^3.0.0" 4599 | handlebars "^4.0.6" 4600 | highlight.js "^9.0.0" 4601 | lodash "^4.13.1" 4602 | marked "^0.3.5" 4603 | minimatch "^3.0.0" 4604 | progress "^2.0.0" 4605 | shelljs "^0.7.0" 4606 | typedoc-default-themes "^0.5.0" 4607 | typescript "2.3.2" 4608 | 4609 | typescript@2.3.2: 4610 | version "2.3.2" 4611 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.3.2.tgz#f0f045e196f69a72f06b25fd3bd39d01c3ce9984" 4612 | 4613 | typescript@^2.4.1: 4614 | version "2.4.1" 4615 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.4.1.tgz#c3ccb16ddaa0b2314de031e7e6fee89e5ba346bc" 4616 | 4617 | uglify-js@^2.6: 4618 | version "2.8.27" 4619 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.27.tgz#47787f912b0f242e5b984343be8e35e95f694c9c" 4620 | dependencies: 4621 | source-map "~0.5.1" 4622 | yargs "~3.10.0" 4623 | optionalDependencies: 4624 | uglify-to-browserify "~1.0.0" 4625 | 4626 | uglify-to-browserify@~1.0.0: 4627 | version "1.0.2" 4628 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 4629 | 4630 | uid-number@0.0.5: 4631 | version "0.0.5" 4632 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.5.tgz#5a3db23ef5dbd55b81fce0ec9a2ac6fccdebb81e" 4633 | 4634 | uid-number@^0.0.6: 4635 | version "0.0.6" 4636 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 4637 | 4638 | underscore.string@~2.2.0rc: 4639 | version "2.2.1" 4640 | resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-2.2.1.tgz#d7c0fa2af5d5a1a67f4253daee98132e733f0f19" 4641 | 4642 | unique-string@^1.0.0: 4643 | version "1.0.0" 4644 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 4645 | dependencies: 4646 | crypto-random-string "^1.0.0" 4647 | 4648 | universalify@^0.1.0: 4649 | version "0.1.0" 4650 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.0.tgz#9eb1c4651debcc670cc94f1a75762332bb967778" 4651 | 4652 | unpipe@1.0.0: 4653 | version "1.0.0" 4654 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 4655 | 4656 | unzip-response@^2.0.1: 4657 | version "2.0.1" 4658 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 4659 | 4660 | update-notifier@2.1.0: 4661 | version "2.1.0" 4662 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.1.0.tgz#ec0c1e53536b76647a24b77cb83966d9315123d9" 4663 | dependencies: 4664 | boxen "^1.0.0" 4665 | chalk "^1.0.0" 4666 | configstore "^3.0.0" 4667 | is-npm "^1.0.0" 4668 | latest-version "^3.0.0" 4669 | lazy-req "^2.0.0" 4670 | semver-diff "^2.0.0" 4671 | xdg-basedir "^3.0.0" 4672 | 4673 | update-notifier@2.2.0: 4674 | version "2.2.0" 4675 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.2.0.tgz#1b5837cf90c0736d88627732b661c138f86de72f" 4676 | dependencies: 4677 | boxen "^1.0.0" 4678 | chalk "^1.0.0" 4679 | configstore "^3.0.0" 4680 | import-lazy "^2.1.0" 4681 | is-npm "^1.0.0" 4682 | latest-version "^3.0.0" 4683 | semver-diff "^2.0.0" 4684 | xdg-basedir "^3.0.0" 4685 | 4686 | url-parse-lax@^1.0.0: 4687 | version "1.0.0" 4688 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 4689 | dependencies: 4690 | prepend-http "^1.0.1" 4691 | 4692 | util-deprecate@~1.0.1: 4693 | version "1.0.2" 4694 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4695 | 4696 | uuid@^3.0.0: 4697 | version "3.0.1" 4698 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 4699 | 4700 | validate-commit-msg@^2.12.1: 4701 | version "2.12.1" 4702 | resolved "https://registry.yarnpkg.com/validate-commit-msg/-/validate-commit-msg-2.12.1.tgz#612b61bc9f09f0fee5130de3648870d01cdddf1d" 4703 | dependencies: 4704 | conventional-commit-types "^2.0.0" 4705 | find-parent-dir "^0.3.0" 4706 | findup "0.1.5" 4707 | semver-regex "1.0.0" 4708 | 4709 | validate-npm-package-license@^3.0.1: 4710 | version "3.0.1" 4711 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 4712 | dependencies: 4713 | spdx-correct "~1.0.0" 4714 | spdx-expression-parse "~1.0.0" 4715 | 4716 | vary@~1.1.0: 4717 | version "1.1.1" 4718 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.1.tgz#67535ebb694c1d52257457984665323f587e8d37" 4719 | 4720 | verror@1.3.6: 4721 | version "1.3.6" 4722 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 4723 | dependencies: 4724 | extsprintf "1.0.2" 4725 | 4726 | vlq@^0.2.1: 4727 | version "0.2.2" 4728 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.2.tgz#e316d5257b40b86bb43cb8d5fea5d7f54d6b0ca1" 4729 | 4730 | voca@^1.2.0: 4731 | version "1.3.0" 4732 | resolved "https://registry.yarnpkg.com/voca/-/voca-1.3.0.tgz#02751ac839bf0c92e2cfe88e49c393c94dd50ac3" 4733 | 4734 | walk@^2.3.9: 4735 | version "2.3.9" 4736 | resolved "https://registry.yarnpkg.com/walk/-/walk-2.3.9.tgz#31b4db6678f2ae01c39ea9fb8725a9031e558a7b" 4737 | dependencies: 4738 | foreachasync "^3.0.0" 4739 | 4740 | walker@~1.0.5: 4741 | version "1.0.7" 4742 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 4743 | dependencies: 4744 | makeerror "1.0.x" 4745 | 4746 | watch@~0.10.0: 4747 | version "0.10.0" 4748 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 4749 | 4750 | watch@~0.18.0: 4751 | version "0.18.0" 4752 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 4753 | dependencies: 4754 | exec-sh "^0.2.0" 4755 | minimist "^1.2.0" 4756 | 4757 | webidl-conversions@^3.0.0: 4758 | version "3.0.1" 4759 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 4760 | 4761 | webidl-conversions@^4.0.0: 4762 | version "4.0.1" 4763 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 4764 | 4765 | whatwg-encoding@^1.0.1: 4766 | version "1.0.1" 4767 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 4768 | dependencies: 4769 | iconv-lite "0.4.13" 4770 | 4771 | whatwg-url@^4.3.0: 4772 | version "4.8.0" 4773 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 4774 | dependencies: 4775 | tr46 "~0.0.3" 4776 | webidl-conversions "^3.0.0" 4777 | 4778 | which-module@^1.0.0: 4779 | version "1.0.0" 4780 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 4781 | 4782 | which-module@^2.0.0: 4783 | version "2.0.0" 4784 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 4785 | 4786 | which@^1.2.10, which@^1.2.12, which@^1.2.8, which@^1.2.9: 4787 | version "1.2.14" 4788 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 4789 | dependencies: 4790 | isexe "^2.0.0" 4791 | 4792 | wide-align@^1.1.0: 4793 | version "1.1.2" 4794 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 4795 | dependencies: 4796 | string-width "^1.0.2" 4797 | 4798 | widest-line@^1.0.0: 4799 | version "1.0.0" 4800 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 4801 | dependencies: 4802 | string-width "^1.0.1" 4803 | 4804 | window-size@0.1.0: 4805 | version "0.1.0" 4806 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4807 | 4808 | window-size@^0.2.0: 4809 | version "0.2.0" 4810 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 4811 | 4812 | word-wrap@^1.0.3: 4813 | version "1.2.2" 4814 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.2.tgz#8fa78c3bda3e3138c7797fabceae709968814b41" 4815 | 4816 | wordwrap@0.0.2: 4817 | version "0.0.2" 4818 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4819 | 4820 | wordwrap@~0.0.2: 4821 | version "0.0.3" 4822 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4823 | 4824 | wordwrap@~1.0.0: 4825 | version "1.0.0" 4826 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4827 | 4828 | worker-farm@^1.3.1: 4829 | version "1.3.1" 4830 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 4831 | dependencies: 4832 | errno ">=0.1.1 <0.2.0-0" 4833 | xtend ">=4.0.0 <4.1.0-0" 4834 | 4835 | wrap-ansi@^2.0.0: 4836 | version "2.1.0" 4837 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4838 | dependencies: 4839 | string-width "^1.0.1" 4840 | strip-ansi "^3.0.1" 4841 | 4842 | wrappy@1: 4843 | version "1.0.2" 4844 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4845 | 4846 | write-file-atomic@^2.0.0: 4847 | version "2.1.0" 4848 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.1.0.tgz#1769f4b551eedce419f0505deae2e26763542d37" 4849 | dependencies: 4850 | graceful-fs "^4.1.11" 4851 | imurmurhash "^0.1.4" 4852 | slide "^1.1.5" 4853 | 4854 | write-file-atomic@^2.1.0: 4855 | version "2.3.0" 4856 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 4857 | dependencies: 4858 | graceful-fs "^4.1.11" 4859 | imurmurhash "^0.1.4" 4860 | signal-exit "^3.0.2" 4861 | 4862 | xdg-basedir@^3.0.0: 4863 | version "3.0.0" 4864 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 4865 | 4866 | xml-name-validator@^2.0.1: 4867 | version "2.0.1" 4868 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 4869 | 4870 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0: 4871 | version "4.0.1" 4872 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4873 | 4874 | y18n@^3.2.1: 4875 | version "3.2.1" 4876 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4877 | 4878 | yallist@^2.0.0: 4879 | version "2.1.2" 4880 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4881 | 4882 | yargs-parser@^2.4.1: 4883 | version "2.4.1" 4884 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-2.4.1.tgz#85568de3cf150ff49fa51825f03a8c880ddcc5c4" 4885 | dependencies: 4886 | camelcase "^3.0.0" 4887 | lodash.assign "^4.0.6" 4888 | 4889 | yargs-parser@^5.0.0: 4890 | version "5.0.0" 4891 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 4892 | dependencies: 4893 | camelcase "^3.0.0" 4894 | 4895 | yargs-parser@^7.0.0: 4896 | version "7.0.0" 4897 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 4898 | dependencies: 4899 | camelcase "^4.1.0" 4900 | 4901 | yargs@^4.8.0: 4902 | version "4.8.1" 4903 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0" 4904 | dependencies: 4905 | cliui "^3.2.0" 4906 | decamelize "^1.1.1" 4907 | get-caller-file "^1.0.1" 4908 | lodash.assign "^4.0.3" 4909 | os-locale "^1.4.0" 4910 | read-pkg-up "^1.0.1" 4911 | require-directory "^2.1.1" 4912 | require-main-filename "^1.0.1" 4913 | set-blocking "^2.0.0" 4914 | string-width "^1.0.1" 4915 | which-module "^1.0.0" 4916 | window-size "^0.2.0" 4917 | y18n "^3.2.1" 4918 | yargs-parser "^2.4.1" 4919 | 4920 | yargs@^7.0.2: 4921 | version "7.1.0" 4922 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 4923 | dependencies: 4924 | camelcase "^3.0.0" 4925 | cliui "^3.2.0" 4926 | decamelize "^1.1.1" 4927 | get-caller-file "^1.0.1" 4928 | os-locale "^1.4.0" 4929 | read-pkg-up "^1.0.1" 4930 | require-directory "^2.1.1" 4931 | require-main-filename "^1.0.1" 4932 | set-blocking "^2.0.0" 4933 | string-width "^1.0.2" 4934 | which-module "^1.0.0" 4935 | y18n "^3.2.1" 4936 | yargs-parser "^5.0.0" 4937 | 4938 | yargs@^9.0.0, yargs@^9.0.1: 4939 | version "9.0.1" 4940 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" 4941 | dependencies: 4942 | camelcase "^4.1.0" 4943 | cliui "^3.2.0" 4944 | decamelize "^1.1.1" 4945 | get-caller-file "^1.0.1" 4946 | os-locale "^2.0.0" 4947 | read-pkg-up "^2.0.0" 4948 | require-directory "^2.1.1" 4949 | require-main-filename "^1.0.1" 4950 | set-blocking "^2.0.0" 4951 | string-width "^2.0.0" 4952 | which-module "^2.0.0" 4953 | y18n "^3.2.1" 4954 | yargs-parser "^7.0.0" 4955 | 4956 | yargs@~3.10.0: 4957 | version "3.10.0" 4958 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4959 | dependencies: 4960 | camelcase "^1.0.2" 4961 | cliui "^2.1.0" 4962 | decamelize "^1.0.0" 4963 | window-size "0.1.0" 4964 | --------------------------------------------------------------------------------