├── .npmignore ├── .editorconfig ├── __mocks__ └── fs.js ├── CONTRIBUTING.md ├── tsconfig.json ├── src ├── test │ ├── tooFarDown.js │ ├── untypedWithoutFlow.js │ ├── flowWithSlashes.js │ ├── flowWithAsterisks.js │ ├── goldilocks.js │ └── lotsOfWhiteSpace.js ├── __snapshots__ │ └── index.test.ts.snap ├── index.ts └── index.test.ts ├── tslint.json ├── LICENSE.md ├── .gitignore ├── README.md ├── package.json ├── CODE_OF_CONDUCT.md └── yarn.lock /.npmignore: -------------------------------------------------------------------------------- 1 | .babelrc 2 | .editorconfig 3 | .esdoc.json 4 | .travis.yml 5 | yarn.lock 6 | node_modules/ 7 | src/ 8 | types/* 9 | !types/index.d.ts 10 | -------------------------------------------------------------------------------- /.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 13 | -------------------------------------------------------------------------------- /__mocks__/fs.js: -------------------------------------------------------------------------------- 1 | 2 | let mockFiles = {} 3 | 4 | function __setMockFiles(newMockFiles) { 5 | mockFiles = newMockFiles 6 | } 7 | 8 | function readFile(path, encoding, callback) { 9 | if (mockFiles[path]) { 10 | callback(null, mockFiles[path]) 11 | return 12 | } 13 | 14 | callback(new Error('File contents not configured in test.')) 15 | } 16 | 17 | module.exports = { 18 | __setMockFiles, 19 | readFile, 20 | } 21 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## Development 2 | 3 | Install [Yarn](https://yarnpkg.com/en/), and install the dependencies - `yarn install`. 4 | 5 | Run the [Jest](https://facebook.github.io/jest/) test suite with `yarn test`. 6 | 7 | This project uses [semantic-release](https://github.com/semantic-release/semantic-release) for automated NPM package publishing. 8 | 9 | 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). 10 | 11 | :heart: 12 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6", 4 | "module": "commonjs", 5 | "rootDir": "src", 6 | "outDir": "dist", 7 | "allowJs": false, 8 | "pretty": true, 9 | "strictNullChecks": true, 10 | "declaration": true, 11 | "allowSyntheticDefaultImports": true, 12 | "esModuleInterop": true 13 | }, 14 | "lib":["es2017"], 15 | "include": [ 16 | "src/**/*.ts", 17 | "src/**/*.tsx", 18 | "dangerfile.ts" 19 | ], 20 | "exclude": [ 21 | "dangerfile.ts", 22 | "node_modules", 23 | "dist" 24 | ] 25 | } 26 | -------------------------------------------------------------------------------- /src/test/tooFarDown.js: -------------------------------------------------------------------------------- 1 | function splitString(stringToSplit, separator) { 2 | var arrayOfStrings = stringToSplit.split(separator); 3 | 4 | console.log('The original string is: "' + stringToSplit + '"'); 5 | console.log('The separator is: "' + separator + '"'); 6 | console.log('The array has ' + arrayOfStrings.length + ' elements: ' + arrayOfStrings.join(' / ')); 7 | } 8 | 9 | var tempestString = 'Oh brave new world that has such people in it.'; 10 | var monthString = 'Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec'; 11 | // @flow 12 | var space = ' '; 13 | var comma = ','; 14 | 15 | splitString(tempestString, space); 16 | splitString(tempestString); 17 | splitString(monthString, comma); 18 | -------------------------------------------------------------------------------- /src/test/untypedWithoutFlow.js: -------------------------------------------------------------------------------- 1 | function splitString(stringToSplit, separator) { 2 | var arrayOfStrings = stringToSplit.split(separator); 3 | 4 | console.log('The original string is: "' + stringToSplit + '"'); 5 | console.log('The separator is: "' + separator + '"'); 6 | console.log('The array has ' + arrayOfStrings.length + ' elements: ' + arrayOfStrings.join(' / ')); 7 | } 8 | 9 | var tempestString = 'Oh brave new world that has such people in it.'; 10 | var monthString = 'Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec'; 11 | 12 | var space = ' '; 13 | var comma = ','; 14 | 15 | splitString(tempestString, space); 16 | splitString(tempestString); 17 | splitString(monthString, comma); 18 | -------------------------------------------------------------------------------- /src/test/flowWithSlashes.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | function splitString(stringToSplit, separator) { 3 | var arrayOfStrings = stringToSplit.split(separator); 4 | 5 | console.log('The original string is: "' + stringToSplit + '"'); 6 | console.log('The separator is: "' + separator + '"'); 7 | console.log('The array has ' + arrayOfStrings.length + ' elements: ' + arrayOfStrings.join(' / ')); 8 | } 9 | 10 | var tempestString = 'Oh brave new world that has such people in it.'; 11 | var monthString = 'Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec'; 12 | 13 | var space = ' '; 14 | var comma = ','; 15 | 16 | splitString(tempestString, space); 17 | splitString(tempestString); 18 | splitString(monthString, comma); 19 | -------------------------------------------------------------------------------- /src/test/flowWithAsterisks.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | function splitString(stringToSplit, separator) { 3 | var arrayOfStrings = stringToSplit.split(separator); 4 | 5 | console.log('The original string is: "' + stringToSplit + '"'); 6 | console.log('The separator is: "' + separator + '"'); 7 | console.log('The array has ' + arrayOfStrings.length + ' elements: ' + arrayOfStrings.join(' / ')); 8 | } 9 | 10 | var tempestString = 'Oh brave new world that has such people in it.'; 11 | var monthString = 'Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec'; 12 | 13 | var space = ' '; 14 | var comma = ','; 15 | 16 | splitString(tempestString, space); 17 | splitString(tempestString); 18 | splitString(monthString, comma); 19 | -------------------------------------------------------------------------------- /src/test/goldilocks.js: -------------------------------------------------------------------------------- 1 | function splitString(stringToSplit, separator) { 2 | var arrayOfStrings = stringToSplit.split(separator); 3 | 4 | console.log('The original string is: "' + stringToSplit + '"'); 5 | console.log('The separator is: "' + separator + '"'); 6 | console.log('The array has ' + arrayOfStrings.length + ' elements: ' + arrayOfStrings.join(' / ')); 7 | } 8 | 9 | var tempestString = 'Oh brave new world that has such people in it.'; 10 | // @flow 11 | // Get it? "Goldilocks"? Juuuuuust right 12 | 13 | var monthString = 'Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec'; 14 | var space = ' '; 15 | var comma = ','; 16 | 17 | splitString(tempestString, space); 18 | splitString(tempestString); 19 | splitString(monthString, comma); 20 | -------------------------------------------------------------------------------- /src/test/lotsOfWhiteSpace.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | // @flow 13 | function splitString(stringToSplit, separator) { 14 | var arrayOfStrings = stringToSplit.split(separator); 15 | 16 | console.log('The original string is: "' + stringToSplit + '"'); 17 | console.log('The separator is: "' + separator + '"'); 18 | console.log('The array has ' + arrayOfStrings.length + ' elements: ' + arrayOfStrings.join(' / ')); 19 | } 20 | 21 | var tempestString = 'Oh brave new world that has such people in it.'; 22 | var monthString = 'Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec'; 23 | 24 | var space = ' '; 25 | var comma = ','; 26 | 27 | splitString(tempestString, space); 28 | splitString(tempestString); 29 | splitString(monthString, comma); 30 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "tslint:recommended" 4 | ], 5 | "rules": { 6 | "arrow-parens": false, 7 | "interface-name": [ 8 | true, 9 | "never-prefix" 10 | ], 11 | "max-classes-per-file": [ 12 | false 13 | ], 14 | "member-access": [ 15 | false, 16 | "check-accessor", 17 | "check-constructor" 18 | ], 19 | "object-literal-sort-keys": false, 20 | "semicolon": [ 21 | true, 22 | "never", 23 | "ignore-interfaces", 24 | "ignore-bound-class-methods" 25 | ], 26 | "switch-default": false, 27 | "trailing-comma": [ 28 | true, 29 | { 30 | "multiline": { 31 | "objects": "always", 32 | "arrays": "always", 33 | "functions": "never", 34 | "typeLiterals": "ignore" 35 | }, 36 | "singleline": "never" 37 | } 38 | ] 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright 2018 Max Stoiber 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 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by https://www.gitignore.io/api/node,visualstudiocode 2 | 3 | ### Node ### 4 | # Logs 5 | logs 6 | *.log 7 | npm-debug.log* 8 | yarn-debug.log* 9 | yarn-error.log* 10 | 11 | # Runtime data 12 | pids 13 | *.pid 14 | *.seed 15 | *.pid.lock 16 | 17 | # Directory for instrumented libs generated by jscoverage/JSCover 18 | lib-cov 19 | 20 | # Coverage directory used by tools like istanbul 21 | coverage 22 | 23 | # nyc test coverage 24 | .nyc_output 25 | 26 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 27 | .grunt 28 | 29 | # Bower dependency directory (https://bower.io/) 30 | bower_components 31 | 32 | # node-waf configuration 33 | .lock-wscript 34 | 35 | # Compiled binary addons (http://nodejs.org/api/addons.html) 36 | build/Release 37 | 38 | # Dependency directories 39 | node_modules/ 40 | jspm_packages/ 41 | 42 | # Typescript v1 declaration files 43 | typings/ 44 | 45 | # Optional npm cache directory 46 | .npm 47 | 48 | # Optional eslint cache 49 | .eslintcache 50 | 51 | # Optional REPL history 52 | .node_repl_history 53 | 54 | # Output of 'npm pack' 55 | *.tgz 56 | 57 | # Yarn Integrity file 58 | .yarn-integrity 59 | 60 | # dotenv environment variables file 61 | .env 62 | 63 | # Generated code 64 | dist/ 65 | 66 | ### VisualStudioCode ### 67 | .vscode/* 68 | !.vscode/settings.json 69 | !.vscode/tasks.json 70 | !.vscode/launch.json 71 | !.vscode/extensions.json 72 | 73 | # Vim 74 | *.sw* 75 | 76 | # End of https://www.gitignore.io/api/node,visualstudiocode 77 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # danger-plugin-flow 2 | 3 | [![Build Status](https://travis-ci.org/withspectrum/danger-plugin-flow.svg?branch=master)](https://travis-ci.org/withspectrum/danger-plugin-flow) 4 | [![npm version](https://badge.fury.io/js/danger-plugin-flow.svg)](https://badge.fury.io/js/danger-plugin-flow) 5 | 6 | > Ensure all new `.js` files in a project are flow typed 7 | 8 | ## Usage 9 | 10 | Install: 11 | 12 | ```sh 13 | yarn add danger-plugin-flow --dev 14 | ``` 15 | 16 | At a glance: 17 | 18 | ```js 19 | // dangerfile.js 20 | import { schedule } from 'danger' 21 | import flow from 'danger-plugin-flow' 22 | 23 | schedule(flow()); 24 | ``` 25 | 26 | ### Options 27 | 28 | **Recommended setup**: 29 | 30 | ```JS 31 | schedule(flow({ 32 | modified: "warn", 33 | created: "fail" 34 | })) 35 | ``` 36 | 37 | This will fail the build for any newly introduced file that isn't flow typed, but will only warn the developer if they touch a file that's not flow typed. This is what we use because it can be hard to type legacy code, but we want to ensure every newly incoming code is properly typed. 38 | 39 | #### `blacklist` 40 | 41 | Blacklist certain globs from being checked: 42 | 43 | ```JS 44 | schedule(flow({ 45 | blacklist: ['dist/**/*.js'] 46 | })) 47 | ``` 48 | 49 | #### `created` 50 | 51 | Decide whether you want to warn, fail or ignore newly created files that are untyped: 52 | 53 | ```JS 54 | schedule(flow({ 55 | created: "warn" 56 | })) 57 | 58 | schedule(flow({ 59 | created: "fail" 60 | })) 61 | 62 | schedule(flow({ 63 | created: false 64 | })) 65 | ``` 66 | 67 | #### `modified` 68 | 69 | Decide whether you want to warn, fail or ignore modified files that are untyped: 70 | 71 | ```JS 72 | schedule(flow({ 73 | modified: "warn" 74 | })) 75 | 76 | schedule(flow({ 77 | modified: "fail" 78 | })) 79 | 80 | schedule(flow({ 81 | modified: false 82 | })) 83 | ``` 84 | 85 | ## Changelog 86 | 87 | See the GitHub [release history](https://github.com/withspectrum/danger-plugin-flow/releases). 88 | 89 | ## Contributing 90 | 91 | See [CONTRIBUTING.md](CONTRIBUTING.md). 92 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "danger-plugin-flow", 3 | "description": "Ensure all new JS files in a project are flow typed", 4 | "author": { 5 | "name": "Max Stoiber", 6 | "email": "contact@mxstbr.com" 7 | }, 8 | "repository": { 9 | "type": "git", 10 | "url": "https://github.com/withspectrum/danger-plugin-flow.git" 11 | }, 12 | "bugs": { 13 | "url": "https://github.com/withspectrum/danger-plugin-flow/issues" 14 | }, 15 | "homepage": "https://github.com/withspectrum/danger-plugin-flow#readme", 16 | "keywords": [ 17 | "danger", 18 | "danger-plugin" 19 | ], 20 | "version": "1.4.0", 21 | "main": "dist/index.js", 22 | "types": "types/index.d.ts", 23 | "scripts": { 24 | "precommit": "lint-staged", 25 | "commit": "git-cz", 26 | "commitmsg": "validate-commit-msg", 27 | "build": "tsc", 28 | "test": "jest", 29 | "predocs": "rm -rf docs/", 30 | "docs": "esdoc -c .esdoc.json", 31 | "prepublish": "yarn build", 32 | "semantic-release": "semantic-release pre && yarn publish && semantic-release post", 33 | "prettier": "prettier", 34 | "prettier-write": "yarn prettier --parser typescript --no-semi --trailing-comma es5 --write --print-width 120", 35 | "prettier-project": "yarn prettier-write 'src/**/*.{ts,tsx}'", 36 | "lint": "tslint \"src/**/*.ts\"" 37 | }, 38 | "license": "MIT", 39 | "engines": { 40 | "node": ">=4.0.0" 41 | }, 42 | "devDependencies": { 43 | "@types/jest": "^19.2.4", 44 | "@types/node": "^10.12.18", 45 | "commitizen": "^2.10.1", 46 | "cz-conventional-changelog": "^2.0.0", 47 | "danger": "*", 48 | "husky": "^0.13.3", 49 | "jest": "^20.0.1", 50 | "lint-staged": "^3.4.1", 51 | "prettier": "^1.16.1", 52 | "semantic-release": "^6.3.6", 53 | "ts-jest": "^20.0.0", 54 | "tslint": "^5.4.3", 55 | "typescript": "^2.3.2", 56 | "validate-commit-msg": "^2.12.1" 57 | }, 58 | "optionalDependencies": { 59 | "esdoc": "^0.5.2" 60 | }, 61 | "config": { 62 | "commitizen": { 63 | "path": "cz-conventional-changelog" 64 | } 65 | }, 66 | "lint-staged": { 67 | "*.@(ts|tsx)": [ 68 | "tslint --fix", 69 | "yarn prettier-write --", 70 | "git add" 71 | ] 72 | }, 73 | "jest": { 74 | "moduleFileExtensions": [ 75 | "ts", 76 | "tsx", 77 | "js" 78 | ], 79 | "transform": { 80 | ".(ts|tsx)": "/node_modules/ts-jest/preprocessor.js" 81 | }, 82 | "testRegex": "(.test)\\.(ts|tsx)$", 83 | "testPathIgnorePatterns": [ 84 | "\\.snap$", 85 | "/node_modules/" 86 | ] 87 | }, 88 | "dependencies": { 89 | "micromatch": "^3.1.10" 90 | } 91 | } 92 | -------------------------------------------------------------------------------- /src/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`flow() calls fail if there's untyped modified files 1`] = ` 4 | "These **modified** files do not have Flow enabled: 5 | - src/second-untyped.js" 6 | `; 7 | 8 | exports[`flow() calls fail if there's untyped new files 1`] = ` 9 | "These **new** files do not have Flow enabled: 10 | - src/untyped.js" 11 | `; 12 | 13 | exports[`flow() calls fail twice if there's untyped files 1`] = ` 14 | "These **modified** files do not have Flow enabled: 15 | - src/second-untyped.js" 16 | `; 17 | 18 | exports[`flow() calls fail twice if there's untyped files 2`] = ` 19 | "These **new** files do not have Flow enabled: 20 | - src/untyped.js" 21 | `; 22 | 23 | exports[`flow() calls warn if there's untyped modified files 1`] = ` 24 | "These **modified** files do not have Flow enabled: 25 | - src/second-untyped.js" 26 | `; 27 | 28 | exports[`flow() calls warn if there's untyped new files 1`] = ` 29 | "These **new** files do not have Flow enabled: 30 | - src/untyped.js" 31 | `; 32 | 33 | exports[`flow() does not include created files if modified is set to false 1`] = ` 34 | "These **modified** files do not have Flow enabled: 35 | - src/second-untyped.js" 36 | `; 37 | 38 | exports[`flow() does not include modified files if modified is set to false 1`] = ` 39 | "These **new** files do not have Flow enabled: 40 | - src/untyped.js" 41 | `; 42 | 43 | exports[`flow() local calls fail if there's untyped modified files 1`] = ` 44 | "These **modified** files do not have Flow enabled: 45 | - src/second-untyped.js" 46 | `; 47 | 48 | exports[`flow() local calls fail if there's untyped new files 1`] = ` 49 | "These **new** files do not have Flow enabled: 50 | - src/untyped.js" 51 | `; 52 | 53 | exports[`flow() local calls fail twice if there's untyped files 1`] = ` 54 | "These **modified** files do not have Flow enabled: 55 | - src/second-untyped.js" 56 | `; 57 | 58 | exports[`flow() local calls fail twice if there's untyped files 2`] = ` 59 | "These **new** files do not have Flow enabled: 60 | - src/untyped.js" 61 | `; 62 | 63 | exports[`flow() local calls warn if there's untyped modified files 1`] = ` 64 | "These **modified** files do not have Flow enabled: 65 | - src/second-untyped.js" 66 | `; 67 | 68 | exports[`flow() local calls warn if there's untyped new files 1`] = ` 69 | "These **new** files do not have Flow enabled: 70 | - src/untyped.js" 71 | `; 72 | 73 | exports[`flow() local does not include created files if modified is set to false 1`] = ` 74 | "These **modified** files do not have Flow enabled: 75 | - src/second-untyped.js" 76 | `; 77 | 78 | exports[`flow() local does not include modified files if modified is set to false 1`] = ` 79 | "These **new** files do not have Flow enabled: 80 | - src/untyped.js" 81 | `; 82 | 83 | exports[`flow() local respects the blacklist globs 1`] = ` 84 | "These **modified** files do not have Flow enabled: 85 | - src/second-untyped.js" 86 | `; 87 | 88 | exports[`flow() respects the blacklist globs 1`] = ` 89 | "These **modified** files do not have Flow enabled: 90 | - src/second-untyped.js" 91 | `; 92 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | ## Our Standards 8 | 9 | Examples of behavior that contributes to creating a positive environment include: 10 | 11 | * Using welcoming and inclusive language 12 | * Being respectful of differing viewpoints and experiences 13 | * Gracefully accepting constructive criticism 14 | * Focusing on what is best for the community 15 | * Showing empathy towards other community members 16 | 17 | Examples of unacceptable behavior by participants include: 18 | 19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances 20 | * Trolling, insulting/derogatory comments, and personal or political attacks 21 | * Public or private harassment 22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission 23 | * Other conduct which could reasonably be considered inappropriate in a professional setting 24 | 25 | ## Our Responsibilities 26 | 27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. 28 | 29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | ## Scope 32 | 33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 34 | 35 | ## Enforcement 36 | 37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at contact@mxstbr.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 38 | 39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 40 | 41 | ## Attribution 42 | 43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] 44 | 45 | [homepage]: http://contributor-covenant.org 46 | [version]: http://contributor-covenant.org/version/1/4/ 47 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | declare var require: (string) => any 2 | import fs from "fs" 3 | import mm from "micromatch" 4 | // Provides dev-time type structures for `danger` - doesn't affect runtime. 5 | import { DangerDSLType } from "../node_modules/danger/distribution/dsl/DangerDSL" 6 | declare var danger: DangerDSLType 7 | export declare function message(message: string): void 8 | export declare function warn(message: string): void 9 | export declare function fail(message: string): void 10 | export declare function markdown(message: string): void 11 | 12 | const ENDS_WITH_JS = /jsx?$/i 13 | 14 | export type Method = "warn" | "fail" | "message" | false 15 | 16 | export const PLATFORM_GITHUB = "github" 17 | export const PLATFORM_LOCAL = "local" 18 | export const PLATFORMS = { 19 | [PLATFORM_GITHUB]: PLATFORM_GITHUB, 20 | [PLATFORM_LOCAL]: PLATFORM_LOCAL, 21 | } 22 | 23 | export type Platform = keyof typeof PLATFORMS 24 | 25 | export interface Options { 26 | blacklist?: string[] 27 | modified?: Method 28 | created?: Method 29 | platform?: Platform 30 | } 31 | 32 | function readFileLocal(path: string) { 33 | const FILE_ENCODING = "utf8" 34 | return new Promise((resolve, reject) => { 35 | fs.readFile(path, FILE_ENCODING, (err, data) => { 36 | if (err) { 37 | reject(err) 38 | return 39 | } 40 | 41 | resolve({ path, content: data }) 42 | }) 43 | }) 44 | } 45 | 46 | function readFileGitHub(path: string) { 47 | return danger.github.utils.fileContents(path).then(content => ({ 48 | path, 49 | content, 50 | })) 51 | } 52 | 53 | /** 54 | * Make sure people flowtype their code 55 | */ 56 | export default async function flow(options: Options = {}) { 57 | // The danger methods, keyed by their name 58 | const methods = { 59 | fail, 60 | warn, 61 | message, 62 | } 63 | 64 | const blacklist = options && options.blacklist ? options.blacklist : [] 65 | const includeModifiedFiles = options.modified === false ? false : true 66 | const modifiedMethod = options.modified === undefined ? "fail" : options.modified 67 | const createdMethod = options.created === undefined ? "fail" : options.created 68 | const jsFiles = danger.git.created_files 69 | .concat(includeModifiedFiles ? danger.git.modified_files : []) 70 | .filter(path => ENDS_WITH_JS.test(path)) 71 | const unignoredFiles: string[] = mm.not(jsFiles, blacklist) 72 | const files = await Promise.all( 73 | unignoredFiles.map(path => { 74 | if (options.platform && options.platform === PLATFORM_LOCAL) { 75 | return readFileLocal(path) 76 | } else { 77 | return readFileGitHub(path) 78 | } 79 | }) 80 | ) 81 | 82 | function detectFlowPragma(content): boolean { 83 | const flowPragma = "@flow" 84 | const noFlowPragma = "@noflow" 85 | const maxLines = 10 86 | const lines = content.toString("utf-8").split("\n", maxLines) 87 | 88 | return lines.filter(line => line.includes(flowPragma) || line.includes(noFlowPragma)).length === 0 89 | } 90 | 91 | const unflowedFiles = files.filter(({ content }) => detectFlowPragma(content)).map(({ path }) => path) 92 | 93 | if (unflowedFiles.length === 0) { 94 | return 95 | } 96 | 97 | const modifiedUnflowedFiles = unflowedFiles.filter(path => danger.git.modified_files.indexOf(path) > -1) 98 | const createdUnflowedFiles = unflowedFiles.filter(path => danger.git.created_files.indexOf(path) > -1) 99 | 100 | if (modifiedUnflowedFiles.length > 0 && modifiedMethod) { 101 | // tslint:disable-next-line max-line-length 102 | methods[modifiedMethod]( 103 | `These **modified** files do not have Flow enabled:\n - ${modifiedUnflowedFiles.join("\n - ")}` 104 | ) 105 | } 106 | 107 | if (createdUnflowedFiles.length > 0 && createdMethod) { 108 | // tslint:disable-next-line max-line-length 109 | methods[createdMethod](`These **new** files do not have Flow enabled:\n - ${createdUnflowedFiles.join("\n - ")}`) 110 | } 111 | } 112 | -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- 1 | import flow from "./index" 2 | 3 | declare const global: any 4 | 5 | jest.mock("fs") 6 | 7 | const files = { 8 | "src/typed.js": "// @flow\nconst a = 'b'", 9 | "src/typed-with-asteriks.js": "/* @flow */\nconst a = 'b'", 10 | "src/untyped.js": "const a = 'b'", 11 | "src/second-untyped.js": "const a = 'c'", 12 | "src/noflow.js": "// @noflow\nconst a = 'b'", 13 | } 14 | 15 | const fileNames = Object.keys(files) 16 | 17 | describe("flow()", () => { 18 | beforeEach(() => { 19 | global.warn = jest.fn() 20 | global.message = jest.fn() 21 | global.fail = jest.fn() 22 | global.markdown = jest.fn() 23 | global.danger = { 24 | git: { 25 | created_files: [fileNames[0], fileNames[2]], 26 | modified_files: [fileNames[1], fileNames[3]], 27 | }, 28 | github: { 29 | utils: { 30 | fileContents: path => 31 | new Promise(res => { 32 | res(files[path]) 33 | }), 34 | }, 35 | }, 36 | } 37 | }) 38 | 39 | afterEach(() => { 40 | global.warn = undefined 41 | global.message = undefined 42 | global.fail = undefined 43 | global.markdown = undefined 44 | global.danger = undefined 45 | }) 46 | 47 | it("detect @noflow", async () => { 48 | global.danger.git.modified_files = [fileNames[4]] 49 | global.danger.git.created_files = [fileNames[4]] 50 | await flow() 51 | expect(global.fail).not.toHaveBeenCalled() 52 | }) 53 | 54 | it("calls fail if there's untyped new files", async () => { 55 | global.danger.git.modified_files = [] 56 | await flow() 57 | expect(global.fail).toHaveBeenCalled() 58 | expect(global.fail).toHaveBeenCalledTimes(1) 59 | expect(global.fail.mock.calls[0][0]).toMatchSnapshot() 60 | }) 61 | 62 | it("calls fail if there's untyped modified files", async () => { 63 | global.danger.git.created_files = [] 64 | await flow() 65 | expect(global.fail).toHaveBeenCalled() 66 | expect(global.fail).toHaveBeenCalledTimes(1) 67 | expect(global.fail.mock.calls[0][0]).toMatchSnapshot() 68 | }) 69 | 70 | it("calls fail twice if there's untyped files", async () => { 71 | await flow() 72 | expect(global.fail).toHaveBeenCalled() 73 | expect(global.fail).toHaveBeenCalledTimes(2) 74 | expect(global.fail.mock.calls[0][0]).toMatchSnapshot() 75 | expect(global.fail.mock.calls[1][0]).toMatchSnapshot() 76 | }) 77 | 78 | it("calls warn if there's untyped new files", async () => { 79 | global.danger.git.modified_files = [] 80 | await flow({ created: "warn" }) 81 | expect(global.warn).toHaveBeenCalled() 82 | expect(global.fail).not.toHaveBeenCalled() 83 | expect(global.warn).toHaveBeenCalledTimes(1) 84 | expect(global.warn.mock.calls[0][0]).toMatchSnapshot() 85 | }) 86 | 87 | it("calls warn if there's untyped modified files", async () => { 88 | global.danger.git.created_files = [] 89 | await flow({ modified: "warn" }) 90 | expect(global.warn).toHaveBeenCalled() 91 | expect(global.fail).not.toHaveBeenCalled() 92 | expect(global.warn).toHaveBeenCalledTimes(1) 93 | expect(global.warn.mock.calls[0][0]).toMatchSnapshot() 94 | }) 95 | 96 | it("does not include modified files if modified is set to false", async () => { 97 | await flow({ modified: false }) 98 | expect(global.fail).toHaveBeenCalled() 99 | expect(global.fail).toHaveBeenCalledTimes(1) 100 | expect(global.fail.mock.calls[0][0]).toMatchSnapshot() 101 | }) 102 | 103 | it("does not include created files if modified is set to false", async () => { 104 | await flow({ created: false }) 105 | expect(global.fail).toHaveBeenCalled() 106 | expect(global.fail).toHaveBeenCalledTimes(1) 107 | expect(global.fail.mock.calls[0][0]).toMatchSnapshot() 108 | }) 109 | 110 | it("respects the blacklist globs", async () => { 111 | await flow({ blacklist: ["src/untyped*"] }) 112 | expect(global.fail).toHaveBeenCalled() 113 | expect(global.fail.mock.calls[0][0]).toMatchSnapshot() 114 | }) 115 | 116 | it("does not call fail if there's no untyped new files", async () => { 117 | const typedFiles = { 118 | "src/typed.js": "// @flow\nconst a = 'b'", 119 | "src/typed-with-asteriks.js": "/* @flow */\nconst a = 'b'", 120 | } 121 | global.danger = { 122 | git: { 123 | modified_files: ["src/typed.js"], 124 | created_files: ["src/typed-with-asteriks.js"], 125 | }, 126 | github: { 127 | utils: { 128 | fileContents: path => 129 | new Promise(res => { 130 | res(typedFiles[path]) 131 | }), 132 | }, 133 | }, 134 | } 135 | await flow() 136 | expect(global.fail).not.toHaveBeenCalled() 137 | }) 138 | }) 139 | 140 | describe("flow() local", () => { 141 | beforeEach(() => { 142 | global.warn = jest.fn() 143 | global.message = jest.fn() 144 | global.fail = jest.fn() 145 | global.markdown = jest.fn() 146 | global.danger = { 147 | git: { 148 | created_files: [fileNames[0], fileNames[2]], 149 | modified_files: [fileNames[1], fileNames[3]], 150 | }, 151 | } 152 | 153 | require("fs").__setMockFiles(files) 154 | }) 155 | 156 | afterEach(() => { 157 | global.warn = undefined 158 | global.message = undefined 159 | global.fail = undefined 160 | global.markdown = undefined 161 | global.danger = undefined 162 | }) 163 | 164 | it("detect @noflow", async () => { 165 | global.danger.git.modified_files = [fileNames[4]] 166 | global.danger.git.created_files = [fileNames[4]] 167 | await flow({ platform: "local" }) 168 | expect(global.fail).not.toHaveBeenCalled() 169 | }) 170 | 171 | it("calls fail if there's untyped new files", async () => { 172 | global.danger.git.modified_files = [] 173 | await flow({ platform: "local" }) 174 | expect(global.fail).toHaveBeenCalled() 175 | expect(global.fail).toHaveBeenCalledTimes(1) 176 | expect(global.fail.mock.calls[0][0]).toMatchSnapshot() 177 | }) 178 | 179 | it("calls fail if there's untyped modified files", async () => { 180 | global.danger.git.created_files = [] 181 | await flow({ platform: "local" }) 182 | expect(global.fail).toHaveBeenCalled() 183 | expect(global.fail).toHaveBeenCalledTimes(1) 184 | expect(global.fail.mock.calls[0][0]).toMatchSnapshot() 185 | }) 186 | 187 | it("calls fail twice if there's untyped files", async () => { 188 | await flow({ platform: "local" }) 189 | expect(global.fail).toHaveBeenCalled() 190 | expect(global.fail).toHaveBeenCalledTimes(2) 191 | expect(global.fail.mock.calls[0][0]).toMatchSnapshot() 192 | expect(global.fail.mock.calls[1][0]).toMatchSnapshot() 193 | }) 194 | 195 | it("calls warn if there's untyped new files", async () => { 196 | global.danger.git.modified_files = [] 197 | await flow({ created: "warn", platform: "local" }) 198 | expect(global.warn).toHaveBeenCalled() 199 | expect(global.fail).not.toHaveBeenCalled() 200 | expect(global.warn).toHaveBeenCalledTimes(1) 201 | expect(global.warn.mock.calls[0][0]).toMatchSnapshot() 202 | }) 203 | 204 | it("calls warn if there's untyped modified files", async () => { 205 | global.danger.git.created_files = [] 206 | await flow({ modified: "warn", platform: "local" }) 207 | expect(global.warn).toHaveBeenCalled() 208 | expect(global.fail).not.toHaveBeenCalled() 209 | expect(global.warn).toHaveBeenCalledTimes(1) 210 | expect(global.warn.mock.calls[0][0]).toMatchSnapshot() 211 | }) 212 | 213 | it("does not include modified files if modified is set to false", async () => { 214 | await flow({ modified: false, platform: "local" }) 215 | expect(global.fail).toHaveBeenCalled() 216 | expect(global.fail).toHaveBeenCalledTimes(1) 217 | expect(global.fail.mock.calls[0][0]).toMatchSnapshot() 218 | }) 219 | 220 | it("does not include created files if modified is set to false", async () => { 221 | await flow({ created: false, platform: "local" }) 222 | expect(global.fail).toHaveBeenCalled() 223 | expect(global.fail).toHaveBeenCalledTimes(1) 224 | expect(global.fail.mock.calls[0][0]).toMatchSnapshot() 225 | }) 226 | 227 | it("respects the blacklist globs", async () => { 228 | await flow({ blacklist: ["src/untyped*"], platform: "local" }) 229 | expect(global.fail).toHaveBeenCalled() 230 | expect(global.fail.mock.calls[0][0]).toMatchSnapshot() 231 | }) 232 | 233 | it("does not call fail if there's no untyped new files", async () => { 234 | const typedFiles = { 235 | "src/typed.js": "// @flow\nconst a = 'b'", 236 | "src/typed-with-asteriks.js": "/* @flow */\nconst a = 'b'", 237 | } 238 | global.danger = { 239 | git: { 240 | modified_files: ["src/typed.js"], 241 | created_files: ["src/typed-with-asteriks.js"], 242 | }, 243 | github: { 244 | utils: { 245 | fileContents: path => 246 | new Promise(res => { 247 | res(typedFiles[path]) 248 | }), 249 | }, 250 | }, 251 | } 252 | await flow({ platform: "local" }) 253 | expect(global.fail).not.toHaveBeenCalled() 254 | }) 255 | }) 256 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/polyfill@^7.0.0": 6 | version "7.0.0" 7 | resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.0.0.tgz#c8ff65c9ec3be6a1ba10113ebd40e8750fb90bff" 8 | dependencies: 9 | core-js "^2.5.7" 10 | regenerator-runtime "^0.11.1" 11 | 12 | "@octokit/rest@15.12.1", "@octokit/rest@^15.12.1": 13 | version "15.12.1" 14 | resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-15.12.1.tgz#f0dc169f336f8fd05ae8d8c83371b2f0c0dd8de1" 15 | dependencies: 16 | before-after-hook "^1.1.0" 17 | btoa-lite "^1.0.0" 18 | debug "^3.1.0" 19 | http-proxy-agent "^2.1.0" 20 | https-proxy-agent "^2.2.0" 21 | lodash "^4.17.4" 22 | node-fetch "^2.1.1" 23 | universal-user-agent "^2.0.0" 24 | url-template "^2.0.8" 25 | 26 | "@semantic-release/commit-analyzer@^2.0.0": 27 | version "2.0.0" 28 | resolved "https://registry.yarnpkg.com/@semantic-release/commit-analyzer/-/commit-analyzer-2.0.0.tgz#924d1e2c30167c6a472bed9f66ee8f8e077489b2" 29 | dependencies: 30 | conventional-changelog "0.0.17" 31 | 32 | "@semantic-release/condition-travis@^5.0.2": 33 | version "5.0.2" 34 | resolved "https://registry.yarnpkg.com/@semantic-release/condition-travis/-/condition-travis-5.0.2.tgz#f4bb777a6c6db5565d70754a9b629233bd4a6597" 35 | dependencies: 36 | "@semantic-release/error" "^1.0.0" 37 | semver "^5.0.3" 38 | travis-deploy-once "1.0.0-node-0.10-support" 39 | 40 | "@semantic-release/error@^1.0.0": 41 | version "1.0.0" 42 | resolved "https://registry.yarnpkg.com/@semantic-release/error/-/error-1.0.0.tgz#bb8f8eeedd5c7f8c46f96b37ef39e1b8c376c1cc" 43 | 44 | "@semantic-release/last-release-npm@^1.2.1": 45 | version "1.2.1" 46 | resolved "https://registry.yarnpkg.com/@semantic-release/last-release-npm/-/last-release-npm-1.2.1.tgz#ff748142ecf15354b833a86ba18205f7fce594ee" 47 | dependencies: 48 | "@semantic-release/error" "^1.0.0" 49 | npm-registry-client "^7.0.1" 50 | npmlog "^1.2.1" 51 | 52 | "@semantic-release/release-notes-generator@^2.0.0": 53 | version "2.0.0" 54 | resolved "https://registry.yarnpkg.com/@semantic-release/release-notes-generator/-/release-notes-generator-2.0.0.tgz#7c5da65689466d536a53fdfa9f4d62a3bd13c16e" 55 | dependencies: 56 | conventional-changelog "0.0.17" 57 | github-url-from-git "^1.4.0" 58 | 59 | "@types/jest@^19.2.4": 60 | version "19.2.4" 61 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-19.2.4.tgz#543651712535962b7dc615e18e4a381fc2687442" 62 | 63 | "@types/node@^10.12.18": 64 | version "10.12.18" 65 | resolved "https://registry.yarnpkg.com/@types/node/-/node-10.12.18.tgz#1d3ca764718915584fcd9f6344621b7672665c67" 66 | integrity sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ== 67 | 68 | abab@^1.0.0, abab@^1.0.3: 69 | version "1.0.4" 70 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 71 | 72 | abbrev@1: 73 | version "1.1.1" 74 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 75 | 76 | acorn-globals@^1.0.4: 77 | version "1.0.9" 78 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-1.0.9.tgz#55bb5e98691507b74579d0513413217c380c54cf" 79 | dependencies: 80 | acorn "^2.1.0" 81 | 82 | acorn-globals@^3.1.0: 83 | version "3.1.0" 84 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 85 | dependencies: 86 | acorn "^4.0.4" 87 | 88 | acorn@^2.1.0, acorn@^2.4.0: 89 | version "2.7.0" 90 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7" 91 | 92 | acorn@^4.0.4: 93 | version "4.0.13" 94 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 95 | 96 | agent-base@2: 97 | version "2.1.1" 98 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-2.1.1.tgz#d6de10d5af6132d5bd692427d46fc538539094c7" 99 | dependencies: 100 | extend "~3.0.0" 101 | semver "~5.0.1" 102 | 103 | agent-base@4, agent-base@^4.1.0: 104 | version "4.2.1" 105 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.1.tgz#d89e5999f797875674c07d87f260fc41e83e8ca9" 106 | dependencies: 107 | es6-promisify "^5.0.0" 108 | 109 | ajv@^5.1.0: 110 | version "5.5.2" 111 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 112 | dependencies: 113 | co "^4.6.0" 114 | fast-deep-equal "^1.0.0" 115 | fast-json-stable-stringify "^2.0.0" 116 | json-schema-traverse "^0.3.0" 117 | 118 | align-text@^0.1.1, align-text@^0.1.3: 119 | version "0.1.4" 120 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 121 | dependencies: 122 | kind-of "^3.0.2" 123 | longest "^1.0.1" 124 | repeat-string "^1.5.2" 125 | 126 | amdefine@>=0.0.4: 127 | version "1.0.1" 128 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 129 | 130 | ansi-escapes@^1.0.0, ansi-escapes@^1.1.0, ansi-escapes@^1.4.0: 131 | version "1.4.0" 132 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 133 | 134 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 135 | version "2.1.1" 136 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 137 | 138 | ansi-regex@^3.0.0: 139 | version "3.0.0" 140 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 141 | 142 | ansi-styles@^2.2.1: 143 | version "2.2.1" 144 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 145 | 146 | ansi-styles@^3.0.0, ansi-styles@^3.2.1: 147 | version "3.2.1" 148 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 149 | dependencies: 150 | color-convert "^1.9.0" 151 | 152 | ansi@^0.3.0, ansi@~0.3.0: 153 | version "0.3.1" 154 | resolved "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz#0c42d4fb17160d5a9af1e484bace1c66922c1b21" 155 | 156 | anymatch@^1.3.0: 157 | version "1.3.2" 158 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 159 | dependencies: 160 | micromatch "^2.1.5" 161 | normalize-path "^2.0.0" 162 | 163 | app-root-path@^2.0.0: 164 | version "2.0.1" 165 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" 166 | 167 | append-transform@^0.4.0: 168 | version "0.4.0" 169 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 170 | dependencies: 171 | default-require-extensions "^1.0.0" 172 | 173 | aproba@^1.0.3: 174 | version "1.2.0" 175 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 176 | 177 | are-we-there-yet@~1.0.0: 178 | version "1.0.6" 179 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.0.6.tgz#a2d28c93102aa6cc96245a26cb954de06ec53f0c" 180 | dependencies: 181 | delegates "^1.0.0" 182 | readable-stream "^2.0.0 || ^1.1.13" 183 | 184 | are-we-there-yet@~1.1.2: 185 | version "1.1.4" 186 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 187 | dependencies: 188 | delegates "^1.0.0" 189 | readable-stream "^2.0.6" 190 | 191 | argparse@^1.0.7: 192 | version "1.0.10" 193 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 194 | dependencies: 195 | sprintf-js "~1.0.2" 196 | 197 | arr-diff@^2.0.0: 198 | version "2.0.0" 199 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 200 | dependencies: 201 | arr-flatten "^1.0.1" 202 | 203 | arr-diff@^4.0.0: 204 | version "4.0.0" 205 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 206 | 207 | arr-flatten@^1.0.1, arr-flatten@^1.1.0: 208 | version "1.1.0" 209 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 210 | 211 | arr-union@^3.1.0: 212 | version "3.1.0" 213 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 214 | 215 | array-equal@^1.0.0: 216 | version "1.0.0" 217 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 218 | 219 | array-find-index@^1.0.1: 220 | version "1.0.2" 221 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 222 | 223 | array-unique@^0.2.1: 224 | version "0.2.1" 225 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 226 | 227 | array-unique@^0.3.2: 228 | version "0.3.2" 229 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 230 | 231 | arrify@^1.0.1: 232 | version "1.0.1" 233 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 234 | 235 | asap@^2.0.0: 236 | version "2.0.6" 237 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 238 | 239 | asn1@~0.2.3: 240 | version "0.2.3" 241 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 242 | 243 | assert-plus@1.0.0, assert-plus@^1.0.0: 244 | version "1.0.0" 245 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 246 | 247 | assert-plus@^0.2.0: 248 | version "0.2.0" 249 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 250 | 251 | assign-symbols@^1.0.0: 252 | version "1.0.0" 253 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 254 | 255 | async@^1.4.0: 256 | version "1.5.2" 257 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 258 | 259 | async@^2.0.1, async@^2.1.4: 260 | version "2.6.0" 261 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 262 | dependencies: 263 | lodash "^4.14.0" 264 | 265 | asynckit@^0.4.0: 266 | version "0.4.0" 267 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 268 | 269 | atob@^2.0.0: 270 | version "2.0.3" 271 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.0.3.tgz#19c7a760473774468f20b2d2d03372ad7d4cbf5d" 272 | 273 | aws-sign2@~0.6.0: 274 | version "0.6.0" 275 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 276 | 277 | aws-sign2@~0.7.0: 278 | version "0.7.0" 279 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 280 | 281 | aws4@^1.2.1, aws4@^1.6.0: 282 | version "1.6.0" 283 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 284 | 285 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0, babel-code-frame@^6.8.0: 286 | version "6.26.0" 287 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 288 | dependencies: 289 | chalk "^1.1.3" 290 | esutils "^2.0.2" 291 | js-tokens "^3.0.2" 292 | 293 | babel-core@^6.0.0, babel-core@^6.24.1, babel-core@^6.26.0: 294 | version "6.26.0" 295 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 296 | dependencies: 297 | babel-code-frame "^6.26.0" 298 | babel-generator "^6.26.0" 299 | babel-helpers "^6.24.1" 300 | babel-messages "^6.23.0" 301 | babel-register "^6.26.0" 302 | babel-runtime "^6.26.0" 303 | babel-template "^6.26.0" 304 | babel-traverse "^6.26.0" 305 | babel-types "^6.26.0" 306 | babylon "^6.18.0" 307 | convert-source-map "^1.5.0" 308 | debug "^2.6.8" 309 | json5 "^0.5.1" 310 | lodash "^4.17.4" 311 | minimatch "^3.0.4" 312 | path-is-absolute "^1.0.1" 313 | private "^0.1.7" 314 | slash "^1.0.0" 315 | source-map "^0.5.6" 316 | 317 | babel-generator@6.11.4: 318 | version "6.11.4" 319 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.11.4.tgz#14f6933abb20c62666d27e3b7b9f5b9dc0712a9a" 320 | dependencies: 321 | babel-messages "^6.8.0" 322 | babel-runtime "^6.9.0" 323 | babel-types "^6.10.2" 324 | detect-indent "^3.0.1" 325 | lodash "^4.2.0" 326 | source-map "^0.5.0" 327 | 328 | babel-generator@^6.18.0, babel-generator@^6.26.0: 329 | version "6.26.1" 330 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 331 | dependencies: 332 | babel-messages "^6.23.0" 333 | babel-runtime "^6.26.0" 334 | babel-types "^6.26.0" 335 | detect-indent "^4.0.0" 336 | jsesc "^1.3.0" 337 | lodash "^4.17.4" 338 | source-map "^0.5.7" 339 | trim-right "^1.0.1" 340 | 341 | babel-helpers@^6.24.1: 342 | version "6.24.1" 343 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 344 | dependencies: 345 | babel-runtime "^6.22.0" 346 | babel-template "^6.24.1" 347 | 348 | babel-jest@^20.0.3: 349 | version "20.0.3" 350 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 351 | dependencies: 352 | babel-core "^6.0.0" 353 | babel-plugin-istanbul "^4.0.0" 354 | babel-preset-jest "^20.0.3" 355 | 356 | babel-messages@^6.23.0, babel-messages@^6.8.0: 357 | version "6.23.0" 358 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 359 | dependencies: 360 | babel-runtime "^6.22.0" 361 | 362 | babel-plugin-istanbul@^4.0.0, babel-plugin-istanbul@^4.1.4: 363 | version "4.1.5" 364 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e" 365 | dependencies: 366 | find-up "^2.1.0" 367 | istanbul-lib-instrument "^1.7.5" 368 | test-exclude "^4.1.1" 369 | 370 | babel-plugin-jest-hoist@^20.0.3: 371 | version "20.0.3" 372 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 373 | 374 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 375 | version "6.26.0" 376 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 377 | dependencies: 378 | babel-plugin-transform-strict-mode "^6.24.1" 379 | babel-runtime "^6.26.0" 380 | babel-template "^6.26.0" 381 | babel-types "^6.26.0" 382 | 383 | babel-plugin-transform-strict-mode@^6.24.1: 384 | version "6.24.1" 385 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 386 | dependencies: 387 | babel-runtime "^6.22.0" 388 | babel-types "^6.24.1" 389 | 390 | babel-polyfill@6.23.0: 391 | version "6.23.0" 392 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 393 | dependencies: 394 | babel-runtime "^6.22.0" 395 | core-js "^2.4.0" 396 | regenerator-runtime "^0.10.0" 397 | 398 | babel-polyfill@^6.16.0: 399 | version "6.26.0" 400 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 401 | dependencies: 402 | babel-runtime "^6.26.0" 403 | core-js "^2.5.0" 404 | regenerator-runtime "^0.10.5" 405 | 406 | babel-preset-jest@^20.0.3: 407 | version "20.0.3" 408 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 409 | dependencies: 410 | babel-plugin-jest-hoist "^20.0.3" 411 | 412 | babel-register@^6.26.0: 413 | version "6.26.0" 414 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 415 | dependencies: 416 | babel-core "^6.26.0" 417 | babel-runtime "^6.26.0" 418 | core-js "^2.5.0" 419 | home-or-tmp "^2.0.0" 420 | lodash "^4.17.4" 421 | mkdirp "^0.5.1" 422 | source-map-support "^0.4.15" 423 | 424 | babel-runtime@^6.22.0, babel-runtime@^6.26.0, babel-runtime@^6.9.0: 425 | version "6.26.0" 426 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 427 | dependencies: 428 | core-js "^2.4.0" 429 | regenerator-runtime "^0.11.0" 430 | 431 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 432 | version "6.26.0" 433 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 434 | dependencies: 435 | babel-runtime "^6.26.0" 436 | babel-traverse "^6.26.0" 437 | babel-types "^6.26.0" 438 | babylon "^6.18.0" 439 | lodash "^4.17.4" 440 | 441 | babel-traverse@6.12.0: 442 | version "6.12.0" 443 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.12.0.tgz#f22f54fa0d6eeb7f63585246bab6e637858f5d94" 444 | dependencies: 445 | babel-code-frame "^6.8.0" 446 | babel-messages "^6.8.0" 447 | babel-runtime "^6.9.0" 448 | babel-types "^6.9.0" 449 | babylon "^6.7.0" 450 | debug "^2.2.0" 451 | globals "^8.3.0" 452 | invariant "^2.2.0" 453 | lodash "^4.2.0" 454 | 455 | babel-traverse@^6.18.0, babel-traverse@^6.26.0: 456 | version "6.26.0" 457 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 458 | dependencies: 459 | babel-code-frame "^6.26.0" 460 | babel-messages "^6.23.0" 461 | babel-runtime "^6.26.0" 462 | babel-types "^6.26.0" 463 | babylon "^6.18.0" 464 | debug "^2.6.8" 465 | globals "^9.18.0" 466 | invariant "^2.2.2" 467 | lodash "^4.17.4" 468 | 469 | babel-types@^6.10.2, babel-types@^6.18.0, babel-types@^6.24.1, babel-types@^6.26.0, babel-types@^6.9.0: 470 | version "6.26.0" 471 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 472 | dependencies: 473 | babel-runtime "^6.26.0" 474 | esutils "^2.0.2" 475 | lodash "^4.17.4" 476 | to-fast-properties "^1.0.3" 477 | 478 | babylon@6.14.1: 479 | version "6.14.1" 480 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.14.1.tgz#956275fab72753ad9b3435d7afe58f8bf0a29815" 481 | 482 | babylon@^6.18.0, babylon@^6.7.0: 483 | version "6.18.0" 484 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 485 | 486 | balanced-match@^1.0.0: 487 | version "1.0.0" 488 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 489 | 490 | base@^0.11.1: 491 | version "0.11.2" 492 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 493 | dependencies: 494 | cache-base "^1.0.1" 495 | class-utils "^0.3.5" 496 | component-emitter "^1.2.1" 497 | define-property "^1.0.0" 498 | isobject "^3.0.1" 499 | mixin-deep "^1.2.0" 500 | pascalcase "^0.1.1" 501 | 502 | bcrypt-pbkdf@^1.0.0: 503 | version "1.0.1" 504 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 505 | dependencies: 506 | tweetnacl "^0.14.3" 507 | 508 | before-after-hook@^1.1.0: 509 | version "1.1.0" 510 | resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-1.1.0.tgz#83165e15a59460d13702cb8febd6a1807896db5a" 511 | 512 | bl@~1.1.2: 513 | version "1.1.2" 514 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.1.2.tgz#fdca871a99713aa00d19e3bbba41c44787a65398" 515 | dependencies: 516 | readable-stream "~2.0.5" 517 | 518 | bluebird@^3.4.6, bluebird@^3.5.0: 519 | version "3.5.1" 520 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 521 | 522 | boolbase@~1.0.0: 523 | version "1.0.0" 524 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 525 | 526 | boom@2.x.x: 527 | version "2.10.1" 528 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 529 | dependencies: 530 | hoek "2.x.x" 531 | 532 | boom@4.x.x: 533 | version "4.3.1" 534 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 535 | dependencies: 536 | hoek "4.x.x" 537 | 538 | boom@5.x.x: 539 | version "5.2.0" 540 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 541 | dependencies: 542 | hoek "4.x.x" 543 | 544 | brace-expansion@^1.1.7: 545 | version "1.1.11" 546 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 547 | dependencies: 548 | balanced-match "^1.0.0" 549 | concat-map "0.0.1" 550 | 551 | braces@^1.8.2: 552 | version "1.8.5" 553 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 554 | dependencies: 555 | expand-range "^1.8.1" 556 | preserve "^0.2.0" 557 | repeat-element "^1.1.2" 558 | 559 | braces@^2.3.1: 560 | version "2.3.1" 561 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.1.tgz#7086c913b4e5a08dbe37ac0ee6a2500c4ba691bb" 562 | dependencies: 563 | arr-flatten "^1.1.0" 564 | array-unique "^0.3.2" 565 | define-property "^1.0.0" 566 | extend-shallow "^2.0.1" 567 | fill-range "^4.0.0" 568 | isobject "^3.0.1" 569 | kind-of "^6.0.2" 570 | repeat-element "^1.1.2" 571 | snapdragon "^0.8.1" 572 | snapdragon-node "^2.0.1" 573 | split-string "^3.0.2" 574 | to-regex "^3.0.1" 575 | 576 | browser-resolve@^1.11.2: 577 | version "1.11.2" 578 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 579 | dependencies: 580 | resolve "1.1.7" 581 | 582 | bser@1.0.2: 583 | version "1.0.2" 584 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 585 | dependencies: 586 | node-int64 "^0.4.0" 587 | 588 | bser@^2.0.0: 589 | version "2.0.0" 590 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 591 | dependencies: 592 | node-int64 "^0.4.0" 593 | 594 | btoa-lite@^1.0.0: 595 | version "1.0.0" 596 | resolved "https://registry.yarnpkg.com/btoa-lite/-/btoa-lite-1.0.0.tgz#337766da15801210fdd956c22e9c6891ab9d0337" 597 | 598 | buffer-equal-constant-time@1.0.1: 599 | version "1.0.1" 600 | resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" 601 | 602 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 603 | version "1.1.1" 604 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 605 | 606 | cache-base@^1.0.1: 607 | version "1.0.1" 608 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 609 | dependencies: 610 | collection-visit "^1.0.0" 611 | component-emitter "^1.2.1" 612 | get-value "^2.0.6" 613 | has-value "^1.0.0" 614 | isobject "^3.0.1" 615 | set-value "^2.0.0" 616 | to-object-path "^0.3.0" 617 | union-value "^1.0.0" 618 | unset-value "^1.0.0" 619 | 620 | cachedir@^1.1.0: 621 | version "1.2.0" 622 | resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-1.2.0.tgz#e9a0a25bb21a2b7a0f766f07c41eb7a311919b97" 623 | dependencies: 624 | os-homedir "^1.0.1" 625 | 626 | callsites@^2.0.0: 627 | version "2.0.0" 628 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 629 | 630 | camelcase-keys@^2.0.0: 631 | version "2.1.0" 632 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 633 | dependencies: 634 | camelcase "^2.0.0" 635 | map-obj "^1.0.0" 636 | 637 | camelcase@^1.0.2: 638 | version "1.2.1" 639 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 640 | 641 | camelcase@^2.0.0: 642 | version "2.1.1" 643 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 644 | 645 | camelcase@^3.0.0: 646 | version "3.0.0" 647 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 648 | 649 | camelcase@^4.1.0: 650 | version "4.1.0" 651 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 652 | 653 | caseless@~0.11.0: 654 | version "0.11.0" 655 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 656 | 657 | caseless@~0.12.0: 658 | version "0.12.0" 659 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 660 | 661 | center-align@^0.1.1: 662 | version "0.1.3" 663 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 664 | dependencies: 665 | align-text "^0.1.3" 666 | lazy-cache "^1.0.3" 667 | 668 | chalk@1.1.3, chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 669 | version "1.1.3" 670 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 671 | dependencies: 672 | ansi-styles "^2.2.1" 673 | escape-string-regexp "^1.0.2" 674 | has-ansi "^2.0.0" 675 | strip-ansi "^3.0.0" 676 | supports-color "^2.0.0" 677 | 678 | chalk@^2.3.0: 679 | version "2.3.2" 680 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.2.tgz#250dc96b07491bfd601e648d66ddf5f60c7a5c65" 681 | dependencies: 682 | ansi-styles "^3.2.1" 683 | escape-string-regexp "^1.0.5" 684 | supports-color "^5.3.0" 685 | 686 | chardet@^0.4.0: 687 | version "0.4.2" 688 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 689 | 690 | cheerio@0.20.0: 691 | version "0.20.0" 692 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.20.0.tgz#5c710f2bab95653272842ba01c6ea61b3545ec35" 693 | dependencies: 694 | css-select "~1.2.0" 695 | dom-serializer "~0.1.0" 696 | entities "~1.1.1" 697 | htmlparser2 "~3.8.1" 698 | lodash "^4.1.0" 699 | optionalDependencies: 700 | jsdom "^7.0.2" 701 | 702 | cheerio@0.22.0: 703 | version "0.22.0" 704 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" 705 | dependencies: 706 | css-select "~1.2.0" 707 | dom-serializer "~0.1.0" 708 | entities "~1.1.1" 709 | htmlparser2 "^3.9.1" 710 | lodash.assignin "^4.0.9" 711 | lodash.bind "^4.1.4" 712 | lodash.defaults "^4.0.1" 713 | lodash.filter "^4.4.0" 714 | lodash.flatten "^4.2.0" 715 | lodash.foreach "^4.3.0" 716 | lodash.map "^4.4.0" 717 | lodash.merge "^4.4.0" 718 | lodash.pick "^4.2.1" 719 | lodash.reduce "^4.4.0" 720 | lodash.reject "^4.4.0" 721 | lodash.some "^4.4.0" 722 | 723 | ci-info@^1.0.0: 724 | version "1.1.3" 725 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.3.tgz#710193264bb05c77b8c90d02f5aaf22216a667b2" 726 | 727 | class-utils@^0.3.5: 728 | version "0.3.6" 729 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 730 | dependencies: 731 | arr-union "^3.1.0" 732 | define-property "^0.2.5" 733 | isobject "^3.0.0" 734 | static-extend "^0.1.1" 735 | 736 | cli-cursor@^1.0.1, cli-cursor@^1.0.2: 737 | version "1.0.2" 738 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 739 | dependencies: 740 | restore-cursor "^1.0.1" 741 | 742 | cli-cursor@^2.1.0: 743 | version "2.1.0" 744 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 745 | dependencies: 746 | restore-cursor "^2.0.0" 747 | 748 | cli-spinners@^0.1.2: 749 | version "0.1.2" 750 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 751 | 752 | cli-truncate@^0.2.1: 753 | version "0.2.1" 754 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 755 | dependencies: 756 | slice-ansi "0.0.4" 757 | string-width "^1.0.1" 758 | 759 | cli-width@^2.0.0: 760 | version "2.2.0" 761 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 762 | 763 | cliui@^2.1.0: 764 | version "2.1.0" 765 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 766 | dependencies: 767 | center-align "^0.1.1" 768 | right-align "^0.1.1" 769 | wordwrap "0.0.2" 770 | 771 | cliui@^3.2.0: 772 | version "3.2.0" 773 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 774 | dependencies: 775 | string-width "^1.0.1" 776 | strip-ansi "^3.0.1" 777 | wrap-ansi "^2.0.0" 778 | 779 | cliui@^4.0.0: 780 | version "4.0.0" 781 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.0.0.tgz#743d4650e05f36d1ed2575b59638d87322bfbbcc" 782 | dependencies: 783 | string-width "^2.1.1" 784 | strip-ansi "^4.0.0" 785 | wrap-ansi "^2.0.0" 786 | 787 | co@^4.6.0: 788 | version "4.6.0" 789 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 790 | 791 | code-point-at@^1.0.0: 792 | version "1.1.0" 793 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 794 | 795 | collection-visit@^1.0.0: 796 | version "1.0.0" 797 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 798 | dependencies: 799 | map-visit "^1.0.0" 800 | object-visit "^1.0.0" 801 | 802 | color-convert@^1.9.0: 803 | version "1.9.1" 804 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 805 | dependencies: 806 | color-name "^1.1.1" 807 | 808 | color-logger@0.0.3: 809 | version "0.0.3" 810 | resolved "https://registry.yarnpkg.com/color-logger/-/color-logger-0.0.3.tgz#d9b22dd1d973e166b18bf313f9f481bba4df2018" 811 | 812 | color-name@^1.1.1: 813 | version "1.1.3" 814 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 815 | 816 | colors@~0.6.0-1: 817 | version "0.6.2" 818 | resolved "https://registry.yarnpkg.com/colors/-/colors-0.6.2.tgz#2423fe6678ac0c5dae8852e5d0e5be08c997abcc" 819 | 820 | combined-stream@1.0.6, combined-stream@^1.0.5, combined-stream@~1.0.5: 821 | version "1.0.6" 822 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 823 | dependencies: 824 | delayed-stream "~1.0.0" 825 | 826 | commander@^2.12.1, commander@^2.9.0: 827 | version "2.15.0" 828 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.0.tgz#ad2a23a1c3b036e392469b8012cec6b33b4c1322" 829 | 830 | commander@^2.18.0: 831 | version "2.18.0" 832 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.18.0.tgz#2bf063ddee7c7891176981a2cc798e5754bc6970" 833 | 834 | commander@~2.1.0: 835 | version "2.1.0" 836 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.1.0.tgz#d121bbae860d9992a3d517ba96f56588e47c6781" 837 | 838 | commitizen@^2.10.1: 839 | version "2.10.1" 840 | resolved "https://registry.yarnpkg.com/commitizen/-/commitizen-2.10.1.tgz#8c395def34a895f4e94952c2efc3c9eb4c3683bd" 841 | dependencies: 842 | cachedir "^1.1.0" 843 | chalk "1.1.3" 844 | cz-conventional-changelog "2.0.0" 845 | dedent "0.6.0" 846 | detect-indent "4.0.0" 847 | find-node-modules "1.0.4" 848 | find-root "1.0.0" 849 | fs-extra "^1.0.0" 850 | glob "7.1.1" 851 | inquirer "1.2.3" 852 | lodash "4.17.5" 853 | minimist "1.2.0" 854 | opencollective "1.0.3" 855 | path-exists "2.1.0" 856 | shelljs "0.7.6" 857 | strip-json-comments "2.0.1" 858 | 859 | compare-versions@^3.1.0: 860 | version "3.1.0" 861 | resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.1.0.tgz#43310256a5c555aaed4193c04d8f154cf9c6efd5" 862 | 863 | component-emitter@^1.2.1: 864 | version "1.2.1" 865 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 866 | 867 | concat-map@0.0.1: 868 | version "0.0.1" 869 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 870 | 871 | concat-stream@^1.4.7, concat-stream@^1.5.2: 872 | version "1.6.1" 873 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.1.tgz#261b8f518301f1d834e36342b9fea095d2620a26" 874 | dependencies: 875 | inherits "^2.0.3" 876 | readable-stream "^2.2.2" 877 | typedarray "^0.0.6" 878 | 879 | config-chain@~1.1.8: 880 | version "1.1.11" 881 | resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.11.tgz#aba09747dfbe4c3e70e766a6e41586e1859fc6f2" 882 | dependencies: 883 | ini "^1.3.4" 884 | proto-list "~1.2.1" 885 | 886 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 887 | version "1.1.0" 888 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 889 | 890 | content-type-parser@^1.0.1: 891 | version "1.0.2" 892 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7" 893 | 894 | conventional-changelog@0.0.17: 895 | version "0.0.17" 896 | resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-0.0.17.tgz#5e0216600f4686190f0c82efbb0b3dd11b49ce34" 897 | dependencies: 898 | dateformat "^1.0.11" 899 | event-stream "^3.3.0" 900 | github-url-from-git "^1.4.0" 901 | lodash "^3.6.0" 902 | normalize-package-data "^1.0.3" 903 | 904 | conventional-commit-types@^2.0.0: 905 | version "2.2.0" 906 | resolved "https://registry.yarnpkg.com/conventional-commit-types/-/conventional-commit-types-2.2.0.tgz#5db95739d6c212acbe7b6f656a11b940baa68946" 907 | 908 | convert-source-map@^1.4.0, convert-source-map@^1.5.0: 909 | version "1.5.1" 910 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 911 | 912 | copy-descriptor@^0.1.0: 913 | version "0.1.1" 914 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 915 | 916 | core-js@^2.4.0, core-js@^2.5.0: 917 | version "2.5.3" 918 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 919 | 920 | core-js@^2.5.7: 921 | version "2.5.7" 922 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 923 | 924 | core-util-is@1.0.2, core-util-is@^1.0.1, core-util-is@~1.0.0: 925 | version "1.0.2" 926 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 927 | 928 | cosmiconfig@^1.1.0: 929 | version "1.1.0" 930 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-1.1.0.tgz#0dea0f9804efdfb929fbb1b188e25553ea053d37" 931 | dependencies: 932 | graceful-fs "^4.1.2" 933 | js-yaml "^3.4.3" 934 | minimist "^1.2.0" 935 | object-assign "^4.0.1" 936 | os-homedir "^1.0.1" 937 | parse-json "^2.2.0" 938 | pinkie-promise "^2.0.0" 939 | require-from-string "^1.1.0" 940 | 941 | cross-spawn@^5.0.1: 942 | version "5.1.0" 943 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 944 | dependencies: 945 | lru-cache "^4.0.1" 946 | shebang-command "^1.2.0" 947 | which "^1.2.9" 948 | 949 | cryptiles@2.x.x: 950 | version "2.0.5" 951 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 952 | dependencies: 953 | boom "2.x.x" 954 | 955 | cryptiles@3.x.x: 956 | version "3.1.2" 957 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 958 | dependencies: 959 | boom "5.x.x" 960 | 961 | css-select@~1.2.0: 962 | version "1.2.0" 963 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" 964 | dependencies: 965 | boolbase "~1.0.0" 966 | css-what "2.1" 967 | domutils "1.5.1" 968 | nth-check "~1.0.1" 969 | 970 | css-what@2.1: 971 | version "2.1.0" 972 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" 973 | 974 | cssom@0.3.x, "cssom@>= 0.3.0 < 0.4.0", "cssom@>= 0.3.2 < 0.4.0": 975 | version "0.3.2" 976 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 977 | 978 | "cssstyle@>= 0.2.29 < 0.3.0", "cssstyle@>= 0.2.37 < 0.3.0": 979 | version "0.2.37" 980 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 981 | dependencies: 982 | cssom "0.3.x" 983 | 984 | currently-unhandled@^0.4.1: 985 | version "0.4.1" 986 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 987 | dependencies: 988 | array-find-index "^1.0.1" 989 | 990 | cz-conventional-changelog@2.0.0: 991 | version "2.0.0" 992 | resolved "https://registry.yarnpkg.com/cz-conventional-changelog/-/cz-conventional-changelog-2.0.0.tgz#55a979afdfe95e7024879d2a0f5924630170b533" 993 | dependencies: 994 | conventional-commit-types "^2.0.0" 995 | lodash.map "^4.5.1" 996 | longest "^1.0.1" 997 | pad-right "^0.2.2" 998 | right-pad "^1.0.1" 999 | word-wrap "^1.0.3" 1000 | 1001 | cz-conventional-changelog@^2.0.0: 1002 | version "2.1.0" 1003 | resolved "https://registry.yarnpkg.com/cz-conventional-changelog/-/cz-conventional-changelog-2.1.0.tgz#2f4bc7390e3244e4df293e6ba351e4c740a7c764" 1004 | dependencies: 1005 | conventional-commit-types "^2.0.0" 1006 | lodash.map "^4.5.1" 1007 | longest "^1.0.1" 1008 | right-pad "^1.0.1" 1009 | word-wrap "^1.0.3" 1010 | 1011 | danger@*: 1012 | version "6.1.1" 1013 | resolved "https://registry.yarnpkg.com/danger/-/danger-6.1.1.tgz#8738688773c85720a7f0f5f1e912699a738a776f" 1014 | dependencies: 1015 | "@babel/polyfill" "^7.0.0" 1016 | "@octokit/rest" "^15.12.1" 1017 | chalk "^2.3.0" 1018 | commander "^2.18.0" 1019 | debug "^4.0.1" 1020 | get-stdin "^6.0.0" 1021 | https-proxy-agent "^2.2.1" 1022 | hyperlinker "^1.0.0" 1023 | jsome "^2.3.25" 1024 | json5 "^2.1.0" 1025 | jsonpointer "^4.0.1" 1026 | jsonwebtoken "^8.2.1" 1027 | lodash.find "^4.6.0" 1028 | lodash.includes "^4.3.0" 1029 | lodash.isobject "^3.0.2" 1030 | lodash.keys "^4.0.8" 1031 | memfs-or-file-map-to-github-branch "^1.1.0" 1032 | node-cleanup "^2.1.2" 1033 | node-fetch "^2.2.0" 1034 | override-require "^1.1.1" 1035 | p-limit "^2.0.0" 1036 | parse-diff "^0.5.1" 1037 | parse-git-config "^2.0.3" 1038 | parse-github-url "^1.0.2" 1039 | parse-link-header "^1.0.1" 1040 | pinpoint "^1.1.0" 1041 | readline-sync "^1.4.9" 1042 | require-from-string "^2.0.2" 1043 | rfc6902 "^3.0.1" 1044 | supports-hyperlinks "^1.0.1" 1045 | vm2 "^3.6.3" 1046 | voca "^1.4.0" 1047 | 1048 | dashdash@^1.12.0: 1049 | version "1.14.1" 1050 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1051 | dependencies: 1052 | assert-plus "^1.0.0" 1053 | 1054 | date-fns@^1.27.2: 1055 | version "1.29.0" 1056 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.29.0.tgz#12e609cdcb935127311d04d33334e2960a2a54e6" 1057 | 1058 | dateformat@^1.0.11: 1059 | version "1.0.12" 1060 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" 1061 | dependencies: 1062 | get-stdin "^4.0.1" 1063 | meow "^3.3.0" 1064 | 1065 | debug@2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8: 1066 | version "2.6.9" 1067 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1068 | dependencies: 1069 | ms "2.0.0" 1070 | 1071 | debug@3.1.0, debug@^3.1.0: 1072 | version "3.1.0" 1073 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1074 | dependencies: 1075 | ms "2.0.0" 1076 | 1077 | debug@^4.0.1: 1078 | version "4.0.1" 1079 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.0.1.tgz#f9bb36d439b8d1f0dd52d8fb6b46e4ebb8c1cd5b" 1080 | dependencies: 1081 | ms "^2.1.1" 1082 | 1083 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 1084 | version "1.2.0" 1085 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1086 | 1087 | decode-uri-component@^0.2.0: 1088 | version "0.2.0" 1089 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1090 | 1091 | dedent@0.6.0: 1092 | version "0.6.0" 1093 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.6.0.tgz#0e6da8f0ce52838ef5cec5c8f9396b0c1b64a3cb" 1094 | 1095 | deep-is@~0.1.3: 1096 | version "0.1.3" 1097 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1098 | 1099 | default-require-extensions@^1.0.0: 1100 | version "1.0.0" 1101 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1102 | dependencies: 1103 | strip-bom "^2.0.0" 1104 | 1105 | define-property@^0.2.5: 1106 | version "0.2.5" 1107 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1108 | dependencies: 1109 | is-descriptor "^0.1.0" 1110 | 1111 | define-property@^1.0.0: 1112 | version "1.0.0" 1113 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1114 | dependencies: 1115 | is-descriptor "^1.0.0" 1116 | 1117 | define-property@^2.0.2: 1118 | version "2.0.2" 1119 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1120 | dependencies: 1121 | is-descriptor "^1.0.2" 1122 | isobject "^3.0.1" 1123 | 1124 | delayed-stream@~1.0.0: 1125 | version "1.0.0" 1126 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1127 | 1128 | delegates@^1.0.0: 1129 | version "1.0.0" 1130 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1131 | 1132 | detect-file@^0.1.0: 1133 | version "0.1.0" 1134 | resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-0.1.0.tgz#4935dedfd9488648e006b0129566e9386711ea63" 1135 | dependencies: 1136 | fs-exists-sync "^0.1.0" 1137 | 1138 | detect-indent@4.0.0, detect-indent@^4.0.0: 1139 | version "4.0.0" 1140 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1141 | dependencies: 1142 | repeating "^2.0.0" 1143 | 1144 | detect-indent@^3.0.1: 1145 | version "3.0.1" 1146 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-3.0.1.tgz#9dc5e5ddbceef8325764b9451b02bc6d54084f75" 1147 | dependencies: 1148 | get-stdin "^4.0.1" 1149 | minimist "^1.1.0" 1150 | repeating "^1.1.0" 1151 | 1152 | dezalgo@^1.0.1: 1153 | version "1.0.3" 1154 | resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456" 1155 | dependencies: 1156 | asap "^2.0.0" 1157 | wrappy "1" 1158 | 1159 | diff@^3.2.0: 1160 | version "3.5.0" 1161 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 1162 | 1163 | dom-serializer@0, dom-serializer@~0.1.0: 1164 | version "0.1.0" 1165 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 1166 | dependencies: 1167 | domelementtype "~1.1.1" 1168 | entities "~1.1.1" 1169 | 1170 | domelementtype@1, domelementtype@^1.3.0: 1171 | version "1.3.0" 1172 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 1173 | 1174 | domelementtype@~1.1.1: 1175 | version "1.1.3" 1176 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 1177 | 1178 | domhandler@2.3: 1179 | version "2.3.0" 1180 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.3.0.tgz#2de59a0822d5027fabff6f032c2b25a2a8abe738" 1181 | dependencies: 1182 | domelementtype "1" 1183 | 1184 | domhandler@^2.3.0: 1185 | version "2.4.1" 1186 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.1.tgz#892e47000a99be55bbf3774ffea0561d8879c259" 1187 | dependencies: 1188 | domelementtype "1" 1189 | 1190 | domutils@1.5, domutils@1.5.1: 1191 | version "1.5.1" 1192 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 1193 | dependencies: 1194 | dom-serializer "0" 1195 | domelementtype "1" 1196 | 1197 | domutils@^1.5.1: 1198 | version "1.7.0" 1199 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" 1200 | dependencies: 1201 | dom-serializer "0" 1202 | domelementtype "1" 1203 | 1204 | duplexer@~0.1.1: 1205 | version "0.1.1" 1206 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 1207 | 1208 | ecc-jsbn@~0.1.1: 1209 | version "0.1.1" 1210 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1211 | dependencies: 1212 | jsbn "~0.1.0" 1213 | 1214 | ecdsa-sig-formatter@1.0.10: 1215 | version "1.0.10" 1216 | resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.10.tgz#1c595000f04a8897dfb85000892a0f4c33af86c3" 1217 | dependencies: 1218 | safe-buffer "^5.0.1" 1219 | 1220 | elegant-spinner@^1.0.1: 1221 | version "1.0.1" 1222 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 1223 | 1224 | encoding@^0.1.11: 1225 | version "0.1.12" 1226 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1227 | dependencies: 1228 | iconv-lite "~0.4.13" 1229 | 1230 | entities@1.0: 1231 | version "1.0.0" 1232 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.0.0.tgz#b2987aa3821347fcde642b24fdfc9e4fb712bf26" 1233 | 1234 | entities@^1.1.1, entities@~1.1.1: 1235 | version "1.1.1" 1236 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 1237 | 1238 | errno@~0.1.7: 1239 | version "0.1.7" 1240 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" 1241 | dependencies: 1242 | prr "~1.0.1" 1243 | 1244 | error-ex@^1.2.0: 1245 | version "1.3.1" 1246 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1247 | dependencies: 1248 | is-arrayish "^0.2.1" 1249 | 1250 | es6-promise@^4.0.3: 1251 | version "4.2.4" 1252 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.4.tgz#dc4221c2b16518760bd8c39a52d8f356fc00ed29" 1253 | 1254 | es6-promisify@^5.0.0: 1255 | version "5.0.0" 1256 | resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" 1257 | dependencies: 1258 | es6-promise "^4.0.3" 1259 | 1260 | escape-html@1.0.3: 1261 | version "1.0.3" 1262 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1263 | 1264 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1265 | version "1.0.5" 1266 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1267 | 1268 | escodegen@^1.6.1: 1269 | version "1.9.1" 1270 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.1.tgz#dbae17ef96c8e4bedb1356f4504fa4cc2f7cb7e2" 1271 | dependencies: 1272 | esprima "^3.1.3" 1273 | estraverse "^4.2.0" 1274 | esutils "^2.0.2" 1275 | optionator "^0.8.1" 1276 | optionalDependencies: 1277 | source-map "~0.6.1" 1278 | 1279 | esdoc@^0.5.2: 1280 | version "0.5.2" 1281 | resolved "https://registry.yarnpkg.com/esdoc/-/esdoc-0.5.2.tgz#cbfd0b20e3d1cacc23c93c328eed987e21ba0067" 1282 | dependencies: 1283 | babel-generator "6.11.4" 1284 | babel-traverse "6.12.0" 1285 | babylon "6.14.1" 1286 | cheerio "0.22.0" 1287 | color-logger "0.0.3" 1288 | escape-html "1.0.3" 1289 | fs-extra "1.0.0" 1290 | ice-cap "0.0.4" 1291 | marked "0.3.6" 1292 | minimist "1.2.0" 1293 | taffydb "2.7.2" 1294 | 1295 | esprima@^3.1.3: 1296 | version "3.1.3" 1297 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1298 | 1299 | esprima@^4.0.0: 1300 | version "4.0.0" 1301 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1302 | 1303 | estraverse@^4.2.0: 1304 | version "4.2.0" 1305 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1306 | 1307 | esutils@^2.0.2: 1308 | version "2.0.2" 1309 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1310 | 1311 | event-stream@^3.3.0: 1312 | version "3.3.4" 1313 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 1314 | dependencies: 1315 | duplexer "~0.1.1" 1316 | from "~0" 1317 | map-stream "~0.1.0" 1318 | pause-stream "0.0.11" 1319 | split "0.3" 1320 | stream-combiner "~0.0.4" 1321 | through "~2.3.1" 1322 | 1323 | exec-sh@^0.2.0: 1324 | version "0.2.1" 1325 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 1326 | dependencies: 1327 | merge "^1.1.3" 1328 | 1329 | execa@^0.7.0: 1330 | version "0.7.0" 1331 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1332 | dependencies: 1333 | cross-spawn "^5.0.1" 1334 | get-stream "^3.0.0" 1335 | is-stream "^1.1.0" 1336 | npm-run-path "^2.0.0" 1337 | p-finally "^1.0.0" 1338 | signal-exit "^3.0.0" 1339 | strip-eof "^1.0.0" 1340 | 1341 | exit-hook@^1.0.0: 1342 | version "1.1.1" 1343 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1344 | 1345 | expand-brackets@^0.1.4: 1346 | version "0.1.5" 1347 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1348 | dependencies: 1349 | is-posix-bracket "^0.1.0" 1350 | 1351 | expand-brackets@^2.1.4: 1352 | version "2.1.4" 1353 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1354 | dependencies: 1355 | debug "^2.3.3" 1356 | define-property "^0.2.5" 1357 | extend-shallow "^2.0.1" 1358 | posix-character-classes "^0.1.0" 1359 | regex-not "^1.0.0" 1360 | snapdragon "^0.8.1" 1361 | to-regex "^3.0.1" 1362 | 1363 | expand-range@^1.8.1: 1364 | version "1.8.2" 1365 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1366 | dependencies: 1367 | fill-range "^2.1.0" 1368 | 1369 | expand-tilde@^1.2.2: 1370 | version "1.2.2" 1371 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449" 1372 | dependencies: 1373 | os-homedir "^1.0.1" 1374 | 1375 | expand-tilde@^2.0.2: 1376 | version "2.0.2" 1377 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" 1378 | dependencies: 1379 | homedir-polyfill "^1.0.1" 1380 | 1381 | extend-shallow@^2.0.1: 1382 | version "2.0.1" 1383 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1384 | dependencies: 1385 | is-extendable "^0.1.0" 1386 | 1387 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1388 | version "3.0.2" 1389 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1390 | dependencies: 1391 | assign-symbols "^1.0.0" 1392 | is-extendable "^1.0.1" 1393 | 1394 | extend@3, extend@^3.0.0, extend@~3.0.0, extend@~3.0.1: 1395 | version "3.0.1" 1396 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1397 | 1398 | external-editor@^1.1.0: 1399 | version "1.1.1" 1400 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-1.1.1.tgz#12d7b0db850f7ff7e7081baf4005700060c4600b" 1401 | dependencies: 1402 | extend "^3.0.0" 1403 | spawn-sync "^1.0.15" 1404 | tmp "^0.0.29" 1405 | 1406 | external-editor@^2.0.1: 1407 | version "2.2.0" 1408 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" 1409 | dependencies: 1410 | chardet "^0.4.0" 1411 | iconv-lite "^0.4.17" 1412 | tmp "^0.0.33" 1413 | 1414 | extglob@^0.3.1: 1415 | version "0.3.2" 1416 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1417 | dependencies: 1418 | is-extglob "^1.0.0" 1419 | 1420 | extglob@^2.0.4: 1421 | version "2.0.4" 1422 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1423 | dependencies: 1424 | array-unique "^0.3.2" 1425 | define-property "^1.0.0" 1426 | expand-brackets "^2.1.4" 1427 | extend-shallow "^2.0.1" 1428 | fragment-cache "^0.2.1" 1429 | regex-not "^1.0.0" 1430 | snapdragon "^0.8.1" 1431 | to-regex "^3.0.1" 1432 | 1433 | extsprintf@1.3.0: 1434 | version "1.3.0" 1435 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1436 | 1437 | extsprintf@^1.2.0: 1438 | version "1.4.0" 1439 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1440 | 1441 | fast-deep-equal@^1.0.0: 1442 | version "1.1.0" 1443 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 1444 | 1445 | fast-json-stable-stringify@^2.0.0: 1446 | version "2.0.0" 1447 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1448 | 1449 | fast-levenshtein@~2.0.4: 1450 | version "2.0.6" 1451 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1452 | 1453 | fb-watchman@^1.8.0: 1454 | version "1.9.2" 1455 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1456 | dependencies: 1457 | bser "1.0.2" 1458 | 1459 | fb-watchman@^2.0.0: 1460 | version "2.0.0" 1461 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1462 | dependencies: 1463 | bser "^2.0.0" 1464 | 1465 | figures@^1.3.5, figures@^1.7.0: 1466 | version "1.7.0" 1467 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1468 | dependencies: 1469 | escape-string-regexp "^1.0.5" 1470 | object-assign "^4.1.0" 1471 | 1472 | figures@^2.0.0: 1473 | version "2.0.0" 1474 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1475 | dependencies: 1476 | escape-string-regexp "^1.0.5" 1477 | 1478 | filename-regex@^2.0.0: 1479 | version "2.0.1" 1480 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1481 | 1482 | fileset@^2.0.2: 1483 | version "2.0.3" 1484 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1485 | dependencies: 1486 | glob "^7.0.3" 1487 | minimatch "^3.0.3" 1488 | 1489 | fill-range@^2.1.0: 1490 | version "2.2.3" 1491 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1492 | dependencies: 1493 | is-number "^2.1.0" 1494 | isobject "^2.0.0" 1495 | randomatic "^1.1.3" 1496 | repeat-element "^1.1.2" 1497 | repeat-string "^1.5.2" 1498 | 1499 | fill-range@^4.0.0: 1500 | version "4.0.0" 1501 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1502 | dependencies: 1503 | extend-shallow "^2.0.1" 1504 | is-number "^3.0.0" 1505 | repeat-string "^1.6.1" 1506 | to-regex-range "^2.1.0" 1507 | 1508 | find-node-modules@1.0.4: 1509 | version "1.0.4" 1510 | resolved "https://registry.yarnpkg.com/find-node-modules/-/find-node-modules-1.0.4.tgz#b6deb3cccb699c87037677bcede2c5f5862b2550" 1511 | dependencies: 1512 | findup-sync "0.4.2" 1513 | merge "^1.2.0" 1514 | 1515 | find-parent-dir@^0.3.0: 1516 | version "0.3.0" 1517 | resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" 1518 | 1519 | find-root@1.0.0: 1520 | version "1.0.0" 1521 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.0.0.tgz#962ff211aab25c6520feeeb8d6287f8f6e95807a" 1522 | 1523 | find-up@^1.0.0: 1524 | version "1.1.2" 1525 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1526 | dependencies: 1527 | path-exists "^2.0.0" 1528 | pinkie-promise "^2.0.0" 1529 | 1530 | find-up@^2.0.0, find-up@^2.1.0: 1531 | version "2.1.0" 1532 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1533 | dependencies: 1534 | locate-path "^2.0.0" 1535 | 1536 | findup-sync@0.4.2: 1537 | version "0.4.2" 1538 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.4.2.tgz#a8117d0f73124f5a4546839579fe52d7129fb5e5" 1539 | dependencies: 1540 | detect-file "^0.1.0" 1541 | is-glob "^2.0.1" 1542 | micromatch "^2.3.7" 1543 | resolve-dir "^0.1.0" 1544 | 1545 | findup@0.1.5: 1546 | version "0.1.5" 1547 | resolved "https://registry.yarnpkg.com/findup/-/findup-0.1.5.tgz#8ad929a3393bac627957a7e5de4623b06b0e2ceb" 1548 | dependencies: 1549 | colors "~0.6.0-1" 1550 | commander "~2.1.0" 1551 | 1552 | follow-redirects@0.0.7: 1553 | version "0.0.7" 1554 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-0.0.7.tgz#34b90bab2a911aa347571da90f22bd36ecd8a919" 1555 | dependencies: 1556 | debug "^2.2.0" 1557 | stream-consume "^0.1.0" 1558 | 1559 | for-in@^1.0.1, for-in@^1.0.2: 1560 | version "1.0.2" 1561 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1562 | 1563 | for-own@^0.1.4: 1564 | version "0.1.5" 1565 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1566 | dependencies: 1567 | for-in "^1.0.1" 1568 | 1569 | foreachasync@^3.0.0: 1570 | version "3.0.0" 1571 | resolved "https://registry.yarnpkg.com/foreachasync/-/foreachasync-3.0.0.tgz#5502987dc8714be3392097f32e0071c9dee07cf6" 1572 | 1573 | forever-agent@~0.6.1: 1574 | version "0.6.1" 1575 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1576 | 1577 | form-data@~1.0.0-rc4: 1578 | version "1.0.1" 1579 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-1.0.1.tgz#ae315db9a4907fa065502304a66d7733475ee37c" 1580 | dependencies: 1581 | async "^2.0.1" 1582 | combined-stream "^1.0.5" 1583 | mime-types "^2.1.11" 1584 | 1585 | form-data@~2.3.1: 1586 | version "2.3.2" 1587 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 1588 | dependencies: 1589 | asynckit "^0.4.0" 1590 | combined-stream "1.0.6" 1591 | mime-types "^2.1.12" 1592 | 1593 | fragment-cache@^0.2.1: 1594 | version "0.2.1" 1595 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1596 | dependencies: 1597 | map-cache "^0.2.2" 1598 | 1599 | from@~0: 1600 | version "0.1.7" 1601 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 1602 | 1603 | fs-exists-sync@^0.1.0: 1604 | version "0.1.0" 1605 | resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add" 1606 | 1607 | fs-extra@1.0.0, fs-extra@^1.0.0: 1608 | version "1.0.0" 1609 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" 1610 | dependencies: 1611 | graceful-fs "^4.1.2" 1612 | jsonfile "^2.1.0" 1613 | klaw "^1.0.0" 1614 | 1615 | fs-extra@^4.0.0: 1616 | version "4.0.3" 1617 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" 1618 | dependencies: 1619 | graceful-fs "^4.1.2" 1620 | jsonfile "^4.0.0" 1621 | universalify "^0.1.0" 1622 | 1623 | fs.realpath@^1.0.0: 1624 | version "1.0.0" 1625 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1626 | 1627 | gauge@~1.2.0: 1628 | version "1.2.7" 1629 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-1.2.7.tgz#e9cec5483d3d4ee0ef44b60a7d99e4935e136d93" 1630 | dependencies: 1631 | ansi "^0.3.0" 1632 | has-unicode "^2.0.0" 1633 | lodash.pad "^4.1.0" 1634 | lodash.padend "^4.1.0" 1635 | lodash.padstart "^4.1.0" 1636 | 1637 | gauge@~2.7.3: 1638 | version "2.7.4" 1639 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1640 | dependencies: 1641 | aproba "^1.0.3" 1642 | console-control-strings "^1.0.0" 1643 | has-unicode "^2.0.0" 1644 | object-assign "^4.1.0" 1645 | signal-exit "^3.0.0" 1646 | string-width "^1.0.1" 1647 | strip-ansi "^3.0.1" 1648 | wide-align "^1.1.0" 1649 | 1650 | generate-function@^2.0.0: 1651 | version "2.0.0" 1652 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1653 | 1654 | generate-object-property@^1.1.0: 1655 | version "1.2.0" 1656 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1657 | dependencies: 1658 | is-property "^1.0.0" 1659 | 1660 | get-caller-file@^1.0.1: 1661 | version "1.0.2" 1662 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1663 | 1664 | get-stdin@^4.0.1: 1665 | version "4.0.1" 1666 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1667 | 1668 | get-stdin@^6.0.0: 1669 | version "6.0.0" 1670 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" 1671 | 1672 | get-stream@^3.0.0: 1673 | version "3.0.0" 1674 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1675 | 1676 | get-value@^2.0.3, get-value@^2.0.6: 1677 | version "2.0.6" 1678 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1679 | 1680 | getpass@^0.1.1: 1681 | version "0.1.7" 1682 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1683 | dependencies: 1684 | assert-plus "^1.0.0" 1685 | 1686 | git-config-path@^1.0.1: 1687 | version "1.0.1" 1688 | resolved "https://registry.yarnpkg.com/git-config-path/-/git-config-path-1.0.1.tgz#6d33f7ed63db0d0e118131503bab3aca47d54664" 1689 | dependencies: 1690 | extend-shallow "^2.0.1" 1691 | fs-exists-sync "^0.1.0" 1692 | homedir-polyfill "^1.0.0" 1693 | 1694 | git-head@^1.2.1: 1695 | version "1.20.1" 1696 | resolved "https://registry.yarnpkg.com/git-head/-/git-head-1.20.1.tgz#036d16a4b374949e4e3daf15827903686d3ccd52" 1697 | dependencies: 1698 | git-refs "^1.1.3" 1699 | 1700 | git-refs@^1.1.3: 1701 | version "1.1.3" 1702 | resolved "https://registry.yarnpkg.com/git-refs/-/git-refs-1.1.3.tgz#83097cb3a92585c4a4926ec54e2182df9e20e89d" 1703 | dependencies: 1704 | path-object "^2.3.0" 1705 | slash "^1.0.0" 1706 | walk "^2.3.9" 1707 | 1708 | github-url-from-git@^1.3.0, github-url-from-git@^1.4.0: 1709 | version "1.5.0" 1710 | resolved "https://registry.yarnpkg.com/github-url-from-git/-/github-url-from-git-1.5.0.tgz#f985fedcc0a9aa579dc88d7aff068d55cc6251a0" 1711 | 1712 | github-url-from-username-repo@^1.0.0: 1713 | version "1.0.2" 1714 | resolved "https://registry.yarnpkg.com/github-url-from-username-repo/-/github-url-from-username-repo-1.0.2.tgz#7dd79330d2abe69c10c2cef79714c97215791dfa" 1715 | 1716 | github@^8.0.0: 1717 | version "8.2.1" 1718 | resolved "https://registry.yarnpkg.com/github/-/github-8.2.1.tgz#616b2211fbcd1cc8631669aed67653e62eb53816" 1719 | dependencies: 1720 | follow-redirects "0.0.7" 1721 | https-proxy-agent "^1.0.0" 1722 | mime "^1.2.11" 1723 | netrc "^0.1.4" 1724 | 1725 | github@~0.1.10: 1726 | version "0.1.16" 1727 | resolved "https://registry.yarnpkg.com/github/-/github-0.1.16.tgz#895d2a85b0feb7980d89ac0ce4f44dcaa03f17b5" 1728 | 1729 | glob-base@^0.3.0: 1730 | version "0.3.0" 1731 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1732 | dependencies: 1733 | glob-parent "^2.0.0" 1734 | is-glob "^2.0.0" 1735 | 1736 | glob-parent@^2.0.0: 1737 | version "2.0.0" 1738 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1739 | dependencies: 1740 | is-glob "^2.0.0" 1741 | 1742 | glob@7.1.1: 1743 | version "7.1.1" 1744 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1745 | dependencies: 1746 | fs.realpath "^1.0.0" 1747 | inflight "^1.0.4" 1748 | inherits "2" 1749 | minimatch "^3.0.2" 1750 | once "^1.3.0" 1751 | path-is-absolute "^1.0.0" 1752 | 1753 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: 1754 | version "7.1.2" 1755 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1756 | dependencies: 1757 | fs.realpath "^1.0.0" 1758 | inflight "^1.0.4" 1759 | inherits "2" 1760 | minimatch "^3.0.4" 1761 | once "^1.3.0" 1762 | path-is-absolute "^1.0.0" 1763 | 1764 | global-modules@^0.2.3: 1765 | version "0.2.3" 1766 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d" 1767 | dependencies: 1768 | global-prefix "^0.1.4" 1769 | is-windows "^0.2.0" 1770 | 1771 | global-prefix@^0.1.4: 1772 | version "0.1.5" 1773 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.5.tgz#8d3bc6b8da3ca8112a160d8d496ff0462bfef78f" 1774 | dependencies: 1775 | homedir-polyfill "^1.0.0" 1776 | ini "^1.3.4" 1777 | is-windows "^0.2.0" 1778 | which "^1.2.12" 1779 | 1780 | globals@^8.3.0: 1781 | version "8.18.0" 1782 | resolved "https://registry.yarnpkg.com/globals/-/globals-8.18.0.tgz#93d4a62bdcac38cfafafc47d6b034768cb0ffcb4" 1783 | 1784 | globals@^9.18.0: 1785 | version "9.18.0" 1786 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1787 | 1788 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 1789 | version "4.1.11" 1790 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1791 | 1792 | growly@^1.3.0: 1793 | version "1.3.0" 1794 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1795 | 1796 | handlebars@^4.0.3: 1797 | version "4.0.11" 1798 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 1799 | dependencies: 1800 | async "^1.4.0" 1801 | optimist "^0.6.1" 1802 | source-map "^0.4.4" 1803 | optionalDependencies: 1804 | uglify-js "^2.6" 1805 | 1806 | har-schema@^2.0.0: 1807 | version "2.0.0" 1808 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1809 | 1810 | har-validator@~2.0.6: 1811 | version "2.0.6" 1812 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1813 | dependencies: 1814 | chalk "^1.1.1" 1815 | commander "^2.9.0" 1816 | is-my-json-valid "^2.12.4" 1817 | pinkie-promise "^2.0.0" 1818 | 1819 | har-validator@~5.0.3: 1820 | version "5.0.3" 1821 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1822 | dependencies: 1823 | ajv "^5.1.0" 1824 | har-schema "^2.0.0" 1825 | 1826 | has-ansi@^2.0.0: 1827 | version "2.0.0" 1828 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1829 | dependencies: 1830 | ansi-regex "^2.0.0" 1831 | 1832 | has-flag@^1.0.0: 1833 | version "1.0.0" 1834 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1835 | 1836 | has-flag@^2.0.0: 1837 | version "2.0.0" 1838 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1839 | 1840 | has-flag@^3.0.0: 1841 | version "3.0.0" 1842 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1843 | 1844 | has-unicode@^2.0.0: 1845 | version "2.0.1" 1846 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1847 | 1848 | has-value@^0.3.1: 1849 | version "0.3.1" 1850 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1851 | dependencies: 1852 | get-value "^2.0.3" 1853 | has-values "^0.1.4" 1854 | isobject "^2.0.0" 1855 | 1856 | has-value@^1.0.0: 1857 | version "1.0.0" 1858 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1859 | dependencies: 1860 | get-value "^2.0.6" 1861 | has-values "^1.0.0" 1862 | isobject "^3.0.0" 1863 | 1864 | has-values@^0.1.4: 1865 | version "0.1.4" 1866 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1867 | 1868 | has-values@^1.0.0: 1869 | version "1.0.0" 1870 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1871 | dependencies: 1872 | is-number "^3.0.0" 1873 | kind-of "^4.0.0" 1874 | 1875 | hawk@~3.1.3: 1876 | version "3.1.3" 1877 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1878 | dependencies: 1879 | boom "2.x.x" 1880 | cryptiles "2.x.x" 1881 | hoek "2.x.x" 1882 | sntp "1.x.x" 1883 | 1884 | hawk@~6.0.2: 1885 | version "6.0.2" 1886 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1887 | dependencies: 1888 | boom "4.x.x" 1889 | cryptiles "3.x.x" 1890 | hoek "4.x.x" 1891 | sntp "2.x.x" 1892 | 1893 | hoek@2.x.x: 1894 | version "2.16.3" 1895 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1896 | 1897 | hoek@4.x.x: 1898 | version "4.2.1" 1899 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.1.tgz#9634502aa12c445dd5a7c5734b572bb8738aacbb" 1900 | 1901 | home-or-tmp@^2.0.0: 1902 | version "2.0.0" 1903 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1904 | dependencies: 1905 | os-homedir "^1.0.0" 1906 | os-tmpdir "^1.0.1" 1907 | 1908 | homedir-polyfill@^1.0.0, homedir-polyfill@^1.0.1: 1909 | version "1.0.1" 1910 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" 1911 | dependencies: 1912 | parse-passwd "^1.0.0" 1913 | 1914 | hosted-git-info@^2.1.4, hosted-git-info@^2.1.5: 1915 | version "2.6.0" 1916 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" 1917 | 1918 | html-encoding-sniffer@^1.0.1: 1919 | version "1.0.2" 1920 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 1921 | dependencies: 1922 | whatwg-encoding "^1.0.1" 1923 | 1924 | htmlparser2@^3.9.1: 1925 | version "3.9.2" 1926 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338" 1927 | dependencies: 1928 | domelementtype "^1.3.0" 1929 | domhandler "^2.3.0" 1930 | domutils "^1.5.1" 1931 | entities "^1.1.1" 1932 | inherits "^2.0.1" 1933 | readable-stream "^2.0.2" 1934 | 1935 | htmlparser2@~3.8.1: 1936 | version "3.8.3" 1937 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.8.3.tgz#996c28b191516a8be86501a7d79757e5c70c1068" 1938 | dependencies: 1939 | domelementtype "1" 1940 | domhandler "2.3" 1941 | domutils "1.5" 1942 | entities "1.0" 1943 | readable-stream "1.1" 1944 | 1945 | http-proxy-agent@^2.1.0: 1946 | version "2.1.0" 1947 | resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz#e4821beef5b2142a2026bd73926fe537631c5405" 1948 | dependencies: 1949 | agent-base "4" 1950 | debug "3.1.0" 1951 | 1952 | http-signature@~1.1.0: 1953 | version "1.1.1" 1954 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1955 | dependencies: 1956 | assert-plus "^0.2.0" 1957 | jsprim "^1.2.2" 1958 | sshpk "^1.7.0" 1959 | 1960 | http-signature@~1.2.0: 1961 | version "1.2.0" 1962 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1963 | dependencies: 1964 | assert-plus "^1.0.0" 1965 | jsprim "^1.2.2" 1966 | sshpk "^1.7.0" 1967 | 1968 | https-proxy-agent@^1.0.0: 1969 | version "1.0.0" 1970 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz#35f7da6c48ce4ddbfa264891ac593ee5ff8671e6" 1971 | dependencies: 1972 | agent-base "2" 1973 | debug "2" 1974 | extend "3" 1975 | 1976 | https-proxy-agent@^2.2.0, https-proxy-agent@^2.2.1: 1977 | version "2.2.1" 1978 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz#51552970fa04d723e04c56d04178c3f92592bbc0" 1979 | dependencies: 1980 | agent-base "^4.1.0" 1981 | debug "^3.1.0" 1982 | 1983 | husky@^0.13.3: 1984 | version "0.13.4" 1985 | resolved "https://registry.yarnpkg.com/husky/-/husky-0.13.4.tgz#48785c5028de3452a51c48c12c4f94b2124a1407" 1986 | dependencies: 1987 | chalk "^1.1.3" 1988 | find-parent-dir "^0.3.0" 1989 | is-ci "^1.0.9" 1990 | normalize-path "^1.0.0" 1991 | 1992 | hyperlinker@^1.0.0: 1993 | version "1.0.0" 1994 | resolved "https://registry.yarnpkg.com/hyperlinker/-/hyperlinker-1.0.0.tgz#23dc9e38a206b208ee49bc2d6c8ef47027df0c0e" 1995 | 1996 | ice-cap@0.0.4: 1997 | version "0.0.4" 1998 | resolved "https://registry.yarnpkg.com/ice-cap/-/ice-cap-0.0.4.tgz#8a6d31ab4cac8d4b56de4fa946df3352561b6e18" 1999 | dependencies: 2000 | cheerio "0.20.0" 2001 | color-logger "0.0.3" 2002 | 2003 | iconv-lite@0.4.19, iconv-lite@~0.4.13: 2004 | version "0.4.19" 2005 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 2006 | 2007 | iconv-lite@^0.4.17: 2008 | version "0.4.23" 2009 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 2010 | dependencies: 2011 | safer-buffer ">= 2.1.2 < 3" 2012 | 2013 | indent-string@^2.1.0: 2014 | version "2.1.0" 2015 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 2016 | dependencies: 2017 | repeating "^2.0.0" 2018 | 2019 | indent-string@^3.0.0: 2020 | version "3.2.0" 2021 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 2022 | 2023 | inflight@^1.0.4: 2024 | version "1.0.6" 2025 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2026 | dependencies: 2027 | once "^1.3.0" 2028 | wrappy "1" 2029 | 2030 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 2031 | version "2.0.3" 2032 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2033 | 2034 | ini@^1.2.0, ini@^1.3.4, ini@^1.3.5: 2035 | version "1.3.5" 2036 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 2037 | 2038 | inquirer@1.2.3: 2039 | version "1.2.3" 2040 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-1.2.3.tgz#4dec6f32f37ef7bb0b2ed3f1d1a5c3f545074918" 2041 | dependencies: 2042 | ansi-escapes "^1.1.0" 2043 | chalk "^1.0.0" 2044 | cli-cursor "^1.0.1" 2045 | cli-width "^2.0.0" 2046 | external-editor "^1.1.0" 2047 | figures "^1.3.5" 2048 | lodash "^4.3.0" 2049 | mute-stream "0.0.6" 2050 | pinkie-promise "^2.0.0" 2051 | run-async "^2.2.0" 2052 | rx "^4.1.0" 2053 | string-width "^1.0.1" 2054 | strip-ansi "^3.0.0" 2055 | through "^2.3.6" 2056 | 2057 | inquirer@3.0.6: 2058 | version "3.0.6" 2059 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.0.6.tgz#e04aaa9d05b7a3cb9b0f407d04375f0447190347" 2060 | dependencies: 2061 | ansi-escapes "^1.1.0" 2062 | chalk "^1.0.0" 2063 | cli-cursor "^2.1.0" 2064 | cli-width "^2.0.0" 2065 | external-editor "^2.0.1" 2066 | figures "^2.0.0" 2067 | lodash "^4.3.0" 2068 | mute-stream "0.0.7" 2069 | run-async "^2.2.0" 2070 | rx "^4.1.0" 2071 | string-width "^2.0.0" 2072 | strip-ansi "^3.0.0" 2073 | through "^2.3.6" 2074 | 2075 | interpret@^1.0.0: 2076 | version "1.1.0" 2077 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" 2078 | 2079 | invariant@^2.2.0, invariant@^2.2.2: 2080 | version "2.2.4" 2081 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 2082 | dependencies: 2083 | loose-envify "^1.0.0" 2084 | 2085 | invert-kv@^1.0.0: 2086 | version "1.0.0" 2087 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2088 | 2089 | is-accessor-descriptor@^0.1.6: 2090 | version "0.1.6" 2091 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 2092 | dependencies: 2093 | kind-of "^3.0.2" 2094 | 2095 | is-accessor-descriptor@^1.0.0: 2096 | version "1.0.0" 2097 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 2098 | dependencies: 2099 | kind-of "^6.0.0" 2100 | 2101 | is-arrayish@^0.2.1: 2102 | version "0.2.1" 2103 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2104 | 2105 | is-buffer@^1.1.5: 2106 | version "1.1.6" 2107 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 2108 | 2109 | is-builtin-module@^1.0.0: 2110 | version "1.0.0" 2111 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2112 | dependencies: 2113 | builtin-modules "^1.0.0" 2114 | 2115 | is-ci@^1.0.10, is-ci@^1.0.9: 2116 | version "1.1.0" 2117 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" 2118 | dependencies: 2119 | ci-info "^1.0.0" 2120 | 2121 | is-data-descriptor@^0.1.4: 2122 | version "0.1.4" 2123 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 2124 | dependencies: 2125 | kind-of "^3.0.2" 2126 | 2127 | is-data-descriptor@^1.0.0: 2128 | version "1.0.0" 2129 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 2130 | dependencies: 2131 | kind-of "^6.0.0" 2132 | 2133 | is-descriptor@^0.1.0: 2134 | version "0.1.6" 2135 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 2136 | dependencies: 2137 | is-accessor-descriptor "^0.1.6" 2138 | is-data-descriptor "^0.1.4" 2139 | kind-of "^5.0.0" 2140 | 2141 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 2142 | version "1.0.2" 2143 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 2144 | dependencies: 2145 | is-accessor-descriptor "^1.0.0" 2146 | is-data-descriptor "^1.0.0" 2147 | kind-of "^6.0.2" 2148 | 2149 | is-dotfile@^1.0.0: 2150 | version "1.0.3" 2151 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 2152 | 2153 | is-equal-shallow@^0.1.3: 2154 | version "0.1.3" 2155 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2156 | dependencies: 2157 | is-primitive "^2.0.0" 2158 | 2159 | is-extendable@^0.1.0, is-extendable@^0.1.1: 2160 | version "0.1.1" 2161 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2162 | 2163 | is-extendable@^1.0.1: 2164 | version "1.0.1" 2165 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 2166 | dependencies: 2167 | is-plain-object "^2.0.4" 2168 | 2169 | is-extglob@^1.0.0: 2170 | version "1.0.0" 2171 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2172 | 2173 | is-finite@^1.0.0: 2174 | version "1.0.2" 2175 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2176 | dependencies: 2177 | number-is-nan "^1.0.0" 2178 | 2179 | is-fullwidth-code-point@^1.0.0: 2180 | version "1.0.0" 2181 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2182 | dependencies: 2183 | number-is-nan "^1.0.0" 2184 | 2185 | is-fullwidth-code-point@^2.0.0: 2186 | version "2.0.0" 2187 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2188 | 2189 | is-glob@^2.0.0, is-glob@^2.0.1: 2190 | version "2.0.1" 2191 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2192 | dependencies: 2193 | is-extglob "^1.0.0" 2194 | 2195 | is-my-ip-valid@^1.0.0: 2196 | version "1.0.0" 2197 | resolved "https://registry.yarnpkg.com/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz#7b351b8e8edd4d3995d4d066680e664d94696824" 2198 | 2199 | is-my-json-valid@^2.12.4: 2200 | version "2.17.2" 2201 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.17.2.tgz#6b2103a288e94ef3de5cf15d29dd85fc4b78d65c" 2202 | dependencies: 2203 | generate-function "^2.0.0" 2204 | generate-object-property "^1.1.0" 2205 | is-my-ip-valid "^1.0.0" 2206 | jsonpointer "^4.0.0" 2207 | xtend "^4.0.0" 2208 | 2209 | is-number@^2.1.0: 2210 | version "2.1.0" 2211 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2212 | dependencies: 2213 | kind-of "^3.0.2" 2214 | 2215 | is-number@^3.0.0: 2216 | version "3.0.0" 2217 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2218 | dependencies: 2219 | kind-of "^3.0.2" 2220 | 2221 | is-number@^4.0.0: 2222 | version "4.0.0" 2223 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 2224 | 2225 | is-odd@^2.0.0: 2226 | version "2.0.0" 2227 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" 2228 | dependencies: 2229 | is-number "^4.0.0" 2230 | 2231 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 2232 | version "2.0.4" 2233 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 2234 | dependencies: 2235 | isobject "^3.0.1" 2236 | 2237 | is-posix-bracket@^0.1.0: 2238 | version "0.1.1" 2239 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2240 | 2241 | is-primitive@^2.0.0: 2242 | version "2.0.0" 2243 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2244 | 2245 | is-promise@^2.1.0: 2246 | version "2.1.0" 2247 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2248 | 2249 | is-property@^1.0.0: 2250 | version "1.0.2" 2251 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2252 | 2253 | is-stream@^1.0.1, is-stream@^1.1.0: 2254 | version "1.1.0" 2255 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2256 | 2257 | is-typedarray@~1.0.0: 2258 | version "1.0.0" 2259 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2260 | 2261 | is-utf8@^0.2.0: 2262 | version "0.2.1" 2263 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2264 | 2265 | is-windows@^0.2.0: 2266 | version "0.2.0" 2267 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" 2268 | 2269 | is-windows@^1.0.2: 2270 | version "1.0.2" 2271 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 2272 | 2273 | isarray@0.0.1: 2274 | version "0.0.1" 2275 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2276 | 2277 | isarray@1.0.0, isarray@~1.0.0: 2278 | version "1.0.0" 2279 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2280 | 2281 | isexe@^2.0.0: 2282 | version "2.0.0" 2283 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2284 | 2285 | isobject@^2.0.0: 2286 | version "2.1.0" 2287 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2288 | dependencies: 2289 | isarray "1.0.0" 2290 | 2291 | isobject@^3.0.0, isobject@^3.0.1: 2292 | version "3.0.1" 2293 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 2294 | 2295 | isstream@~0.1.2: 2296 | version "0.1.2" 2297 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2298 | 2299 | istanbul-api@^1.1.1: 2300 | version "1.3.1" 2301 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.1.tgz#4c3b05d18c0016d1022e079b98dc82c40f488954" 2302 | dependencies: 2303 | async "^2.1.4" 2304 | compare-versions "^3.1.0" 2305 | fileset "^2.0.2" 2306 | istanbul-lib-coverage "^1.2.0" 2307 | istanbul-lib-hook "^1.2.0" 2308 | istanbul-lib-instrument "^1.10.1" 2309 | istanbul-lib-report "^1.1.4" 2310 | istanbul-lib-source-maps "^1.2.4" 2311 | istanbul-reports "^1.3.0" 2312 | js-yaml "^3.7.0" 2313 | mkdirp "^0.5.1" 2314 | once "^1.4.0" 2315 | 2316 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.2, istanbul-lib-coverage@^1.2.0: 2317 | version "1.2.0" 2318 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341" 2319 | 2320 | istanbul-lib-hook@^1.2.0: 2321 | version "1.2.0" 2322 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.0.tgz#ae556fd5a41a6e8efa0b1002b1e416dfeaf9816c" 2323 | dependencies: 2324 | append-transform "^0.4.0" 2325 | 2326 | istanbul-lib-instrument@^1.10.1, istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.5: 2327 | version "1.10.1" 2328 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz#724b4b6caceba8692d3f1f9d0727e279c401af7b" 2329 | dependencies: 2330 | babel-generator "^6.18.0" 2331 | babel-template "^6.16.0" 2332 | babel-traverse "^6.18.0" 2333 | babel-types "^6.18.0" 2334 | babylon "^6.18.0" 2335 | istanbul-lib-coverage "^1.2.0" 2336 | semver "^5.3.0" 2337 | 2338 | istanbul-lib-report@^1.1.4: 2339 | version "1.1.4" 2340 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz#e886cdf505c4ebbd8e099e4396a90d0a28e2acb5" 2341 | dependencies: 2342 | istanbul-lib-coverage "^1.2.0" 2343 | mkdirp "^0.5.1" 2344 | path-parse "^1.0.5" 2345 | supports-color "^3.1.2" 2346 | 2347 | istanbul-lib-source-maps@^1.1.0: 2348 | version "1.2.3" 2349 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.3.tgz#20fb54b14e14b3fb6edb6aca3571fd2143db44e6" 2350 | dependencies: 2351 | debug "^3.1.0" 2352 | istanbul-lib-coverage "^1.1.2" 2353 | mkdirp "^0.5.1" 2354 | rimraf "^2.6.1" 2355 | source-map "^0.5.3" 2356 | 2357 | istanbul-lib-source-maps@^1.2.4: 2358 | version "1.2.4" 2359 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.4.tgz#cc7ccad61629f4efff8e2f78adb8c522c9976ec7" 2360 | dependencies: 2361 | debug "^3.1.0" 2362 | istanbul-lib-coverage "^1.2.0" 2363 | mkdirp "^0.5.1" 2364 | rimraf "^2.6.1" 2365 | source-map "^0.5.3" 2366 | 2367 | istanbul-reports@^1.3.0: 2368 | version "1.3.0" 2369 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.3.0.tgz#2f322e81e1d9520767597dca3c20a0cce89a3554" 2370 | dependencies: 2371 | handlebars "^4.0.3" 2372 | 2373 | jest-changed-files@^20.0.3: 2374 | version "20.0.3" 2375 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 2376 | 2377 | jest-cli@^20.0.4: 2378 | version "20.0.4" 2379 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 2380 | dependencies: 2381 | ansi-escapes "^1.4.0" 2382 | callsites "^2.0.0" 2383 | chalk "^1.1.3" 2384 | graceful-fs "^4.1.11" 2385 | is-ci "^1.0.10" 2386 | istanbul-api "^1.1.1" 2387 | istanbul-lib-coverage "^1.0.1" 2388 | istanbul-lib-instrument "^1.4.2" 2389 | istanbul-lib-source-maps "^1.1.0" 2390 | jest-changed-files "^20.0.3" 2391 | jest-config "^20.0.4" 2392 | jest-docblock "^20.0.3" 2393 | jest-environment-jsdom "^20.0.3" 2394 | jest-haste-map "^20.0.4" 2395 | jest-jasmine2 "^20.0.4" 2396 | jest-message-util "^20.0.3" 2397 | jest-regex-util "^20.0.3" 2398 | jest-resolve-dependencies "^20.0.3" 2399 | jest-runtime "^20.0.4" 2400 | jest-snapshot "^20.0.3" 2401 | jest-util "^20.0.3" 2402 | micromatch "^2.3.11" 2403 | node-notifier "^5.0.2" 2404 | pify "^2.3.0" 2405 | slash "^1.0.0" 2406 | string-length "^1.0.1" 2407 | throat "^3.0.0" 2408 | which "^1.2.12" 2409 | worker-farm "^1.3.1" 2410 | yargs "^7.0.2" 2411 | 2412 | jest-config@^20.0.0, jest-config@^20.0.4: 2413 | version "20.0.4" 2414 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 2415 | dependencies: 2416 | chalk "^1.1.3" 2417 | glob "^7.1.1" 2418 | jest-environment-jsdom "^20.0.3" 2419 | jest-environment-node "^20.0.3" 2420 | jest-jasmine2 "^20.0.4" 2421 | jest-matcher-utils "^20.0.3" 2422 | jest-regex-util "^20.0.3" 2423 | jest-resolve "^20.0.4" 2424 | jest-validate "^20.0.3" 2425 | pretty-format "^20.0.3" 2426 | 2427 | jest-diff@^20.0.3: 2428 | version "20.0.3" 2429 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 2430 | dependencies: 2431 | chalk "^1.1.3" 2432 | diff "^3.2.0" 2433 | jest-matcher-utils "^20.0.3" 2434 | pretty-format "^20.0.3" 2435 | 2436 | jest-docblock@^20.0.3: 2437 | version "20.0.3" 2438 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 2439 | 2440 | jest-environment-jsdom@^20.0.3: 2441 | version "20.0.3" 2442 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 2443 | dependencies: 2444 | jest-mock "^20.0.3" 2445 | jest-util "^20.0.3" 2446 | jsdom "^9.12.0" 2447 | 2448 | jest-environment-node@^20.0.3: 2449 | version "20.0.3" 2450 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 2451 | dependencies: 2452 | jest-mock "^20.0.3" 2453 | jest-util "^20.0.3" 2454 | 2455 | jest-haste-map@^20.0.4: 2456 | version "20.0.5" 2457 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.5.tgz#abad74efb1a005974a7b6517e11010709cab9112" 2458 | dependencies: 2459 | fb-watchman "^2.0.0" 2460 | graceful-fs "^4.1.11" 2461 | jest-docblock "^20.0.3" 2462 | micromatch "^2.3.11" 2463 | sane "~1.6.0" 2464 | worker-farm "^1.3.1" 2465 | 2466 | jest-jasmine2@^20.0.4: 2467 | version "20.0.4" 2468 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 2469 | dependencies: 2470 | chalk "^1.1.3" 2471 | graceful-fs "^4.1.11" 2472 | jest-diff "^20.0.3" 2473 | jest-matcher-utils "^20.0.3" 2474 | jest-matchers "^20.0.3" 2475 | jest-message-util "^20.0.3" 2476 | jest-snapshot "^20.0.3" 2477 | once "^1.4.0" 2478 | p-map "^1.1.1" 2479 | 2480 | jest-matcher-utils@^20.0.3: 2481 | version "20.0.3" 2482 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 2483 | dependencies: 2484 | chalk "^1.1.3" 2485 | pretty-format "^20.0.3" 2486 | 2487 | jest-matchers@^20.0.3: 2488 | version "20.0.3" 2489 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 2490 | dependencies: 2491 | jest-diff "^20.0.3" 2492 | jest-matcher-utils "^20.0.3" 2493 | jest-message-util "^20.0.3" 2494 | jest-regex-util "^20.0.3" 2495 | 2496 | jest-message-util@^20.0.3: 2497 | version "20.0.3" 2498 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 2499 | dependencies: 2500 | chalk "^1.1.3" 2501 | micromatch "^2.3.11" 2502 | slash "^1.0.0" 2503 | 2504 | jest-mock@^20.0.3: 2505 | version "20.0.3" 2506 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 2507 | 2508 | jest-regex-util@^20.0.3: 2509 | version "20.0.3" 2510 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 2511 | 2512 | jest-resolve-dependencies@^20.0.3: 2513 | version "20.0.3" 2514 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 2515 | dependencies: 2516 | jest-regex-util "^20.0.3" 2517 | 2518 | jest-resolve@^20.0.4: 2519 | version "20.0.4" 2520 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 2521 | dependencies: 2522 | browser-resolve "^1.11.2" 2523 | is-builtin-module "^1.0.0" 2524 | resolve "^1.3.2" 2525 | 2526 | jest-runtime@^20.0.4: 2527 | version "20.0.4" 2528 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 2529 | dependencies: 2530 | babel-core "^6.0.0" 2531 | babel-jest "^20.0.3" 2532 | babel-plugin-istanbul "^4.0.0" 2533 | chalk "^1.1.3" 2534 | convert-source-map "^1.4.0" 2535 | graceful-fs "^4.1.11" 2536 | jest-config "^20.0.4" 2537 | jest-haste-map "^20.0.4" 2538 | jest-regex-util "^20.0.3" 2539 | jest-resolve "^20.0.4" 2540 | jest-util "^20.0.3" 2541 | json-stable-stringify "^1.0.1" 2542 | micromatch "^2.3.11" 2543 | strip-bom "3.0.0" 2544 | yargs "^7.0.2" 2545 | 2546 | jest-snapshot@^20.0.3: 2547 | version "20.0.3" 2548 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 2549 | dependencies: 2550 | chalk "^1.1.3" 2551 | jest-diff "^20.0.3" 2552 | jest-matcher-utils "^20.0.3" 2553 | jest-util "^20.0.3" 2554 | natural-compare "^1.4.0" 2555 | pretty-format "^20.0.3" 2556 | 2557 | jest-util@^20.0.0, jest-util@^20.0.3: 2558 | version "20.0.3" 2559 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 2560 | dependencies: 2561 | chalk "^1.1.3" 2562 | graceful-fs "^4.1.11" 2563 | jest-message-util "^20.0.3" 2564 | jest-mock "^20.0.3" 2565 | jest-validate "^20.0.3" 2566 | leven "^2.1.0" 2567 | mkdirp "^0.5.1" 2568 | 2569 | jest-validate@^20.0.3: 2570 | version "20.0.3" 2571 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 2572 | dependencies: 2573 | chalk "^1.1.3" 2574 | jest-matcher-utils "^20.0.3" 2575 | leven "^2.1.0" 2576 | pretty-format "^20.0.3" 2577 | 2578 | jest@^20.0.1: 2579 | version "20.0.4" 2580 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 2581 | dependencies: 2582 | jest-cli "^20.0.4" 2583 | 2584 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2585 | version "3.0.2" 2586 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2587 | 2588 | js-yaml@^3.4.3, js-yaml@^3.7.0: 2589 | version "3.11.0" 2590 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef" 2591 | dependencies: 2592 | argparse "^1.0.7" 2593 | esprima "^4.0.0" 2594 | 2595 | jsbn@~0.1.0: 2596 | version "0.1.1" 2597 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2598 | 2599 | jsdom@^7.0.2: 2600 | version "7.2.2" 2601 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-7.2.2.tgz#40b402770c2bda23469096bee91ab675e3b1fc6e" 2602 | dependencies: 2603 | abab "^1.0.0" 2604 | acorn "^2.4.0" 2605 | acorn-globals "^1.0.4" 2606 | cssom ">= 0.3.0 < 0.4.0" 2607 | cssstyle ">= 0.2.29 < 0.3.0" 2608 | escodegen "^1.6.1" 2609 | nwmatcher ">= 1.3.7 < 2.0.0" 2610 | parse5 "^1.5.1" 2611 | request "^2.55.0" 2612 | sax "^1.1.4" 2613 | symbol-tree ">= 3.1.0 < 4.0.0" 2614 | tough-cookie "^2.2.0" 2615 | webidl-conversions "^2.0.0" 2616 | whatwg-url-compat "~0.6.5" 2617 | xml-name-validator ">= 2.0.1 < 3.0.0" 2618 | 2619 | jsdom@^9.12.0: 2620 | version "9.12.0" 2621 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2622 | dependencies: 2623 | abab "^1.0.3" 2624 | acorn "^4.0.4" 2625 | acorn-globals "^3.1.0" 2626 | array-equal "^1.0.0" 2627 | content-type-parser "^1.0.1" 2628 | cssom ">= 0.3.2 < 0.4.0" 2629 | cssstyle ">= 0.2.37 < 0.3.0" 2630 | escodegen "^1.6.1" 2631 | html-encoding-sniffer "^1.0.1" 2632 | nwmatcher ">= 1.3.9 < 2.0.0" 2633 | parse5 "^1.5.1" 2634 | request "^2.79.0" 2635 | sax "^1.2.1" 2636 | symbol-tree "^3.2.1" 2637 | tough-cookie "^2.3.2" 2638 | webidl-conversions "^4.0.0" 2639 | whatwg-encoding "^1.0.1" 2640 | whatwg-url "^4.3.0" 2641 | xml-name-validator "^2.0.1" 2642 | 2643 | jsesc@^1.3.0: 2644 | version "1.3.0" 2645 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2646 | 2647 | jsome@^2.3.25: 2648 | version "2.5.0" 2649 | resolved "https://registry.yarnpkg.com/jsome/-/jsome-2.5.0.tgz#5e417eef4341ffeb83ee8bfa9265b36d56fe49ed" 2650 | dependencies: 2651 | chalk "^2.3.0" 2652 | json-stringify-safe "^5.0.1" 2653 | yargs "^11.0.0" 2654 | 2655 | json-schema-traverse@^0.3.0: 2656 | version "0.3.1" 2657 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2658 | 2659 | json-schema@0.2.3: 2660 | version "0.2.3" 2661 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2662 | 2663 | json-stable-stringify@^1.0.1: 2664 | version "1.0.1" 2665 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2666 | dependencies: 2667 | jsonify "~0.0.0" 2668 | 2669 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: 2670 | version "5.0.1" 2671 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2672 | 2673 | json5@^0.5.1: 2674 | version "0.5.1" 2675 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2676 | 2677 | json5@^2.1.0: 2678 | version "2.1.0" 2679 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" 2680 | dependencies: 2681 | minimist "^1.2.0" 2682 | 2683 | jsonfile@^2.1.0: 2684 | version "2.4.0" 2685 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 2686 | optionalDependencies: 2687 | graceful-fs "^4.1.6" 2688 | 2689 | jsonfile@^4.0.0: 2690 | version "4.0.0" 2691 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 2692 | optionalDependencies: 2693 | graceful-fs "^4.1.6" 2694 | 2695 | jsonify@~0.0.0: 2696 | version "0.0.0" 2697 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2698 | 2699 | jsonpointer@^4.0.0, jsonpointer@^4.0.1: 2700 | version "4.0.1" 2701 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2702 | 2703 | jsonwebtoken@^8.2.1: 2704 | version "8.3.0" 2705 | resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.3.0.tgz#056c90eee9a65ed6e6c72ddb0a1d325109aaf643" 2706 | dependencies: 2707 | jws "^3.1.5" 2708 | lodash.includes "^4.3.0" 2709 | lodash.isboolean "^3.0.3" 2710 | lodash.isinteger "^4.0.4" 2711 | lodash.isnumber "^3.0.3" 2712 | lodash.isplainobject "^4.0.6" 2713 | lodash.isstring "^4.0.1" 2714 | lodash.once "^4.0.0" 2715 | ms "^2.1.1" 2716 | 2717 | jsprim@^1.2.2: 2718 | version "1.4.1" 2719 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2720 | dependencies: 2721 | assert-plus "1.0.0" 2722 | extsprintf "1.3.0" 2723 | json-schema "0.2.3" 2724 | verror "1.10.0" 2725 | 2726 | jwa@^1.1.5: 2727 | version "1.1.6" 2728 | resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.1.6.tgz#87240e76c9808dbde18783cf2264ef4929ee50e6" 2729 | dependencies: 2730 | buffer-equal-constant-time "1.0.1" 2731 | ecdsa-sig-formatter "1.0.10" 2732 | safe-buffer "^5.0.1" 2733 | 2734 | jws@^3.1.5: 2735 | version "3.1.5" 2736 | resolved "https://registry.yarnpkg.com/jws/-/jws-3.1.5.tgz#80d12d05b293d1e841e7cb8b4e69e561adcf834f" 2737 | dependencies: 2738 | jwa "^1.1.5" 2739 | safe-buffer "^5.0.1" 2740 | 2741 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2742 | version "3.2.2" 2743 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2744 | dependencies: 2745 | is-buffer "^1.1.5" 2746 | 2747 | kind-of@^4.0.0: 2748 | version "4.0.0" 2749 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2750 | dependencies: 2751 | is-buffer "^1.1.5" 2752 | 2753 | kind-of@^5.0.0: 2754 | version "5.1.0" 2755 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2756 | 2757 | kind-of@^6.0.0, kind-of@^6.0.2: 2758 | version "6.0.2" 2759 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2760 | 2761 | klaw@^1.0.0: 2762 | version "1.3.1" 2763 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 2764 | optionalDependencies: 2765 | graceful-fs "^4.1.9" 2766 | 2767 | lazy-cache@^1.0.3: 2768 | version "1.0.4" 2769 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2770 | 2771 | lcid@^1.0.0: 2772 | version "1.0.0" 2773 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2774 | dependencies: 2775 | invert-kv "^1.0.0" 2776 | 2777 | leven@^2.1.0: 2778 | version "2.1.0" 2779 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2780 | 2781 | levn@~0.3.0: 2782 | version "0.3.0" 2783 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2784 | dependencies: 2785 | prelude-ls "~1.1.2" 2786 | type-check "~0.3.2" 2787 | 2788 | lint-staged@^3.4.1: 2789 | version "3.6.1" 2790 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-3.6.1.tgz#24423c8b7bd99d96e15acd1ac8cb392a78e58582" 2791 | dependencies: 2792 | app-root-path "^2.0.0" 2793 | cosmiconfig "^1.1.0" 2794 | execa "^0.7.0" 2795 | listr "^0.12.0" 2796 | lodash.chunk "^4.2.0" 2797 | minimatch "^3.0.0" 2798 | npm-which "^3.0.1" 2799 | p-map "^1.1.1" 2800 | staged-git-files "0.0.4" 2801 | 2802 | listr-silent-renderer@^1.1.1: 2803 | version "1.1.1" 2804 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" 2805 | 2806 | listr-update-renderer@^0.2.0: 2807 | version "0.2.0" 2808 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.2.0.tgz#ca80e1779b4e70266807e8eed1ad6abe398550f9" 2809 | dependencies: 2810 | chalk "^1.1.3" 2811 | cli-truncate "^0.2.1" 2812 | elegant-spinner "^1.0.1" 2813 | figures "^1.7.0" 2814 | indent-string "^3.0.0" 2815 | log-symbols "^1.0.2" 2816 | log-update "^1.0.2" 2817 | strip-ansi "^3.0.1" 2818 | 2819 | listr-verbose-renderer@^0.4.0: 2820 | version "0.4.1" 2821 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz#8206f4cf6d52ddc5827e5fd14989e0e965933a35" 2822 | dependencies: 2823 | chalk "^1.1.3" 2824 | cli-cursor "^1.0.2" 2825 | date-fns "^1.27.2" 2826 | figures "^1.7.0" 2827 | 2828 | listr@^0.12.0: 2829 | version "0.12.0" 2830 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.12.0.tgz#6bce2c0f5603fa49580ea17cd6a00cc0e5fa451a" 2831 | dependencies: 2832 | chalk "^1.1.3" 2833 | cli-truncate "^0.2.1" 2834 | figures "^1.7.0" 2835 | indent-string "^2.1.0" 2836 | is-promise "^2.1.0" 2837 | is-stream "^1.1.0" 2838 | listr-silent-renderer "^1.1.1" 2839 | listr-update-renderer "^0.2.0" 2840 | listr-verbose-renderer "^0.4.0" 2841 | log-symbols "^1.0.2" 2842 | log-update "^1.0.2" 2843 | ora "^0.2.3" 2844 | p-map "^1.1.1" 2845 | rxjs "^5.0.0-beta.11" 2846 | stream-to-observable "^0.1.0" 2847 | strip-ansi "^3.0.1" 2848 | 2849 | load-json-file@^1.0.0: 2850 | version "1.1.0" 2851 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2852 | dependencies: 2853 | graceful-fs "^4.1.2" 2854 | parse-json "^2.2.0" 2855 | pify "^2.0.0" 2856 | pinkie-promise "^2.0.0" 2857 | strip-bom "^2.0.0" 2858 | 2859 | load-json-file@^2.0.0: 2860 | version "2.0.0" 2861 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2862 | dependencies: 2863 | graceful-fs "^4.1.2" 2864 | parse-json "^2.2.0" 2865 | pify "^2.0.0" 2866 | strip-bom "^3.0.0" 2867 | 2868 | locate-path@^2.0.0: 2869 | version "2.0.0" 2870 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2871 | dependencies: 2872 | p-locate "^2.0.0" 2873 | path-exists "^3.0.0" 2874 | 2875 | lodash._baseassign@^3.0.0: 2876 | version "3.2.0" 2877 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 2878 | dependencies: 2879 | lodash._basecopy "^3.0.0" 2880 | lodash.keys "^3.0.0" 2881 | 2882 | lodash._basecopy@^3.0.0: 2883 | version "3.0.1" 2884 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 2885 | 2886 | lodash._bindcallback@^3.0.0: 2887 | version "3.0.1" 2888 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 2889 | 2890 | lodash._createassigner@^3.0.0: 2891 | version "3.1.1" 2892 | resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 2893 | dependencies: 2894 | lodash._bindcallback "^3.0.0" 2895 | lodash._isiterateecall "^3.0.0" 2896 | lodash.restparam "^3.0.0" 2897 | 2898 | lodash._getnative@^3.0.0: 2899 | version "3.9.1" 2900 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2901 | 2902 | lodash._isiterateecall@^3.0.0: 2903 | version "3.0.9" 2904 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 2905 | 2906 | lodash.assign@^3.0.0: 2907 | version "3.2.0" 2908 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 2909 | dependencies: 2910 | lodash._baseassign "^3.0.0" 2911 | lodash._createassigner "^3.0.0" 2912 | lodash.keys "^3.0.0" 2913 | 2914 | lodash.assignin@^4.0.9: 2915 | version "4.2.0" 2916 | resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" 2917 | 2918 | lodash.bind@^4.1.4: 2919 | version "4.2.1" 2920 | resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" 2921 | 2922 | lodash.chunk@^4.2.0: 2923 | version "4.2.0" 2924 | resolved "https://registry.yarnpkg.com/lodash.chunk/-/lodash.chunk-4.2.0.tgz#66e5ce1f76ed27b4303d8c6512e8d1216e8106bc" 2925 | 2926 | lodash.defaults@^4.0.1: 2927 | version "4.2.0" 2928 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" 2929 | 2930 | lodash.filter@^4.4.0: 2931 | version "4.6.0" 2932 | resolved "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" 2933 | 2934 | lodash.find@^4.6.0: 2935 | version "4.6.0" 2936 | resolved "https://registry.yarnpkg.com/lodash.find/-/lodash.find-4.6.0.tgz#cb0704d47ab71789ffa0de8b97dd926fb88b13b1" 2937 | 2938 | lodash.flatten@^4.2.0: 2939 | version "4.4.0" 2940 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 2941 | 2942 | lodash.foreach@^4.3.0: 2943 | version "4.5.0" 2944 | resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" 2945 | 2946 | lodash.includes@^4.3.0: 2947 | version "4.3.0" 2948 | resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f" 2949 | 2950 | lodash.isarguments@^3.0.0: 2951 | version "3.1.0" 2952 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2953 | 2954 | lodash.isarray@^3.0.0: 2955 | version "3.0.4" 2956 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2957 | 2958 | lodash.isboolean@^3.0.3: 2959 | version "3.0.3" 2960 | resolved "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6" 2961 | 2962 | lodash.isinteger@^4.0.4: 2963 | version "4.0.4" 2964 | resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343" 2965 | 2966 | lodash.isnumber@^3.0.3: 2967 | version "3.0.3" 2968 | resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc" 2969 | 2970 | lodash.isobject@^3.0.2: 2971 | version "3.0.2" 2972 | resolved "https://registry.yarnpkg.com/lodash.isobject/-/lodash.isobject-3.0.2.tgz#3c8fb8d5b5bf4bf90ae06e14f2a530a4ed935e1d" 2973 | 2974 | lodash.isplainobject@^4.0.6: 2975 | version "4.0.6" 2976 | resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" 2977 | 2978 | lodash.isstring@^4.0.1: 2979 | version "4.0.1" 2980 | resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" 2981 | 2982 | lodash.keys@^3.0.0: 2983 | version "3.1.2" 2984 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2985 | dependencies: 2986 | lodash._getnative "^3.0.0" 2987 | lodash.isarguments "^3.0.0" 2988 | lodash.isarray "^3.0.0" 2989 | 2990 | lodash.keys@^4.0.8: 2991 | version "4.2.0" 2992 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-4.2.0.tgz#a08602ac12e4fb83f91fc1fb7a360a4d9ba35205" 2993 | 2994 | lodash.map@^4.4.0, lodash.map@^4.5.1: 2995 | version "4.6.0" 2996 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" 2997 | 2998 | lodash.merge@^4.4.0: 2999 | version "4.6.1" 3000 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54" 3001 | 3002 | lodash.once@^4.0.0: 3003 | version "4.1.1" 3004 | resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" 3005 | 3006 | lodash.pad@^4.1.0: 3007 | version "4.5.1" 3008 | resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" 3009 | 3010 | lodash.padend@^4.1.0: 3011 | version "4.6.1" 3012 | resolved "https://registry.yarnpkg.com/lodash.padend/-/lodash.padend-4.6.1.tgz#53ccba047d06e158d311f45da625f4e49e6f166e" 3013 | 3014 | lodash.padstart@^4.1.0: 3015 | version "4.6.1" 3016 | resolved "https://registry.yarnpkg.com/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b" 3017 | 3018 | lodash.pick@^4.2.1: 3019 | version "4.4.0" 3020 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" 3021 | 3022 | lodash.reduce@^4.4.0: 3023 | version "4.6.0" 3024 | resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" 3025 | 3026 | lodash.reject@^4.4.0: 3027 | version "4.6.0" 3028 | resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" 3029 | 3030 | lodash.restparam@^3.0.0: 3031 | version "3.6.1" 3032 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 3033 | 3034 | lodash.some@^4.4.0: 3035 | version "4.6.0" 3036 | resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" 3037 | 3038 | lodash@4.17.5, lodash@^4.0.0, lodash@^4.1.0, lodash@^4.13.1, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 3039 | version "4.17.5" 3040 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" 3041 | 3042 | lodash@^3.6.0: 3043 | version "3.10.1" 3044 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 3045 | 3046 | lodash@~1.3.1: 3047 | version "1.3.1" 3048 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-1.3.1.tgz#a4663b53686b895ff074e2ba504dfb76a8e2b770" 3049 | 3050 | log-symbols@^1.0.2: 3051 | version "1.0.2" 3052 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 3053 | dependencies: 3054 | chalk "^1.0.0" 3055 | 3056 | log-update@^1.0.2: 3057 | version "1.0.2" 3058 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" 3059 | dependencies: 3060 | ansi-escapes "^1.0.0" 3061 | cli-cursor "^1.0.2" 3062 | 3063 | longest@^1.0.1: 3064 | version "1.0.1" 3065 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 3066 | 3067 | loose-envify@^1.0.0: 3068 | version "1.3.1" 3069 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 3070 | dependencies: 3071 | js-tokens "^3.0.0" 3072 | 3073 | loud-rejection@^1.0.0: 3074 | version "1.6.0" 3075 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 3076 | dependencies: 3077 | currently-unhandled "^0.4.1" 3078 | signal-exit "^3.0.0" 3079 | 3080 | lru-cache@^4.0.1: 3081 | version "4.1.2" 3082 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.2.tgz#45234b2e6e2f2b33da125624c4664929a0224c3f" 3083 | dependencies: 3084 | pseudomap "^1.0.2" 3085 | yallist "^2.1.2" 3086 | 3087 | macos-release@^1.0.0: 3088 | version "1.1.0" 3089 | resolved "https://registry.yarnpkg.com/macos-release/-/macos-release-1.1.0.tgz#831945e29365b470aa8724b0ab36c8f8959d10fb" 3090 | 3091 | makeerror@1.0.x: 3092 | version "1.0.11" 3093 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 3094 | dependencies: 3095 | tmpl "1.0.x" 3096 | 3097 | map-cache@^0.2.2: 3098 | version "0.2.2" 3099 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 3100 | 3101 | map-obj@^1.0.0, map-obj@^1.0.1: 3102 | version "1.0.1" 3103 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 3104 | 3105 | map-stream@~0.1.0: 3106 | version "0.1.0" 3107 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 3108 | 3109 | map-visit@^1.0.0: 3110 | version "1.0.0" 3111 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 3112 | dependencies: 3113 | object-visit "^1.0.0" 3114 | 3115 | marked@0.3.6: 3116 | version "0.3.6" 3117 | resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.6.tgz#b2c6c618fccece4ef86c4fc6cb8a7cbf5aeda8d7" 3118 | 3119 | mem@^1.1.0: 3120 | version "1.1.0" 3121 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 3122 | dependencies: 3123 | mimic-fn "^1.0.0" 3124 | 3125 | memfs-or-file-map-to-github-branch@^1.1.0: 3126 | version "1.1.0" 3127 | resolved "https://registry.yarnpkg.com/memfs-or-file-map-to-github-branch/-/memfs-or-file-map-to-github-branch-1.1.0.tgz#3ef5bec3a85ce4ae1bcfa7f33e27887d55d522fc" 3128 | dependencies: 3129 | "@octokit/rest" "15.12.1" 3130 | 3131 | meow@^3.3.0: 3132 | version "3.7.0" 3133 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 3134 | dependencies: 3135 | camelcase-keys "^2.0.0" 3136 | decamelize "^1.1.2" 3137 | loud-rejection "^1.0.0" 3138 | map-obj "^1.0.1" 3139 | minimist "^1.1.3" 3140 | normalize-package-data "^2.3.4" 3141 | object-assign "^4.0.1" 3142 | read-pkg-up "^1.0.1" 3143 | redent "^1.0.0" 3144 | trim-newlines "^1.0.0" 3145 | 3146 | merge@^1.1.3, merge@^1.2.0: 3147 | version "1.2.0" 3148 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 3149 | 3150 | micromatch@^2.1.5, micromatch@^2.3.11, micromatch@^2.3.7: 3151 | version "2.3.11" 3152 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 3153 | dependencies: 3154 | arr-diff "^2.0.0" 3155 | array-unique "^0.2.1" 3156 | braces "^1.8.2" 3157 | expand-brackets "^0.1.4" 3158 | extglob "^0.3.1" 3159 | filename-regex "^2.0.0" 3160 | is-extglob "^1.0.0" 3161 | is-glob "^2.0.1" 3162 | kind-of "^3.0.2" 3163 | normalize-path "^2.0.1" 3164 | object.omit "^2.0.0" 3165 | parse-glob "^3.0.4" 3166 | regex-cache "^0.4.2" 3167 | 3168 | micromatch@^3.1.10: 3169 | version "3.1.10" 3170 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 3171 | dependencies: 3172 | arr-diff "^4.0.0" 3173 | array-unique "^0.3.2" 3174 | braces "^2.3.1" 3175 | define-property "^2.0.2" 3176 | extend-shallow "^3.0.2" 3177 | extglob "^2.0.4" 3178 | fragment-cache "^0.2.1" 3179 | kind-of "^6.0.2" 3180 | nanomatch "^1.2.9" 3181 | object.pick "^1.3.0" 3182 | regex-not "^1.0.0" 3183 | snapdragon "^0.8.1" 3184 | to-regex "^3.0.2" 3185 | 3186 | micromatch@^3.1.8: 3187 | version "3.1.9" 3188 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.9.tgz#15dc93175ae39e52e93087847096effc73efcf89" 3189 | dependencies: 3190 | arr-diff "^4.0.0" 3191 | array-unique "^0.3.2" 3192 | braces "^2.3.1" 3193 | define-property "^2.0.2" 3194 | extend-shallow "^3.0.2" 3195 | extglob "^2.0.4" 3196 | fragment-cache "^0.2.1" 3197 | kind-of "^6.0.2" 3198 | nanomatch "^1.2.9" 3199 | object.pick "^1.3.0" 3200 | regex-not "^1.0.0" 3201 | snapdragon "^0.8.1" 3202 | to-regex "^3.0.1" 3203 | 3204 | mime-db@~1.33.0: 3205 | version "1.33.0" 3206 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 3207 | 3208 | mime-types@^2.1.11, mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: 3209 | version "2.1.18" 3210 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 3211 | dependencies: 3212 | mime-db "~1.33.0" 3213 | 3214 | mime@^1.2.11: 3215 | version "1.6.0" 3216 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 3217 | 3218 | mimic-fn@^1.0.0: 3219 | version "1.2.0" 3220 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 3221 | 3222 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 3223 | version "3.0.4" 3224 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 3225 | dependencies: 3226 | brace-expansion "^1.1.7" 3227 | 3228 | minimist@0.0.8: 3229 | version "0.0.8" 3230 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 3231 | 3232 | minimist@1.2.0, minimist@^1.1.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: 3233 | version "1.2.0" 3234 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 3235 | 3236 | minimist@~0.0.1: 3237 | version "0.0.10" 3238 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 3239 | 3240 | mixin-deep@^1.2.0: 3241 | version "1.3.1" 3242 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 3243 | dependencies: 3244 | for-in "^1.0.2" 3245 | is-extendable "^1.0.1" 3246 | 3247 | mkdirp@^0.5.0, mkdirp@^0.5.1: 3248 | version "0.5.1" 3249 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 3250 | dependencies: 3251 | minimist "0.0.8" 3252 | 3253 | ms@2.0.0: 3254 | version "2.0.0" 3255 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 3256 | 3257 | ms@^2.1.1: 3258 | version "2.1.1" 3259 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 3260 | 3261 | mute-stream@0.0.6: 3262 | version "0.0.6" 3263 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.6.tgz#48962b19e169fd1dfc240b3f1e7317627bbc47db" 3264 | 3265 | mute-stream@0.0.7: 3266 | version "0.0.7" 3267 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 3268 | 3269 | nanomatch@^1.2.9: 3270 | version "1.2.9" 3271 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" 3272 | dependencies: 3273 | arr-diff "^4.0.0" 3274 | array-unique "^0.3.2" 3275 | define-property "^2.0.2" 3276 | extend-shallow "^3.0.2" 3277 | fragment-cache "^0.2.1" 3278 | is-odd "^2.0.0" 3279 | is-windows "^1.0.2" 3280 | kind-of "^6.0.2" 3281 | object.pick "^1.3.0" 3282 | regex-not "^1.0.0" 3283 | snapdragon "^0.8.1" 3284 | to-regex "^3.0.1" 3285 | 3286 | natural-compare@^1.4.0: 3287 | version "1.4.0" 3288 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 3289 | 3290 | nerf-dart@^1.0.0: 3291 | version "1.0.0" 3292 | resolved "https://registry.yarnpkg.com/nerf-dart/-/nerf-dart-1.0.0.tgz#e6dab7febf5ad816ea81cf5c629c5a0ebde72c1a" 3293 | 3294 | netrc@^0.1.4: 3295 | version "0.1.4" 3296 | resolved "https://registry.yarnpkg.com/netrc/-/netrc-0.1.4.tgz#6be94fcaca8d77ade0a9670dc460914c94472444" 3297 | 3298 | node-cleanup@^2.1.2: 3299 | version "2.1.2" 3300 | resolved "https://registry.yarnpkg.com/node-cleanup/-/node-cleanup-2.1.2.tgz#7ac19abd297e09a7f72a71545d951b517e4dde2c" 3301 | 3302 | node-fetch@1.6.3: 3303 | version "1.6.3" 3304 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" 3305 | dependencies: 3306 | encoding "^0.1.11" 3307 | is-stream "^1.0.1" 3308 | 3309 | node-fetch@^2.1.1, node-fetch@^2.2.0: 3310 | version "2.2.0" 3311 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.2.0.tgz#4ee79bde909262f9775f731e3656d0db55ced5b5" 3312 | 3313 | node-int64@^0.4.0: 3314 | version "0.4.0" 3315 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 3316 | 3317 | node-notifier@^5.0.2: 3318 | version "5.2.1" 3319 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" 3320 | dependencies: 3321 | growly "^1.3.0" 3322 | semver "^5.4.1" 3323 | shellwords "^0.1.1" 3324 | which "^1.3.0" 3325 | 3326 | node-uuid@~1.4.7: 3327 | version "1.4.8" 3328 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.8.tgz#b040eb0923968afabf8d32fb1f17f1167fdab907" 3329 | 3330 | nopt@^4.0.0: 3331 | version "4.0.1" 3332 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 3333 | dependencies: 3334 | abbrev "1" 3335 | osenv "^0.1.4" 3336 | 3337 | nopt@~3.0.1: 3338 | version "3.0.6" 3339 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 3340 | dependencies: 3341 | abbrev "1" 3342 | 3343 | normalize-package-data@^1.0.3: 3344 | version "1.0.3" 3345 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-1.0.3.tgz#8be955b8907af975f1a4584ea8bb9b41492312f5" 3346 | dependencies: 3347 | github-url-from-git "^1.3.0" 3348 | github-url-from-username-repo "^1.0.0" 3349 | semver "2 || 3 || 4" 3350 | 3351 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, "normalize-package-data@~1.0.1 || ^2.0.0": 3352 | version "2.4.0" 3353 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 3354 | dependencies: 3355 | hosted-git-info "^2.1.4" 3356 | is-builtin-module "^1.0.0" 3357 | semver "2 || 3 || 4 || 5" 3358 | validate-npm-package-license "^3.0.1" 3359 | 3360 | normalize-path@^1.0.0: 3361 | version "1.0.0" 3362 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" 3363 | 3364 | normalize-path@^2.0.0, normalize-path@^2.0.1: 3365 | version "2.1.1" 3366 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 3367 | dependencies: 3368 | remove-trailing-separator "^1.0.1" 3369 | 3370 | "npm-package-arg@^3.0.0 || ^4.0.0": 3371 | version "4.2.1" 3372 | resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-4.2.1.tgz#593303fdea85f7c422775f17f9eb7670f680e3ec" 3373 | dependencies: 3374 | hosted-git-info "^2.1.5" 3375 | semver "^5.1.0" 3376 | 3377 | npm-path@^2.0.2: 3378 | version "2.0.4" 3379 | resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.4.tgz#c641347a5ff9d6a09e4d9bce5580c4f505278e64" 3380 | dependencies: 3381 | which "^1.2.10" 3382 | 3383 | npm-registry-client@^7.0.1: 3384 | version "7.5.0" 3385 | resolved "https://registry.yarnpkg.com/npm-registry-client/-/npm-registry-client-7.5.0.tgz#0f6dd6e5d11424cfa99fce5b930feaf09b4f7f04" 3386 | dependencies: 3387 | concat-stream "^1.5.2" 3388 | graceful-fs "^4.1.6" 3389 | normalize-package-data "~1.0.1 || ^2.0.0" 3390 | npm-package-arg "^3.0.0 || ^4.0.0" 3391 | once "^1.3.3" 3392 | request "^2.74.0" 3393 | retry "^0.10.0" 3394 | semver "2 >=2.2.1 || 3.x || 4 || 5" 3395 | slide "^1.1.3" 3396 | optionalDependencies: 3397 | npmlog "2 || ^3.1.0 || ^4.0.0" 3398 | 3399 | npm-run-path@^2.0.0: 3400 | version "2.0.2" 3401 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 3402 | dependencies: 3403 | path-key "^2.0.0" 3404 | 3405 | npm-which@^3.0.1: 3406 | version "3.0.1" 3407 | resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" 3408 | dependencies: 3409 | commander "^2.9.0" 3410 | npm-path "^2.0.2" 3411 | which "^1.2.10" 3412 | 3413 | npmconf@^2.1.2: 3414 | version "2.1.2" 3415 | resolved "https://registry.yarnpkg.com/npmconf/-/npmconf-2.1.2.tgz#66606a4a736f1e77a059aa071a79c94ab781853a" 3416 | dependencies: 3417 | config-chain "~1.1.8" 3418 | inherits "~2.0.0" 3419 | ini "^1.2.0" 3420 | mkdirp "^0.5.0" 3421 | nopt "~3.0.1" 3422 | once "~1.3.0" 3423 | osenv "^0.1.0" 3424 | semver "2 || 3 || 4" 3425 | uid-number "0.0.5" 3426 | 3427 | "npmlog@2 || ^3.1.0 || ^4.0.0", npmlog@^4.0.0: 3428 | version "4.1.2" 3429 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 3430 | dependencies: 3431 | are-we-there-yet "~1.1.2" 3432 | console-control-strings "~1.1.0" 3433 | gauge "~2.7.3" 3434 | set-blocking "~2.0.0" 3435 | 3436 | npmlog@^1.2.1: 3437 | version "1.2.1" 3438 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-1.2.1.tgz#28e7be619609b53f7ad1dd300a10d64d716268b6" 3439 | dependencies: 3440 | ansi "~0.3.0" 3441 | are-we-there-yet "~1.0.0" 3442 | gauge "~1.2.0" 3443 | 3444 | nth-check@~1.0.1: 3445 | version "1.0.1" 3446 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" 3447 | dependencies: 3448 | boolbase "~1.0.0" 3449 | 3450 | number-is-nan@^1.0.0: 3451 | version "1.0.1" 3452 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 3453 | 3454 | "nwmatcher@>= 1.3.7 < 2.0.0", "nwmatcher@>= 1.3.9 < 2.0.0": 3455 | version "1.4.3" 3456 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.3.tgz#64348e3b3d80f035b40ac11563d278f8b72db89c" 3457 | 3458 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 3459 | version "0.8.2" 3460 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 3461 | 3462 | object-assign@^4.0.1, object-assign@^4.1.0: 3463 | version "4.1.1" 3464 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 3465 | 3466 | object-copy@^0.1.0: 3467 | version "0.1.0" 3468 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 3469 | dependencies: 3470 | copy-descriptor "^0.1.0" 3471 | define-property "^0.2.5" 3472 | kind-of "^3.0.3" 3473 | 3474 | object-visit@^1.0.0: 3475 | version "1.0.1" 3476 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 3477 | dependencies: 3478 | isobject "^3.0.0" 3479 | 3480 | object.omit@^2.0.0: 3481 | version "2.0.1" 3482 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 3483 | dependencies: 3484 | for-own "^0.1.4" 3485 | is-extendable "^0.1.1" 3486 | 3487 | object.pick@^1.3.0: 3488 | version "1.3.0" 3489 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 3490 | dependencies: 3491 | isobject "^3.0.1" 3492 | 3493 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 3494 | version "1.4.0" 3495 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3496 | dependencies: 3497 | wrappy "1" 3498 | 3499 | once@~1.3.0: 3500 | version "1.3.3" 3501 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 3502 | dependencies: 3503 | wrappy "1" 3504 | 3505 | onetime@^1.0.0: 3506 | version "1.1.0" 3507 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 3508 | 3509 | onetime@^2.0.0: 3510 | version "2.0.1" 3511 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 3512 | dependencies: 3513 | mimic-fn "^1.0.0" 3514 | 3515 | opencollective@1.0.3: 3516 | version "1.0.3" 3517 | resolved "https://registry.yarnpkg.com/opencollective/-/opencollective-1.0.3.tgz#aee6372bc28144583690c3ca8daecfc120dd0ef1" 3518 | dependencies: 3519 | babel-polyfill "6.23.0" 3520 | chalk "1.1.3" 3521 | inquirer "3.0.6" 3522 | minimist "1.2.0" 3523 | node-fetch "1.6.3" 3524 | opn "4.0.2" 3525 | 3526 | opn@4.0.2: 3527 | version "4.0.2" 3528 | resolved "https://registry.yarnpkg.com/opn/-/opn-4.0.2.tgz#7abc22e644dff63b0a96d5ab7f2790c0f01abc95" 3529 | dependencies: 3530 | object-assign "^4.0.1" 3531 | pinkie-promise "^2.0.0" 3532 | 3533 | optimist@^0.6.1: 3534 | version "0.6.1" 3535 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 3536 | dependencies: 3537 | minimist "~0.0.1" 3538 | wordwrap "~0.0.2" 3539 | 3540 | optionator@^0.8.1: 3541 | version "0.8.2" 3542 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3543 | dependencies: 3544 | deep-is "~0.1.3" 3545 | fast-levenshtein "~2.0.4" 3546 | levn "~0.3.0" 3547 | prelude-ls "~1.1.2" 3548 | type-check "~0.3.2" 3549 | wordwrap "~1.0.0" 3550 | 3551 | ora@^0.2.3: 3552 | version "0.2.3" 3553 | resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" 3554 | dependencies: 3555 | chalk "^1.1.1" 3556 | cli-cursor "^1.0.2" 3557 | cli-spinners "^0.1.2" 3558 | object-assign "^4.0.1" 3559 | 3560 | os-homedir@^1.0.0, os-homedir@^1.0.1: 3561 | version "1.0.2" 3562 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3563 | 3564 | os-locale@^1.4.0: 3565 | version "1.4.0" 3566 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 3567 | dependencies: 3568 | lcid "^1.0.0" 3569 | 3570 | os-locale@^2.0.0: 3571 | version "2.1.0" 3572 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 3573 | dependencies: 3574 | execa "^0.7.0" 3575 | lcid "^1.0.0" 3576 | mem "^1.1.0" 3577 | 3578 | os-name@^2.0.1: 3579 | version "2.0.1" 3580 | resolved "https://registry.yarnpkg.com/os-name/-/os-name-2.0.1.tgz#b9a386361c17ae3a21736ef0599405c9a8c5dc5e" 3581 | dependencies: 3582 | macos-release "^1.0.0" 3583 | win-release "^1.0.0" 3584 | 3585 | os-shim@^0.1.2: 3586 | version "0.1.3" 3587 | resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 3588 | 3589 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1, os-tmpdir@~1.0.2: 3590 | version "1.0.2" 3591 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3592 | 3593 | osenv@^0.1.0, osenv@^0.1.4: 3594 | version "0.1.5" 3595 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 3596 | dependencies: 3597 | os-homedir "^1.0.0" 3598 | os-tmpdir "^1.0.0" 3599 | 3600 | override-require@^1.1.1: 3601 | version "1.1.1" 3602 | resolved "https://registry.yarnpkg.com/override-require/-/override-require-1.1.1.tgz#6ae22fadeb1f850ffb0cf4c20ff7b87e5eb650df" 3603 | 3604 | p-finally@^1.0.0: 3605 | version "1.0.0" 3606 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 3607 | 3608 | p-limit@^1.1.0: 3609 | version "1.2.0" 3610 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 3611 | dependencies: 3612 | p-try "^1.0.0" 3613 | 3614 | p-limit@^2.0.0: 3615 | version "2.0.0" 3616 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.0.0.tgz#e624ed54ee8c460a778b3c9f3670496ff8a57aec" 3617 | dependencies: 3618 | p-try "^2.0.0" 3619 | 3620 | p-locate@^2.0.0: 3621 | version "2.0.0" 3622 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 3623 | dependencies: 3624 | p-limit "^1.1.0" 3625 | 3626 | p-map@^1.1.1: 3627 | version "1.2.0" 3628 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" 3629 | 3630 | p-try@^1.0.0: 3631 | version "1.0.0" 3632 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 3633 | 3634 | p-try@^2.0.0: 3635 | version "2.0.0" 3636 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.0.0.tgz#85080bb87c64688fa47996fe8f7dfbe8211760b1" 3637 | 3638 | pad-right@^0.2.2: 3639 | version "0.2.2" 3640 | resolved "https://registry.yarnpkg.com/pad-right/-/pad-right-0.2.2.tgz#6fbc924045d244f2a2a244503060d3bfc6009774" 3641 | dependencies: 3642 | repeat-string "^1.5.2" 3643 | 3644 | parse-diff@^0.5.1: 3645 | version "0.5.1" 3646 | resolved "https://registry.yarnpkg.com/parse-diff/-/parse-diff-0.5.1.tgz#18b3e82a0765ac1c8796e3854e475073a691c4fb" 3647 | 3648 | parse-git-config@^2.0.3: 3649 | version "2.0.3" 3650 | resolved "https://registry.yarnpkg.com/parse-git-config/-/parse-git-config-2.0.3.tgz#6fb840d4a956e28b971c97b33a5deb73a6d5b6bb" 3651 | dependencies: 3652 | expand-tilde "^2.0.2" 3653 | git-config-path "^1.0.1" 3654 | ini "^1.3.5" 3655 | 3656 | parse-github-repo-url@^1.3.0: 3657 | version "1.4.1" 3658 | resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50" 3659 | 3660 | parse-github-url@^1.0.2: 3661 | version "1.0.2" 3662 | resolved "https://registry.yarnpkg.com/parse-github-url/-/parse-github-url-1.0.2.tgz#242d3b65cbcdda14bb50439e3242acf6971db395" 3663 | 3664 | parse-glob@^3.0.4: 3665 | version "3.0.4" 3666 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3667 | dependencies: 3668 | glob-base "^0.3.0" 3669 | is-dotfile "^1.0.0" 3670 | is-extglob "^1.0.0" 3671 | is-glob "^2.0.0" 3672 | 3673 | parse-json@^2.2.0: 3674 | version "2.2.0" 3675 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3676 | dependencies: 3677 | error-ex "^1.2.0" 3678 | 3679 | parse-link-header@^1.0.1: 3680 | version "1.0.1" 3681 | resolved "https://registry.yarnpkg.com/parse-link-header/-/parse-link-header-1.0.1.tgz#bedfe0d2118aeb84be75e7b025419ec8a61140a7" 3682 | dependencies: 3683 | xtend "~4.0.1" 3684 | 3685 | parse-passwd@^1.0.0: 3686 | version "1.0.0" 3687 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 3688 | 3689 | parse5@^1.5.1: 3690 | version "1.5.1" 3691 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 3692 | 3693 | pascalcase@^0.1.1: 3694 | version "0.1.1" 3695 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 3696 | 3697 | path-exists@2.1.0, path-exists@^2.0.0: 3698 | version "2.1.0" 3699 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3700 | dependencies: 3701 | pinkie-promise "^2.0.0" 3702 | 3703 | path-exists@^3.0.0: 3704 | version "3.0.0" 3705 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3706 | 3707 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 3708 | version "1.0.1" 3709 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3710 | 3711 | path-key@^2.0.0: 3712 | version "2.0.1" 3713 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 3714 | 3715 | path-object@^2.3.0: 3716 | version "2.3.0" 3717 | resolved "https://registry.yarnpkg.com/path-object/-/path-object-2.3.0.tgz#03e46653e5c375c60af1cabdd94bc6448a5d9110" 3718 | dependencies: 3719 | core-util-is "^1.0.1" 3720 | lodash.assign "^3.0.0" 3721 | 3722 | path-parse@^1.0.5: 3723 | version "1.0.5" 3724 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3725 | 3726 | path-type@^1.0.0: 3727 | version "1.1.0" 3728 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3729 | dependencies: 3730 | graceful-fs "^4.1.2" 3731 | pify "^2.0.0" 3732 | pinkie-promise "^2.0.0" 3733 | 3734 | path-type@^2.0.0: 3735 | version "2.0.0" 3736 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3737 | dependencies: 3738 | pify "^2.0.0" 3739 | 3740 | pause-stream@0.0.11: 3741 | version "0.0.11" 3742 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 3743 | dependencies: 3744 | through "~2.3" 3745 | 3746 | performance-now@^2.1.0: 3747 | version "2.1.0" 3748 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 3749 | 3750 | pify@^2.0.0, pify@^2.3.0: 3751 | version "2.3.0" 3752 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3753 | 3754 | pinkie-promise@^2.0.0: 3755 | version "2.0.1" 3756 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3757 | dependencies: 3758 | pinkie "^2.0.0" 3759 | 3760 | pinkie@^2.0.0: 3761 | version "2.0.4" 3762 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3763 | 3764 | pinpoint@^1.1.0: 3765 | version "1.1.0" 3766 | resolved "https://registry.yarnpkg.com/pinpoint/-/pinpoint-1.1.0.tgz#0cf7757a6977f1bf7f6a32207b709e377388e874" 3767 | 3768 | pkg-dir@^2.0.0: 3769 | version "2.0.0" 3770 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 3771 | dependencies: 3772 | find-up "^2.1.0" 3773 | 3774 | posix-character-classes@^0.1.0: 3775 | version "0.1.1" 3776 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 3777 | 3778 | prelude-ls@~1.1.2: 3779 | version "1.1.2" 3780 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3781 | 3782 | preserve@^0.2.0: 3783 | version "0.2.0" 3784 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3785 | 3786 | prettier@^1.16.1: 3787 | version "1.16.1" 3788 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.1.tgz#534c2c9d7853f8845e5e078384e71973bd74089f" 3789 | integrity sha512-XXUITwIkGb3CPJ2hforHah/zTINRyie5006Jd2HKy2qz7snEJXl0KLfsJZW/wst9g6R2rFvqba3VpNYdu1hDcA== 3790 | 3791 | pretty-format@^20.0.3: 3792 | version "20.0.3" 3793 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 3794 | dependencies: 3795 | ansi-regex "^2.1.1" 3796 | ansi-styles "^3.0.0" 3797 | 3798 | private@^0.1.7: 3799 | version "0.1.8" 3800 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 3801 | 3802 | process-nextick-args@~1.0.6: 3803 | version "1.0.7" 3804 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3805 | 3806 | process-nextick-args@~2.0.0: 3807 | version "2.0.0" 3808 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 3809 | 3810 | proto-list@~1.2.1: 3811 | version "1.2.4" 3812 | resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 3813 | 3814 | prr@~1.0.1: 3815 | version "1.0.1" 3816 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" 3817 | 3818 | pseudomap@^1.0.2: 3819 | version "1.0.2" 3820 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3821 | 3822 | punycode@^1.4.1: 3823 | version "1.4.1" 3824 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3825 | 3826 | qs@~6.2.0: 3827 | version "6.2.3" 3828 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.3.tgz#1cfcb25c10a9b2b483053ff39f5dfc9233908cfe" 3829 | 3830 | qs@~6.5.1: 3831 | version "6.5.1" 3832 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 3833 | 3834 | randomatic@^1.1.3: 3835 | version "1.1.7" 3836 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 3837 | dependencies: 3838 | is-number "^3.0.0" 3839 | kind-of "^4.0.0" 3840 | 3841 | read-pkg-up@^1.0.1: 3842 | version "1.0.1" 3843 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3844 | dependencies: 3845 | find-up "^1.0.0" 3846 | read-pkg "^1.0.0" 3847 | 3848 | read-pkg-up@^2.0.0: 3849 | version "2.0.0" 3850 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3851 | dependencies: 3852 | find-up "^2.0.0" 3853 | read-pkg "^2.0.0" 3854 | 3855 | read-pkg@^1.0.0: 3856 | version "1.1.0" 3857 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3858 | dependencies: 3859 | load-json-file "^1.0.0" 3860 | normalize-package-data "^2.3.2" 3861 | path-type "^1.0.0" 3862 | 3863 | read-pkg@^2.0.0: 3864 | version "2.0.0" 3865 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3866 | dependencies: 3867 | load-json-file "^2.0.0" 3868 | normalize-package-data "^2.3.2" 3869 | path-type "^2.0.0" 3870 | 3871 | readable-stream@1.1: 3872 | version "1.1.13" 3873 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.13.tgz#f6eef764f514c89e2b9e23146a75ba106756d23e" 3874 | dependencies: 3875 | core-util-is "~1.0.0" 3876 | inherits "~2.0.1" 3877 | isarray "0.0.1" 3878 | string_decoder "~0.10.x" 3879 | 3880 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.2.2: 3881 | version "2.3.5" 3882 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.5.tgz#b4f85003a938cbb6ecbce2a124fb1012bd1a838d" 3883 | dependencies: 3884 | core-util-is "~1.0.0" 3885 | inherits "~2.0.3" 3886 | isarray "~1.0.0" 3887 | process-nextick-args "~2.0.0" 3888 | safe-buffer "~5.1.1" 3889 | string_decoder "~1.0.3" 3890 | util-deprecate "~1.0.1" 3891 | 3892 | readable-stream@~2.0.5: 3893 | version "2.0.6" 3894 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 3895 | dependencies: 3896 | core-util-is "~1.0.0" 3897 | inherits "~2.0.1" 3898 | isarray "~1.0.0" 3899 | process-nextick-args "~1.0.6" 3900 | string_decoder "~0.10.x" 3901 | util-deprecate "~1.0.1" 3902 | 3903 | readline-sync@^1.4.9: 3904 | version "1.4.9" 3905 | resolved "https://registry.yarnpkg.com/readline-sync/-/readline-sync-1.4.9.tgz#3eda8e65f23cd2a17e61301b1f0003396af5ecda" 3906 | 3907 | rechoir@^0.6.2: 3908 | version "0.6.2" 3909 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 3910 | dependencies: 3911 | resolve "^1.1.6" 3912 | 3913 | redent@^1.0.0: 3914 | version "1.0.0" 3915 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 3916 | dependencies: 3917 | indent-string "^2.1.0" 3918 | strip-indent "^1.0.1" 3919 | 3920 | regenerator-runtime@^0.10.0, regenerator-runtime@^0.10.5: 3921 | version "0.10.5" 3922 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3923 | 3924 | regenerator-runtime@^0.11.0, regenerator-runtime@^0.11.1: 3925 | version "0.11.1" 3926 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 3927 | 3928 | regex-cache@^0.4.2: 3929 | version "0.4.4" 3930 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 3931 | dependencies: 3932 | is-equal-shallow "^0.1.3" 3933 | 3934 | regex-not@^1.0.0, regex-not@^1.0.2: 3935 | version "1.0.2" 3936 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 3937 | dependencies: 3938 | extend-shallow "^3.0.2" 3939 | safe-regex "^1.1.0" 3940 | 3941 | remove-trailing-separator@^1.0.1: 3942 | version "1.1.0" 3943 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3944 | 3945 | repeat-element@^1.1.2: 3946 | version "1.1.2" 3947 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3948 | 3949 | repeat-string@^1.5.2, repeat-string@^1.6.1: 3950 | version "1.6.1" 3951 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3952 | 3953 | repeating@^1.1.0: 3954 | version "1.1.3" 3955 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" 3956 | dependencies: 3957 | is-finite "^1.0.0" 3958 | 3959 | repeating@^2.0.0: 3960 | version "2.0.1" 3961 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3962 | dependencies: 3963 | is-finite "^1.0.0" 3964 | 3965 | request-promise-core@1.1.1: 3966 | version "1.1.1" 3967 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 3968 | dependencies: 3969 | lodash "^4.13.1" 3970 | 3971 | request-promise@^4.1.1: 3972 | version "4.2.2" 3973 | resolved "https://registry.yarnpkg.com/request-promise/-/request-promise-4.2.2.tgz#d1ea46d654a6ee4f8ee6a4fea1018c22911904b4" 3974 | dependencies: 3975 | bluebird "^3.5.0" 3976 | request-promise-core "1.1.1" 3977 | stealthy-require "^1.1.0" 3978 | tough-cookie ">=2.3.3" 3979 | 3980 | request@^2.55.0, request@^2.74.0, request@^2.78.0, request@^2.79.0: 3981 | version "2.85.0" 3982 | resolved "https://registry.yarnpkg.com/request/-/request-2.85.0.tgz#5a03615a47c61420b3eb99b7dba204f83603e1fa" 3983 | dependencies: 3984 | aws-sign2 "~0.7.0" 3985 | aws4 "^1.6.0" 3986 | caseless "~0.12.0" 3987 | combined-stream "~1.0.5" 3988 | extend "~3.0.1" 3989 | forever-agent "~0.6.1" 3990 | form-data "~2.3.1" 3991 | har-validator "~5.0.3" 3992 | hawk "~6.0.2" 3993 | http-signature "~1.2.0" 3994 | is-typedarray "~1.0.0" 3995 | isstream "~0.1.2" 3996 | json-stringify-safe "~5.0.1" 3997 | mime-types "~2.1.17" 3998 | oauth-sign "~0.8.2" 3999 | performance-now "^2.1.0" 4000 | qs "~6.5.1" 4001 | safe-buffer "^5.1.1" 4002 | stringstream "~0.0.5" 4003 | tough-cookie "~2.3.3" 4004 | tunnel-agent "^0.6.0" 4005 | uuid "^3.1.0" 4006 | 4007 | request@~2.74.0: 4008 | version "2.74.0" 4009 | resolved "https://registry.yarnpkg.com/request/-/request-2.74.0.tgz#7693ca768bbb0ea5c8ce08c084a45efa05b892ab" 4010 | dependencies: 4011 | aws-sign2 "~0.6.0" 4012 | aws4 "^1.2.1" 4013 | bl "~1.1.2" 4014 | caseless "~0.11.0" 4015 | combined-stream "~1.0.5" 4016 | extend "~3.0.0" 4017 | forever-agent "~0.6.1" 4018 | form-data "~1.0.0-rc4" 4019 | har-validator "~2.0.6" 4020 | hawk "~3.1.3" 4021 | http-signature "~1.1.0" 4022 | is-typedarray "~1.0.0" 4023 | isstream "~0.1.2" 4024 | json-stringify-safe "~5.0.1" 4025 | mime-types "~2.1.7" 4026 | node-uuid "~1.4.7" 4027 | oauth-sign "~0.8.1" 4028 | qs "~6.2.0" 4029 | stringstream "~0.0.4" 4030 | tough-cookie "~2.3.0" 4031 | tunnel-agent "~0.4.1" 4032 | 4033 | require-directory@^2.1.1: 4034 | version "2.1.1" 4035 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 4036 | 4037 | require-from-string@^1.1.0: 4038 | version "1.2.1" 4039 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" 4040 | 4041 | require-from-string@^2.0.2: 4042 | version "2.0.2" 4043 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" 4044 | 4045 | require-main-filename@^1.0.1: 4046 | version "1.0.1" 4047 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 4048 | 4049 | require-relative@^0.8.7: 4050 | version "0.8.7" 4051 | resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" 4052 | 4053 | resolve-dir@^0.1.0: 4054 | version "0.1.1" 4055 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e" 4056 | dependencies: 4057 | expand-tilde "^1.2.2" 4058 | global-modules "^0.2.3" 4059 | 4060 | resolve-url@^0.2.1: 4061 | version "0.2.1" 4062 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 4063 | 4064 | resolve@1.1.7: 4065 | version "1.1.7" 4066 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 4067 | 4068 | resolve@^1.1.6, resolve@^1.3.2: 4069 | version "1.5.0" 4070 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 4071 | dependencies: 4072 | path-parse "^1.0.5" 4073 | 4074 | restore-cursor@^1.0.1: 4075 | version "1.0.1" 4076 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 4077 | dependencies: 4078 | exit-hook "^1.0.0" 4079 | onetime "^1.0.0" 4080 | 4081 | restore-cursor@^2.0.0: 4082 | version "2.0.0" 4083 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 4084 | dependencies: 4085 | onetime "^2.0.0" 4086 | signal-exit "^3.0.2" 4087 | 4088 | ret@~0.1.10: 4089 | version "0.1.15" 4090 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 4091 | 4092 | retry@^0.10.0: 4093 | version "0.10.1" 4094 | resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" 4095 | 4096 | rfc6902@^3.0.1: 4097 | version "3.0.1" 4098 | resolved "https://registry.yarnpkg.com/rfc6902/-/rfc6902-3.0.1.tgz#03a3d38329dbc266fbc92aa7fc14546d7839e89f" 4099 | 4100 | right-align@^0.1.1: 4101 | version "0.1.3" 4102 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 4103 | dependencies: 4104 | align-text "^0.1.1" 4105 | 4106 | right-pad@^1.0.1: 4107 | version "1.0.1" 4108 | resolved "https://registry.yarnpkg.com/right-pad/-/right-pad-1.0.1.tgz#8ca08c2cbb5b55e74dafa96bf7fd1a27d568c8d0" 4109 | 4110 | rimraf@^2.6.1: 4111 | version "2.6.2" 4112 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 4113 | dependencies: 4114 | glob "^7.0.5" 4115 | 4116 | run-async@^2.2.0: 4117 | version "2.3.0" 4118 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 4119 | dependencies: 4120 | is-promise "^2.1.0" 4121 | 4122 | run-auto@^2.0.0: 4123 | version "2.0.0" 4124 | resolved "https://registry.yarnpkg.com/run-auto/-/run-auto-2.0.0.tgz#5f4353f58adbd6b74926489b4f259e1dad6a78d6" 4125 | dependencies: 4126 | dezalgo "^1.0.1" 4127 | 4128 | run-series@^1.1.3: 4129 | version "1.1.4" 4130 | resolved "https://registry.yarnpkg.com/run-series/-/run-series-1.1.4.tgz#89a73ddc5e75c9ef8ab6320c0a1600d6a41179b9" 4131 | 4132 | rx@^4.1.0: 4133 | version "4.1.0" 4134 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" 4135 | 4136 | rxjs@^5.0.0-beta.11: 4137 | version "5.5.7" 4138 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.7.tgz#afb3d1642b069b2fbf203903d6501d1acb4cda27" 4139 | dependencies: 4140 | symbol-observable "1.0.1" 4141 | 4142 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 4143 | version "5.1.1" 4144 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 4145 | 4146 | safe-regex@^1.1.0: 4147 | version "1.1.0" 4148 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 4149 | dependencies: 4150 | ret "~0.1.10" 4151 | 4152 | "safer-buffer@>= 2.1.2 < 3": 4153 | version "2.1.2" 4154 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 4155 | 4156 | sane@~1.6.0: 4157 | version "1.6.0" 4158 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 4159 | dependencies: 4160 | anymatch "^1.3.0" 4161 | exec-sh "^0.2.0" 4162 | fb-watchman "^1.8.0" 4163 | minimatch "^3.0.2" 4164 | minimist "^1.1.1" 4165 | walker "~1.0.5" 4166 | watch "~0.10.0" 4167 | 4168 | sax@^1.1.4, sax@^1.2.1: 4169 | version "1.2.4" 4170 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 4171 | 4172 | semantic-release@^6.3.6: 4173 | version "6.3.6" 4174 | resolved "https://registry.yarnpkg.com/semantic-release/-/semantic-release-6.3.6.tgz#629d0aec90b38a2957a57a4a9ee1214af51928c7" 4175 | dependencies: 4176 | "@semantic-release/commit-analyzer" "^2.0.0" 4177 | "@semantic-release/condition-travis" "^5.0.2" 4178 | "@semantic-release/error" "^1.0.0" 4179 | "@semantic-release/last-release-npm" "^1.2.1" 4180 | "@semantic-release/release-notes-generator" "^2.0.0" 4181 | git-head "^1.2.1" 4182 | github "^8.0.0" 4183 | lodash "^4.0.0" 4184 | nerf-dart "^1.0.0" 4185 | nopt "^4.0.0" 4186 | normalize-package-data "^2.3.4" 4187 | npmconf "^2.1.2" 4188 | npmlog "^4.0.0" 4189 | parse-github-repo-url "^1.3.0" 4190 | require-relative "^0.8.7" 4191 | run-auto "^2.0.0" 4192 | run-series "^1.1.3" 4193 | semver "^5.2.0" 4194 | 4195 | semver-regex@1.0.0: 4196 | version "1.0.0" 4197 | resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-1.0.0.tgz#92a4969065f9c70c694753d55248fc68f8f652c9" 4198 | 4199 | "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, semver@^5.4.1: 4200 | version "5.5.0" 4201 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 4202 | 4203 | "semver@2 || 3 || 4": 4204 | version "4.3.6" 4205 | resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" 4206 | 4207 | semver@^5.0.1: 4208 | version "5.5.1" 4209 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.1.tgz#7dfdd8814bdb7cabc7be0fb1d734cfb66c940477" 4210 | 4211 | semver@~5.0.1: 4212 | version "5.0.3" 4213 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.0.3.tgz#77466de589cd5d3c95f138aa78bc569a3cb5d27a" 4214 | 4215 | set-blocking@^2.0.0, set-blocking@~2.0.0: 4216 | version "2.0.0" 4217 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 4218 | 4219 | set-value@^0.4.3: 4220 | version "0.4.3" 4221 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 4222 | dependencies: 4223 | extend-shallow "^2.0.1" 4224 | is-extendable "^0.1.1" 4225 | is-plain-object "^2.0.1" 4226 | to-object-path "^0.3.0" 4227 | 4228 | set-value@^2.0.0: 4229 | version "2.0.0" 4230 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 4231 | dependencies: 4232 | extend-shallow "^2.0.1" 4233 | is-extendable "^0.1.1" 4234 | is-plain-object "^2.0.3" 4235 | split-string "^3.0.1" 4236 | 4237 | shebang-command@^1.2.0: 4238 | version "1.2.0" 4239 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 4240 | dependencies: 4241 | shebang-regex "^1.0.0" 4242 | 4243 | shebang-regex@^1.0.0: 4244 | version "1.0.0" 4245 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 4246 | 4247 | shelljs@0.7.6: 4248 | version "0.7.6" 4249 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.6.tgz#379cccfb56b91c8601e4793356eb5382924de9ad" 4250 | dependencies: 4251 | glob "^7.0.0" 4252 | interpret "^1.0.0" 4253 | rechoir "^0.6.2" 4254 | 4255 | shellwords@^0.1.1: 4256 | version "0.1.1" 4257 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 4258 | 4259 | signal-exit@^3.0.0, signal-exit@^3.0.2: 4260 | version "3.0.2" 4261 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 4262 | 4263 | slash@^1.0.0: 4264 | version "1.0.0" 4265 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 4266 | 4267 | slice-ansi@0.0.4: 4268 | version "0.0.4" 4269 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 4270 | 4271 | slide@^1.1.3: 4272 | version "1.1.6" 4273 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 4274 | 4275 | snapdragon-node@^2.0.1: 4276 | version "2.1.1" 4277 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 4278 | dependencies: 4279 | define-property "^1.0.0" 4280 | isobject "^3.0.0" 4281 | snapdragon-util "^3.0.1" 4282 | 4283 | snapdragon-util@^3.0.1: 4284 | version "3.0.1" 4285 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 4286 | dependencies: 4287 | kind-of "^3.2.0" 4288 | 4289 | snapdragon@^0.8.1: 4290 | version "0.8.2" 4291 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 4292 | dependencies: 4293 | base "^0.11.1" 4294 | debug "^2.2.0" 4295 | define-property "^0.2.5" 4296 | extend-shallow "^2.0.1" 4297 | map-cache "^0.2.2" 4298 | source-map "^0.5.6" 4299 | source-map-resolve "^0.5.0" 4300 | use "^3.1.0" 4301 | 4302 | sntp@1.x.x: 4303 | version "1.0.9" 4304 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 4305 | dependencies: 4306 | hoek "2.x.x" 4307 | 4308 | sntp@2.x.x: 4309 | version "2.1.0" 4310 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 4311 | dependencies: 4312 | hoek "4.x.x" 4313 | 4314 | source-map-resolve@^0.5.0: 4315 | version "0.5.1" 4316 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a" 4317 | dependencies: 4318 | atob "^2.0.0" 4319 | decode-uri-component "^0.2.0" 4320 | resolve-url "^0.2.1" 4321 | source-map-url "^0.4.0" 4322 | urix "^0.1.0" 4323 | 4324 | source-map-support@^0.4.15, source-map-support@^0.4.4: 4325 | version "0.4.18" 4326 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 4327 | dependencies: 4328 | source-map "^0.5.6" 4329 | 4330 | source-map-url@^0.4.0: 4331 | version "0.4.0" 4332 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 4333 | 4334 | source-map@^0.4.4: 4335 | version "0.4.4" 4336 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 4337 | dependencies: 4338 | amdefine ">=0.0.4" 4339 | 4340 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1: 4341 | version "0.5.7" 4342 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 4343 | 4344 | source-map@~0.6.1: 4345 | version "0.6.1" 4346 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 4347 | 4348 | spawn-sync@^1.0.15: 4349 | version "1.0.15" 4350 | resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476" 4351 | dependencies: 4352 | concat-stream "^1.4.7" 4353 | os-shim "^0.1.2" 4354 | 4355 | spdx-correct@^3.0.0: 4356 | version "3.0.0" 4357 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 4358 | dependencies: 4359 | spdx-expression-parse "^3.0.0" 4360 | spdx-license-ids "^3.0.0" 4361 | 4362 | spdx-exceptions@^2.1.0: 4363 | version "2.1.0" 4364 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 4365 | 4366 | spdx-expression-parse@^3.0.0: 4367 | version "3.0.0" 4368 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 4369 | dependencies: 4370 | spdx-exceptions "^2.1.0" 4371 | spdx-license-ids "^3.0.0" 4372 | 4373 | spdx-license-ids@^3.0.0: 4374 | version "3.0.0" 4375 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 4376 | 4377 | split-string@^3.0.1, split-string@^3.0.2: 4378 | version "3.1.0" 4379 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 4380 | dependencies: 4381 | extend-shallow "^3.0.0" 4382 | 4383 | split@0.3: 4384 | version "0.3.3" 4385 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 4386 | dependencies: 4387 | through "2" 4388 | 4389 | sprintf-js@~1.0.2: 4390 | version "1.0.3" 4391 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 4392 | 4393 | sshpk@^1.7.0: 4394 | version "1.14.1" 4395 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.1.tgz#130f5975eddad963f1d56f92b9ac6c51fa9f83eb" 4396 | dependencies: 4397 | asn1 "~0.2.3" 4398 | assert-plus "^1.0.0" 4399 | dashdash "^1.12.0" 4400 | getpass "^0.1.1" 4401 | optionalDependencies: 4402 | bcrypt-pbkdf "^1.0.0" 4403 | ecc-jsbn "~0.1.1" 4404 | jsbn "~0.1.0" 4405 | tweetnacl "~0.14.0" 4406 | 4407 | staged-git-files@0.0.4: 4408 | version "0.0.4" 4409 | resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-0.0.4.tgz#d797e1b551ca7a639dec0237dc6eb4bb9be17d35" 4410 | 4411 | static-extend@^0.1.1: 4412 | version "0.1.2" 4413 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 4414 | dependencies: 4415 | define-property "^0.2.5" 4416 | object-copy "^0.1.0" 4417 | 4418 | stealthy-require@^1.1.0: 4419 | version "1.1.1" 4420 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 4421 | 4422 | stream-combiner@~0.0.4: 4423 | version "0.0.4" 4424 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 4425 | dependencies: 4426 | duplexer "~0.1.1" 4427 | 4428 | stream-consume@^0.1.0: 4429 | version "0.1.1" 4430 | resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.1.tgz#d3bdb598c2bd0ae82b8cac7ac50b1107a7996c48" 4431 | 4432 | stream-to-observable@^0.1.0: 4433 | version "0.1.0" 4434 | resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.1.0.tgz#45bf1d9f2d7dc09bed81f1c307c430e68b84cffe" 4435 | 4436 | string-length@^1.0.1: 4437 | version "1.0.1" 4438 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 4439 | dependencies: 4440 | strip-ansi "^3.0.0" 4441 | 4442 | string-width@^1.0.1, string-width@^1.0.2: 4443 | version "1.0.2" 4444 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 4445 | dependencies: 4446 | code-point-at "^1.0.0" 4447 | is-fullwidth-code-point "^1.0.0" 4448 | strip-ansi "^3.0.0" 4449 | 4450 | string-width@^2.0.0, string-width@^2.1.1: 4451 | version "2.1.1" 4452 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 4453 | dependencies: 4454 | is-fullwidth-code-point "^2.0.0" 4455 | strip-ansi "^4.0.0" 4456 | 4457 | string_decoder@~0.10.x: 4458 | version "0.10.31" 4459 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 4460 | 4461 | string_decoder@~1.0.3: 4462 | version "1.0.3" 4463 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 4464 | dependencies: 4465 | safe-buffer "~5.1.0" 4466 | 4467 | stringstream@~0.0.4, stringstream@~0.0.5: 4468 | version "0.0.5" 4469 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 4470 | 4471 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 4472 | version "3.0.1" 4473 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 4474 | dependencies: 4475 | ansi-regex "^2.0.0" 4476 | 4477 | strip-ansi@^4.0.0: 4478 | version "4.0.0" 4479 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 4480 | dependencies: 4481 | ansi-regex "^3.0.0" 4482 | 4483 | strip-bom@3.0.0, strip-bom@^3.0.0: 4484 | version "3.0.0" 4485 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 4486 | 4487 | strip-bom@^2.0.0: 4488 | version "2.0.0" 4489 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 4490 | dependencies: 4491 | is-utf8 "^0.2.0" 4492 | 4493 | strip-eof@^1.0.0: 4494 | version "1.0.0" 4495 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 4496 | 4497 | strip-indent@^1.0.1: 4498 | version "1.0.1" 4499 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 4500 | dependencies: 4501 | get-stdin "^4.0.1" 4502 | 4503 | strip-json-comments@2.0.1: 4504 | version "2.0.1" 4505 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 4506 | 4507 | supports-color@^2.0.0: 4508 | version "2.0.0" 4509 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 4510 | 4511 | supports-color@^3.1.2: 4512 | version "3.2.3" 4513 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 4514 | dependencies: 4515 | has-flag "^1.0.0" 4516 | 4517 | supports-color@^5.0.0, supports-color@^5.3.0: 4518 | version "5.3.0" 4519 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.3.0.tgz#5b24ac15db80fa927cf5227a4a33fd3c4c7676c0" 4520 | dependencies: 4521 | has-flag "^3.0.0" 4522 | 4523 | supports-hyperlinks@^1.0.1: 4524 | version "1.0.1" 4525 | resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-1.0.1.tgz#71daedf36cc1060ac5100c351bb3da48c29c0ef7" 4526 | dependencies: 4527 | has-flag "^2.0.0" 4528 | supports-color "^5.0.0" 4529 | 4530 | symbol-observable@1.0.1: 4531 | version "1.0.1" 4532 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" 4533 | 4534 | "symbol-tree@>= 3.1.0 < 4.0.0", symbol-tree@^3.2.1: 4535 | version "3.2.2" 4536 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 4537 | 4538 | taffydb@2.7.2: 4539 | version "2.7.2" 4540 | resolved "https://registry.yarnpkg.com/taffydb/-/taffydb-2.7.2.tgz#7bf8106a5c1a48251b3e3bc0a0e1732489fd0dc8" 4541 | 4542 | test-exclude@^4.1.1: 4543 | version "4.2.1" 4544 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.1.tgz#dfa222f03480bca69207ca728b37d74b45f724fa" 4545 | dependencies: 4546 | arrify "^1.0.1" 4547 | micromatch "^3.1.8" 4548 | object-assign "^4.1.0" 4549 | read-pkg-up "^1.0.1" 4550 | require-main-filename "^1.0.1" 4551 | 4552 | throat@^3.0.0: 4553 | version "3.2.0" 4554 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" 4555 | 4556 | through@2, through@^2.3.6, through@~2.3, through@~2.3.1: 4557 | version "2.3.8" 4558 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 4559 | 4560 | tmp@^0.0.29: 4561 | version "0.0.29" 4562 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.29.tgz#f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0" 4563 | dependencies: 4564 | os-tmpdir "~1.0.1" 4565 | 4566 | tmp@^0.0.33: 4567 | version "0.0.33" 4568 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 4569 | dependencies: 4570 | os-tmpdir "~1.0.2" 4571 | 4572 | tmpl@1.0.x: 4573 | version "1.0.4" 4574 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 4575 | 4576 | to-fast-properties@^1.0.3: 4577 | version "1.0.3" 4578 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 4579 | 4580 | to-object-path@^0.3.0: 4581 | version "0.3.0" 4582 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 4583 | dependencies: 4584 | kind-of "^3.0.2" 4585 | 4586 | to-regex-range@^2.1.0: 4587 | version "2.1.1" 4588 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 4589 | dependencies: 4590 | is-number "^3.0.0" 4591 | repeat-string "^1.6.1" 4592 | 4593 | to-regex@^3.0.1, to-regex@^3.0.2: 4594 | version "3.0.2" 4595 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 4596 | dependencies: 4597 | define-property "^2.0.2" 4598 | extend-shallow "^3.0.2" 4599 | regex-not "^1.0.2" 4600 | safe-regex "^1.1.0" 4601 | 4602 | tough-cookie@>=2.3.3, tough-cookie@^2.2.0, tough-cookie@^2.3.2, tough-cookie@~2.3.0, tough-cookie@~2.3.3: 4603 | version "2.3.4" 4604 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 4605 | dependencies: 4606 | punycode "^1.4.1" 4607 | 4608 | tr46@~0.0.1, tr46@~0.0.3: 4609 | version "0.0.3" 4610 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 4611 | 4612 | travis-ci@^2.1.1: 4613 | version "2.1.1" 4614 | resolved "https://registry.yarnpkg.com/travis-ci/-/travis-ci-2.1.1.tgz#98696265af827ae3576f31aa06d876e74b4b082e" 4615 | dependencies: 4616 | github "~0.1.10" 4617 | lodash "~1.3.1" 4618 | request "~2.74.0" 4619 | underscore.string "~2.2.0rc" 4620 | 4621 | travis-deploy-once@1.0.0-node-0.10-support: 4622 | version "1.0.0-node-0.10-support" 4623 | resolved "https://registry.yarnpkg.com/travis-deploy-once/-/travis-deploy-once-1.0.0-node-0.10-support.tgz#98ecce7d95b2f4ba5dcdeeebf54b9df87713d5e6" 4624 | dependencies: 4625 | babel-polyfill "^6.16.0" 4626 | bluebird "^3.4.6" 4627 | request "^2.78.0" 4628 | request-promise "^4.1.1" 4629 | travis-ci "^2.1.1" 4630 | 4631 | trim-newlines@^1.0.0: 4632 | version "1.0.0" 4633 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 4634 | 4635 | trim-right@^1.0.1: 4636 | version "1.0.1" 4637 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 4638 | 4639 | ts-jest@^20.0.0: 4640 | version "20.0.14" 4641 | resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-20.0.14.tgz#9e82130cea6b6df718b2c2b6055452af46bb248d" 4642 | dependencies: 4643 | babel-core "^6.24.1" 4644 | babel-plugin-istanbul "^4.1.4" 4645 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 4646 | babel-preset-jest "^20.0.3" 4647 | fs-extra "^4.0.0" 4648 | jest-config "^20.0.0" 4649 | jest-util "^20.0.0" 4650 | pkg-dir "^2.0.0" 4651 | source-map-support "^0.4.4" 4652 | yargs "^8.0.1" 4653 | 4654 | tslib@^1.8.0, tslib@^1.8.1: 4655 | version "1.9.0" 4656 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8" 4657 | 4658 | tslint@^5.4.3: 4659 | version "5.9.1" 4660 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.9.1.tgz#1255f87a3ff57eb0b0e1f0e610a8b4748046c9ae" 4661 | dependencies: 4662 | babel-code-frame "^6.22.0" 4663 | builtin-modules "^1.1.1" 4664 | chalk "^2.3.0" 4665 | commander "^2.12.1" 4666 | diff "^3.2.0" 4667 | glob "^7.1.1" 4668 | js-yaml "^3.7.0" 4669 | minimatch "^3.0.4" 4670 | resolve "^1.3.2" 4671 | semver "^5.3.0" 4672 | tslib "^1.8.0" 4673 | tsutils "^2.12.1" 4674 | 4675 | tsutils@^2.12.1: 4676 | version "2.22.2" 4677 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.22.2.tgz#0b9f3d87aa3eb95bd32d26ce2b88aa329a657951" 4678 | dependencies: 4679 | tslib "^1.8.1" 4680 | 4681 | tunnel-agent@^0.6.0: 4682 | version "0.6.0" 4683 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 4684 | dependencies: 4685 | safe-buffer "^5.0.1" 4686 | 4687 | tunnel-agent@~0.4.1: 4688 | version "0.4.3" 4689 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 4690 | 4691 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 4692 | version "0.14.5" 4693 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 4694 | 4695 | type-check@~0.3.2: 4696 | version "0.3.2" 4697 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 4698 | dependencies: 4699 | prelude-ls "~1.1.2" 4700 | 4701 | typedarray@^0.0.6: 4702 | version "0.0.6" 4703 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 4704 | 4705 | typescript@^2.3.2: 4706 | version "2.7.2" 4707 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.7.2.tgz#2d615a1ef4aee4f574425cdff7026edf81919836" 4708 | 4709 | uglify-js@^2.6: 4710 | version "2.8.29" 4711 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 4712 | dependencies: 4713 | source-map "~0.5.1" 4714 | yargs "~3.10.0" 4715 | optionalDependencies: 4716 | uglify-to-browserify "~1.0.0" 4717 | 4718 | uglify-to-browserify@~1.0.0: 4719 | version "1.0.2" 4720 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 4721 | 4722 | uid-number@0.0.5: 4723 | version "0.0.5" 4724 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.5.tgz#5a3db23ef5dbd55b81fce0ec9a2ac6fccdebb81e" 4725 | 4726 | underscore.string@~2.2.0rc: 4727 | version "2.2.1" 4728 | resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-2.2.1.tgz#d7c0fa2af5d5a1a67f4253daee98132e733f0f19" 4729 | 4730 | union-value@^1.0.0: 4731 | version "1.0.0" 4732 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 4733 | dependencies: 4734 | arr-union "^3.1.0" 4735 | get-value "^2.0.6" 4736 | is-extendable "^0.1.1" 4737 | set-value "^0.4.3" 4738 | 4739 | universal-user-agent@^2.0.0: 4740 | version "2.0.1" 4741 | resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-2.0.1.tgz#18e591ca52b1cb804f6b9cbc4c336cf8191f80e1" 4742 | dependencies: 4743 | os-name "^2.0.1" 4744 | 4745 | universalify@^0.1.0: 4746 | version "0.1.1" 4747 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" 4748 | 4749 | unset-value@^1.0.0: 4750 | version "1.0.0" 4751 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 4752 | dependencies: 4753 | has-value "^0.3.1" 4754 | isobject "^3.0.0" 4755 | 4756 | urix@^0.1.0: 4757 | version "0.1.0" 4758 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 4759 | 4760 | url-template@^2.0.8: 4761 | version "2.0.8" 4762 | resolved "https://registry.yarnpkg.com/url-template/-/url-template-2.0.8.tgz#fc565a3cccbff7730c775f5641f9555791439f21" 4763 | 4764 | use@^3.1.0: 4765 | version "3.1.0" 4766 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544" 4767 | dependencies: 4768 | kind-of "^6.0.2" 4769 | 4770 | util-deprecate@~1.0.1: 4771 | version "1.0.2" 4772 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4773 | 4774 | uuid@^3.1.0: 4775 | version "3.2.1" 4776 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 4777 | 4778 | validate-commit-msg@^2.12.1: 4779 | version "2.14.0" 4780 | resolved "https://registry.yarnpkg.com/validate-commit-msg/-/validate-commit-msg-2.14.0.tgz#e5383691012cbb270dcc0bc2a4effebe14890eac" 4781 | dependencies: 4782 | conventional-commit-types "^2.0.0" 4783 | find-parent-dir "^0.3.0" 4784 | findup "0.1.5" 4785 | semver-regex "1.0.0" 4786 | 4787 | validate-npm-package-license@^3.0.1: 4788 | version "3.0.3" 4789 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" 4790 | dependencies: 4791 | spdx-correct "^3.0.0" 4792 | spdx-expression-parse "^3.0.0" 4793 | 4794 | verror@1.10.0: 4795 | version "1.10.0" 4796 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 4797 | dependencies: 4798 | assert-plus "^1.0.0" 4799 | core-util-is "1.0.2" 4800 | extsprintf "^1.2.0" 4801 | 4802 | vm2@^3.6.3: 4803 | version "3.6.3" 4804 | resolved "https://registry.yarnpkg.com/vm2/-/vm2-3.6.3.tgz#6dd426bb67a387d03055c5d276720f3f23203b72" 4805 | 4806 | voca@^1.4.0: 4807 | version "1.4.0" 4808 | resolved "https://registry.yarnpkg.com/voca/-/voca-1.4.0.tgz#e15ac58b38290b72acc0c330366b6cc7984924d7" 4809 | 4810 | walk@^2.3.9: 4811 | version "2.3.9" 4812 | resolved "https://registry.yarnpkg.com/walk/-/walk-2.3.9.tgz#31b4db6678f2ae01c39ea9fb8725a9031e558a7b" 4813 | dependencies: 4814 | foreachasync "^3.0.0" 4815 | 4816 | walker@~1.0.5: 4817 | version "1.0.7" 4818 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 4819 | dependencies: 4820 | makeerror "1.0.x" 4821 | 4822 | watch@~0.10.0: 4823 | version "0.10.0" 4824 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 4825 | 4826 | webidl-conversions@^2.0.0: 4827 | version "2.0.1" 4828 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-2.0.1.tgz#3bf8258f7d318c7443c36f2e169402a1a6703506" 4829 | 4830 | webidl-conversions@^3.0.0: 4831 | version "3.0.1" 4832 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 4833 | 4834 | webidl-conversions@^4.0.0: 4835 | version "4.0.2" 4836 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 4837 | 4838 | whatwg-encoding@^1.0.1: 4839 | version "1.0.3" 4840 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" 4841 | dependencies: 4842 | iconv-lite "0.4.19" 4843 | 4844 | whatwg-url-compat@~0.6.5: 4845 | version "0.6.5" 4846 | resolved "https://registry.yarnpkg.com/whatwg-url-compat/-/whatwg-url-compat-0.6.5.tgz#00898111af689bb097541cd5a45ca6c8798445bf" 4847 | dependencies: 4848 | tr46 "~0.0.1" 4849 | 4850 | whatwg-url@^4.3.0: 4851 | version "4.8.0" 4852 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 4853 | dependencies: 4854 | tr46 "~0.0.3" 4855 | webidl-conversions "^3.0.0" 4856 | 4857 | which-module@^1.0.0: 4858 | version "1.0.0" 4859 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 4860 | 4861 | which-module@^2.0.0: 4862 | version "2.0.0" 4863 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 4864 | 4865 | which@^1.2.10, which@^1.2.12, which@^1.2.9, which@^1.3.0: 4866 | version "1.3.0" 4867 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 4868 | dependencies: 4869 | isexe "^2.0.0" 4870 | 4871 | wide-align@^1.1.0: 4872 | version "1.1.2" 4873 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 4874 | dependencies: 4875 | string-width "^1.0.2" 4876 | 4877 | win-release@^1.0.0: 4878 | version "1.1.1" 4879 | resolved "https://registry.yarnpkg.com/win-release/-/win-release-1.1.1.tgz#5fa55e02be7ca934edfc12665632e849b72e5209" 4880 | dependencies: 4881 | semver "^5.0.1" 4882 | 4883 | window-size@0.1.0: 4884 | version "0.1.0" 4885 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4886 | 4887 | word-wrap@^1.0.3: 4888 | version "1.2.3" 4889 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 4890 | 4891 | wordwrap@0.0.2: 4892 | version "0.0.2" 4893 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4894 | 4895 | wordwrap@~0.0.2: 4896 | version "0.0.3" 4897 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4898 | 4899 | wordwrap@~1.0.0: 4900 | version "1.0.0" 4901 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4902 | 4903 | worker-farm@^1.3.1: 4904 | version "1.6.0" 4905 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.6.0.tgz#aecc405976fab5a95526180846f0dba288f3a4a0" 4906 | dependencies: 4907 | errno "~0.1.7" 4908 | 4909 | wrap-ansi@^2.0.0: 4910 | version "2.1.0" 4911 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4912 | dependencies: 4913 | string-width "^1.0.1" 4914 | strip-ansi "^3.0.1" 4915 | 4916 | wrappy@1: 4917 | version "1.0.2" 4918 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4919 | 4920 | "xml-name-validator@>= 2.0.1 < 3.0.0", xml-name-validator@^2.0.1: 4921 | version "2.0.1" 4922 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 4923 | 4924 | xtend@^4.0.0, xtend@~4.0.1: 4925 | version "4.0.1" 4926 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4927 | 4928 | y18n@^3.2.1: 4929 | version "3.2.1" 4930 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4931 | 4932 | yallist@^2.1.2: 4933 | version "2.1.2" 4934 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4935 | 4936 | yargs-parser@^5.0.0: 4937 | version "5.0.0" 4938 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 4939 | dependencies: 4940 | camelcase "^3.0.0" 4941 | 4942 | yargs-parser@^7.0.0: 4943 | version "7.0.0" 4944 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 4945 | dependencies: 4946 | camelcase "^4.1.0" 4947 | 4948 | yargs-parser@^9.0.2: 4949 | version "9.0.2" 4950 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 4951 | dependencies: 4952 | camelcase "^4.1.0" 4953 | 4954 | yargs@^11.0.0: 4955 | version "11.0.0" 4956 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.0.0.tgz#c052931006c5eee74610e5fc0354bedfd08a201b" 4957 | dependencies: 4958 | cliui "^4.0.0" 4959 | decamelize "^1.1.1" 4960 | find-up "^2.1.0" 4961 | get-caller-file "^1.0.1" 4962 | os-locale "^2.0.0" 4963 | require-directory "^2.1.1" 4964 | require-main-filename "^1.0.1" 4965 | set-blocking "^2.0.0" 4966 | string-width "^2.0.0" 4967 | which-module "^2.0.0" 4968 | y18n "^3.2.1" 4969 | yargs-parser "^9.0.2" 4970 | 4971 | yargs@^7.0.2: 4972 | version "7.1.0" 4973 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 4974 | dependencies: 4975 | camelcase "^3.0.0" 4976 | cliui "^3.2.0" 4977 | decamelize "^1.1.1" 4978 | get-caller-file "^1.0.1" 4979 | os-locale "^1.4.0" 4980 | read-pkg-up "^1.0.1" 4981 | require-directory "^2.1.1" 4982 | require-main-filename "^1.0.1" 4983 | set-blocking "^2.0.0" 4984 | string-width "^1.0.2" 4985 | which-module "^1.0.0" 4986 | y18n "^3.2.1" 4987 | yargs-parser "^5.0.0" 4988 | 4989 | yargs@^8.0.1: 4990 | version "8.0.2" 4991 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" 4992 | dependencies: 4993 | camelcase "^4.1.0" 4994 | cliui "^3.2.0" 4995 | decamelize "^1.1.1" 4996 | get-caller-file "^1.0.1" 4997 | os-locale "^2.0.0" 4998 | read-pkg-up "^2.0.0" 4999 | require-directory "^2.1.1" 5000 | require-main-filename "^1.0.1" 5001 | set-blocking "^2.0.0" 5002 | string-width "^2.0.0" 5003 | which-module "^2.0.0" 5004 | y18n "^3.2.1" 5005 | yargs-parser "^7.0.0" 5006 | 5007 | yargs@~3.10.0: 5008 | version "3.10.0" 5009 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 5010 | dependencies: 5011 | camelcase "^1.0.2" 5012 | cliui "^2.1.0" 5013 | decamelize "^1.0.0" 5014 | window-size "0.1.0" 5015 | --------------------------------------------------------------------------------