├── .all-contributorsrc ├── .editorconfig ├── .gitignore ├── .travis.yml ├── .vcmrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── index.js ├── lib ├── cli.js ├── config.js ├── getGitFolder.js └── validateMessage.js ├── other └── manual-releases.md ├── package.json ├── test ├── cli.test.js ├── config.test.js ├── getGitFolder.test.js └── validateMessage.test.js ├── wallaby.config.js └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "projectName": "validate-commit-msg", 3 | "projectOwner": "kentcdodds", 4 | "files": [ 5 | "README.md" 6 | ], 7 | "imageSize": 100, 8 | "commit": false, 9 | "contributors": [ 10 | { 11 | "login": "kentcdodds", 12 | "name": "Kent C. Dodds", 13 | "avatar_url": "https://avatars.githubusercontent.com/u/1500684?v=3", 14 | "profile": "https://kentcdodds.com", 15 | "contributions": [ 16 | "question", 17 | "code", 18 | "doc", 19 | "review", 20 | "test" 21 | ] 22 | }, 23 | { 24 | "login": "remy", 25 | "name": "Remy Sharp", 26 | "avatar_url": "https://avatars.githubusercontent.com/u/13700?v=3", 27 | "profile": "http://remysharp.com", 28 | "contributions": [ 29 | "code", 30 | "doc", 31 | "test" 32 | ] 33 | }, 34 | { 35 | "login": "cmalard", 36 | "name": "Cédric Malard", 37 | "avatar_url": "https://avatars.githubusercontent.com/u/1692136?v=3", 38 | "profile": "http://valdun.net", 39 | "contributions": [ 40 | "code", 41 | "test" 42 | ] 43 | }, 44 | { 45 | "login": "markdalgleish", 46 | "name": "Mark Dalgleish", 47 | "avatar_url": "https://avatars.githubusercontent.com/u/696693?v=3", 48 | "profile": "http://markdalgleish.com", 49 | "contributions": [ 50 | "doc" 51 | ] 52 | }, 53 | { 54 | "login": "ryan-kimber", 55 | "name": "Ryan Kimber", 56 | "avatar_url": "https://avatars.githubusercontent.com/u/1018189?v=3", 57 | "profile": "https://formhero.io", 58 | "contributions": [ 59 | "code", 60 | "test" 61 | ] 62 | }, 63 | { 64 | "login": "jcollado", 65 | "name": "Javier Collado", 66 | "avatar_url": "https://avatars.githubusercontent.com/u/43780?v=3", 67 | "profile": "https://github.com/jcollado", 68 | "contributions": [ 69 | "code", 70 | "test" 71 | ] 72 | }, 73 | { 74 | "login": "jamischarles", 75 | "name": "Jamis Charles", 76 | "avatar_url": "https://avatars.githubusercontent.com/u/606014?v=3", 77 | "profile": "https://github.com/jamischarles", 78 | "contributions": [ 79 | "code", 80 | "test" 81 | ] 82 | }, 83 | { 84 | "login": "erquhart", 85 | "name": "Shawn Erquhart", 86 | "avatar_url": "https://avatars.githubusercontent.com/u/2112202?v=3", 87 | "profile": "http://www.professant.com", 88 | "contributions": [ 89 | "code", 90 | "doc", 91 | "test" 92 | ] 93 | }, 94 | { 95 | "login": "tusharmath", 96 | "name": "Tushar Mathur", 97 | "avatar_url": "https://avatars.githubusercontent.com/u/194482?v=3", 98 | "profile": "http://tusharm.com", 99 | "contributions": [ 100 | "code", 101 | "test" 102 | ] 103 | }, 104 | { 105 | "login": "bitjson", 106 | "name": "Jason Dreyzehner", 107 | "avatar_url": "https://avatars.githubusercontent.com/u/904007?v=3", 108 | "profile": "https://twitter.com/bitjson", 109 | "contributions": [ 110 | "code", 111 | "doc", 112 | "test" 113 | ] 114 | }, 115 | { 116 | "login": "hisabimbola", 117 | "name": "Abimbola Idowu", 118 | "avatar_url": "https://avatars.githubusercontent.com/u/9654923?v=3", 119 | "profile": "http://twitter.com/hisabimbola", 120 | "contributions": [ 121 | "code" 122 | ] 123 | }, 124 | { 125 | "login": "bahmutov", 126 | "name": "Gleb Bahmutov", 127 | "avatar_url": "https://avatars.githubusercontent.com/u/2212006?v=3", 128 | "profile": "https://glebbahmutov.com/", 129 | "contributions": [ 130 | "code", 131 | "test" 132 | ] 133 | }, 134 | { 135 | "login": "ds82", 136 | "name": "Dennis", 137 | "avatar_url": "https://avatars.githubusercontent.com/u/332905?v=3", 138 | "profile": "http://dennis.io", 139 | "contributions": [ 140 | "code" 141 | ] 142 | }, 143 | { 144 | "login": "mattlewis92", 145 | "name": "Matt Lewis", 146 | "avatar_url": "https://avatars.githubusercontent.com/u/6425649?v=3", 147 | "profile": "https://mattlewis.me/", 148 | "contributions": [ 149 | "code" 150 | ] 151 | }, 152 | { 153 | "login": "tlvince", 154 | "name": "Tom Vincent", 155 | "avatar_url": "https://avatars.githubusercontent.com/u/323761?v=3", 156 | "profile": "https://tlvince.com", 157 | "contributions": [ 158 | "code" 159 | ] 160 | }, 161 | { 162 | "login": "adjohnson916", 163 | "name": "Anders D. Johnson", 164 | "avatar_url": "https://avatars.githubusercontent.com/u/615381?v=3", 165 | "profile": "https://andrz.me/", 166 | "contributions": [ 167 | "code", 168 | "doc", 169 | "test" 170 | ] 171 | }, 172 | { 173 | "login": "zetlen", 174 | "name": "James Zetlen", 175 | "avatar_url": "https://avatars.githubusercontent.com/u/1643758?v=3", 176 | "profile": "http://jameszetlen.com", 177 | "contributions": [ 178 | "code", 179 | "test" 180 | ] 181 | }, 182 | { 183 | "login": "opatut", 184 | "name": "Paul Bienkowski", 185 | "avatar_url": "https://avatars.githubusercontent.com/u/235784?v=3", 186 | "profile": "http://opatut.de", 187 | "contributions": [ 188 | "code", 189 | "test" 190 | ] 191 | }, 192 | { 193 | "login": "bmds", 194 | "name": "Barney Scott", 195 | "avatar_url": "https://avatars.githubusercontent.com/u/324073?v=3", 196 | "profile": "https://github.com/bmds", 197 | "contributions": [ 198 | "code", 199 | "test" 200 | ] 201 | }, 202 | { 203 | "login": "Emmurillo", 204 | "name": "Emmanuel Murillo Sánchez", 205 | "avatar_url": "https://avatars.githubusercontent.com/u/5572221?v=3", 206 | "profile": "https://github.com/Emmurillo", 207 | "contributions": [ 208 | "code", 209 | "test" 210 | ] 211 | }, 212 | { 213 | "login": "Starefossen", 214 | "name": "Hans Kristian Flaatten", 215 | "avatar_url": "https://avatars.githubusercontent.com/u/968267?v=3", 216 | "profile": "https://starefossen.github.io", 217 | "contributions": [ 218 | "code", 219 | "test" 220 | ] 221 | }, 222 | { 223 | "login": "citycide", 224 | "name": "Bo Lingen", 225 | "avatar_url": "https://avatars.githubusercontent.com/u/16605186?v=3", 226 | "profile": "https://github.com/citycide", 227 | "contributions": [ 228 | "doc" 229 | ] 230 | }, 231 | { 232 | "login": "spirosikmd", 233 | "name": "Spyros Ioakeimidis", 234 | "avatar_url": "https://avatars.githubusercontent.com/u/1057324?v=3", 235 | "profile": "http://www.spyros.io", 236 | "contributions": [ 237 | "code", 238 | "doc", 239 | "test" 240 | ] 241 | }, 242 | { 243 | "login": "travi", 244 | "name": "Matt Travi", 245 | "avatar_url": "https://avatars.githubusercontent.com/u/126441?v=3", 246 | "profile": "https://matt.travi.org", 247 | "contributions": [ 248 | "bug" 249 | ] 250 | }, 251 | { 252 | "login": "Garbee", 253 | "name": "Jonathan Garbee", 254 | "avatar_url": "https://avatars.githubusercontent.com/u/868301?v=3", 255 | "profile": "http://jonathan.garbee.me", 256 | "contributions": [ 257 | "code", 258 | "doc", 259 | "test" 260 | ] 261 | }, 262 | { 263 | "login": "tobiaslins", 264 | "name": "Tobias Lins", 265 | "avatar_url": "https://avatars.githubusercontent.com/u/2978876?v=3", 266 | "profile": "https://lins.in", 267 | "contributions": [ 268 | "doc" 269 | ] 270 | }, 271 | { 272 | "login": "maxcnunes", 273 | "name": "Max Claus Nunes", 274 | "avatar_url": "https://avatars1.githubusercontent.com/u/680356?v=3", 275 | "profile": "http://maxcnunes.com/", 276 | "contributions": [ 277 | "code" 278 | ] 279 | }, 280 | { 281 | "login": "standy", 282 | "name": "standy", 283 | "avatar_url": "https://avatars3.githubusercontent.com/u/750319?v=3", 284 | "profile": "https://github.com/standy", 285 | "contributions": [ 286 | "code", 287 | "test" 288 | ] 289 | } 290 | ] 291 | } 292 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: http://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | # all files 7 | [*] 8 | end_of_line = lf 9 | insert_final_newline = true 10 | indent_style = space 11 | indent_size = 2 12 | charset = utf-8 13 | trim_trailing_whitespace = true 14 | max_line_length = 120 15 | 16 | [*.js] 17 | quote_type = single 18 | curly_bracket_next_line = false 19 | spaces_around_operators = true 20 | spaces_around_brackets = inside 21 | indent_brace_style = BSD KNF 22 | 23 | # HTML 24 | [*.html] 25 | quote_type = double 26 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.log 3 | *.iml 4 | *.DS_Store 5 | 6 | node_modules 7 | coverage 8 | nohup.out 9 | 10 | *.ignored.* 11 | *.ignored/ 12 | *.ignored 13 | .opt-in 14 | .opt-out 15 | 16 | tmp 17 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | cache: 4 | directories: 5 | - node_modules 6 | branches: 7 | only: 8 | - master 9 | notifications: 10 | email: false 11 | node_js: 12 | - '6' 13 | before_script: 14 | - npm prune 15 | script: 16 | - yarn run validate 17 | after_success: 18 | - npm run report-coverage 19 | - npm run semantic-release 20 | env: 21 | global: 22 | - secure: waK7c/moDG0HAhijQ85Da1u+S/TRTcKLAMWwAHYhY7caCOZLabHEMTygvfocK4la2kvZMFbILBRRFc2+PToN0NQKd/8t8TXKyZKFxhb85haMA7R1e3gpB4zeCn6cMNIIS0ZKdlOcHW6eUbdC9udZDLEZZRn9GT9Werg5abF3OxJT81VNdBU8IbSIfofDbobWM/0QC6gr41a3MwPPVBw1oHRXfxuJEM8DORRKw2JIye2nPVkPdkW+jRNmOjiv8R9fhIS/fKMjWJn0Uuw6a8l3ffZ9YB2hcxKWW1qaqrRzEytXclJdeRetk5zpnY0eitoN2a4FfufUQmBKfAuh6tGVsYxp4GLHrdFXW2q81/OfJSVPO3NVEv0fsTWOV22bPW3GunTzmqi3ny24UUnjFC40QPZCx+lq0vvwFoxSoj8tJ3N7Rsd8eRfhNftggYkjeY9ZVBBWjbkL9JoONpLuz2NfKbQo7PZZOUTqq7cArnwJ//yRHtI+PuAiKF+EGMhxJMMHnobLAmFjpQMQlf8NXAnI6PKnotI/GEGUs37wGUNne/2+x3XLMzeHxmz+NnoC8UGBlSIOcpC8Jl8sCvb4OyS/n6V5ky+trgvIpcjKpUWLPfVG0Q9y98PAR4H0Y7X6AHTC5CkPFT4TpV79ydiEoNZ6E80bLIbV4qRUVgEA1PtD2Rw= 23 | - secure: WybrvGpPFRjfDUDFaGUbT6lL3n/1YkMyLOJABqhFDlRSsaYhG3xKhcm1yfkVLSzhhasC8u5wjbStyv8ubrWLWMV0vyW+Djsjp7U+tRA1uPWfEOTpwCZ/Rn4hZmbWGntHru1Clq2JBCgw7ihv9XCw6wo9fzdNFV0uP5JKKaB6RsdOyaBjr4ePE/jGr94Q17NX76YSJ8FNbiqj1qawpLFcBDv8/DFn1r3yCdesGs/TcX2ahnCdnOL/ODyuBkgyh0KUxwKlPMG0l99t/+tDUBcBAG30EDFh4KAobZ3j4BJRB6PmxcENEoYmHYsNf4NZkbhresSpg3UGws2F3SZs3sBfghKeOA5QkaasWwpjtoV5SIlRW3u69CINH9k3WpkKN0k4vaMngfoeRhIVkCqWEul3n9Jk9be07WIyJc9MA8ccZpnSiBD4hBd2VtzfCdD8w603gztBVUCnK4eoFT4AbK0LjTfJdND4o5w1LFdyFcMtDQASe32QfVIPk3+yqU2gc/PNxoNjp1Sj+T6fgnuTHBmaWb0EqE/rN2rIyUIgbJqFKpk+4ZNTQ+Rqg7iAZQ/SzX6xsSCwl1IEeEonLbv54snCAXzojBBrTpOfyrPJ3eSyind5ZsBeQrmWjTKYTAddAA/MKYk7nAMU+SPB75X3SUjSY7kvCFJpt6Hz2ynqQahiJg8= 24 | -------------------------------------------------------------------------------- /.vcmrc: -------------------------------------------------------------------------------- 1 | { 2 | "helpMessage": "\nPlease fix your commit message (and consider using http://npm.im/commitizen)\n", 3 | "types": [ 4 | "feat", 5 | "fix", 6 | "docs", 7 | "style", 8 | "refactor", 9 | "perf", 10 | "test", 11 | "chore", 12 | "revert", 13 | "custom" 14 | ], 15 | "warnOnFail": false, 16 | "autoFix": true 17 | } 18 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Code of Conduct 2 | 3 | As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities. 4 | 5 | We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion. 6 | 7 | Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct. 8 | 9 | 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. Project maintainers who do not follow the Code of Conduct may be removed from the project team. 10 | 11 | This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. 12 | 13 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers. 14 | 15 | This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.1.0, available at [http://contributor-covenant.org/version/1/1/0/](http://contributor-covenant.org/version/1/1/0/) 16 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Thanks for being willing to contribute! 4 | 5 | **Working on your first Pull Request?** You can learn how from this *free* series 6 | [How to Contribute to an Open Source Project on GitHub][egghead] 7 | 8 | ## Project setup 9 | 10 | You're going to need [`git`](https://git-scm.com/) to get the project, and [`node`](https://nodejs.org/en/) and 11 | [`yarn`](https://yarnpkg.com/) to install dependencies and run scripts. 12 | 13 | 1. Fork and clone the repo 14 | 2. Run `yarn` to install dependencies 15 | 3. Run `yarn run validate` to validate you've got everything working 16 | 4. Create a branch for your PR 17 | 18 | ## Add yourself as a contributor 19 | 20 | This project follows the [all contributors][all-contributors] specification. To add yourself to the table of 21 | contributors on the README.md, please use the automated script as part of your PR: 22 | 23 | ```console 24 | yarn run add-contributor 25 | ``` 26 | 27 | Follow the prompt. If you've already added yourself to the list and are making a new type of contribution, you can run 28 | it again and select the added contribution type. 29 | 30 | ## Committing and Pushing changes 31 | 32 | This project uses [`semantic-release`][semantic-release] to do automatic releases and generate a changelog based on the 33 | commit history. So we follow [a convention][convention] for commit messages. Please follow this convention for your 34 | commit messages. 35 | 36 | You can use `commitizen` to help you to follow [the convention][convention] 37 | 38 | Once you are ready to commit the changes, please use the below commands 39 | 40 | 1. Run `git add ` to stage changed files 41 | 2. Run `yarn run commit` to start commitzen to commit those files 42 | 43 | ... and follow the instruction of the interactive prompt. 44 | 45 | ### opt into git hooks 46 | 47 | There are git hooks set up with this project that are automatically installed when you install dependencies. They're 48 | really handy, but are turned off by default (so as to not hinder new contributors). You can opt into these by creating 49 | a file called `.opt-in` at the root of the project and putting this inside: 50 | 51 | ``` 52 | commitmsg 53 | precommit 54 | ``` 55 | 56 | ## Help needed 57 | 58 | Please checkout [the issues](https://github.com/kentcdodds/validate-commit-msg/issues)! Also, please watch the repo 59 | and respond to questions/bug reports/feature requests! Thanks! 60 | 61 | [egghead]: https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github 62 | [semantic-release]: https://npmjs.com/package/semantic-release 63 | [convention]: https://github.com/conventional-changelog/conventional-changelog-angular/blob/ed32559941719a130bb0327f886d6a32a8cbc2ba/convention.md 64 | [all-contributors]: https://github.com/kentcdodds/all-contributors 65 | [ROADMAP]: ./ROADMAP.md 66 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # validate-commit-msg 2 | 3 | [![Build Status][build-badge]][build] 4 | [![Code Coverage][coverage-badge]][coverage] 5 | [![Dependencies][dependencyci-badge]][dependencyci] 6 | [![version][version-badge]][package] 7 | [![downloads][downloads-badge]][npm-stat] 8 | [![MIT License][license-badge]][LICENSE] 9 | 10 | [![All Contributors](https://img.shields.io/badge/all_contributors-28-orange.svg?style=flat-square)](#contributors) 11 | [![PRs Welcome][prs-badge]][prs] 12 | [![Donate][donate-badge]][donate] 13 | [![Code of Conduct][coc-badge]][coc] 14 | 15 | [![Watch on GitHub][github-watch-badge]][github-watch] 16 | [![Star on GitHub][github-star-badge]][github-star] 17 | [![Tweet][twitter-badge]][twitter] 18 | 19 | This provides you a binary that you can use as a githook to validate the commit message. I recommend 20 | [husky](http://npm.im/husky). You'll want to make this part of the `commit-msg` githook, e.g. when using [husky](http://npm.im/husky), add `"commitmsg": "validate-commit-msg"` to your [npm scripts](https://docs.npmjs.com/misc/scripts) in `package.json`. 21 | 22 | Validates that your commit message follows this format: 23 | 24 | ``` 25 | (): 26 | ``` 27 | 28 | Or without optional scope: 29 | 30 | ``` 31 | : 32 | ``` 33 | 34 | ## Installation 35 | 36 | This module is distributed via [npm](https://www.npmjs.com/) which is bundled with [node](https://nodejs.org/) and 37 | should be installed as one of your project's `devDependencies`: 38 | 39 | ``` 40 | npm install --save-dev validate-commit-msg 41 | ``` 42 | 43 | ## Usage 44 | 45 | ### options 46 | 47 | You can specify options in `.vcmrc`. 48 | It must be valid JSON file. 49 | The default configuration object is: 50 | 51 | ```json 52 | { 53 | "types": ["feat", "fix", "docs", "style", "refactor", "perf", "test", "build", "ci", "chore", "revert"], 54 | "scope": { 55 | "required": false, 56 | "allowed": ["*"], 57 | "validate": false, 58 | "multiple": false 59 | }, 60 | "warnOnFail": false, 61 | "maxSubjectLength": 100, 62 | "subjectPattern": ".+", 63 | "subjectPatternErrorMsg": "subject does not match subject pattern!", 64 | "helpMessage": "", 65 | "autoFix": false 66 | } 67 | ``` 68 | 69 | Alternatively, options can be specified in `package.json`: 70 | 71 | ```json 72 | { 73 | "config": { 74 | "validate-commit-msg": { 75 | /* your config here */ 76 | } 77 | } 78 | } 79 | ``` 80 | 81 | `.vcmrc` has precedence, if it does not exist, then `package.json` will be used. 82 | 83 | #### types 84 | 85 | These are the types that are allowed for your commit message. If omitted, the value is what is shown above. 86 | 87 | You can also specify: `"types": "*"` to indicate that you don't wish to validate types. 88 | 89 | Or you can specify the name of a module that exports types according to the 90 | [conventional-commit-types](https://github.com/commitizen/conventional-commit-types) 91 | spec, e.g. `"types": "conventional-commit-types"`. 92 | 93 | #### scope 94 | 95 | This object defines scope requirements for the commit message. Possible properties are: 96 | 97 | ##### required 98 | 99 | A boolean to define whether a scope is required for all commit messages. 100 | 101 | ##### allowed 102 | 103 | An array of scopes that are allowed for your commit message. 104 | 105 | You may also define it as `"*"` which is the default to allow any scope names. 106 | 107 | ##### validate 108 | 109 | A boolean to define whether or not to validate the scope(s) provided. 110 | 111 | ##### multiple 112 | 113 | A boolean to define whether or not to allow multiple scopes. 114 | 115 | #### warnOnFail 116 | 117 | If this is set to `true` errors will be logged to the console, however the commit will still pass. 118 | 119 | #### maxSubjectLength 120 | 121 | This will control the maximum length of the subject. 122 | 123 | #### subjectPattern 124 | 125 | Optional, accepts a RegExp to match the commit message subject against. 126 | 127 | #### subjectPatternErrorMsg 128 | 129 | If `subjectPattern` is provided, this message will be displayed if the commit message subject does not match the pattern. 130 | 131 | #### helpMessage 132 | 133 | If provided, the helpMessage string is displayed when a commit message is not valid. This allows projects to provide a better developer experience for new contributors. 134 | 135 | The `helpMessage` also supports interpolating a single `%s` with the original commit message. 136 | 137 | #### autoFix 138 | 139 | If this is set to `true`, type will be auto fixed to all lowercase, subject first letter will be lowercased, and the commit will pass (assuming there's nothing else wrong with it). 140 | 141 | ### Node 142 | 143 | Through node you can use as follows 144 | 145 | ```javascript 146 | var validateMessage = require('validate-commit-msg'); 147 | 148 | var valid = validateMessage('chore(index): an example commit message'); 149 | 150 | // valid = true 151 | ``` 152 | 153 | ### CI 154 | 155 | You can use your CI to validate your _last_ commit message: 156 | 157 | ``` 158 | validate-commit-msg "$(git log -1 --pretty=%B)" 159 | ``` 160 | 161 | _Note_ this will only validate the last commit message, not all messages in a pull request. 162 | 163 | ### Monorepo 164 | 165 | If your lerna repo looks something like this: 166 | 167 | ``` 168 | my-lerna-repo/ 169 | package.json 170 | packages/ 171 | package-1/ 172 | package.json 173 | package-2/ 174 | package.json 175 | ``` 176 | 177 | The scope of your commit message should be one (or more) of the packages: 178 | 179 | EG: 180 | 181 | ```json 182 | { 183 | "config": { 184 | "validate-commit-msg": { 185 | "scope": { 186 | "required": true, 187 | "allowed": ["package-1", "package-2"], 188 | "validate": true, 189 | "multiple": true 190 | }, 191 | } 192 | } 193 | } 194 | ``` 195 | 196 | ### Other notes 197 | 198 | If the commit message begins with `WIP` then none of the validation will happen. 199 | 200 | 201 | ## Credits 202 | 203 | This was originally developed by contributors to [the angular.js project](https://github.com/angular/angular.js). I 204 | pulled it out so I could re-use this same kind of thing in other projects. 205 | 206 | [build-badge]: https://img.shields.io/travis/kentcdodds/validate-commit-msg.svg?style=flat-square 207 | [build]: https://travis-ci.org/kentcdodds/validate-commit-msg 208 | [coverage-badge]: https://img.shields.io/codecov/c/github/kentcdodds/validate-commit-msg.svg?style=flat-square 209 | [coverage]: https://codecov.io/github/kentcdodds/validate-commit-msg 210 | [dependencyci-badge]: https://dependencyci.com/github/kentcdodds/validate-commit-msg/badge?style=flat-square 211 | [dependencyci]: https://dependencyci.com/github/kentcdodds/validate-commit-msg 212 | [version-badge]: https://img.shields.io/npm/v/validate-commit-msg.svg?style=flat-square 213 | [package]: https://www.npmjs.com/package/validate-commit-msg 214 | [downloads-badge]: https://img.shields.io/npm/dm/validate-commit-msg.svg?style=flat-square 215 | [npm-stat]: http://npm-stat.com/charts.html?package=validate-commit-msg&from=2016-04-01 216 | [license-badge]: https://img.shields.io/npm/l/validate-commit-msg.svg?style=flat-square 217 | [license]: https://github.com/kentcdodds/validate-commit-msg/blob/master/LICENSE 218 | [prs-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square 219 | [prs]: http://makeapullrequest.com 220 | [donate-badge]: https://img.shields.io/badge/$-support-green.svg?style=flat-square 221 | [donate]: http://kcd.im/donate 222 | [coc-badge]: https://img.shields.io/badge/code%20of-conduct-ff69b4.svg?style=flat-square 223 | [coc]: https://github.com/kentcdodds/validate-commit-msg/blob/master/CODE_OF_CONDUCT.md 224 | [github-watch-badge]: https://img.shields.io/github/watchers/kentcdodds/validate-commit-msg.svg?style=social 225 | [github-watch]: https://github.com/kentcdodds/validate-commit-msg/watchers 226 | [github-star-badge]: https://img.shields.io/github/stars/kentcdodds/validate-commit-msg.svg?style=social 227 | [github-star]: https://github.com/kentcdodds/validate-commit-msg/stargazers 228 | [twitter]: https://twitter.com/intent/tweet?text=Check%20out%20validate-commit-msg!%20https://github.com/kentcdodds/validate-commit-msg%20%F0%9F%91%8D 229 | [twitter-badge]: https://img.shields.io/twitter/url/https/github.com/kentcdodds/validate-commit-msg.svg?style=social 230 | 231 | ## Contributors 232 | 233 | Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)): 234 | 235 | 236 | | [
Kent C. Dodds](https://kentcdodds.com)
💁 [💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=kentcdodds) [📖](https://github.com/kentcdodds/validate-commit-msg/commits?author=kentcdodds) 👀 [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=kentcdodds) | [
Remy Sharp](http://remysharp.com)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=remy) [📖](https://github.com/kentcdodds/validate-commit-msg/commits?author=remy) [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=remy) | [
Cédric Malard](http://valdun.net)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=cmalard) [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=cmalard) | [
Mark Dalgleish](http://markdalgleish.com)
[📖](https://github.com/kentcdodds/validate-commit-msg/commits?author=markdalgleish) | [
Ryan Kimber](https://formhero.io)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=ryan-kimber) [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=ryan-kimber) | [
Javier Collado](https://github.com/jcollado)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=jcollado) [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=jcollado) | [
Jamis Charles](https://github.com/jamischarles)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=jamischarles) [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=jamischarles) | 237 | | :---: | :---: | :---: | :---: | :---: | :---: | :---: | 238 | | [
Shawn Erquhart](http://www.professant.com)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=erquhart) [📖](https://github.com/kentcdodds/validate-commit-msg/commits?author=erquhart) [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=erquhart) | [
Tushar Mathur](http://tusharm.com)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=tusharmath) [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=tusharmath) | [
Jason Dreyzehner](https://twitter.com/bitjson)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=bitjson) [📖](https://github.com/kentcdodds/validate-commit-msg/commits?author=bitjson) [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=bitjson) | [
Abimbola Idowu](http://twitter.com/hisabimbola)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=hisabimbola) | [
Gleb Bahmutov](https://glebbahmutov.com/)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=bahmutov) [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=bahmutov) | [
Dennis](http://dennis.io)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=ds82) | [
Matt Lewis](https://mattlewis.me/)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=mattlewis92) | 239 | | [
Tom Vincent](https://tlvince.com)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=tlvince) | [
Anders D. Johnson](https://andrz.me/)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=AndersDJohnson) [📖](https://github.com/kentcdodds/validate-commit-msg/commits?author=AndersDJohnson) [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=AndersDJohnson) | [
James Zetlen](http://jameszetlen.com)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=zetlen) [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=zetlen) | [
Paul Bienkowski](http://opatut.de)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=opatut) [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=opatut) | [
Barney Scott](https://github.com/bmds)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=bmds) [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=bmds) | [
Emmanuel Murillo Sánchez](https://github.com/Emmurillo)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=Emmurillo) [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=Emmurillo) | [
Hans Kristian Flaatten](https://starefossen.github.io)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=Starefossen) [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=Starefossen) | 240 | | [
Bo Lingen](https://github.com/citycide)
[📖](https://github.com/kentcdodds/validate-commit-msg/commits?author=citycide) | [
Spyros Ioakeimidis](http://www.spyros.io)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=spirosikmd) [📖](https://github.com/kentcdodds/validate-commit-msg/commits?author=spirosikmd) [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=spirosikmd) | [
Matt Travi](https://matt.travi.org)
[🐛](https://github.com/kentcdodds/validate-commit-msg/issues?q=author%3Atravi) | [
Jonathan Garbee](http://jonathan.garbee.me)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=Garbee) [📖](https://github.com/kentcdodds/validate-commit-msg/commits?author=Garbee) [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=Garbee) | [
Tobias Lins](https://lins.in)
[📖](https://github.com/kentcdodds/validate-commit-msg/commits?author=tobiaslins) | [
Max Claus Nunes](http://maxcnunes.com/)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=maxcnunes) | [
standy](https://github.com/standy)
[💻](https://github.com/kentcdodds/validate-commit-msg/commits?author=standy) [⚠️](https://github.com/kentcdodds/validate-commit-msg/commits?author=standy) | 241 | 242 | 243 | This project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification. Contributions of any kind welcome! 244 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/validateMessage').validateMessage; 4 | -------------------------------------------------------------------------------- /lib/cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /** 4 | * Git COMMIT-MSG hook for validating commit message 5 | * See https://docs.google.com/document/d/1rk04jEuGfk9kYzfqCuOlPTSJw3hEDZJTBN5E5f1SALo/edit 6 | * 7 | * This CLI supports 3 usage ways: 8 | * 1. Default usage is not passing any argument. It will automatically read from COMMIT_EDITMSG file. 9 | * 2. Passing a file name argument from git directory. For instance GIT GUI stores commit msg @GITGUI_EDITMSG file. 10 | * 3. Passing commit message as argument. Useful for testing quickly a commit message from CLI. 11 | * 12 | * Installation: 13 | * >> cd 14 | * >> ln -s ../../validate-commit-msg.js .git/hooks/commit-msg 15 | */ 16 | 17 | 'use strict'; 18 | 19 | var fs = require('fs'); 20 | var path = require('path'); 21 | 22 | var getGitFolder = require('./getGitFolder'); 23 | var validateMessage = require('../index'); 24 | 25 | var commitMsgFileOrText = process.argv[2]; 26 | var commitErrorLogPath = process.argv[3]; 27 | 28 | // On running the validation over a text instead of git files such as COMMIT_EDITMSG and GITGUI_EDITMSG 29 | // is possible to be doing that the from anywhere. Therefore the git directory might not be available. 30 | var gitDirectory; 31 | try { 32 | gitDirectory = getGitFolder(); 33 | 34 | if (!commitErrorLogPath) { 35 | commitErrorLogPath = path.resolve(gitDirectory, 'logs/incorrect-commit-msgs'); 36 | } 37 | } catch (err) {} 38 | 39 | var bufferToString = function (buffer) { 40 | var hasToString = buffer && typeof buffer.toString === 'function'; 41 | 42 | return hasToString && buffer.toString(); 43 | } 44 | 45 | var getCommit = function (msgFileOrText) { 46 | if (msgFileOrText !== undefined) { 47 | return getCommitFromFile(msgFileOrText) || { message: msgFileOrText }; 48 | } 49 | 50 | return getCommitFromFile('COMMIT_EDITMSG') || { message: null }; 51 | } 52 | 53 | var getCommitFromFile = function (file) { 54 | if (!gitDirectory || !file) { 55 | return null; 56 | } 57 | 58 | file = path.resolve(gitDirectory, file); 59 | var message = getFileContent(file); 60 | 61 | return (!message) ? null : { 62 | message: message, 63 | sourceFile: file 64 | }; 65 | } 66 | 67 | var getFileContent = function (filePath) { 68 | try { 69 | var buffer = fs.readFileSync(filePath); 70 | 71 | return bufferToString(buffer); 72 | } catch (err) { 73 | // Ignore these error types because it is most likely validating 74 | // a commit from a text instead of a file 75 | if (err && err.code !== 'ENOENT' && err.code !== 'ENAMETOOLONG') { 76 | throw err; 77 | } 78 | } 79 | } 80 | 81 | var validate = function (msgFileOrText) { 82 | var commit = getCommit(msgFileOrText); 83 | 84 | if (!validateMessage(commit.message, commit.sourceFile) && commitErrorLogPath) { 85 | fs.appendFileSync(commitErrorLogPath, commit.message + '\n'); 86 | process.exit(1); 87 | } 88 | 89 | process.exit(0); 90 | } 91 | 92 | validate(commitMsgFileOrText); 93 | -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var findup = require('findup'); 4 | var fs = require('fs'); 5 | var resolve = require('path').resolve; 6 | 7 | function getConfigObject(filename) { 8 | try { 9 | var rcFile = findup.sync(process.cwd(), filename); 10 | return JSON.parse(fs.readFileSync(resolve(rcFile, filename))); 11 | } catch (e) { 12 | return null; 13 | } 14 | } 15 | 16 | function getRcConfig() { 17 | return getConfigObject('.vcmrc'); 18 | } 19 | 20 | function getPackageConfig() { 21 | var configObject = getConfigObject('package.json'); 22 | return configObject && configObject.config && configObject.config['validate-commit-msg']; 23 | } 24 | 25 | function getConfig() { 26 | return getRcConfig() || getPackageConfig() || {}; 27 | } 28 | 29 | module.exports = { 30 | getConfig: getConfig, 31 | getRcConfig: getRcConfig, 32 | getPackageConfig: getPackageConfig, 33 | getConfigObject: getConfigObject 34 | }; 35 | -------------------------------------------------------------------------------- /lib/getGitFolder.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var fs = require('fs'); 4 | var path = require('path'); 5 | var findParentDir = require('find-parent-dir'); 6 | 7 | module.exports = function getGitFolder() { 8 | var dir = findParentDir.sync(process.cwd(), '.git'); 9 | if (!dir) throw new Error('Cannot find .git folder'); 10 | 11 | var gitDir = path.join(dir, '.git'); 12 | var stats = fs.lstatSync(gitDir); 13 | 14 | if (!stats.isDirectory()) { 15 | // Expect following format 16 | // git: pathToGit 17 | var pathToGit = fs 18 | .readFileSync(gitDir, 'utf-8') 19 | .split(':')[1] 20 | .trim(); 21 | gitDir = path.join(dir, pathToGit); 22 | 23 | if (!fs.existsSync(gitDir)) { 24 | throw new Error('Cannot find file ' + pathToGit); 25 | } 26 | } 27 | 28 | return gitDir; 29 | }; 30 | -------------------------------------------------------------------------------- /lib/validateMessage.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var fs = require('fs'); 4 | var semverRegex = require('semver-regex'); 5 | var util = require('util'); 6 | 7 | var getConfig = require('./config').getConfig; 8 | 9 | var config = getConfig(); 10 | var MAX_LENGTH = config.maxSubjectLength || 100; 11 | var IGNORED = new RegExp(util.format('(^WIP)|(^%s$)', semverRegex().source)); 12 | 13 | // fixup! and squash! are part of Git, commits tagged with them are not intended to be merged, cf. https://git-scm.com/docs/git-commit 14 | var PATTERN = /^((fixup! |squash! )?(\w+)(?:\(([^\)\s]+)\))?: (.+))(?:\n|$)/; 15 | var MERGE_COMMIT_PATTERN = /^Merge /; 16 | 17 | var error = function() { 18 | // gitx does not display it 19 | // http://gitx.lighthouseapp.com/projects/17830/tickets/294-feature-display-hook-error-message-when-hook-fails 20 | // https://groups.google.com/group/gitx/browse_thread/thread/a03bcab60844b812 21 | console[config.warnOnFail ? 'warn' : 'error']('INVALID COMMIT MSG: ' + util.format.apply(null, arguments)); 22 | }; 23 | 24 | exports.config = config; 25 | 26 | exports.validateMessage = function validateMessage(raw, sourceFile) { 27 | var types = config.types = config.types || 'conventional-commit-types'; 28 | var AUTO_FIX = config.autoFix && sourceFile; 29 | 30 | // resolve types from a module 31 | if (typeof types === 'string' && types !== '*') { 32 | types = Object.keys(require(types).types); 33 | } 34 | 35 | var messageWithBody = (raw || '').split('\n').filter(function(str) { 36 | return str.indexOf('#') !== 0; 37 | }).join('\n'); 38 | 39 | var message = messageWithBody.split('\n').shift(); 40 | 41 | if (message === '') { 42 | console.log('Aborting commit due to empty commit message.'); 43 | return false; 44 | } 45 | 46 | var isValid = true; 47 | 48 | if (MERGE_COMMIT_PATTERN.test(message)) { 49 | console.log('Merge commit detected.'); 50 | return true 51 | } 52 | 53 | if (IGNORED.test(message)) { 54 | console.log('Commit message validation ignored.'); 55 | return true; 56 | } 57 | 58 | var match = PATTERN.exec(message); 59 | 60 | if (!match) { 61 | error('does not match "(): " !'); 62 | isValid = false; 63 | } else { 64 | var firstLine = match[1]; 65 | var squashing = !!match[2]; 66 | var type = match[3]; 67 | var scope = match[4]; 68 | var subject = match[5]; 69 | 70 | var SUBJECT_PATTERN = new RegExp(config.subjectPattern || '.+'); 71 | var SUBJECT_PATTERN_ERROR_MSG = config.subjectPatternErrorMsg || 'subject does not match subject pattern!'; 72 | 73 | if (firstLine.length > MAX_LENGTH && !squashing) { 74 | error('is longer than %d characters !', MAX_LENGTH); 75 | isValid = false; 76 | } 77 | 78 | if (AUTO_FIX) { 79 | type = lowercase(type); 80 | } 81 | 82 | if (types !== '*' && types.indexOf(type) === -1) { 83 | error('"%s" is not allowed type ! Valid types are: %s', type, types.join(', ')); 84 | isValid = false; 85 | } 86 | 87 | isValid = validateScope(isValid, scope); 88 | 89 | if (AUTO_FIX) { 90 | subject = lowercaseFirstLetter(subject); 91 | } 92 | 93 | if (!SUBJECT_PATTERN.exec(subject)) { 94 | error(SUBJECT_PATTERN_ERROR_MSG); 95 | isValid = false; 96 | } 97 | } 98 | 99 | // Some more ideas, do want anything like this ? 100 | // - Validate the rest of the message (body, footer, BREAKING CHANGE annotations) 101 | // - auto add empty line after subject ? 102 | // - auto remove empty () ? 103 | // - auto correct typos in type ? 104 | // - store incorrect messages, so that we can learn 105 | 106 | isValid = isValid || config.warnOnFail; 107 | 108 | if (isValid) { // exit early and skip messaging logics 109 | if (AUTO_FIX && !squashing) { 110 | var scopeFixed = scope ? '(' + scope + ')' : ''; 111 | var firstLineFixed = type + scopeFixed + ': ' + subject; 112 | 113 | if (firstLine !== firstLineFixed) { 114 | var rawFixed = raw.replace(firstLine, firstLineFixed); 115 | fs.writeFileSync(sourceFile, rawFixed); 116 | } 117 | } 118 | 119 | return true; 120 | } 121 | 122 | var argInHelp = config.helpMessage && config.helpMessage.indexOf('%s') !== -1; 123 | 124 | if (argInHelp) { 125 | console.log(config.helpMessage, messageWithBody); 126 | } else if (message) { 127 | console.log(message); 128 | } 129 | 130 | if (!argInHelp && config.helpMessage) { 131 | console.log(config.helpMessage); 132 | } 133 | 134 | return false; 135 | }; 136 | 137 | function lowercase(string) { 138 | return string.toLowerCase(); 139 | } 140 | 141 | function lowercaseFirstLetter(string) { 142 | return lowercase(string.charAt(0)) + string.slice(1); 143 | } 144 | 145 | function validateScope(isValid, scope) { 146 | config.scope = config.scope || {}; 147 | var validateScopes = config.scope.validate || false; 148 | var multipleScopesAllowed = config.scope.multiple || false; 149 | var allowedScopes = config.scope.allowed || '*'; 150 | var scopeRequired = config.scope.required || false; 151 | var scopes = scope ? scope.split(',') : []; 152 | 153 | function validateIndividualScope(item) { 154 | if (allowedScopes[0].trim() === '*') { 155 | return; 156 | } 157 | if (allowedScopes.indexOf(item) === -1) { 158 | error('"%s" is not an allowed scope ! Valid scope are: %s', item, allowedScopes.join(', ')); 159 | isValid = false; 160 | } 161 | } 162 | 163 | if (validateScopes) { 164 | if (scopeRequired && scopes.length === 0) { 165 | error('a scope is required !'); 166 | isValid = false; 167 | } 168 | // If scope is not provided, we ignore the rest of the testing and do early 169 | // return here. 170 | if (scopes.length === 0) { 171 | return isValid; 172 | } 173 | if (isValid && multipleScopesAllowed) { 174 | scopes.forEach(validateIndividualScope); 175 | } 176 | if (isValid && !multipleScopesAllowed) { 177 | if (scopes.length > 1) { 178 | error('only one scope can be provided !'); 179 | isValid = false; 180 | } 181 | if (isValid) { 182 | validateIndividualScope(scopes[0]); 183 | } 184 | } 185 | } 186 | 187 | return isValid; 188 | }; 189 | -------------------------------------------------------------------------------- /other/manual-releases.md: -------------------------------------------------------------------------------- 1 | # manual-releases 2 | 3 | This project has an automated release set up. So things are only released when there are 4 | useful changes in the code that justify a release. But sometimes things get messed up one way or another 5 | and we need to trigger the release ourselves. When this happens, simply bump the number below and commit 6 | that with the following commit message based on your needs: 7 | 8 | **Major** 9 | 10 | ``` 11 | fix(release): manually release a major version 12 | 13 | There was an issue with a major release, so this manual-releases.md 14 | change is to release a new major version. 15 | 16 | Reference: # 17 | 18 | BREAKING CHANGE: 19 | ``` 20 | 21 | **Minor** 22 | 23 | ``` 24 | feat(release): manually release a minor version 25 | 26 | There was an issue with a minor release, so this manual-releases.md 27 | change is to release a new minor version. 28 | 29 | Reference: # 30 | ``` 31 | 32 | **Patch** 33 | 34 | ``` 35 | fix(release): manually release a patch version 36 | 37 | There was an issue with a patch release, so this manual-releases.md 38 | change is to release a new patch version. 39 | 40 | Reference: # 41 | ``` 42 | 43 | The number of times we've had to do a manual release is: 2 44 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "validate-commit-msg", 3 | "description": "Script to validate a commit message follows the conventional changelog standard", 4 | "main": "index.js", 5 | "version": "0.0.0-development", 6 | "scripts": { 7 | "add-contributor": "all-contributors add", 8 | "generate-contributors": "all-contributors generate", 9 | "commit": "git-cz", 10 | "commitmsg": "opt --in commitmsg --exec \"node ./lib/cli.js\"", 11 | "precommit": "opt --in precommit --exec \"npm run validate\"", 12 | "check-coverage": "istanbul check-coverage --statements 100 --branches 90 --functions 100 --lines 100", 13 | "report-coverage": "cat ./coverage/lcov.info | codecov", 14 | "test:watch": "istanbul cover -x test/**/*.test.js node_modules/mocha/bin/_mocha -- -R spec -w test/**/*.test.js", 15 | "test": "istanbul cover -x test/**/*.test.js node_modules/mocha/bin/_mocha -- -R spec test/**/*.test.js", 16 | "validate": "npm t && npm run check-coverage", 17 | "semantic-release": "semantic-release pre && npm publish && semantic-release post" 18 | }, 19 | "bin": { 20 | "validate-commit-msg": "./lib/cli.js" 21 | }, 22 | "repository": { 23 | "type": "git", 24 | "url": "https://github.com/conventional-changelog/validate-commit-msg.git" 25 | }, 26 | "keywords": [ 27 | "githook", 28 | "commit", 29 | "message", 30 | "git", 31 | "conventional", 32 | "changelog" 33 | ], 34 | "author": "Kent C. Dodds (http://kentcdodds.com/)", 35 | "license": "MIT", 36 | "bugs": { 37 | "url": "https://github.com/conventional-changelog/validate-commit-msg/issues" 38 | }, 39 | "homepage": "https://github.com/conventional-changelog/validate-commit-msg#readme", 40 | "devDependencies": { 41 | "all-contributors-cli": "3.0.7", 42 | "chai": "3.4.1", 43 | "codecov.io": "0.1.6", 44 | "commitizen": "2.5.0", 45 | "cz-conventional-changelog": "1.1.5", 46 | "husky": "0.12.0", 47 | "istanbul": "0.4.2", 48 | "mkdirp": "^0.5.1", 49 | "mocha": "2.3.4", 50 | "opt-cli": "1.5.1", 51 | "rimraf": "^2.6.1", 52 | "semantic-release": "^6.3.2", 53 | "sinon": "1.17.2" 54 | }, 55 | "config": { 56 | "commitizen": { 57 | "path": "node_modules/cz-conventional-changelog" 58 | }, 59 | "validate-commit-msg": { 60 | "helpMessage": "\nPlease fix your commit message (and consider using http://npm.im/commitizen)\n", 61 | "types": [ 62 | "feat", 63 | "fix", 64 | "docs", 65 | "style", 66 | "refactor", 67 | "perf", 68 | "test", 69 | "chore", 70 | "revert", 71 | "custom" 72 | ], 73 | "warnOnFail": false, 74 | "autoFix": true 75 | } 76 | }, 77 | "dependencies": { 78 | "conventional-commit-types": "^2.0.0", 79 | "find-parent-dir": "^0.3.0", 80 | "findup": "0.1.5", 81 | "semver-regex": "1.0.0" 82 | }, 83 | "files": [ 84 | "index.js", 85 | "lib" 86 | ] 87 | } 88 | -------------------------------------------------------------------------------- /test/cli.test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var spawnSync = require('child_process').spawnSync; 4 | var expect = require('chai').expect; 5 | var fs = require('fs'); 6 | var path = require('path'); 7 | var rimraf = require('rimraf'); 8 | var mkdirp = require('mkdirp'); 9 | 10 | var TMP_PATH = path.join(__dirname, 'tmp/'); 11 | var GIT_TMP_PATH = path.join(TMP_PATH, '.git'); 12 | var LOGS_GIT_TMP_PATH = path.join(GIT_TMP_PATH, 'logs'); 13 | var COMMIT_EDITMSG_GIT_TMP_PATH = path.join(GIT_TMP_PATH, 'COMMIT_EDITMSG'); 14 | var GITGUI_EDITMSG_GIT_TMP_PATH = path.join(GIT_TMP_PATH, 'GITGUI_EDITMSG'); 15 | var CLI_PATH = path.join(__dirname, '../lib/cli.js'); 16 | 17 | var cliSources = [ 18 | 'COMMIT_EDITMSG', 19 | 'commit text argument', 20 | 'commit file argument', 21 | ]; 22 | 23 | function executeCliBySource(cliSource, commitMessage) { 24 | var options = {}; 25 | var args = []; 26 | switch (cliSource) { 27 | case 'COMMIT_EDITMSG': { 28 | fs.writeFileSync(COMMIT_EDITMSG_GIT_TMP_PATH, commitMessage); 29 | options.cwd = TMP_PATH; 30 | break; 31 | } 32 | case 'commit text argument': { 33 | args.push(commitMessage); 34 | break; 35 | } 36 | case 'commit file argument': { 37 | fs.writeFileSync(GITGUI_EDITMSG_GIT_TMP_PATH, commitMessage); 38 | options.cwd = TMP_PATH; 39 | args.push('GITGUI_EDITMSG'); 40 | break; 41 | } 42 | } 43 | 44 | return spawnSync(CLI_PATH, args, options); 45 | } 46 | 47 | describe('cli', function() { 48 | beforeEach(function () { 49 | rimraf.sync(GIT_TMP_PATH); 50 | mkdirp.sync(GIT_TMP_PATH); 51 | mkdirp.sync(LOGS_GIT_TMP_PATH); 52 | }); 53 | 54 | describe('all cli sources have the same behavior', function () { 55 | cliSources.forEach(function (cliSource) { 56 | describe(cliSource, function () { 57 | describe('when the commit message is valid', function () { 58 | it('should not print anything into output', function () { 59 | var commitMessage = 'chore: This a valid commit message'; 60 | var result = executeCliBySource(cliSource, commitMessage); 61 | expect(result.stdout.toString()).to.eql(''); 62 | expect(result.stderr.toString()).to.eql(''); 63 | expect(result.status).to.eql(0); 64 | }); 65 | }); 66 | 67 | // only check for COMMIT_EDITMSG because if the other cases are empty 68 | // then they will fallback to COMMIT_EDITMSG anyway 69 | if (cliSource === 'COMMIT_EDITMSG') { 70 | describe('when the commit message is empty', function () { 71 | it('should print into output the commit message is invalid', function () { 72 | var commitMessage = ''; 73 | var result = executeCliBySource(cliSource, commitMessage); 74 | expect(result.stdout.toString()).to.eql('Aborting commit due to empty commit message.\n'); 75 | expect(result.stderr.toString()).to.eql(''); 76 | expect(result.status).to.eql(1); 77 | }); 78 | }); 79 | } 80 | 81 | describe('when the commit message is not following the rules', function () { 82 | it('should print into output the commit message is invalid', function () { 83 | var commitMessage = 'my invalid commit message'; 84 | var result = executeCliBySource(cliSource, commitMessage); 85 | expect(result.stdout.toString()).to.eql([ 86 | commitMessage + '\n\n', 87 | 'Please fix your commit message (and consider using http://npm.im/commitizen)\n\n' 88 | ].join('')); 89 | expect(result.stderr.toString()).to.eql('INVALID COMMIT MSG: does not match "(): " !\n'); 90 | expect(result.status).to.eql(1); 91 | }); 92 | }); 93 | 94 | describe('when the commit message is using an invalid type', function () { 95 | it('should print into output the commit message is invalid', function () { 96 | var commitMessage = 'patch: my invalid commit message'; 97 | var result = executeCliBySource(cliSource, commitMessage); 98 | expect(result.stdout.toString()).to.eql([ 99 | commitMessage + '\n\n', 100 | 'Please fix your commit message (and consider using http://npm.im/commitizen)\n\n' 101 | ].join('')); 102 | expect(result.stderr.toString()).to.eql([ 103 | 'INVALID COMMIT MSG: "patch" is not allowed type ! ', 104 | 'Valid types are: feat, fix, docs, style, refactor, perf, test, chore, revert, custom\n' 105 | ].join('')); 106 | expect(result.status).to.eql(1); 107 | }); 108 | }); 109 | }); 110 | }); 111 | }); 112 | }); 113 | -------------------------------------------------------------------------------- /test/config.test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var config = require('../lib/config'); 4 | var expect = require('chai').expect; 5 | var sinon = require('sinon'); 6 | var fs = require('fs'); 7 | 8 | function testConfigObject(configObject) { 9 | expect(configObject.helpMessage).to.contain('fix your commit'); 10 | } 11 | 12 | describe('config', function() { 13 | before(function() { 14 | sinon.stub(fs, 'readFileSync', function() { 15 | return JSON.stringify({ 16 | config: { 17 | 'validate-commit-msg': { 18 | helpMessage: 'fix your commit' 19 | } 20 | } 21 | }); 22 | }); 23 | }); 24 | 25 | describe('getPackageConfig', function() { 26 | it('returns the validate-commit-msg config object if it exists', function() { 27 | var configObject = config.getPackageConfig(); 28 | testConfigObject(configObject); 29 | }); 30 | }); 31 | 32 | describe('getRcConfig', function() { 33 | it('returns the config object if it exists', function() { 34 | fs.readFileSync.restore(); 35 | sinon.stub(fs, 'readFileSync', function() { 36 | return JSON.stringify({ 37 | helpMessage: 'fix your commit' 38 | }); 39 | }); 40 | var configObject = config.getRcConfig(); 41 | testConfigObject(configObject); 42 | }); 43 | }); 44 | 45 | describe('getConfig', function() { 46 | it('returns .vcmrc config by default', function() { 47 | var configObject = config.getConfig(); 48 | testConfigObject(configObject); 49 | }); 50 | 51 | it('spec name', function() { 52 | sinon.stub(config, 'getRcConfig', function() { 53 | throw null; 54 | }); 55 | var configObject = config.getConfig(); 56 | testConfigObject(configObject); 57 | config.getRcConfig.restore(); 58 | }); 59 | }); 60 | 61 | describe('getConfigObject', function() { 62 | it('returns config object given filename', function() { 63 | fs.readFileSync.restore(); 64 | sinon.stub(fs, 'readFileSync', function() { 65 | return JSON.stringify({ 66 | helpMessage: 'fix your commit' 67 | }); 68 | }); 69 | var configObject = config.getConfigObject('package.json'); 70 | expect(configObject.helpMessage).to.equal('fix your commit'); 71 | }); 72 | 73 | it('returns null on error', function() { 74 | fs.readFileSync.restore(); 75 | sinon.stub(fs, 'readFileSync', function() { 76 | throw new Error(); 77 | }); 78 | var configObject = config.getConfigObject('package.json'); 79 | expect(configObject).to.equal(null); 80 | }); 81 | }); 82 | 83 | after(function() { 84 | fs.readFileSync.restore(); 85 | }); 86 | }); 87 | -------------------------------------------------------------------------------- /test/getGitFolder.test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var sinon = require('sinon'); 4 | var expect = require('chai').expect; 5 | var fs = require('fs'); 6 | var resolve = require('path').resolve; 7 | var findParentDir = require('find-parent-dir'); 8 | var getGitFolder = require('../lib/getGitFolder'); 9 | 10 | describe('handle .git as folder', function() { 11 | before(function() { 12 | sinon.stub(fs, "existsSync", function() { 13 | return true; 14 | }); 15 | sinon.stub(fs, "lstatSync", function() { 16 | return { 17 | isDirectory: function() { 18 | return true; 19 | } 20 | } 21 | }); 22 | }); 23 | 24 | it('should return ./.git when .git is a directory', function() { 25 | expect(getGitFolder()).to.be.equal(resolve('.git')); 26 | }); 27 | 28 | after(function() { 29 | fs.existsSync.restore(); 30 | fs.lstatSync.restore(); 31 | }); 32 | }); 33 | 34 | describe('handle .git as file', function() { 35 | before(function() { 36 | sinon.stub(fs, "existsSync", function() { 37 | return true; 38 | }); 39 | sinon.stub(fs, "lstatSync", function(location) { 40 | //Ensure that we say ./.git is a file, but ../../actual-folder is folder 41 | return { 42 | isDirectory: function() { 43 | return location != resolve('.git'); 44 | } 45 | } 46 | }); 47 | sinon.stub(fs, 'readFileSync', function() { 48 | return 'gitdir: ../../actual-folder'; 49 | }); 50 | }); 51 | 52 | it('should load gitdir from .git file', function() { 53 | expect(getGitFolder()).to.be.equal(resolve('../../actual-folder')); 54 | }); 55 | 56 | after(function() { 57 | fs.existsSync.restore(); 58 | fs.lstatSync.restore(); 59 | fs.readFileSync.restore(); 60 | }); 61 | }); 62 | 63 | describe('handle .git does not exist', function() { 64 | before(function() { 65 | sinon.stub(findParentDir, 'sync', function() { 66 | return null; 67 | }) 68 | }); 69 | 70 | it('should throw error when ./.git is missing', function() { 71 | expect(getGitFolder).to.throw('Cannot find .git folder'); 72 | }); 73 | 74 | after(function() { 75 | findParentDir.sync.restore(); 76 | }); 77 | }); 78 | 79 | describe('handle .git gitdir: folder does not exist', function() { 80 | before(function() { 81 | sinon.stub(findParentDir, 'sync', function() { 82 | return resolve('.'); 83 | }); 84 | sinon.stub(fs, "existsSync", function(dir) { 85 | return dir == resolve('.git'); 86 | }); 87 | sinon.stub(fs, "lstatSync", function(location) { 88 | //Ensure that we say ./.git is a file, but ../../actual-folder is folder 89 | return { 90 | isDirectory: function() { 91 | return location != resolve('.git'); 92 | } 93 | } 94 | }); 95 | sinon.stub(fs, 'readFileSync', function() { 96 | return 'gitdir: ../../actual-folder'; 97 | }); 98 | }); 99 | 100 | it('should throw error when ./.git is missing', function() { 101 | expect(getGitFolder).to.throw('Cannot find file ../../actual-folder'); 102 | }); 103 | 104 | after(function() { 105 | findParentDir.sync.restore(); 106 | fs.existsSync.restore(); 107 | fs.lstatSync.restore(); 108 | fs.readFileSync.restore(); 109 | }); 110 | }); 111 | -------------------------------------------------------------------------------- /test/validateMessage.test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var expect = require('chai').expect; 4 | var fs = require('fs'); 5 | var sinon = require('sinon'); 6 | var m = require('./../lib/validateMessage'); 7 | var format = require('util').format; 8 | 9 | describe('validate-commit-msg.js', function() { 10 | var originalLog, originalError; 11 | var errors = []; 12 | var logs = []; 13 | var writeFileSyncStub; 14 | 15 | var VALID = true; 16 | var INVALID = false; 17 | 18 | // modify project config for testing 19 | m.config.helpMessage = undefined; 20 | 21 | beforeEach(function() { 22 | errors.length = 0; 23 | logs.length = 0; 24 | originalLog = console.log; 25 | originalError = console.error; 26 | console.error = fakeError; 27 | console.log = fakeLog; 28 | 29 | sinon.spy(console, 'error'); 30 | sinon.spy(console, 'log'); 31 | writeFileSyncStub = sinon.stub(fs, 'writeFileSync'); 32 | 33 | function fakeError() { 34 | var msg = format.apply(null, arguments); 35 | errors.push(msg.replace(/\x1B\[\d+m/g, '')); // uncolor 36 | } 37 | 38 | function fakeLog() { 39 | var msg = format.apply(null, arguments); 40 | logs.push(msg.replace(/\x1B\[\d+m/g, '')); // uncolor 41 | } 42 | }); 43 | 44 | afterEach(function() { 45 | console.log = originalLog; 46 | console.error = originalError; 47 | fs.writeFileSync.restore(); 48 | m.config.autoFix = false; 49 | }); 50 | 51 | describe('validateMessage', function() { 52 | 53 | it('should be valid', function() { 54 | expect(m.validateMessage('chore($controller): something')).to.equal(VALID); 55 | expect(m.validateMessage('chore(*): something')).to.equal(VALID); 56 | expect(m.validateMessage('chore(foo-bar): something')).to.equal(VALID); 57 | expect(m.validateMessage('chore(guide/location): something')).to.equal(VALID); 58 | expect(m.validateMessage('custom(baz): something')).to.equal(VALID); 59 | expect(m.validateMessage('docs($filter): something')).to.equal(VALID); 60 | expect(m.validateMessage('feat($location): something (another thing)')).to.equal(VALID); 61 | expect(m.validateMessage('fix($compile): something')).to.equal(VALID); 62 | expect(m.validateMessage('refactor($httpBackend): something')).to.equal(VALID); 63 | expect(m.validateMessage('revert(foo): something')).to.equal(VALID); 64 | expect(m.validateMessage('revert: feat($location): something')).to.equal(VALID); 65 | expect(m.validateMessage('style($http): something')).to.equal(VALID); 66 | expect(m.validateMessage('test($resource): something')).to.equal(VALID); 67 | expect(m.validateMessage('fix(build): Use of `template` tags')).to.equal(VALID); 68 | 69 | expect(errors).to.deep.equal([]); 70 | expect(logs).to.deep.equal([]); 71 | }); 72 | 73 | it('should resolve types from module', function() { 74 | var typesBackup = m.config.types; 75 | m.config.types = 'conventional-commit-types'; 76 | 77 | expect(m.validateMessage('chore($controller): something')).to.equal(VALID); 78 | expect(m.validateMessage('chore(*): something')).to.equal(VALID); 79 | expect(m.validateMessage('chore(foo-bar): something')).to.equal(VALID); 80 | expect(m.validateMessage('chore(guide/location): something')).to.equal(VALID); 81 | expect(m.validateMessage('docs($filter): something')).to.equal(VALID); 82 | expect(m.validateMessage('feat($location): something (another thing)')).to.equal(VALID); 83 | expect(m.validateMessage('fix($compile): something')).to.equal(VALID); 84 | expect(m.validateMessage('refactor($httpBackend): something')).to.equal(VALID); 85 | expect(m.validateMessage('revert(foo): something')).to.equal(VALID); 86 | expect(m.validateMessage('revert: feat($location): something')).to.equal(VALID); 87 | expect(m.validateMessage('style($http): something')).to.equal(VALID); 88 | expect(m.validateMessage('test($resource): something')).to.equal(VALID); 89 | 90 | expect(errors).to.deep.equal([]); 91 | expect(logs).to.deep.equal([]); 92 | 93 | m.config.types = typesBackup; 94 | }); 95 | 96 | it('should validate 100 characters length', function() { 97 | var msg = 'fix($compile): something super mega extra giga tera long, maybe even longer and longer and longer... '; 98 | 99 | expect(m.validateMessage(msg)).to.equal(INVALID); 100 | expect(errors).to.deep.equal(['INVALID COMMIT MSG: is longer than 100 characters !']); 101 | expect(logs).to.deep.equal([msg]); 102 | }); 103 | 104 | it('should work fine with a bigger body', function() { 105 | var message = [ 106 | 'chore(build): something', 107 | '', // BLANK_LINE 108 | 'Something longer that is more descriptive', 109 | '', // BLANK LINE 110 | 'Closes #14', 111 | 'BREAKING CHANGE: Something is totally broken :-(' 112 | ].join('\n'); 113 | 114 | expect(m.validateMessage(message)).to.equal(VALID); 115 | expect(errors).to.deep.equal([]); 116 | expect(logs).to.deep.equal([]); 117 | }); 118 | 119 | it('should validate "(): " format', function() { 120 | var msg = 'not correct format'; 121 | 122 | expect(m.validateMessage(msg)).to.equal(INVALID); 123 | expect(errors).to.deep.equal(['INVALID COMMIT MSG: does not match "(): " !']); 124 | expect(logs).to.deep.equal([msg]); 125 | }); 126 | 127 | it('should log the helpMessage on invalid commit messages', function() { 128 | var msg = 'invalid message'; 129 | m.config.helpMessage = '\nPlease fix your commit message (and consider using http://npm.im/commitizen)\n'; 130 | expect(m.validateMessage(msg)).to.equal(INVALID); 131 | expect(errors).to.deep.equal(['INVALID COMMIT MSG: does not match "(): " !']); 132 | expect(logs).to.deep.equal([msg, m.config.helpMessage]); 133 | m.config.helpMessage = undefined; 134 | }); 135 | 136 | it('should show the entire body when using the %s placeholder', function() { 137 | var message = [ 138 | 'some header', 139 | '', // BLANK_LINE 140 | 'Elaborated body' 141 | ].join('\n'); 142 | m.config.helpMessage = '%s'; 143 | expect(m.validateMessage(message)).to.equal(INVALID); 144 | expect(logs).to.deep.equal([message]); 145 | }); 146 | 147 | it('should interpolate message into helpMessage', function() { 148 | var msg = 'invalid message'; 149 | m.config.helpMessage = '\nPlease fix your %s\n'; 150 | var res = format(m.config.helpMessage, msg); 151 | expect(m.validateMessage(msg)).to.equal(INVALID); 152 | 153 | m.config.helpMessage = undefined; // reset before failure 154 | expect(errors).to.deep.equal(['INVALID COMMIT MSG: does not match "(): " !']); 155 | expect(logs).to.deep.equal([res]); 156 | }); 157 | 158 | it('should validate type', function() { 159 | var msg = 'weird($filter): something'; 160 | 161 | expect(m.validateMessage(msg)).to.equal(INVALID); 162 | expect(errors[0]).to.equal('INVALID COMMIT MSG: "weird" is not allowed type ! Valid types are: ' + m.config.types.join(', ')); 163 | expect(logs).to.deep.equal([msg]); 164 | }); 165 | 166 | it('should require a scope', function() { 167 | var msg = 'feat: Add new feature'; 168 | 169 | m.config.scope = { 170 | validate: true, 171 | allowed: '*', 172 | required: true 173 | }; 174 | 175 | expect(m.validateMessage(msg)).to.equal(INVALID); 176 | expect(errors[0]).to.equal('INVALID COMMIT MSG: a scope is required !'); 177 | expect(logs).to.deep.equal([msg]); 178 | 179 | m.config.scope = undefined; 180 | }); 181 | 182 | it('should validate scope', function() { 183 | var msg = 'feat(nonexistant): Add new feature'; 184 | 185 | m.config.scope = { 186 | validate: true, 187 | allowed: ['button', 'card'] 188 | }; 189 | 190 | expect(m.validateMessage(msg)).to.equal(INVALID); 191 | expect(errors[0]).to.equal('INVALID COMMIT MSG: "nonexistant" is not an allowed scope ! Valid scope are: ' + m.config.scope.allowed.join(', ')); 192 | expect(logs).to.deep.equal([msg]); 193 | 194 | m.config.scope = undefined; 195 | }); 196 | 197 | it('should only allow a single scope when multiples is off', function() { 198 | var msg = 'feat(button,card): Add new feature'; 199 | 200 | m.config.scope = { 201 | validate: true, 202 | allowed: '*' 203 | }; 204 | 205 | expect(m.validateMessage(msg)).to.equal(INVALID); 206 | expect(errors[0]).to.equal('INVALID COMMIT MSG: only one scope can be provided !'); 207 | expect(logs).to.deep.equal([msg]); 208 | 209 | m.config.scope = undefined; 210 | }); 211 | 212 | it('should catch an invalid scope among many', function() { 213 | var msg = 'feat(button,card,ripple): Add new feature'; 214 | 215 | m.config.scope = { 216 | validate: true, 217 | allowed: ['button', 'card'], 218 | multiple: true 219 | }; 220 | 221 | expect(m.validateMessage(msg)).to.equal(INVALID); 222 | expect(errors[0]).to.equal('INVALID COMMIT MSG: "ripple" is not an allowed scope ! Valid scope are: ' + m.config.scope.allowed.join(', ')); 223 | expect(logs).to.deep.equal([msg]); 224 | 225 | m.config.scope = undefined; 226 | }); 227 | 228 | it('should allow any scope if "*" is defined', function() { 229 | var msg = 'feat(anything): Fixed'; 230 | 231 | m.config.scope = { 232 | validate: true 233 | }; 234 | 235 | expect(m.validateMessage(msg)).to.equal(VALID); 236 | expect(logs).to.deep.equal([]); 237 | 238 | m.config.scope = undefined; 239 | }); 240 | 241 | it('should allow no scope when only validate is set to true', function() { 242 | var msg = 'chore: Publish'; 243 | 244 | m.config.scope = { 245 | validate: true 246 | }; 247 | 248 | expect(m.validateMessage(msg)).to.equal(VALID); 249 | expect(logs).to.deep.equal([]); 250 | 251 | m.config.scope = undefined; 252 | }); 253 | 254 | it('should allow empty scope', function() { 255 | expect(m.validateMessage('fix: blablabla')).to.equal(VALID); 256 | expect(errors).to.deep.equal([]); 257 | expect(logs).to.deep.equal([]); 258 | }); 259 | 260 | it('should allow dot in scope', function() { 261 | expect(m.validateMessage('chore(mocks.$httpBackend): something')).to.equal(VALID); 262 | expect(errors).to.deep.equal([]); 263 | expect(logs).to.deep.equal([]); 264 | }); 265 | 266 | it('should ignore msg prefixed with "WIP "', function() { 267 | expect(m.validateMessage('WIP stuff')).to.equal(VALID); 268 | expect(errors).to.deep.equal([]); 269 | expect(logs).to.not.deep.equal([]); 270 | }); 271 | 272 | it('should allow for empty commits', function() { 273 | expect(m.validateMessage('# this is just a comment')).to.equal(INVALID); 274 | expect(logs).to.deep.equal(['Aborting commit due to empty commit message.']); 275 | }); 276 | 277 | it('should handle undefined message"', function() { 278 | expect(m.validateMessage()).to.equal(INVALID); 279 | }); 280 | 281 | it('should allow semver style commits', function() { 282 | expect(m.validateMessage('v1.0.0-alpha.1')).to.equal(VALID); 283 | }); 284 | 285 | it('should allow fixup! and squash! commits', function() { 286 | expect(m.validateMessage('fixup! fix($compile): something')).to.equal(VALID); 287 | expect(m.validateMessage('squash! fix($compile): something super mega extra giga tera long, maybe even longer and longer and longer...')).to.equal(VALID); 288 | }); 289 | 290 | it('should handle merge commits', function() { 291 | expect(m.validateMessage('Merge branch \'master\' into validate-commit-msg-integration')).to.equal(VALID); 292 | expect(m.validateMessage('Merge branch master into validate-commit-msg-integration')).to.equal(VALID); 293 | expect(m.validateMessage('Merge branch \'master\' into validate-commit_msg-integration')).to.equal(VALID); 294 | expect(m.validateMessage('Merge branch \'master\' of')).to.equal(VALID); 295 | expect(m.validateMessage('Merge remote-tracking branch \'master\' into validate-commit-msg-integration')).to.equal(VALID); 296 | expect(m.validateMessage('Merge something from somewhere to everywhere :)')).to.equal(VALID); 297 | }); 298 | 299 | it('should validate subject against subjectPattern if provided', function() { 300 | var subjectPatternBackup = m.config.subjectPattern; 301 | m.config.subjectPattern = /^A.*Z$/; 302 | 303 | var msg = 'chore(build): A something Z'; 304 | expect(m.validateMessage(msg)).to.equal(VALID); 305 | 306 | msg = 'chore(build): something'; 307 | expect(m.validateMessage(msg)).to.equal(INVALID); 308 | 309 | expect(errors).to.deep.equal(['INVALID COMMIT MSG: subject does not match subject pattern!']); 310 | expect(logs).to.deep.equal([msg]); 311 | 312 | m.config.subjectPattern = subjectPatternBackup; 313 | }); 314 | 315 | it('should lowercase type when autoFix is true and make it valid', function() { 316 | m.config.autoFix = true; 317 | var msg = 'Chore(build): A something Z'; 318 | expect(m.validateMessage(msg, 'file')).to.equal(VALID); 319 | }); 320 | 321 | it('should show invalid when autoFix is false and type starts with capital letter', function() { 322 | var msg = 'Chore(build): A something Z'; 323 | expect(m.validateMessage(msg)).to.equal(INVALID); 324 | }); 325 | 326 | it('should update the file provided when autoFix is true and there are changes', function() { 327 | m.config.autoFix = true; 328 | var msg = 'Chore(build): A something Z'; 329 | var msgValid = 'chore(build): a something Z'; 330 | m.validateMessage(msg, 'file'); 331 | expect(writeFileSyncStub.calledWith('file', msgValid)).to.equal(VALID); 332 | }); 333 | 334 | it('should not update the file provided when autoFix is true and there are no changes', function() { 335 | m.config.autoFix = true; 336 | var msg = 'chore(build): a something Z'; 337 | m.validateMessage(msg, 'file'); 338 | expect(writeFileSyncStub.called).to.equal(INVALID); 339 | }); 340 | }); 341 | 342 | }); 343 | -------------------------------------------------------------------------------- /wallaby.config.js: -------------------------------------------------------------------------------- 1 | module.exports = function() { 2 | return { 3 | files: ['lib/**/*.js', 'package.json', '.vcmrc'], 4 | tests: ['test/**/*.js'], 5 | env: { 6 | type: 'node' 7 | } 8 | }; 9 | }; 10 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@semantic-release/commit-analyzer@^2.0.0": 6 | version "2.0.0" 7 | resolved "https://registry.yarnpkg.com/@semantic-release/commit-analyzer/-/commit-analyzer-2.0.0.tgz#924d1e2c30167c6a472bed9f66ee8f8e077489b2" 8 | dependencies: 9 | conventional-changelog "0.0.17" 10 | 11 | "@semantic-release/condition-travis@^5.0.2": 12 | version "5.0.2" 13 | resolved "https://registry.yarnpkg.com/@semantic-release/condition-travis/-/condition-travis-5.0.2.tgz#f4bb777a6c6db5565d70754a9b629233bd4a6597" 14 | dependencies: 15 | "@semantic-release/error" "^1.0.0" 16 | semver "^5.0.3" 17 | travis-deploy-once "1.0.0-node-0.10-support" 18 | 19 | "@semantic-release/error@^1.0.0": 20 | version "1.0.0" 21 | resolved "https://registry.yarnpkg.com/@semantic-release/error/-/error-1.0.0.tgz#bb8f8eeedd5c7f8c46f96b37ef39e1b8c376c1cc" 22 | 23 | "@semantic-release/last-release-npm@^1.2.1": 24 | version "1.2.1" 25 | resolved "https://registry.yarnpkg.com/@semantic-release/last-release-npm/-/last-release-npm-1.2.1.tgz#ff748142ecf15354b833a86ba18205f7fce594ee" 26 | dependencies: 27 | "@semantic-release/error" "^1.0.0" 28 | npm-registry-client "^7.0.1" 29 | npmlog "^1.2.1" 30 | 31 | "@semantic-release/release-notes-generator@^2.0.0": 32 | version "2.0.0" 33 | resolved "https://registry.yarnpkg.com/@semantic-release/release-notes-generator/-/release-notes-generator-2.0.0.tgz#7c5da65689466d536a53fdfa9f4d62a3bd13c16e" 34 | dependencies: 35 | conventional-changelog "0.0.17" 36 | github-url-from-git "^1.4.0" 37 | 38 | abbrev@1, abbrev@1.0.x: 39 | version "1.0.9" 40 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 41 | 42 | acorn@^3.1.0: 43 | version "3.3.0" 44 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 45 | 46 | agent-base@2: 47 | version "2.0.1" 48 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-2.0.1.tgz#bd8f9e86a8eb221fffa07bd14befd55df142815e" 49 | dependencies: 50 | extend "~3.0.0" 51 | semver "~5.0.1" 52 | 53 | align-text@^0.1.1, align-text@^0.1.3: 54 | version "0.1.4" 55 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 56 | dependencies: 57 | kind-of "^3.0.2" 58 | longest "^1.0.1" 59 | repeat-string "^1.5.2" 60 | 61 | all-contributors-cli@3.0.7: 62 | version "3.0.7" 63 | resolved "https://registry.yarnpkg.com/all-contributors-cli/-/all-contributors-cli-3.0.7.tgz#8c1b791e744893c0a254ee6793776eaa1bdf13cc" 64 | dependencies: 65 | async "^2.0.0-rc.1" 66 | inquirer "^0.12.0" 67 | lodash "^4.11.2" 68 | request "^2.72.0" 69 | yargs "^4.7.0" 70 | 71 | alter@~0.2.0: 72 | version "0.2.0" 73 | resolved "https://registry.yarnpkg.com/alter/-/alter-0.2.0.tgz#c7588808617572034aae62480af26b1d4d1cb3cd" 74 | dependencies: 75 | stable "~0.1.3" 76 | 77 | amdefine@>=0.0.4: 78 | version "1.0.1" 79 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 80 | 81 | ansi-escapes@^1.1.0: 82 | version "1.4.0" 83 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 84 | 85 | ansi-regex@^2.0.0: 86 | version "2.1.1" 87 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 88 | 89 | ansi-styles@^2.1.0: 90 | version "2.2.1" 91 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 92 | 93 | ansi@^0.3.0, ansi@~0.3.0: 94 | version "0.3.1" 95 | resolved "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz#0c42d4fb17160d5a9af1e484bace1c66922c1b21" 96 | 97 | any-shell-escape@^0.1.1: 98 | version "0.1.1" 99 | resolved "https://registry.yarnpkg.com/any-shell-escape/-/any-shell-escape-0.1.1.tgz#d55ab972244c71a9a5e1ab0879f30bf110806959" 100 | 101 | anymatch@^1.3.0: 102 | version "1.3.0" 103 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 104 | dependencies: 105 | arrify "^1.0.0" 106 | micromatch "^2.1.5" 107 | 108 | aproba@^1.0.3: 109 | version "1.0.4" 110 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 111 | 112 | archy@^1.0.0: 113 | version "1.0.0" 114 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 115 | 116 | are-we-there-yet@~1.0.0: 117 | version "1.0.6" 118 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.0.6.tgz#a2d28c93102aa6cc96245a26cb954de06ec53f0c" 119 | dependencies: 120 | delegates "^1.0.0" 121 | readable-stream "^2.0.0 || ^1.1.13" 122 | 123 | are-we-there-yet@~1.1.2: 124 | version "1.1.2" 125 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 126 | dependencies: 127 | delegates "^1.0.0" 128 | readable-stream "^2.0.0 || ^1.1.13" 129 | 130 | argparse@^1.0.7: 131 | version "1.0.9" 132 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 133 | dependencies: 134 | sprintf-js "~1.0.2" 135 | 136 | arr-diff@^2.0.0: 137 | version "2.0.0" 138 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 139 | dependencies: 140 | arr-flatten "^1.0.1" 141 | 142 | arr-flatten@^1.0.1: 143 | version "1.0.1" 144 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 145 | 146 | array-differ@^1.0.0: 147 | version "1.0.0" 148 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 149 | 150 | array-find-index@^1.0.1: 151 | version "1.0.2" 152 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 153 | 154 | array-uniq@^1.0.2: 155 | version "1.0.3" 156 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 157 | 158 | array-unique@^0.2.1: 159 | version "0.2.1" 160 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 161 | 162 | arrify@^1.0.0: 163 | version "1.0.1" 164 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 165 | 166 | asap@^2.0.0: 167 | version "2.0.5" 168 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 169 | 170 | asn1@0.1.11: 171 | version "0.1.11" 172 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.1.11.tgz#559be18376d08a4ec4dbe80877d27818639b2df7" 173 | 174 | asn1@~0.2.3: 175 | version "0.2.3" 176 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 177 | 178 | assert-plus@^0.1.5: 179 | version "0.1.5" 180 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.1.5.tgz#ee74009413002d84cec7219c6ac811812e723160" 181 | 182 | assert-plus@^0.2.0: 183 | version "0.2.0" 184 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 185 | 186 | assert-plus@^1.0.0: 187 | version "1.0.0" 188 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 189 | 190 | assertion-error@^1.0.1: 191 | version "1.0.2" 192 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 193 | 194 | ast-traverse@~0.1.1: 195 | version "0.1.1" 196 | resolved "https://registry.yarnpkg.com/ast-traverse/-/ast-traverse-0.1.1.tgz#69cf2b8386f19dcda1bb1e05d68fe359d8897de6" 197 | 198 | ast-types@0.8.12: 199 | version "0.8.12" 200 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.8.12.tgz#a0d90e4351bb887716c83fd637ebf818af4adfcc" 201 | 202 | ast-types@0.8.15: 203 | version "0.8.15" 204 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.8.15.tgz#8eef0827f04dff0ec8857ba925abe3fea6194e52" 205 | 206 | ast-types@0.9.4: 207 | version "0.9.4" 208 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.9.4.tgz#410d1f81890aeb8e0a38621558ba5869ae53c91b" 209 | 210 | async-each@^1.0.0: 211 | version "1.0.1" 212 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 213 | 214 | async@1.x, async@^1.4.0: 215 | version "1.5.2" 216 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 217 | 218 | async@^2.0.0-rc.1, async@^2.0.1: 219 | version "2.1.4" 220 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.4.tgz#2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4" 221 | dependencies: 222 | lodash "^4.14.0" 223 | 224 | async@~0.2.6: 225 | version "0.2.10" 226 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 227 | 228 | async@~0.9.0: 229 | version "0.9.2" 230 | resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" 231 | 232 | asynckit@^0.4.0: 233 | version "0.4.0" 234 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 235 | 236 | aws-sign2@~0.5.0: 237 | version "0.5.0" 238 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.5.0.tgz#c57103f7a17fc037f02d7c2e64b602ea223f7d63" 239 | 240 | aws-sign2@~0.6.0: 241 | version "0.6.0" 242 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 243 | 244 | aws4@^1.2.1: 245 | version "1.5.0" 246 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 247 | 248 | babel-core@^5.6.21: 249 | version "5.8.38" 250 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-5.8.38.tgz#1fcaee79d7e61b750b00b8e54f6dfc9d0af86558" 251 | dependencies: 252 | babel-plugin-constant-folding "^1.0.1" 253 | babel-plugin-dead-code-elimination "^1.0.2" 254 | babel-plugin-eval "^1.0.1" 255 | babel-plugin-inline-environment-variables "^1.0.1" 256 | babel-plugin-jscript "^1.0.4" 257 | babel-plugin-member-expression-literals "^1.0.1" 258 | babel-plugin-property-literals "^1.0.1" 259 | babel-plugin-proto-to-assign "^1.0.3" 260 | babel-plugin-react-constant-elements "^1.0.3" 261 | babel-plugin-react-display-name "^1.0.3" 262 | babel-plugin-remove-console "^1.0.1" 263 | babel-plugin-remove-debugger "^1.0.1" 264 | babel-plugin-runtime "^1.0.7" 265 | babel-plugin-undeclared-variables-check "^1.0.2" 266 | babel-plugin-undefined-to-void "^1.1.6" 267 | babylon "^5.8.38" 268 | bluebird "^2.9.33" 269 | chalk "^1.0.0" 270 | convert-source-map "^1.1.0" 271 | core-js "^1.0.0" 272 | debug "^2.1.1" 273 | detect-indent "^3.0.0" 274 | esutils "^2.0.0" 275 | fs-readdir-recursive "^0.1.0" 276 | globals "^6.4.0" 277 | home-or-tmp "^1.0.0" 278 | is-integer "^1.0.4" 279 | js-tokens "1.0.1" 280 | json5 "^0.4.0" 281 | lodash "^3.10.0" 282 | minimatch "^2.0.3" 283 | output-file-sync "^1.1.0" 284 | path-exists "^1.0.0" 285 | path-is-absolute "^1.0.0" 286 | private "^0.1.6" 287 | regenerator "0.8.40" 288 | regexpu "^1.3.0" 289 | repeating "^1.1.2" 290 | resolve "^1.1.6" 291 | shebang-regex "^1.0.0" 292 | slash "^1.0.0" 293 | source-map "^0.5.0" 294 | source-map-support "^0.2.10" 295 | to-fast-properties "^1.0.0" 296 | trim-right "^1.0.0" 297 | try-resolve "^1.0.0" 298 | 299 | babel-plugin-constant-folding@^1.0.1: 300 | version "1.0.1" 301 | resolved "https://registry.yarnpkg.com/babel-plugin-constant-folding/-/babel-plugin-constant-folding-1.0.1.tgz#8361d364c98e449c3692bdba51eff0844290aa8e" 302 | 303 | babel-plugin-dead-code-elimination@^1.0.2: 304 | version "1.0.2" 305 | resolved "https://registry.yarnpkg.com/babel-plugin-dead-code-elimination/-/babel-plugin-dead-code-elimination-1.0.2.tgz#5f7c451274dcd7cccdbfbb3e0b85dd28121f0f65" 306 | 307 | babel-plugin-eval@^1.0.1: 308 | version "1.0.1" 309 | resolved "https://registry.yarnpkg.com/babel-plugin-eval/-/babel-plugin-eval-1.0.1.tgz#a2faed25ce6be69ade4bfec263f70169195950da" 310 | 311 | babel-plugin-inline-environment-variables@^1.0.1: 312 | version "1.0.1" 313 | resolved "https://registry.yarnpkg.com/babel-plugin-inline-environment-variables/-/babel-plugin-inline-environment-variables-1.0.1.tgz#1f58ce91207ad6a826a8bf645fafe68ff5fe3ffe" 314 | 315 | babel-plugin-jscript@^1.0.4: 316 | version "1.0.4" 317 | resolved "https://registry.yarnpkg.com/babel-plugin-jscript/-/babel-plugin-jscript-1.0.4.tgz#8f342c38276e87a47d5fa0a8bd3d5eb6ccad8fcc" 318 | 319 | babel-plugin-member-expression-literals@^1.0.1: 320 | version "1.0.1" 321 | resolved "https://registry.yarnpkg.com/babel-plugin-member-expression-literals/-/babel-plugin-member-expression-literals-1.0.1.tgz#cc5edb0faa8dc927170e74d6d1c02440021624d3" 322 | 323 | babel-plugin-property-literals@^1.0.1: 324 | version "1.0.1" 325 | resolved "https://registry.yarnpkg.com/babel-plugin-property-literals/-/babel-plugin-property-literals-1.0.1.tgz#0252301900192980b1c118efea48ce93aab83336" 326 | 327 | babel-plugin-proto-to-assign@^1.0.3: 328 | version "1.0.4" 329 | resolved "https://registry.yarnpkg.com/babel-plugin-proto-to-assign/-/babel-plugin-proto-to-assign-1.0.4.tgz#c49e7afd02f577bc4da05ea2df002250cf7cd123" 330 | dependencies: 331 | lodash "^3.9.3" 332 | 333 | babel-plugin-react-constant-elements@^1.0.3: 334 | version "1.0.3" 335 | resolved "https://registry.yarnpkg.com/babel-plugin-react-constant-elements/-/babel-plugin-react-constant-elements-1.0.3.tgz#946736e8378429cbc349dcff62f51c143b34e35a" 336 | 337 | babel-plugin-react-display-name@^1.0.3: 338 | version "1.0.3" 339 | resolved "https://registry.yarnpkg.com/babel-plugin-react-display-name/-/babel-plugin-react-display-name-1.0.3.tgz#754fe38926e8424a4e7b15ab6ea6139dee0514fc" 340 | 341 | babel-plugin-remove-console@^1.0.1: 342 | version "1.0.1" 343 | resolved "https://registry.yarnpkg.com/babel-plugin-remove-console/-/babel-plugin-remove-console-1.0.1.tgz#d8f24556c3a05005d42aaaafd27787f53ff013a7" 344 | 345 | babel-plugin-remove-debugger@^1.0.1: 346 | version "1.0.1" 347 | resolved "https://registry.yarnpkg.com/babel-plugin-remove-debugger/-/babel-plugin-remove-debugger-1.0.1.tgz#fd2ea3cd61a428ad1f3b9c89882ff4293e8c14c7" 348 | 349 | babel-plugin-runtime@^1.0.7: 350 | version "1.0.7" 351 | resolved "https://registry.yarnpkg.com/babel-plugin-runtime/-/babel-plugin-runtime-1.0.7.tgz#bf7c7d966dd56ecd5c17fa1cb253c9acb7e54aaf" 352 | 353 | babel-plugin-undeclared-variables-check@^1.0.2: 354 | version "1.0.2" 355 | resolved "https://registry.yarnpkg.com/babel-plugin-undeclared-variables-check/-/babel-plugin-undeclared-variables-check-1.0.2.tgz#5cf1aa539d813ff64e99641290af620965f65dee" 356 | dependencies: 357 | leven "^1.0.2" 358 | 359 | babel-plugin-undefined-to-void@^1.1.6: 360 | version "1.1.6" 361 | resolved "https://registry.yarnpkg.com/babel-plugin-undefined-to-void/-/babel-plugin-undefined-to-void-1.1.6.tgz#7f578ef8b78dfae6003385d8417a61eda06e2f81" 362 | 363 | babel-polyfill@^6.16.0: 364 | version "6.22.0" 365 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.22.0.tgz#1ac99ebdcc6ba4db1e2618c387b2084a82154a3b" 366 | dependencies: 367 | babel-runtime "^6.22.0" 368 | core-js "^2.4.0" 369 | regenerator-runtime "^0.10.0" 370 | 371 | babel-runtime@^6.22.0: 372 | version "6.22.0" 373 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.22.0.tgz#1cf8b4ac67c77a4ddb0db2ae1f74de52ac4ca611" 374 | dependencies: 375 | core-js "^2.4.0" 376 | regenerator-runtime "^0.10.0" 377 | 378 | babel@5.8.34: 379 | version "5.8.34" 380 | resolved "https://registry.yarnpkg.com/babel/-/babel-5.8.34.tgz#db37ce691a04d5ed3d0be4443599520bd822d5b3" 381 | dependencies: 382 | babel-core "^5.6.21" 383 | chokidar "^1.0.0" 384 | commander "^2.6.0" 385 | convert-source-map "^1.1.0" 386 | fs-readdir-recursive "^0.1.0" 387 | glob "^5.0.5" 388 | lodash "^3.2.0" 389 | output-file-sync "^1.1.0" 390 | path-exists "^1.0.0" 391 | path-is-absolute "^1.0.0" 392 | slash "^1.0.0" 393 | source-map "^0.5.0" 394 | 395 | babylon@^5.8.38: 396 | version "5.8.38" 397 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-5.8.38.tgz#ec9b120b11bf6ccd4173a18bf217e60b79859ffd" 398 | 399 | balanced-match@^0.4.1: 400 | version "0.4.2" 401 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 402 | 403 | bcrypt-pbkdf@^1.0.0: 404 | version "1.0.0" 405 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 406 | dependencies: 407 | tweetnacl "^0.14.3" 408 | 409 | beeper@^1.0.0: 410 | version "1.1.1" 411 | resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz#e6d5ea8c5dad001304a70b22638447f69cb2f809" 412 | 413 | binary-extensions@^1.0.0: 414 | version "1.8.0" 415 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 416 | 417 | bl@~0.9.0: 418 | version "0.9.5" 419 | resolved "https://registry.yarnpkg.com/bl/-/bl-0.9.5.tgz#c06b797af085ea00bc527afc8efcf11de2232054" 420 | dependencies: 421 | readable-stream "~1.0.26" 422 | 423 | bl@~1.1.2: 424 | version "1.1.2" 425 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.1.2.tgz#fdca871a99713aa00d19e3bbba41c44787a65398" 426 | dependencies: 427 | readable-stream "~2.0.5" 428 | 429 | block-stream@*: 430 | version "0.0.9" 431 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 432 | dependencies: 433 | inherits "~2.0.0" 434 | 435 | bluebird@^2.9.33: 436 | version "2.11.0" 437 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.11.0.tgz#534b9033c022c9579c56ba3b3e5a5caafbb650e1" 438 | 439 | bluebird@^3.4.1, bluebird@^3.4.6: 440 | version "3.4.7" 441 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.4.7.tgz#f72d760be09b7f76d08ed8fae98b289a8d05fab3" 442 | 443 | boom@0.4.x: 444 | version "0.4.2" 445 | resolved "https://registry.yarnpkg.com/boom/-/boom-0.4.2.tgz#7a636e9ded4efcefb19cef4947a3c67dfaee911b" 446 | dependencies: 447 | hoek "0.9.x" 448 | 449 | boom@2.x.x: 450 | version "2.10.1" 451 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 452 | dependencies: 453 | hoek "2.x.x" 454 | 455 | brace-expansion@^1.0.0: 456 | version "1.1.6" 457 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 458 | dependencies: 459 | balanced-match "^0.4.1" 460 | concat-map "0.0.1" 461 | 462 | braces@^1.8.2: 463 | version "1.8.5" 464 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 465 | dependencies: 466 | expand-range "^1.8.1" 467 | preserve "^0.2.0" 468 | repeat-element "^1.1.2" 469 | 470 | breakable@~1.0.0: 471 | version "1.0.0" 472 | resolved "https://registry.yarnpkg.com/breakable/-/breakable-1.0.0.tgz#784a797915a38ead27bad456b5572cb4bbaa78c1" 473 | 474 | buffer-shims@^1.0.0: 475 | version "1.0.0" 476 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 477 | 478 | builtin-modules@^1.0.0: 479 | version "1.1.1" 480 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 481 | 482 | camelcase-keys@^2.0.0: 483 | version "2.1.0" 484 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 485 | dependencies: 486 | camelcase "^2.0.0" 487 | map-obj "^1.0.0" 488 | 489 | camelcase@^1.0.2, camelcase@^1.2.1: 490 | version "1.2.1" 491 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 492 | 493 | camelcase@^2.0.0: 494 | version "2.1.1" 495 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 496 | 497 | camelcase@^3.0.0: 498 | version "3.0.0" 499 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 500 | 501 | caseless@~0.11.0: 502 | version "0.11.0" 503 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 504 | 505 | caseless@~0.6.0: 506 | version "0.6.0" 507 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.6.0.tgz#8167c1ab8397fb5bb95f96d28e5a81c50f247ac4" 508 | 509 | center-align@^0.1.1: 510 | version "0.1.3" 511 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 512 | dependencies: 513 | align-text "^0.1.3" 514 | lazy-cache "^1.0.3" 515 | 516 | chai@3.4.1: 517 | version "3.4.1" 518 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.4.1.tgz#330ae2f819124c26182036fa5e43a88ea4e1bd85" 519 | dependencies: 520 | assertion-error "^1.0.1" 521 | deep-eql "^0.1.3" 522 | type-detect "^1.0.0" 523 | 524 | chalk@1.1.1, chalk@^1.0.0, chalk@^1.1.1: 525 | version "1.1.1" 526 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.1.tgz#509afb67066e7499f7eb3535c77445772ae2d019" 527 | dependencies: 528 | ansi-styles "^2.1.0" 529 | escape-string-regexp "^1.0.2" 530 | has-ansi "^2.0.0" 531 | strip-ansi "^3.0.0" 532 | supports-color "^2.0.0" 533 | 534 | chokidar@^1.0.0, chokidar@^1.2.0: 535 | version "1.6.1" 536 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 537 | dependencies: 538 | anymatch "^1.3.0" 539 | async-each "^1.0.0" 540 | glob-parent "^2.0.0" 541 | inherits "^2.0.1" 542 | is-binary-path "^1.0.0" 543 | is-glob "^2.0.0" 544 | path-is-absolute "^1.0.0" 545 | readdirp "^2.0.0" 546 | optionalDependencies: 547 | fsevents "^1.0.0" 548 | 549 | ci-info@^1.0.0: 550 | version "1.0.0" 551 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 552 | 553 | cli-cursor@^1.0.1: 554 | version "1.0.2" 555 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 556 | dependencies: 557 | restore-cursor "^1.0.1" 558 | 559 | cli-width@^1.0.1: 560 | version "1.1.1" 561 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-1.1.1.tgz#a4d293ef67ebb7b88d4a4d42c0ccf00c4d1e366d" 562 | 563 | cli-width@^2.0.0: 564 | version "2.1.0" 565 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 566 | 567 | cliui@^2.1.0: 568 | version "2.1.0" 569 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 570 | dependencies: 571 | center-align "^0.1.1" 572 | right-align "^0.1.1" 573 | wordwrap "0.0.2" 574 | 575 | cliui@^3.2.0: 576 | version "3.2.0" 577 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 578 | dependencies: 579 | string-width "^1.0.1" 580 | strip-ansi "^3.0.1" 581 | wrap-ansi "^2.0.0" 582 | 583 | clone-stats@^0.0.1: 584 | version "0.0.1" 585 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" 586 | 587 | clone@^0.2.0: 588 | version "0.2.0" 589 | resolved "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f" 590 | 591 | clone@^1.0.0, clone@^1.0.2: 592 | version "1.0.2" 593 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 594 | 595 | code-point-at@^1.0.0: 596 | version "1.1.0" 597 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 598 | 599 | codecov.io@0.1.6: 600 | version "0.1.6" 601 | resolved "https://registry.yarnpkg.com/codecov.io/-/codecov.io-0.1.6.tgz#59dfd02da1ff31c2fb2b952ad8ad16fd3781b728" 602 | dependencies: 603 | request "2.42.0" 604 | urlgrey "0.4.0" 605 | 606 | colors@~0.6.0-1: 607 | version "0.6.2" 608 | resolved "https://registry.yarnpkg.com/colors/-/colors-0.6.2.tgz#2423fe6678ac0c5dae8852e5d0e5be08c997abcc" 609 | 610 | combined-stream@^1.0.5, combined-stream@~1.0.5: 611 | version "1.0.5" 612 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 613 | dependencies: 614 | delayed-stream "~1.0.0" 615 | 616 | combined-stream@~0.0.4: 617 | version "0.0.7" 618 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-0.0.7.tgz#0137e657baa5a7541c57ac37ac5fc07d73b4dc1f" 619 | dependencies: 620 | delayed-stream "0.0.5" 621 | 622 | commander@0.6.1: 623 | version "0.6.1" 624 | resolved "https://registry.yarnpkg.com/commander/-/commander-0.6.1.tgz#fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06" 625 | 626 | commander@2.3.0: 627 | version "2.3.0" 628 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.3.0.tgz#fd430e889832ec353b9acd1de217c11cb3eef873" 629 | 630 | commander@2.9.0, commander@^2.5.0, commander@^2.6.0, commander@^2.9.0: 631 | version "2.9.0" 632 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 633 | dependencies: 634 | graceful-readlink ">= 1.0.0" 635 | 636 | commander@~2.1.0: 637 | version "2.1.0" 638 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.1.0.tgz#d121bbae860d9992a3d517ba96f56588e47c6781" 639 | 640 | commitizen@2.5.0: 641 | version "2.5.0" 642 | resolved "https://registry.yarnpkg.com/commitizen/-/commitizen-2.5.0.tgz#18cb57b5d115571ff1f8d983ee1b3e88dd54a32f" 643 | dependencies: 644 | babel "5.8.34" 645 | chalk "1.1.1" 646 | cz-conventional-changelog "1.1.4" 647 | dedent "0.6.0" 648 | detect-indent "4.0.0" 649 | find-node-modules "1.0.1" 650 | glob "6.0.1" 651 | gulp "3.9.0" 652 | gulp-git "1.6.0" 653 | inquirer "0.11.0" 654 | lodash "3.10.1" 655 | minimist "1.2.0" 656 | node-uuid "1.4.7" 657 | nodemon "1.8.1" 658 | rimraf "2.4.3" 659 | semver "5.0.3" 660 | shelljs "0.5.3" 661 | strip-json-comments "2.0.0" 662 | 663 | commoner@~0.10.3: 664 | version "0.10.8" 665 | resolved "https://registry.yarnpkg.com/commoner/-/commoner-0.10.8.tgz#34fc3672cd24393e8bb47e70caa0293811f4f2c5" 666 | dependencies: 667 | commander "^2.5.0" 668 | detective "^4.3.1" 669 | glob "^5.0.15" 670 | graceful-fs "^4.1.2" 671 | iconv-lite "^0.4.5" 672 | mkdirp "^0.5.0" 673 | private "^0.1.6" 674 | q "^1.1.2" 675 | recast "^0.11.17" 676 | 677 | concat-map@0.0.1: 678 | version "0.0.1" 679 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 680 | 681 | concat-stream@^1.5.2: 682 | version "1.6.0" 683 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 684 | dependencies: 685 | inherits "^2.0.3" 686 | readable-stream "^2.2.2" 687 | typedarray "^0.0.6" 688 | 689 | config-chain@~1.1.8: 690 | version "1.1.11" 691 | resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.11.tgz#aba09747dfbe4c3e70e766a6e41586e1859fc6f2" 692 | dependencies: 693 | ini "^1.3.4" 694 | proto-list "~1.2.1" 695 | 696 | configstore@^1.0.0: 697 | version "1.4.0" 698 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-1.4.0.tgz#c35781d0501d268c25c54b8b17f6240e8a4fb021" 699 | dependencies: 700 | graceful-fs "^4.1.2" 701 | mkdirp "^0.5.0" 702 | object-assign "^4.0.1" 703 | os-tmpdir "^1.0.0" 704 | osenv "^0.1.0" 705 | uuid "^2.0.1" 706 | write-file-atomic "^1.1.2" 707 | xdg-basedir "^2.0.0" 708 | 709 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 710 | version "1.1.0" 711 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 712 | 713 | conventional-changelog@0.0.17: 714 | version "0.0.17" 715 | resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-0.0.17.tgz#5e0216600f4686190f0c82efbb0b3dd11b49ce34" 716 | dependencies: 717 | dateformat "^1.0.11" 718 | event-stream "^3.3.0" 719 | github-url-from-git "^1.4.0" 720 | lodash "^3.6.0" 721 | normalize-package-data "^1.0.3" 722 | 723 | conventional-commit-types@^2.0.0: 724 | version "2.1.0" 725 | resolved "https://registry.yarnpkg.com/conventional-commit-types/-/conventional-commit-types-2.1.0.tgz#45d860386c9a2e6537ee91d8a1b61bd0411b3d04" 726 | 727 | convert-source-map@^1.1.0: 728 | version "1.3.0" 729 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 730 | 731 | core-js@^1.0.0: 732 | version "1.2.7" 733 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 734 | 735 | core-js@^2.4.0: 736 | version "2.4.1" 737 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 738 | 739 | core-util-is@^1.0.1, core-util-is@~1.0.0: 740 | version "1.0.2" 741 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 742 | 743 | cryptiles@0.2.x: 744 | version "0.2.2" 745 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-0.2.2.tgz#ed91ff1f17ad13d3748288594f8a48a0d26f325c" 746 | dependencies: 747 | boom "0.4.x" 748 | 749 | cryptiles@2.x.x: 750 | version "2.0.5" 751 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 752 | dependencies: 753 | boom "2.x.x" 754 | 755 | ctype@0.5.3: 756 | version "0.5.3" 757 | resolved "https://registry.yarnpkg.com/ctype/-/ctype-0.5.3.tgz#82c18c2461f74114ef16c135224ad0b9144ca12f" 758 | 759 | currently-unhandled@^0.4.1: 760 | version "0.4.1" 761 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 762 | dependencies: 763 | array-find-index "^1.0.1" 764 | 765 | cz-conventional-changelog@1.1.4: 766 | version "1.1.4" 767 | resolved "https://registry.yarnpkg.com/cz-conventional-changelog/-/cz-conventional-changelog-1.1.4.tgz#c0e643d419113601c4ebd9b173db9d751fcfdd41" 768 | dependencies: 769 | word-wrap "^1.0.3" 770 | 771 | cz-conventional-changelog@1.1.5: 772 | version "1.1.5" 773 | resolved "https://registry.yarnpkg.com/cz-conventional-changelog/-/cz-conventional-changelog-1.1.5.tgz#0a4d1550c4e2fb6a3aed8f6cd858c21760e119b8" 774 | dependencies: 775 | word-wrap "^1.0.3" 776 | 777 | dashdash@^1.12.0: 778 | version "1.14.1" 779 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 780 | dependencies: 781 | assert-plus "^1.0.0" 782 | 783 | dateformat@^1.0.11: 784 | version "1.0.12" 785 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" 786 | dependencies: 787 | get-stdin "^4.0.1" 788 | meow "^3.3.0" 789 | 790 | dateformat@^2.0.0: 791 | version "2.0.0" 792 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.0.0.tgz#2743e3abb5c3fc2462e527dca445e04e9f4dee17" 793 | 794 | debug@2, debug@2.2.0, debug@^2.1.1, debug@^2.2.0, debug@~2.2.0: 795 | version "2.2.0" 796 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 797 | dependencies: 798 | ms "0.7.1" 799 | 800 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 801 | version "1.2.0" 802 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 803 | 804 | dedent@0.6.0: 805 | version "0.6.0" 806 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.6.0.tgz#0e6da8f0ce52838ef5cec5c8f9396b0c1b64a3cb" 807 | 808 | deep-eql@^0.1.3: 809 | version "0.1.3" 810 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 811 | dependencies: 812 | type-detect "0.1.1" 813 | 814 | deep-equal@~0.1.0: 815 | version "0.1.2" 816 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-0.1.2.tgz#b246c2b80a570a47c11be1d9bd1070ec878b87ce" 817 | 818 | deep-extend@~0.4.0: 819 | version "0.4.1" 820 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 821 | 822 | deep-is@~0.1.2: 823 | version "0.1.3" 824 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 825 | 826 | defaults@^1.0.0: 827 | version "1.0.3" 828 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 829 | dependencies: 830 | clone "^1.0.2" 831 | 832 | defined@^1.0.0: 833 | version "1.0.0" 834 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 835 | 836 | defined@~0.0.0: 837 | version "0.0.0" 838 | resolved "https://registry.yarnpkg.com/defined/-/defined-0.0.0.tgz#f35eea7d705e933baf13b2f03b3f83d921403b3e" 839 | 840 | defs@~1.1.0: 841 | version "1.1.1" 842 | resolved "https://registry.yarnpkg.com/defs/-/defs-1.1.1.tgz#b22609f2c7a11ba7a3db116805c139b1caffa9d2" 843 | dependencies: 844 | alter "~0.2.0" 845 | ast-traverse "~0.1.1" 846 | breakable "~1.0.0" 847 | esprima-fb "~15001.1001.0-dev-harmony-fb" 848 | simple-fmt "~0.1.0" 849 | simple-is "~0.2.0" 850 | stringmap "~0.2.2" 851 | stringset "~0.2.1" 852 | tryor "~0.1.2" 853 | yargs "~3.27.0" 854 | 855 | delayed-stream@0.0.5: 856 | version "0.0.5" 857 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-0.0.5.tgz#d4b1f43a93e8296dfe02694f4680bc37a313c73f" 858 | 859 | delayed-stream@~1.0.0: 860 | version "1.0.0" 861 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 862 | 863 | delegates@^1.0.0: 864 | version "1.0.0" 865 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 866 | 867 | deprecated@^0.0.1: 868 | version "0.0.1" 869 | resolved "https://registry.yarnpkg.com/deprecated/-/deprecated-0.0.1.tgz#f9c9af5464afa1e7a971458a8bdef2aa94d5bb19" 870 | 871 | detect-file@^0.1.0: 872 | version "0.1.0" 873 | resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-0.1.0.tgz#4935dedfd9488648e006b0129566e9386711ea63" 874 | dependencies: 875 | fs-exists-sync "^0.1.0" 876 | 877 | detect-indent@4.0.0: 878 | version "4.0.0" 879 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 880 | dependencies: 881 | repeating "^2.0.0" 882 | 883 | detect-indent@^3.0.0: 884 | version "3.0.1" 885 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-3.0.1.tgz#9dc5e5ddbceef8325764b9451b02bc6d54084f75" 886 | dependencies: 887 | get-stdin "^4.0.1" 888 | minimist "^1.1.0" 889 | repeating "^1.1.0" 890 | 891 | detective@^4.3.1: 892 | version "4.3.2" 893 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.3.2.tgz#77697e2e7947ac3fe7c8e26a6d6f115235afa91c" 894 | dependencies: 895 | acorn "^3.1.0" 896 | defined "^1.0.0" 897 | 898 | dezalgo@^1.0.1: 899 | version "1.0.3" 900 | resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456" 901 | dependencies: 902 | asap "^2.0.0" 903 | wrappy "1" 904 | 905 | diff@1.4.0: 906 | version "1.4.0" 907 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 908 | 909 | duplexer2@0.0.2: 910 | version "0.0.2" 911 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" 912 | dependencies: 913 | readable-stream "~1.1.9" 914 | 915 | duplexer@~0.1.1: 916 | version "0.1.1" 917 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 918 | 919 | duplexify@^3.2.0: 920 | version "3.5.0" 921 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.0.tgz#1aa773002e1578457e9d9d4a50b0ccaaebcbd604" 922 | dependencies: 923 | end-of-stream "1.0.0" 924 | inherits "^2.0.1" 925 | readable-stream "^2.0.0" 926 | stream-shift "^1.0.0" 927 | 928 | ecc-jsbn@~0.1.1: 929 | version "0.1.1" 930 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 931 | dependencies: 932 | jsbn "~0.1.0" 933 | 934 | end-of-stream@1.0.0: 935 | version "1.0.0" 936 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.0.0.tgz#d4596e702734a93e40e9af864319eabd99ff2f0e" 937 | dependencies: 938 | once "~1.3.0" 939 | 940 | end-of-stream@~0.1.5: 941 | version "0.1.5" 942 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-0.1.5.tgz#8e177206c3c80837d85632e8b9359dfe8b2f6eaf" 943 | dependencies: 944 | once "~1.3.0" 945 | 946 | error-ex@^1.2.0: 947 | version "1.3.0" 948 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 949 | dependencies: 950 | is-arrayish "^0.2.1" 951 | 952 | es6-promise@^3.0.2: 953 | version "3.3.1" 954 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" 955 | 956 | escape-string-regexp@1.0.2, escape-string-regexp@^1.0.2: 957 | version "1.0.2" 958 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz#4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1" 959 | 960 | escape-string-regexp@^1.0.5: 961 | version "1.0.5" 962 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 963 | 964 | escodegen@1.7.x: 965 | version "1.7.1" 966 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.7.1.tgz#30ecfcf66ca98dc67cd2fd162abeb6eafa8ce6fc" 967 | dependencies: 968 | esprima "^1.2.2" 969 | estraverse "^1.9.1" 970 | esutils "^2.0.2" 971 | optionator "^0.5.0" 972 | optionalDependencies: 973 | source-map "~0.2.0" 974 | 975 | esprima-fb@~15001.1001.0-dev-harmony-fb: 976 | version "15001.1001.0-dev-harmony-fb" 977 | resolved "https://registry.yarnpkg.com/esprima-fb/-/esprima-fb-15001.1001.0-dev-harmony-fb.tgz#43beb57ec26e8cf237d3dd8b33e42533577f2659" 978 | 979 | esprima@2.7.x, esprima@^2.6.0: 980 | version "2.7.3" 981 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 982 | 983 | esprima@^1.2.2: 984 | version "1.2.5" 985 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.2.5.tgz#0993502feaf668138325756f30f9a51feeec11e9" 986 | 987 | esprima@~3.1.0: 988 | version "3.1.3" 989 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 990 | 991 | estraverse@^1.9.1: 992 | version "1.9.3" 993 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 994 | 995 | esutils@^2.0.0, esutils@^2.0.2: 996 | version "2.0.2" 997 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 998 | 999 | event-stream@^3.3.0, event-stream@~3.3.0: 1000 | version "3.3.4" 1001 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 1002 | dependencies: 1003 | duplexer "~0.1.1" 1004 | from "~0" 1005 | map-stream "~0.1.0" 1006 | pause-stream "0.0.11" 1007 | split "0.3" 1008 | stream-combiner "~0.0.4" 1009 | through "~2.3.1" 1010 | 1011 | exit-hook@^1.0.0: 1012 | version "1.1.1" 1013 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1014 | 1015 | expand-brackets@^0.1.4: 1016 | version "0.1.5" 1017 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1018 | dependencies: 1019 | is-posix-bracket "^0.1.0" 1020 | 1021 | expand-range@^1.8.1: 1022 | version "1.8.2" 1023 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1024 | dependencies: 1025 | fill-range "^2.1.0" 1026 | 1027 | expand-tilde@^1.2.1, expand-tilde@^1.2.2: 1028 | version "1.2.2" 1029 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449" 1030 | dependencies: 1031 | os-homedir "^1.0.1" 1032 | 1033 | extend@3, extend@^3.0.0, extend@~3.0.0: 1034 | version "3.0.0" 1035 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1036 | 1037 | extglob@^0.3.1: 1038 | version "0.3.2" 1039 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1040 | dependencies: 1041 | is-extglob "^1.0.0" 1042 | 1043 | extsprintf@1.0.2: 1044 | version "1.0.2" 1045 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1046 | 1047 | fancy-log@^1.1.0: 1048 | version "1.3.0" 1049 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.0.tgz#45be17d02bb9917d60ccffd4995c999e6c8c9948" 1050 | dependencies: 1051 | chalk "^1.1.1" 1052 | time-stamp "^1.0.0" 1053 | 1054 | fast-levenshtein@~1.0.0: 1055 | version "1.0.7" 1056 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-1.0.7.tgz#0178dcdee023b92905193af0959e8a7639cfdcb9" 1057 | 1058 | figures@^1.3.5: 1059 | version "1.7.0" 1060 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1061 | dependencies: 1062 | escape-string-regexp "^1.0.5" 1063 | object-assign "^4.1.0" 1064 | 1065 | filename-regex@^2.0.0: 1066 | version "2.0.0" 1067 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1068 | 1069 | fileset@0.2.x: 1070 | version "0.2.1" 1071 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-0.2.1.tgz#588ef8973c6623b2a76df465105696b96aac8067" 1072 | dependencies: 1073 | glob "5.x" 1074 | minimatch "2.x" 1075 | 1076 | fill-range@^2.1.0: 1077 | version "2.2.3" 1078 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1079 | dependencies: 1080 | is-number "^2.1.0" 1081 | isobject "^2.0.0" 1082 | randomatic "^1.1.3" 1083 | repeat-element "^1.1.2" 1084 | repeat-string "^1.5.2" 1085 | 1086 | find-index@^0.1.1: 1087 | version "0.1.1" 1088 | resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" 1089 | 1090 | find-node-modules@1.0.1: 1091 | version "1.0.1" 1092 | resolved "https://registry.yarnpkg.com/find-node-modules/-/find-node-modules-1.0.1.tgz#4659628ec5b5e2f12645eae605899ae2ee696959" 1093 | dependencies: 1094 | findup-sync "^0.2.1" 1095 | merge "^1.2.0" 1096 | 1097 | find-parent-dir@^0.3.0: 1098 | version "0.3.0" 1099 | resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" 1100 | 1101 | find-up@^1.0.0: 1102 | version "1.1.2" 1103 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1104 | dependencies: 1105 | path-exists "^2.0.0" 1106 | pinkie-promise "^2.0.0" 1107 | 1108 | findup-sync@^0.2.1: 1109 | version "0.2.1" 1110 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.2.1.tgz#e0a90a450075c49466ee513732057514b81e878c" 1111 | dependencies: 1112 | glob "~4.3.0" 1113 | 1114 | findup-sync@^0.4.2: 1115 | version "0.4.3" 1116 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.4.3.tgz#40043929e7bc60adf0b7f4827c4c6e75a0deca12" 1117 | dependencies: 1118 | detect-file "^0.1.0" 1119 | is-glob "^2.0.1" 1120 | micromatch "^2.3.7" 1121 | resolve-dir "^0.1.0" 1122 | 1123 | findup@0.1.5: 1124 | version "0.1.5" 1125 | resolved "https://registry.yarnpkg.com/findup/-/findup-0.1.5.tgz#8ad929a3393bac627957a7e5de4623b06b0e2ceb" 1126 | dependencies: 1127 | colors "~0.6.0-1" 1128 | commander "~2.1.0" 1129 | 1130 | fined@^1.0.1: 1131 | version "1.0.2" 1132 | resolved "https://registry.yarnpkg.com/fined/-/fined-1.0.2.tgz#5b28424b760d7598960b7ef8480dff8ad3660e97" 1133 | dependencies: 1134 | expand-tilde "^1.2.1" 1135 | lodash.assignwith "^4.0.7" 1136 | lodash.isempty "^4.2.1" 1137 | lodash.isplainobject "^4.0.4" 1138 | lodash.isstring "^4.0.1" 1139 | lodash.pick "^4.2.1" 1140 | parse-filepath "^1.0.1" 1141 | 1142 | first-chunk-stream@^1.0.0: 1143 | version "1.0.0" 1144 | resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" 1145 | 1146 | flagged-respawn@^0.3.2: 1147 | version "0.3.2" 1148 | resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-0.3.2.tgz#ff191eddcd7088a675b2610fffc976be9b8074b5" 1149 | 1150 | follow-redirects@0.0.7: 1151 | version "0.0.7" 1152 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-0.0.7.tgz#34b90bab2a911aa347571da90f22bd36ecd8a919" 1153 | dependencies: 1154 | debug "^2.2.0" 1155 | stream-consume "^0.1.0" 1156 | 1157 | for-in@^0.1.5: 1158 | version "0.1.6" 1159 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1160 | 1161 | for-own@^0.1.4: 1162 | version "0.1.4" 1163 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1164 | dependencies: 1165 | for-in "^0.1.5" 1166 | 1167 | foreachasync@^3.0.0: 1168 | version "3.0.0" 1169 | resolved "https://registry.yarnpkg.com/foreachasync/-/foreachasync-3.0.0.tgz#5502987dc8714be3392097f32e0071c9dee07cf6" 1170 | 1171 | forever-agent@~0.5.0: 1172 | version "0.5.2" 1173 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.5.2.tgz#6d0e09c4921f94a27f63d3b49c5feff1ea4c5130" 1174 | 1175 | forever-agent@~0.6.1: 1176 | version "0.6.1" 1177 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1178 | 1179 | form-data@~0.1.0: 1180 | version "0.1.4" 1181 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-0.1.4.tgz#91abd788aba9702b1aabfa8bc01031a2ac9e3b12" 1182 | dependencies: 1183 | async "~0.9.0" 1184 | combined-stream "~0.0.4" 1185 | mime "~1.2.11" 1186 | 1187 | form-data@~1.0.0-rc4: 1188 | version "1.0.1" 1189 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-1.0.1.tgz#ae315db9a4907fa065502304a66d7733475ee37c" 1190 | dependencies: 1191 | async "^2.0.1" 1192 | combined-stream "^1.0.5" 1193 | mime-types "^2.1.11" 1194 | 1195 | form-data@~2.1.1: 1196 | version "2.1.2" 1197 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1198 | dependencies: 1199 | asynckit "^0.4.0" 1200 | combined-stream "^1.0.5" 1201 | mime-types "^2.1.12" 1202 | 1203 | formatio@1.1.1: 1204 | version "1.1.1" 1205 | resolved "https://registry.yarnpkg.com/formatio/-/formatio-1.1.1.tgz#5ed3ccd636551097383465d996199100e86161e9" 1206 | dependencies: 1207 | samsam "~1.1" 1208 | 1209 | from@~0: 1210 | version "0.1.3" 1211 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.3.tgz#ef63ac2062ac32acf7862e0d40b44b896f22f3bc" 1212 | 1213 | fs-exists-sync@^0.1.0: 1214 | version "0.1.0" 1215 | resolved "http://registry.npmjs.org/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add" 1216 | 1217 | fs-readdir-recursive@^0.1.0: 1218 | version "0.1.2" 1219 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-0.1.2.tgz#315b4fb8c1ca5b8c47defef319d073dad3568059" 1220 | 1221 | fs.realpath@^1.0.0: 1222 | version "1.0.0" 1223 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1224 | 1225 | fsevents@^1.0.0: 1226 | version "1.0.17" 1227 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.17.tgz#8537f3f12272678765b4fd6528c0f1f66f8f4558" 1228 | dependencies: 1229 | nan "^2.3.0" 1230 | node-pre-gyp "^0.6.29" 1231 | 1232 | fstream-ignore@~1.0.5: 1233 | version "1.0.5" 1234 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1235 | dependencies: 1236 | fstream "^1.0.0" 1237 | inherits "2" 1238 | minimatch "^3.0.0" 1239 | 1240 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1241 | version "1.0.10" 1242 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1243 | dependencies: 1244 | graceful-fs "^4.1.2" 1245 | inherits "~2.0.0" 1246 | mkdirp ">=0.5 0" 1247 | rimraf "2" 1248 | 1249 | gauge@~1.2.0: 1250 | version "1.2.7" 1251 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-1.2.7.tgz#e9cec5483d3d4ee0ef44b60a7d99e4935e136d93" 1252 | dependencies: 1253 | ansi "^0.3.0" 1254 | has-unicode "^2.0.0" 1255 | lodash.pad "^4.1.0" 1256 | lodash.padend "^4.1.0" 1257 | lodash.padstart "^4.1.0" 1258 | 1259 | gauge@~2.7.1: 1260 | version "2.7.2" 1261 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.2.tgz#15cecc31b02d05345a5d6b0e171cdb3ad2307774" 1262 | dependencies: 1263 | aproba "^1.0.3" 1264 | console-control-strings "^1.0.0" 1265 | has-unicode "^2.0.0" 1266 | object-assign "^4.1.0" 1267 | signal-exit "^3.0.0" 1268 | string-width "^1.0.1" 1269 | strip-ansi "^3.0.1" 1270 | supports-color "^0.2.0" 1271 | wide-align "^1.1.0" 1272 | 1273 | gaze@^0.5.1: 1274 | version "0.5.2" 1275 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-0.5.2.tgz#40b709537d24d1d45767db5a908689dfe69ac44f" 1276 | dependencies: 1277 | globule "~0.1.0" 1278 | 1279 | generate-function@^2.0.0: 1280 | version "2.0.0" 1281 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1282 | 1283 | generate-object-property@^1.1.0: 1284 | version "1.2.0" 1285 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1286 | dependencies: 1287 | is-property "^1.0.0" 1288 | 1289 | get-caller-file@^1.0.1: 1290 | version "1.0.2" 1291 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1292 | 1293 | get-stdin@^4.0.1: 1294 | version "4.0.1" 1295 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1296 | 1297 | getpass@^0.1.1: 1298 | version "0.1.6" 1299 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1300 | dependencies: 1301 | assert-plus "^1.0.0" 1302 | 1303 | git-head@^1.2.1: 1304 | version "1.18.0" 1305 | resolved "https://registry.yarnpkg.com/git-head/-/git-head-1.18.0.tgz#350e1c51a01ab98fb49971fdba39fe92fcc5cf6b" 1306 | dependencies: 1307 | git-refs "^1.1.3" 1308 | 1309 | git-refs@^1.1.3: 1310 | version "1.1.3" 1311 | resolved "https://registry.yarnpkg.com/git-refs/-/git-refs-1.1.3.tgz#83097cb3a92585c4a4926ec54e2182df9e20e89d" 1312 | dependencies: 1313 | path-object "^2.3.0" 1314 | slash "^1.0.0" 1315 | walk "^2.3.9" 1316 | 1317 | github-url-from-git@^1.3.0, github-url-from-git@^1.4.0: 1318 | version "1.5.0" 1319 | resolved "https://registry.yarnpkg.com/github-url-from-git/-/github-url-from-git-1.5.0.tgz#f985fedcc0a9aa579dc88d7aff068d55cc6251a0" 1320 | 1321 | github-url-from-username-repo@^1.0.0: 1322 | version "1.0.2" 1323 | resolved "https://registry.yarnpkg.com/github-url-from-username-repo/-/github-url-from-username-repo-1.0.2.tgz#7dd79330d2abe69c10c2cef79714c97215791dfa" 1324 | 1325 | github@^8.0.0: 1326 | version "8.1.1" 1327 | resolved "https://registry.yarnpkg.com/github/-/github-8.1.1.tgz#a078c61669b4d4b588bf1b2e2a591eb7c49feb36" 1328 | dependencies: 1329 | follow-redirects "0.0.7" 1330 | https-proxy-agent "^1.0.0" 1331 | mime "^1.2.11" 1332 | netrc "^0.1.4" 1333 | 1334 | github@~0.1.10: 1335 | version "0.1.16" 1336 | resolved "https://registry.yarnpkg.com/github/-/github-0.1.16.tgz#895d2a85b0feb7980d89ac0ce4f44dcaa03f17b5" 1337 | 1338 | glob-base@^0.3.0: 1339 | version "0.3.0" 1340 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1341 | dependencies: 1342 | glob-parent "^2.0.0" 1343 | is-glob "^2.0.0" 1344 | 1345 | glob-parent@^2.0.0: 1346 | version "2.0.0" 1347 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1348 | dependencies: 1349 | is-glob "^2.0.0" 1350 | 1351 | glob-stream@^3.1.5: 1352 | version "3.1.18" 1353 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-3.1.18.tgz#9170a5f12b790306fdfe598f313f8f7954fd143b" 1354 | dependencies: 1355 | glob "^4.3.1" 1356 | glob2base "^0.0.12" 1357 | minimatch "^2.0.1" 1358 | ordered-read-streams "^0.1.0" 1359 | through2 "^0.6.1" 1360 | unique-stream "^1.0.0" 1361 | 1362 | glob-watcher@^0.0.6: 1363 | version "0.0.6" 1364 | resolved "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-0.0.6.tgz#b95b4a8df74b39c83298b0c05c978b4d9a3b710b" 1365 | dependencies: 1366 | gaze "^0.5.1" 1367 | 1368 | glob2base@^0.0.12: 1369 | version "0.0.12" 1370 | resolved "http://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" 1371 | dependencies: 1372 | find-index "^0.1.1" 1373 | 1374 | glob@3.2.3: 1375 | version "3.2.3" 1376 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.2.3.tgz#e313eeb249c7affaa5c475286b0e115b59839467" 1377 | dependencies: 1378 | graceful-fs "~2.0.0" 1379 | inherits "2" 1380 | minimatch "~0.2.11" 1381 | 1382 | glob@5.x, glob@^5.0.14, glob@^5.0.15, glob@^5.0.5: 1383 | version "5.0.15" 1384 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1385 | dependencies: 1386 | inflight "^1.0.4" 1387 | inherits "2" 1388 | minimatch "2 || 3" 1389 | once "^1.3.0" 1390 | path-is-absolute "^1.0.0" 1391 | 1392 | glob@6.0.1: 1393 | version "6.0.1" 1394 | resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.1.tgz#16a89b94ac361b2a670a0a141a21ad51b438d21d" 1395 | dependencies: 1396 | inflight "^1.0.4" 1397 | inherits "2" 1398 | minimatch "2 || 3" 1399 | once "^1.3.0" 1400 | path-is-absolute "^1.0.0" 1401 | 1402 | glob@^4.3.1, glob@~4.3.0: 1403 | version "4.3.5" 1404 | resolved "https://registry.yarnpkg.com/glob/-/glob-4.3.5.tgz#80fbb08ca540f238acce5d11d1e9bc41e75173d3" 1405 | dependencies: 1406 | inflight "^1.0.4" 1407 | inherits "2" 1408 | minimatch "^2.0.1" 1409 | once "^1.3.0" 1410 | 1411 | glob@^7.0.5: 1412 | version "7.1.1" 1413 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1414 | dependencies: 1415 | fs.realpath "^1.0.0" 1416 | inflight "^1.0.4" 1417 | inherits "2" 1418 | minimatch "^3.0.2" 1419 | once "^1.3.0" 1420 | path-is-absolute "^1.0.0" 1421 | 1422 | glob@~3.1.21: 1423 | version "3.1.21" 1424 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.1.21.tgz#d29e0a055dea5138f4d07ed40e8982e83c2066cd" 1425 | dependencies: 1426 | graceful-fs "~1.2.0" 1427 | inherits "1" 1428 | minimatch "~0.2.11" 1429 | 1430 | global-modules@^0.2.3: 1431 | version "0.2.3" 1432 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d" 1433 | dependencies: 1434 | global-prefix "^0.1.4" 1435 | is-windows "^0.2.0" 1436 | 1437 | global-prefix@^0.1.4: 1438 | version "0.1.5" 1439 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.5.tgz#8d3bc6b8da3ca8112a160d8d496ff0462bfef78f" 1440 | dependencies: 1441 | homedir-polyfill "^1.0.0" 1442 | ini "^1.3.4" 1443 | is-windows "^0.2.0" 1444 | which "^1.2.12" 1445 | 1446 | globals@^6.4.0: 1447 | version "6.4.1" 1448 | resolved "https://registry.yarnpkg.com/globals/-/globals-6.4.1.tgz#8498032b3b6d1cc81eebc5f79690d8fe29fabf4f" 1449 | 1450 | globule@~0.1.0: 1451 | version "0.1.0" 1452 | resolved "https://registry.yarnpkg.com/globule/-/globule-0.1.0.tgz#d9c8edde1da79d125a151b79533b978676346ae5" 1453 | dependencies: 1454 | glob "~3.1.21" 1455 | lodash "~1.0.1" 1456 | minimatch "~0.2.11" 1457 | 1458 | glogg@^1.0.0: 1459 | version "1.0.0" 1460 | resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.0.tgz#7fe0f199f57ac906cf512feead8f90ee4a284fc5" 1461 | dependencies: 1462 | sparkles "^1.0.0" 1463 | 1464 | got@^3.2.0: 1465 | version "3.3.1" 1466 | resolved "https://registry.yarnpkg.com/got/-/got-3.3.1.tgz#e5d0ed4af55fc3eef4d56007769d98192bcb2eca" 1467 | dependencies: 1468 | duplexify "^3.2.0" 1469 | infinity-agent "^2.0.0" 1470 | is-redirect "^1.0.0" 1471 | is-stream "^1.0.0" 1472 | lowercase-keys "^1.0.0" 1473 | nested-error-stacks "^1.0.0" 1474 | object-assign "^3.0.0" 1475 | prepend-http "^1.0.0" 1476 | read-all-stream "^3.0.0" 1477 | timed-out "^2.0.0" 1478 | 1479 | graceful-fs@^3.0.0: 1480 | version "3.0.11" 1481 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.11.tgz#7613c778a1afea62f25c630a086d7f3acbbdd818" 1482 | dependencies: 1483 | natives "^1.1.0" 1484 | 1485 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6: 1486 | version "4.1.11" 1487 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1488 | 1489 | graceful-fs@~1.2.0: 1490 | version "1.2.3" 1491 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.2.3.tgz#15a4806a57547cb2d2dbf27f42e89a8c3451b364" 1492 | 1493 | graceful-fs@~2.0.0: 1494 | version "2.0.3" 1495 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-2.0.3.tgz#7cd2cdb228a4a3f36e95efa6cc142de7d1a136d0" 1496 | 1497 | "graceful-readlink@>= 1.0.0": 1498 | version "1.0.1" 1499 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1500 | 1501 | growl@1.8.1: 1502 | version "1.8.1" 1503 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.8.1.tgz#4b2dec8d907e93db336624dcec0183502f8c9428" 1504 | 1505 | gulp-git@1.6.0: 1506 | version "1.6.0" 1507 | resolved "https://registry.yarnpkg.com/gulp-git/-/gulp-git-1.6.0.tgz#3a2b72fafec7b1c54c3881ceae3f8f75ebb3e601" 1508 | dependencies: 1509 | any-shell-escape "^0.1.1" 1510 | gulp-util "^3.0.6" 1511 | require-dir "^0.1.0" 1512 | through2 "^0.6.5" 1513 | 1514 | gulp-util@^3.0.0, gulp-util@^3.0.6: 1515 | version "3.0.8" 1516 | resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f" 1517 | dependencies: 1518 | array-differ "^1.0.0" 1519 | array-uniq "^1.0.2" 1520 | beeper "^1.0.0" 1521 | chalk "^1.0.0" 1522 | dateformat "^2.0.0" 1523 | fancy-log "^1.1.0" 1524 | gulplog "^1.0.0" 1525 | has-gulplog "^0.1.0" 1526 | lodash._reescape "^3.0.0" 1527 | lodash._reevaluate "^3.0.0" 1528 | lodash._reinterpolate "^3.0.0" 1529 | lodash.template "^3.0.0" 1530 | minimist "^1.1.0" 1531 | multipipe "^0.1.2" 1532 | object-assign "^3.0.0" 1533 | replace-ext "0.0.1" 1534 | through2 "^2.0.0" 1535 | vinyl "^0.5.0" 1536 | 1537 | gulp@3.9.0: 1538 | version "3.9.0" 1539 | resolved "https://registry.yarnpkg.com/gulp/-/gulp-3.9.0.tgz#cf1fba4cb558bb8c6ae6c9613f583ae2620d214a" 1540 | dependencies: 1541 | archy "^1.0.0" 1542 | chalk "^1.0.0" 1543 | deprecated "^0.0.1" 1544 | gulp-util "^3.0.0" 1545 | interpret "^0.6.2" 1546 | liftoff "^2.1.0" 1547 | minimist "^1.1.0" 1548 | orchestrator "^0.3.0" 1549 | pretty-hrtime "^1.0.0" 1550 | semver "^4.1.0" 1551 | tildify "^1.0.0" 1552 | v8flags "^2.0.2" 1553 | vinyl-fs "^0.3.0" 1554 | 1555 | gulplog@^1.0.0: 1556 | version "1.0.0" 1557 | resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" 1558 | dependencies: 1559 | glogg "^1.0.0" 1560 | 1561 | handlebars@^4.0.1: 1562 | version "4.0.6" 1563 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 1564 | dependencies: 1565 | async "^1.4.0" 1566 | optimist "^0.6.1" 1567 | source-map "^0.4.4" 1568 | optionalDependencies: 1569 | uglify-js "^2.6" 1570 | 1571 | har-validator@~2.0.6: 1572 | version "2.0.6" 1573 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1574 | dependencies: 1575 | chalk "^1.1.1" 1576 | commander "^2.9.0" 1577 | is-my-json-valid "^2.12.4" 1578 | pinkie-promise "^2.0.0" 1579 | 1580 | has-ansi@^2.0.0: 1581 | version "2.0.0" 1582 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1583 | dependencies: 1584 | ansi-regex "^2.0.0" 1585 | 1586 | has-flag@^1.0.0: 1587 | version "1.0.0" 1588 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1589 | 1590 | has-gulplog@^0.1.0: 1591 | version "0.1.0" 1592 | resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce" 1593 | dependencies: 1594 | sparkles "^1.0.0" 1595 | 1596 | has-unicode@^2.0.0: 1597 | version "2.0.1" 1598 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1599 | 1600 | hawk@1.1.1: 1601 | version "1.1.1" 1602 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-1.1.1.tgz#87cd491f9b46e4e2aeaca335416766885d2d1ed9" 1603 | dependencies: 1604 | boom "0.4.x" 1605 | cryptiles "0.2.x" 1606 | hoek "0.9.x" 1607 | sntp "0.2.x" 1608 | 1609 | hawk@~3.1.3: 1610 | version "3.1.3" 1611 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1612 | dependencies: 1613 | boom "2.x.x" 1614 | cryptiles "2.x.x" 1615 | hoek "2.x.x" 1616 | sntp "1.x.x" 1617 | 1618 | hoek@0.9.x: 1619 | version "0.9.1" 1620 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-0.9.1.tgz#3d322462badf07716ea7eb85baf88079cddce505" 1621 | 1622 | hoek@2.x.x: 1623 | version "2.16.3" 1624 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1625 | 1626 | home-or-tmp@^1.0.0: 1627 | version "1.0.0" 1628 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-1.0.0.tgz#4b9f1e40800c3e50c6c27f781676afcce71f3985" 1629 | dependencies: 1630 | os-tmpdir "^1.0.1" 1631 | user-home "^1.1.1" 1632 | 1633 | homedir-polyfill@^1.0.0: 1634 | version "1.0.1" 1635 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" 1636 | dependencies: 1637 | parse-passwd "^1.0.0" 1638 | 1639 | hosted-git-info@^2.1.4, hosted-git-info@^2.1.5: 1640 | version "2.1.5" 1641 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" 1642 | 1643 | http-signature@~0.10.0: 1644 | version "0.10.1" 1645 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-0.10.1.tgz#4fbdac132559aa8323121e540779c0a012b27e66" 1646 | dependencies: 1647 | asn1 "0.1.11" 1648 | assert-plus "^0.1.5" 1649 | ctype "0.5.3" 1650 | 1651 | http-signature@~1.1.0: 1652 | version "1.1.1" 1653 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1654 | dependencies: 1655 | assert-plus "^0.2.0" 1656 | jsprim "^1.2.2" 1657 | sshpk "^1.7.0" 1658 | 1659 | https-proxy-agent@^1.0.0: 1660 | version "1.0.0" 1661 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz#35f7da6c48ce4ddbfa264891ac593ee5ff8671e6" 1662 | dependencies: 1663 | agent-base "2" 1664 | debug "2" 1665 | extend "3" 1666 | 1667 | husky@0.12.0: 1668 | version "0.12.0" 1669 | resolved "https://registry.yarnpkg.com/husky/-/husky-0.12.0.tgz#3a44922fce8071803242c3c7522a6582c50525dc" 1670 | dependencies: 1671 | find-parent-dir "^0.3.0" 1672 | is-ci "^1.0.9" 1673 | normalize-path "^1.0.0" 1674 | 1675 | iconv-lite@^0.4.5: 1676 | version "0.4.15" 1677 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 1678 | 1679 | imurmurhash@^0.1.4: 1680 | version "0.1.4" 1681 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1682 | 1683 | indent-string@^2.1.0: 1684 | version "2.1.0" 1685 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1686 | dependencies: 1687 | repeating "^2.0.0" 1688 | 1689 | infinity-agent@^2.0.0: 1690 | version "2.0.3" 1691 | resolved "https://registry.yarnpkg.com/infinity-agent/-/infinity-agent-2.0.3.tgz#45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216" 1692 | 1693 | inflight@^1.0.4: 1694 | version "1.0.6" 1695 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1696 | dependencies: 1697 | once "^1.3.0" 1698 | wrappy "1" 1699 | 1700 | inherits@1: 1701 | version "1.0.2" 1702 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-1.0.2.tgz#ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b" 1703 | 1704 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1705 | version "2.0.3" 1706 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1707 | 1708 | inherits@2.0.1: 1709 | version "2.0.1" 1710 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1711 | 1712 | ini@^1.2.0, ini@^1.3.4, ini@~1.3.0: 1713 | version "1.3.4" 1714 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1715 | 1716 | inquirer@0.11.0: 1717 | version "0.11.0" 1718 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.11.0.tgz#7448bfa924092af311d47173bbab990cae2bb027" 1719 | dependencies: 1720 | ansi-escapes "^1.1.0" 1721 | ansi-regex "^2.0.0" 1722 | chalk "^1.0.0" 1723 | cli-cursor "^1.0.1" 1724 | cli-width "^1.0.1" 1725 | figures "^1.3.5" 1726 | lodash "^3.3.1" 1727 | readline2 "^1.0.1" 1728 | run-async "^0.1.0" 1729 | rx-lite "^3.1.2" 1730 | strip-ansi "^3.0.0" 1731 | through "^2.3.6" 1732 | 1733 | inquirer@^0.12.0: 1734 | version "0.12.0" 1735 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1736 | dependencies: 1737 | ansi-escapes "^1.1.0" 1738 | ansi-regex "^2.0.0" 1739 | chalk "^1.0.0" 1740 | cli-cursor "^1.0.1" 1741 | cli-width "^2.0.0" 1742 | figures "^1.3.5" 1743 | lodash "^4.3.0" 1744 | readline2 "^1.0.1" 1745 | run-async "^0.1.0" 1746 | rx-lite "^3.1.2" 1747 | string-width "^1.0.1" 1748 | strip-ansi "^3.0.0" 1749 | through "^2.3.6" 1750 | 1751 | interpret@^0.6.2: 1752 | version "0.6.6" 1753 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-0.6.6.tgz#fecd7a18e7ce5ca6abfb953e1f86213a49f1625b" 1754 | 1755 | invert-kv@^1.0.0: 1756 | version "1.0.0" 1757 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1758 | 1759 | is-absolute@^0.2.3: 1760 | version "0.2.6" 1761 | resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-0.2.6.tgz#20de69f3db942ef2d87b9c2da36f172235b1b5eb" 1762 | dependencies: 1763 | is-relative "^0.2.1" 1764 | is-windows "^0.2.0" 1765 | 1766 | is-arrayish@^0.2.1: 1767 | version "0.2.1" 1768 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1769 | 1770 | is-binary-path@^1.0.0: 1771 | version "1.0.1" 1772 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1773 | dependencies: 1774 | binary-extensions "^1.0.0" 1775 | 1776 | is-buffer@^1.0.2: 1777 | version "1.1.4" 1778 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1779 | 1780 | is-builtin-module@^1.0.0: 1781 | version "1.0.0" 1782 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1783 | dependencies: 1784 | builtin-modules "^1.0.0" 1785 | 1786 | is-ci@^1.0.9: 1787 | version "1.0.10" 1788 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1789 | dependencies: 1790 | ci-info "^1.0.0" 1791 | 1792 | is-dotfile@^1.0.0: 1793 | version "1.0.2" 1794 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1795 | 1796 | is-equal-shallow@^0.1.3: 1797 | version "0.1.3" 1798 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1799 | dependencies: 1800 | is-primitive "^2.0.0" 1801 | 1802 | is-extendable@^0.1.1: 1803 | version "0.1.1" 1804 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1805 | 1806 | is-extglob@^1.0.0: 1807 | version "1.0.0" 1808 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1809 | 1810 | is-finite@^1.0.0: 1811 | version "1.0.2" 1812 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1813 | dependencies: 1814 | number-is-nan "^1.0.0" 1815 | 1816 | is-fullwidth-code-point@^1.0.0: 1817 | version "1.0.0" 1818 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1819 | dependencies: 1820 | number-is-nan "^1.0.0" 1821 | 1822 | is-glob@^2.0.0, is-glob@^2.0.1: 1823 | version "2.0.1" 1824 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1825 | dependencies: 1826 | is-extglob "^1.0.0" 1827 | 1828 | is-integer@^1.0.4: 1829 | version "1.0.6" 1830 | resolved "https://registry.yarnpkg.com/is-integer/-/is-integer-1.0.6.tgz#5273819fada880d123e1ac00a938e7172dd8d95e" 1831 | dependencies: 1832 | is-finite "^1.0.0" 1833 | 1834 | is-my-json-valid@^2.12.4: 1835 | version "2.15.0" 1836 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 1837 | dependencies: 1838 | generate-function "^2.0.0" 1839 | generate-object-property "^1.1.0" 1840 | jsonpointer "^4.0.0" 1841 | xtend "^4.0.0" 1842 | 1843 | is-npm@^1.0.0: 1844 | version "1.0.0" 1845 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1846 | 1847 | is-number@^2.0.2, is-number@^2.1.0: 1848 | version "2.1.0" 1849 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1850 | dependencies: 1851 | kind-of "^3.0.2" 1852 | 1853 | is-posix-bracket@^0.1.0: 1854 | version "0.1.1" 1855 | resolved "http://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1856 | 1857 | is-primitive@^2.0.0: 1858 | version "2.0.0" 1859 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1860 | 1861 | is-property@^1.0.0: 1862 | version "1.0.2" 1863 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1864 | 1865 | is-redirect@^1.0.0: 1866 | version "1.0.0" 1867 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1868 | 1869 | is-relative@^0.2.1: 1870 | version "0.2.1" 1871 | resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-0.2.1.tgz#d27f4c7d516d175fb610db84bbeef23c3bc97aa5" 1872 | dependencies: 1873 | is-unc-path "^0.1.1" 1874 | 1875 | is-stream@^1.0.0: 1876 | version "1.1.0" 1877 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1878 | 1879 | is-typedarray@~1.0.0: 1880 | version "1.0.0" 1881 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1882 | 1883 | is-unc-path@^0.1.1: 1884 | version "0.1.2" 1885 | resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-0.1.2.tgz#6ab053a72573c10250ff416a3814c35178af39b9" 1886 | dependencies: 1887 | unc-path-regex "^0.1.0" 1888 | 1889 | is-utf8@^0.2.0: 1890 | version "0.2.1" 1891 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1892 | 1893 | is-windows@^0.2.0: 1894 | version "0.2.0" 1895 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" 1896 | 1897 | isarray@0.0.1: 1898 | version "0.0.1" 1899 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1900 | 1901 | isarray@1.0.0, isarray@~1.0.0: 1902 | version "1.0.0" 1903 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1904 | 1905 | isexe@^1.1.1: 1906 | version "1.1.2" 1907 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 1908 | 1909 | isobject@^2.0.0: 1910 | version "2.1.0" 1911 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1912 | dependencies: 1913 | isarray "1.0.0" 1914 | 1915 | isstream@~0.1.2: 1916 | version "0.1.2" 1917 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1918 | 1919 | istanbul@0.4.2: 1920 | version "0.4.2" 1921 | resolved "https://registry.yarnpkg.com/istanbul/-/istanbul-0.4.2.tgz#765e728b9455beddb6daa7b9cec4b9c3c3ede487" 1922 | dependencies: 1923 | abbrev "1.0.x" 1924 | async "1.x" 1925 | escodegen "1.7.x" 1926 | esprima "2.7.x" 1927 | fileset "0.2.x" 1928 | handlebars "^4.0.1" 1929 | js-yaml "3.x" 1930 | mkdirp "0.5.x" 1931 | nopt "3.x" 1932 | once "1.x" 1933 | resolve "1.1.x" 1934 | supports-color "^3.1.0" 1935 | which "^1.1.1" 1936 | wordwrap "^1.0.0" 1937 | 1938 | jade@0.26.3: 1939 | version "0.26.3" 1940 | resolved "https://registry.yarnpkg.com/jade/-/jade-0.26.3.tgz#8f10d7977d8d79f2f6ff862a81b0513ccb25686c" 1941 | dependencies: 1942 | commander "0.6.1" 1943 | mkdirp "0.3.0" 1944 | 1945 | jodid25519@^1.0.0: 1946 | version "1.0.2" 1947 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1948 | dependencies: 1949 | jsbn "~0.1.0" 1950 | 1951 | js-tokens@1.0.1: 1952 | version "1.0.1" 1953 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-1.0.1.tgz#cc435a5c8b94ad15acb7983140fc80182c89aeae" 1954 | 1955 | js-yaml@3.x: 1956 | version "3.7.0" 1957 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 1958 | dependencies: 1959 | argparse "^1.0.7" 1960 | esprima "^2.6.0" 1961 | 1962 | jsbn@~0.1.0: 1963 | version "0.1.0" 1964 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 1965 | 1966 | jsesc@~0.5.0: 1967 | version "0.5.0" 1968 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1969 | 1970 | json-schema@0.2.3: 1971 | version "0.2.3" 1972 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1973 | 1974 | json-stringify-safe@~5.0.0, json-stringify-safe@~5.0.1: 1975 | version "5.0.1" 1976 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1977 | 1978 | json5@^0.4.0: 1979 | version "0.4.0" 1980 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.4.0.tgz#054352e4c4c80c86c0923877d449de176a732c8d" 1981 | 1982 | jsonify@~0.0.0: 1983 | version "0.0.0" 1984 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1985 | 1986 | jsonpointer@^4.0.0: 1987 | version "4.0.1" 1988 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1989 | 1990 | jsprim@^1.2.2: 1991 | version "1.3.1" 1992 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 1993 | dependencies: 1994 | extsprintf "1.0.2" 1995 | json-schema "0.2.3" 1996 | verror "1.3.6" 1997 | 1998 | kind-of@^3.0.2: 1999 | version "3.1.0" 2000 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 2001 | dependencies: 2002 | is-buffer "^1.0.2" 2003 | 2004 | latest-version@^1.0.0: 2005 | version "1.0.1" 2006 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-1.0.1.tgz#72cfc46e3e8d1be651e1ebb54ea9f6ea96f374bb" 2007 | dependencies: 2008 | package-json "^1.0.0" 2009 | 2010 | lazy-cache@^1.0.3: 2011 | version "1.0.4" 2012 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2013 | 2014 | lcid@^1.0.0: 2015 | version "1.0.0" 2016 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2017 | dependencies: 2018 | invert-kv "^1.0.0" 2019 | 2020 | leven@^1.0.2: 2021 | version "1.0.2" 2022 | resolved "https://registry.yarnpkg.com/leven/-/leven-1.0.2.tgz#9144b6eebca5f1d0680169f1a6770dcea60b75c3" 2023 | 2024 | levn@~0.2.5: 2025 | version "0.2.5" 2026 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.2.5.tgz#ba8d339d0ca4a610e3a3f145b9caf48807155054" 2027 | dependencies: 2028 | prelude-ls "~1.1.0" 2029 | type-check "~0.3.1" 2030 | 2031 | liftoff@^2.1.0: 2032 | version "2.3.0" 2033 | resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.3.0.tgz#a98f2ff67183d8ba7cfaca10548bd7ff0550b385" 2034 | dependencies: 2035 | extend "^3.0.0" 2036 | findup-sync "^0.4.2" 2037 | fined "^1.0.1" 2038 | flagged-respawn "^0.3.2" 2039 | lodash.isplainobject "^4.0.4" 2040 | lodash.isstring "^4.0.1" 2041 | lodash.mapvalues "^4.4.0" 2042 | rechoir "^0.6.2" 2043 | resolve "^1.1.7" 2044 | 2045 | load-json-file@^1.0.0: 2046 | version "1.1.0" 2047 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2048 | dependencies: 2049 | graceful-fs "^4.1.2" 2050 | parse-json "^2.2.0" 2051 | pify "^2.0.0" 2052 | pinkie-promise "^2.0.0" 2053 | strip-bom "^2.0.0" 2054 | 2055 | lodash._baseassign@^3.0.0: 2056 | version "3.2.0" 2057 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 2058 | dependencies: 2059 | lodash._basecopy "^3.0.0" 2060 | lodash.keys "^3.0.0" 2061 | 2062 | lodash._baseclone@~4.5.0: 2063 | version "4.5.7" 2064 | resolved "https://registry.yarnpkg.com/lodash._baseclone/-/lodash._baseclone-4.5.7.tgz#ce42ade08384ef5d62fa77c30f61a46e686f8434" 2065 | 2066 | lodash._basecopy@^3.0.0: 2067 | version "3.0.1" 2068 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 2069 | 2070 | lodash._basetostring@^3.0.0: 2071 | version "3.0.1" 2072 | resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5" 2073 | 2074 | lodash._basevalues@^3.0.0: 2075 | version "3.0.0" 2076 | resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" 2077 | 2078 | lodash._bindcallback@^3.0.0: 2079 | version "3.0.1" 2080 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 2081 | 2082 | lodash._createassigner@^3.0.0: 2083 | version "3.1.1" 2084 | resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 2085 | dependencies: 2086 | lodash._bindcallback "^3.0.0" 2087 | lodash._isiterateecall "^3.0.0" 2088 | lodash.restparam "^3.0.0" 2089 | 2090 | lodash._getnative@^3.0.0: 2091 | version "3.9.1" 2092 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2093 | 2094 | lodash._isiterateecall@^3.0.0: 2095 | version "3.0.9" 2096 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 2097 | 2098 | lodash._reescape@^3.0.0: 2099 | version "3.0.0" 2100 | resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a" 2101 | 2102 | lodash._reevaluate@^3.0.0: 2103 | version "3.0.0" 2104 | resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed" 2105 | 2106 | lodash._reinterpolate@^3.0.0: 2107 | version "3.0.0" 2108 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 2109 | 2110 | lodash._root@^3.0.0: 2111 | version "3.0.1" 2112 | resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" 2113 | 2114 | lodash.assign@^3.0.0: 2115 | version "3.2.0" 2116 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 2117 | dependencies: 2118 | lodash._baseassign "^3.0.0" 2119 | lodash._createassigner "^3.0.0" 2120 | lodash.keys "^3.0.0" 2121 | 2122 | lodash.assign@^4.0.3, lodash.assign@^4.0.6: 2123 | version "4.2.0" 2124 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 2125 | 2126 | lodash.assignwith@^4.0.7: 2127 | version "4.2.0" 2128 | resolved "https://registry.yarnpkg.com/lodash.assignwith/-/lodash.assignwith-4.2.0.tgz#127a97f02adc41751a954d24b0de17e100e038eb" 2129 | 2130 | lodash.clone@4.3.2: 2131 | version "4.3.2" 2132 | resolved "https://registry.yarnpkg.com/lodash.clone/-/lodash.clone-4.3.2.tgz#e56b176b6823a7dde38f7f2bf58de7d5971200e9" 2133 | dependencies: 2134 | lodash._baseclone "~4.5.0" 2135 | 2136 | lodash.defaults@^3.1.2: 2137 | version "3.1.2" 2138 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-3.1.2.tgz#c7308b18dbf8bc9372d701a73493c61192bd2e2c" 2139 | dependencies: 2140 | lodash.assign "^3.0.0" 2141 | lodash.restparam "^3.0.0" 2142 | 2143 | lodash.escape@^3.0.0: 2144 | version "3.2.0" 2145 | resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698" 2146 | dependencies: 2147 | lodash._root "^3.0.0" 2148 | 2149 | lodash.isarguments@^3.0.0: 2150 | version "3.1.0" 2151 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2152 | 2153 | lodash.isarray@^3.0.0: 2154 | version "3.0.4" 2155 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2156 | 2157 | lodash.isempty@^4.2.1: 2158 | version "4.4.0" 2159 | resolved "https://registry.yarnpkg.com/lodash.isempty/-/lodash.isempty-4.4.0.tgz#6f86cbedd8be4ec987be9aaf33c9684db1b31e7e" 2160 | 2161 | lodash.isplainobject@^4.0.4: 2162 | version "4.0.6" 2163 | resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" 2164 | 2165 | lodash.isstring@^4.0.1: 2166 | version "4.0.1" 2167 | resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" 2168 | 2169 | lodash.keys@^3.0.0: 2170 | version "3.1.2" 2171 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2172 | dependencies: 2173 | lodash._getnative "^3.0.0" 2174 | lodash.isarguments "^3.0.0" 2175 | lodash.isarray "^3.0.0" 2176 | 2177 | lodash.mapvalues@^4.4.0: 2178 | version "4.6.0" 2179 | resolved "https://registry.yarnpkg.com/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz#1bafa5005de9dd6f4f26668c30ca37230cc9689c" 2180 | 2181 | lodash.pad@^4.1.0: 2182 | version "4.5.1" 2183 | resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" 2184 | 2185 | lodash.padend@^4.1.0: 2186 | version "4.6.1" 2187 | resolved "https://registry.yarnpkg.com/lodash.padend/-/lodash.padend-4.6.1.tgz#53ccba047d06e158d311f45da625f4e49e6f166e" 2188 | 2189 | lodash.padstart@^4.1.0: 2190 | version "4.6.1" 2191 | resolved "https://registry.yarnpkg.com/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b" 2192 | 2193 | lodash.pick@^4.2.1: 2194 | version "4.4.0" 2195 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" 2196 | 2197 | lodash.restparam@^3.0.0: 2198 | version "3.6.1" 2199 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 2200 | 2201 | lodash.template@^3.0.0: 2202 | version "3.6.2" 2203 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f" 2204 | dependencies: 2205 | lodash._basecopy "^3.0.0" 2206 | lodash._basetostring "^3.0.0" 2207 | lodash._basevalues "^3.0.0" 2208 | lodash._isiterateecall "^3.0.0" 2209 | lodash._reinterpolate "^3.0.0" 2210 | lodash.escape "^3.0.0" 2211 | lodash.keys "^3.0.0" 2212 | lodash.restparam "^3.0.0" 2213 | lodash.templatesettings "^3.0.0" 2214 | 2215 | lodash.templatesettings@^3.0.0: 2216 | version "3.1.1" 2217 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5" 2218 | dependencies: 2219 | lodash._reinterpolate "^3.0.0" 2220 | lodash.escape "^3.0.0" 2221 | 2222 | lodash@3.10.1, lodash@^3.10.0, lodash@^3.2.0, lodash@^3.3.1, lodash@^3.6.0, lodash@^3.9.3: 2223 | version "3.10.1" 2224 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 2225 | 2226 | lodash@^4.0.0, lodash@^4.11.2, lodash@^4.13.1, lodash@^4.14.0, lodash@^4.3.0: 2227 | version "4.17.4" 2228 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2229 | 2230 | lodash@~1.0.1: 2231 | version "1.0.2" 2232 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-1.0.2.tgz#8f57560c83b59fc270bd3d561b690043430e2551" 2233 | 2234 | lodash@~1.3.1: 2235 | version "1.3.1" 2236 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-1.3.1.tgz#a4663b53686b895ff074e2ba504dfb76a8e2b770" 2237 | 2238 | lolex@1.3.2: 2239 | version "1.3.2" 2240 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-1.3.2.tgz#7c3da62ffcb30f0f5a80a2566ca24e45d8a01f31" 2241 | 2242 | longest@^1.0.1: 2243 | version "1.0.1" 2244 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2245 | 2246 | loud-rejection@^1.0.0: 2247 | version "1.6.0" 2248 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2249 | dependencies: 2250 | currently-unhandled "^0.4.1" 2251 | signal-exit "^3.0.0" 2252 | 2253 | lowercase-keys@^1.0.0: 2254 | version "1.0.0" 2255 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2256 | 2257 | lru-cache@2: 2258 | version "2.7.3" 2259 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" 2260 | 2261 | manage-path@2.0.0: 2262 | version "2.0.0" 2263 | resolved "https://registry.yarnpkg.com/manage-path/-/manage-path-2.0.0.tgz#f4cf8457b926eeee2a83b173501414bc76eb9597" 2264 | 2265 | map-cache@^0.2.0: 2266 | version "0.2.2" 2267 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2268 | 2269 | map-obj@^1.0.0, map-obj@^1.0.1: 2270 | version "1.0.1" 2271 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2272 | 2273 | map-stream@~0.1.0: 2274 | version "0.1.0" 2275 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 2276 | 2277 | meow@^3.3.0: 2278 | version "3.7.0" 2279 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2280 | dependencies: 2281 | camelcase-keys "^2.0.0" 2282 | decamelize "^1.1.2" 2283 | loud-rejection "^1.0.0" 2284 | map-obj "^1.0.1" 2285 | minimist "^1.1.3" 2286 | normalize-package-data "^2.3.4" 2287 | object-assign "^4.0.1" 2288 | read-pkg-up "^1.0.1" 2289 | redent "^1.0.0" 2290 | trim-newlines "^1.0.0" 2291 | 2292 | merge@^1.2.0: 2293 | version "1.2.0" 2294 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2295 | 2296 | micromatch@^2.1.5, micromatch@^2.3.7: 2297 | version "2.3.11" 2298 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2299 | dependencies: 2300 | arr-diff "^2.0.0" 2301 | array-unique "^0.2.1" 2302 | braces "^1.8.2" 2303 | expand-brackets "^0.1.4" 2304 | extglob "^0.3.1" 2305 | filename-regex "^2.0.0" 2306 | is-extglob "^1.0.0" 2307 | is-glob "^2.0.1" 2308 | kind-of "^3.0.2" 2309 | normalize-path "^2.0.1" 2310 | object.omit "^2.0.0" 2311 | parse-glob "^3.0.4" 2312 | regex-cache "^0.4.2" 2313 | 2314 | mime-db@~1.26.0: 2315 | version "1.26.0" 2316 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 2317 | 2318 | mime-types@^2.1.11, mime-types@^2.1.12, mime-types@~2.1.7: 2319 | version "2.1.14" 2320 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 2321 | dependencies: 2322 | mime-db "~1.26.0" 2323 | 2324 | mime-types@~1.0.1: 2325 | version "1.0.2" 2326 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-1.0.2.tgz#995ae1392ab8affcbfcb2641dd054e943c0d5dce" 2327 | 2328 | mime@^1.2.11: 2329 | version "1.3.4" 2330 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 2331 | 2332 | mime@~1.2.11: 2333 | version "1.2.11" 2334 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.2.11.tgz#58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10" 2335 | 2336 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2: 2337 | version "3.0.3" 2338 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2339 | dependencies: 2340 | brace-expansion "^1.0.0" 2341 | 2342 | minimatch@2.x, minimatch@^2.0.1, minimatch@^2.0.3: 2343 | version "2.0.10" 2344 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" 2345 | dependencies: 2346 | brace-expansion "^1.0.0" 2347 | 2348 | minimatch@~0.2.11: 2349 | version "0.2.14" 2350 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.2.14.tgz#c74e780574f63c6f9a090e90efbe6ef53a6a756a" 2351 | dependencies: 2352 | lru-cache "2" 2353 | sigmund "~1.0.0" 2354 | 2355 | minimist@0.0.8, minimist@~0.0.1: 2356 | version "0.0.8" 2357 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2358 | 2359 | minimist@1.2.0, minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: 2360 | version "1.2.0" 2361 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2362 | 2363 | mkdirp@0.3.0: 2364 | version "0.3.0" 2365 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.0.tgz#1bbf5ab1ba827af23575143490426455f481fe1e" 2366 | 2367 | mkdirp@0.5.0, mkdirp@0.5.x, mkdirp@^0.5.0: 2368 | version "0.5.0" 2369 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.0.tgz#1d73076a6df986cd9344e15e71fcc05a4c9abf12" 2370 | dependencies: 2371 | minimist "0.0.8" 2372 | 2373 | "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.1: 2374 | version "0.5.1" 2375 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2376 | dependencies: 2377 | minimist "0.0.8" 2378 | 2379 | mocha@2.3.4: 2380 | version "2.3.4" 2381 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-2.3.4.tgz#8629a6fb044f2d225aa4b81a2ae2d001699eb266" 2382 | dependencies: 2383 | commander "2.3.0" 2384 | debug "2.2.0" 2385 | diff "1.4.0" 2386 | escape-string-regexp "1.0.2" 2387 | glob "3.2.3" 2388 | growl "1.8.1" 2389 | jade "0.26.3" 2390 | mkdirp "0.5.0" 2391 | supports-color "1.2.0" 2392 | 2393 | ms@0.7.1: 2394 | version "0.7.1" 2395 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2396 | 2397 | multipipe@^0.1.2: 2398 | version "0.1.2" 2399 | resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b" 2400 | dependencies: 2401 | duplexer2 "0.0.2" 2402 | 2403 | mute-stream@0.0.5: 2404 | version "0.0.5" 2405 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2406 | 2407 | nan@^2.3.0: 2408 | version "2.5.1" 2409 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 2410 | 2411 | natives@^1.1.0: 2412 | version "1.1.0" 2413 | resolved "https://registry.yarnpkg.com/natives/-/natives-1.1.0.tgz#e9ff841418a6b2ec7a495e939984f78f163e6e31" 2414 | 2415 | nerf-dart@^1.0.0: 2416 | version "1.0.0" 2417 | resolved "https://registry.yarnpkg.com/nerf-dart/-/nerf-dart-1.0.0.tgz#e6dab7febf5ad816ea81cf5c629c5a0ebde72c1a" 2418 | 2419 | nested-error-stacks@^1.0.0: 2420 | version "1.0.2" 2421 | resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz#19f619591519f096769a5ba9a86e6eeec823c3cf" 2422 | dependencies: 2423 | inherits "~2.0.1" 2424 | 2425 | netrc@^0.1.4: 2426 | version "0.1.4" 2427 | resolved "https://registry.yarnpkg.com/netrc/-/netrc-0.1.4.tgz#6be94fcaca8d77ade0a9670dc460914c94472444" 2428 | 2429 | node-pre-gyp@^0.6.29: 2430 | version "0.6.32" 2431 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.32.tgz#fc452b376e7319b3d255f5f34853ef6fd8fe1fd5" 2432 | dependencies: 2433 | mkdirp "~0.5.1" 2434 | nopt "~3.0.6" 2435 | npmlog "^4.0.1" 2436 | rc "~1.1.6" 2437 | request "^2.79.0" 2438 | rimraf "~2.5.4" 2439 | semver "~5.3.0" 2440 | tar "~2.2.1" 2441 | tar-pack "~3.3.0" 2442 | 2443 | node-uuid@1.4.7, node-uuid@~1.4.0, node-uuid@~1.4.7: 2444 | version "1.4.7" 2445 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f" 2446 | 2447 | nodemon@1.8.1: 2448 | version "1.8.1" 2449 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-1.8.1.tgz#75cfd7ac167e938cdab7313c839bc45a1859bb32" 2450 | dependencies: 2451 | chokidar "^1.2.0" 2452 | debug "^2.2.0" 2453 | es6-promise "^3.0.2" 2454 | lodash.defaults "^3.1.2" 2455 | minimatch "^3.0.0" 2456 | ps-tree "^1.0.1" 2457 | touch "1.0.0" 2458 | undefsafe "0.0.3" 2459 | update-notifier "0.5.0" 2460 | 2461 | nopt@3.x, nopt@~3.0.1, nopt@~3.0.6: 2462 | version "3.0.6" 2463 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2464 | dependencies: 2465 | abbrev "1" 2466 | 2467 | nopt@^4.0.0: 2468 | version "4.0.1" 2469 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2470 | dependencies: 2471 | abbrev "1" 2472 | osenv "^0.1.4" 2473 | 2474 | nopt@~1.0.10: 2475 | version "1.0.10" 2476 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 2477 | dependencies: 2478 | abbrev "1" 2479 | 2480 | normalize-package-data@^1.0.3: 2481 | version "1.0.3" 2482 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-1.0.3.tgz#8be955b8907af975f1a4584ea8bb9b41492312f5" 2483 | dependencies: 2484 | github-url-from-git "^1.3.0" 2485 | github-url-from-username-repo "^1.0.0" 2486 | semver "2 || 3 || 4" 2487 | 2488 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, "normalize-package-data@~1.0.1 || ^2.0.0": 2489 | version "2.3.5" 2490 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 2491 | dependencies: 2492 | hosted-git-info "^2.1.4" 2493 | is-builtin-module "^1.0.0" 2494 | semver "2 || 3 || 4 || 5" 2495 | validate-npm-package-license "^3.0.1" 2496 | 2497 | normalize-path@^1.0.0: 2498 | version "1.0.0" 2499 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" 2500 | 2501 | normalize-path@^2.0.1: 2502 | version "2.0.1" 2503 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2504 | 2505 | "npm-package-arg@^3.0.0 || ^4.0.0": 2506 | version "4.2.0" 2507 | resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-4.2.0.tgz#809bc61cabf54bd5ff94f6165c89ba8ee88c115c" 2508 | dependencies: 2509 | hosted-git-info "^2.1.5" 2510 | semver "^5.1.0" 2511 | 2512 | npm-registry-client@^7.0.1: 2513 | version "7.4.5" 2514 | resolved "https://registry.yarnpkg.com/npm-registry-client/-/npm-registry-client-7.4.5.tgz#1ef61851bb7231db53e397aaf76ddf1cb645c3df" 2515 | dependencies: 2516 | concat-stream "^1.5.2" 2517 | graceful-fs "^4.1.6" 2518 | normalize-package-data "~1.0.1 || ^2.0.0" 2519 | npm-package-arg "^3.0.0 || ^4.0.0" 2520 | once "^1.3.3" 2521 | request "^2.74.0" 2522 | retry "^0.10.0" 2523 | semver "2 >=2.2.1 || 3.x || 4 || 5" 2524 | slide "^1.1.3" 2525 | optionalDependencies: 2526 | npmlog "2 || ^3.1.0 || ^4.0.0" 2527 | 2528 | npmconf@^2.1.2: 2529 | version "2.1.2" 2530 | resolved "https://registry.yarnpkg.com/npmconf/-/npmconf-2.1.2.tgz#66606a4a736f1e77a059aa071a79c94ab781853a" 2531 | dependencies: 2532 | config-chain "~1.1.8" 2533 | inherits "~2.0.0" 2534 | ini "^1.2.0" 2535 | mkdirp "^0.5.0" 2536 | nopt "~3.0.1" 2537 | once "~1.3.0" 2538 | osenv "^0.1.0" 2539 | semver "2 || 3 || 4" 2540 | uid-number "0.0.5" 2541 | 2542 | "npmlog@2 || ^3.1.0 || ^4.0.0", npmlog@^4.0.0, npmlog@^4.0.1: 2543 | version "4.0.2" 2544 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 2545 | dependencies: 2546 | are-we-there-yet "~1.1.2" 2547 | console-control-strings "~1.1.0" 2548 | gauge "~2.7.1" 2549 | set-blocking "~2.0.0" 2550 | 2551 | npmlog@^1.2.1: 2552 | version "1.2.1" 2553 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-1.2.1.tgz#28e7be619609b53f7ad1dd300a10d64d716268b6" 2554 | dependencies: 2555 | ansi "~0.3.0" 2556 | are-we-there-yet "~1.0.0" 2557 | gauge "~1.2.0" 2558 | 2559 | number-is-nan@^1.0.0: 2560 | version "1.0.1" 2561 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2562 | 2563 | oauth-sign@~0.4.0: 2564 | version "0.4.0" 2565 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.4.0.tgz#f22956f31ea7151a821e5f2fb32c113cad8b9f69" 2566 | 2567 | oauth-sign@~0.8.1: 2568 | version "0.8.2" 2569 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2570 | 2571 | object-assign@^3.0.0: 2572 | version "3.0.0" 2573 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 2574 | 2575 | object-assign@^4.0.1, object-assign@^4.1.0: 2576 | version "4.1.1" 2577 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2578 | 2579 | object.omit@^2.0.0: 2580 | version "2.0.1" 2581 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2582 | dependencies: 2583 | for-own "^0.1.4" 2584 | is-extendable "^0.1.1" 2585 | 2586 | once@1.x, once@^1.3.0, once@^1.3.3: 2587 | version "1.4.0" 2588 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2589 | dependencies: 2590 | wrappy "1" 2591 | 2592 | once@~1.3.0, once@~1.3.3: 2593 | version "1.3.3" 2594 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2595 | dependencies: 2596 | wrappy "1" 2597 | 2598 | onetime@^1.0.0: 2599 | version "1.1.0" 2600 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2601 | 2602 | opt-cli@1.5.1: 2603 | version "1.5.1" 2604 | resolved "https://registry.yarnpkg.com/opt-cli/-/opt-cli-1.5.1.tgz#04db447b13c96b992eb31685266f4ed0d9736dc2" 2605 | dependencies: 2606 | commander "2.9.0" 2607 | lodash.clone "4.3.2" 2608 | manage-path "2.0.0" 2609 | spawn-command "0.0.2-1" 2610 | 2611 | optimist@^0.6.1: 2612 | version "0.6.1" 2613 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2614 | dependencies: 2615 | minimist "~0.0.1" 2616 | wordwrap "~0.0.2" 2617 | 2618 | optionator@^0.5.0: 2619 | version "0.5.0" 2620 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.5.0.tgz#b75a8995a2d417df25b6e4e3862f50aa88651368" 2621 | dependencies: 2622 | deep-is "~0.1.2" 2623 | fast-levenshtein "~1.0.0" 2624 | levn "~0.2.5" 2625 | prelude-ls "~1.1.1" 2626 | type-check "~0.3.1" 2627 | wordwrap "~0.0.2" 2628 | 2629 | orchestrator@^0.3.0: 2630 | version "0.3.8" 2631 | resolved "https://registry.yarnpkg.com/orchestrator/-/orchestrator-0.3.8.tgz#14e7e9e2764f7315fbac184e506c7aa6df94ad7e" 2632 | dependencies: 2633 | end-of-stream "~0.1.5" 2634 | sequencify "~0.0.7" 2635 | stream-consume "~0.1.0" 2636 | 2637 | ordered-read-streams@^0.1.0: 2638 | version "0.1.0" 2639 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz#fd565a9af8eb4473ba69b6ed8a34352cb552f126" 2640 | 2641 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2642 | version "1.0.2" 2643 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2644 | 2645 | os-locale@^1.4.0: 2646 | version "1.4.0" 2647 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2648 | dependencies: 2649 | lcid "^1.0.0" 2650 | 2651 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2652 | version "1.0.2" 2653 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2654 | 2655 | osenv@^0.1.0, osenv@^0.1.4: 2656 | version "0.1.4" 2657 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2658 | dependencies: 2659 | os-homedir "^1.0.0" 2660 | os-tmpdir "^1.0.0" 2661 | 2662 | output-file-sync@^1.1.0: 2663 | version "1.1.2" 2664 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2665 | dependencies: 2666 | graceful-fs "^4.1.4" 2667 | mkdirp "^0.5.1" 2668 | object-assign "^4.1.0" 2669 | 2670 | package-json@^1.0.0: 2671 | version "1.2.0" 2672 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-1.2.0.tgz#c8ecac094227cdf76a316874ed05e27cc939a0e0" 2673 | dependencies: 2674 | got "^3.2.0" 2675 | registry-url "^3.0.0" 2676 | 2677 | parse-filepath@^1.0.1: 2678 | version "1.0.1" 2679 | resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.1.tgz#159d6155d43904d16c10ef698911da1e91969b73" 2680 | dependencies: 2681 | is-absolute "^0.2.3" 2682 | map-cache "^0.2.0" 2683 | path-root "^0.1.1" 2684 | 2685 | parse-github-repo-url@^1.3.0: 2686 | version "1.3.0" 2687 | resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.3.0.tgz#d4de02d68e2e60f0d6a182e7a8cb21b6f38c730b" 2688 | 2689 | parse-glob@^3.0.4: 2690 | version "3.0.4" 2691 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2692 | dependencies: 2693 | glob-base "^0.3.0" 2694 | is-dotfile "^1.0.0" 2695 | is-extglob "^1.0.0" 2696 | is-glob "^2.0.0" 2697 | 2698 | parse-json@^2.2.0: 2699 | version "2.2.0" 2700 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2701 | dependencies: 2702 | error-ex "^1.2.0" 2703 | 2704 | parse-passwd@^1.0.0: 2705 | version "1.0.0" 2706 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 2707 | 2708 | path-exists@^1.0.0: 2709 | version "1.0.0" 2710 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-1.0.0.tgz#d5a8998eb71ef37a74c34eb0d9eba6e878eea081" 2711 | 2712 | path-exists@^2.0.0: 2713 | version "2.1.0" 2714 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2715 | dependencies: 2716 | pinkie-promise "^2.0.0" 2717 | 2718 | path-is-absolute@^1.0.0: 2719 | version "1.0.1" 2720 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2721 | 2722 | path-object@^2.3.0: 2723 | version "2.3.0" 2724 | resolved "https://registry.yarnpkg.com/path-object/-/path-object-2.3.0.tgz#03e46653e5c375c60af1cabdd94bc6448a5d9110" 2725 | dependencies: 2726 | core-util-is "^1.0.1" 2727 | lodash.assign "^3.0.0" 2728 | 2729 | path-root-regex@^0.1.0: 2730 | version "0.1.2" 2731 | resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" 2732 | 2733 | path-root@^0.1.1: 2734 | version "0.1.1" 2735 | resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" 2736 | dependencies: 2737 | path-root-regex "^0.1.0" 2738 | 2739 | path-type@^1.0.0: 2740 | version "1.1.0" 2741 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2742 | dependencies: 2743 | graceful-fs "^4.1.2" 2744 | pify "^2.0.0" 2745 | pinkie-promise "^2.0.0" 2746 | 2747 | pause-stream@0.0.11: 2748 | version "0.0.11" 2749 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 2750 | dependencies: 2751 | through "~2.3" 2752 | 2753 | pify@^2.0.0: 2754 | version "2.3.0" 2755 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2756 | 2757 | pinkie-promise@^2.0.0: 2758 | version "2.0.1" 2759 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2760 | dependencies: 2761 | pinkie "^2.0.0" 2762 | 2763 | pinkie@^2.0.0: 2764 | version "2.0.4" 2765 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2766 | 2767 | prelude-ls@~1.1.0, prelude-ls@~1.1.1, prelude-ls@~1.1.2: 2768 | version "1.1.2" 2769 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2770 | 2771 | prepend-http@^1.0.0: 2772 | version "1.0.4" 2773 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2774 | 2775 | preserve@^0.2.0: 2776 | version "0.2.0" 2777 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2778 | 2779 | pretty-hrtime@^1.0.0: 2780 | version "1.0.3" 2781 | resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" 2782 | 2783 | private@^0.1.6, private@~0.1.5: 2784 | version "0.1.6" 2785 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 2786 | 2787 | process-nextick-args@~1.0.6: 2788 | version "1.0.7" 2789 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2790 | 2791 | proto-list@~1.2.1: 2792 | version "1.2.4" 2793 | resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 2794 | 2795 | ps-tree@^1.0.1: 2796 | version "1.1.0" 2797 | resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.1.0.tgz#b421b24140d6203f1ed3c76996b4427b08e8c014" 2798 | dependencies: 2799 | event-stream "~3.3.0" 2800 | 2801 | punycode@^1.4.1: 2802 | version "1.4.1" 2803 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2804 | 2805 | q@^1.1.2: 2806 | version "1.4.1" 2807 | resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" 2808 | 2809 | qs@~1.2.0: 2810 | version "1.2.2" 2811 | resolved "https://registry.yarnpkg.com/qs/-/qs-1.2.2.tgz#19b57ff24dc2a99ce1f8bdf6afcda59f8ef61f88" 2812 | 2813 | qs@~6.2.0: 2814 | version "6.2.1" 2815 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.1.tgz#ce03c5ff0935bc1d9d69a9f14cbd18e568d67625" 2816 | 2817 | qs@~6.3.0: 2818 | version "6.3.0" 2819 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 2820 | 2821 | randomatic@^1.1.3: 2822 | version "1.1.6" 2823 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2824 | dependencies: 2825 | is-number "^2.0.2" 2826 | kind-of "^3.0.2" 2827 | 2828 | rc@^1.0.1, rc@~1.1.6: 2829 | version "1.1.6" 2830 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 2831 | dependencies: 2832 | deep-extend "~0.4.0" 2833 | ini "~1.3.0" 2834 | minimist "^1.2.0" 2835 | strip-json-comments "~1.0.4" 2836 | 2837 | read-all-stream@^3.0.0: 2838 | version "3.1.0" 2839 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 2840 | dependencies: 2841 | pinkie-promise "^2.0.0" 2842 | readable-stream "^2.0.0" 2843 | 2844 | read-pkg-up@^1.0.1: 2845 | version "1.0.1" 2846 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2847 | dependencies: 2848 | find-up "^1.0.0" 2849 | read-pkg "^1.0.0" 2850 | 2851 | read-pkg@^1.0.0: 2852 | version "1.1.0" 2853 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2854 | dependencies: 2855 | load-json-file "^1.0.0" 2856 | normalize-package-data "^2.3.2" 2857 | path-type "^1.0.0" 2858 | 2859 | "readable-stream@>=1.0.33-1 <1.1.0-0", readable-stream@~1.0.26: 2860 | version "1.0.34" 2861 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 2862 | dependencies: 2863 | core-util-is "~1.0.0" 2864 | inherits "~2.0.1" 2865 | isarray "0.0.1" 2866 | string_decoder "~0.10.x" 2867 | 2868 | readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2: 2869 | version "2.2.2" 2870 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 2871 | dependencies: 2872 | buffer-shims "^1.0.0" 2873 | core-util-is "~1.0.0" 2874 | inherits "~2.0.1" 2875 | isarray "~1.0.0" 2876 | process-nextick-args "~1.0.6" 2877 | string_decoder "~0.10.x" 2878 | util-deprecate "~1.0.1" 2879 | 2880 | readable-stream@~1.1.9: 2881 | version "1.1.14" 2882 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 2883 | dependencies: 2884 | core-util-is "~1.0.0" 2885 | inherits "~2.0.1" 2886 | isarray "0.0.1" 2887 | string_decoder "~0.10.x" 2888 | 2889 | readable-stream@~2.0.5: 2890 | version "2.0.6" 2891 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 2892 | dependencies: 2893 | core-util-is "~1.0.0" 2894 | inherits "~2.0.1" 2895 | isarray "~1.0.0" 2896 | process-nextick-args "~1.0.6" 2897 | string_decoder "~0.10.x" 2898 | util-deprecate "~1.0.1" 2899 | 2900 | readable-stream@~2.1.4: 2901 | version "2.1.5" 2902 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 2903 | dependencies: 2904 | buffer-shims "^1.0.0" 2905 | core-util-is "~1.0.0" 2906 | inherits "~2.0.1" 2907 | isarray "~1.0.0" 2908 | process-nextick-args "~1.0.6" 2909 | string_decoder "~0.10.x" 2910 | util-deprecate "~1.0.1" 2911 | 2912 | readdirp@^2.0.0: 2913 | version "2.1.0" 2914 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2915 | dependencies: 2916 | graceful-fs "^4.1.2" 2917 | minimatch "^3.0.2" 2918 | readable-stream "^2.0.2" 2919 | set-immediate-shim "^1.0.1" 2920 | 2921 | readline2@^1.0.1: 2922 | version "1.0.1" 2923 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2924 | dependencies: 2925 | code-point-at "^1.0.0" 2926 | is-fullwidth-code-point "^1.0.0" 2927 | mute-stream "0.0.5" 2928 | 2929 | recast@0.10.33: 2930 | version "0.10.33" 2931 | resolved "https://registry.yarnpkg.com/recast/-/recast-0.10.33.tgz#942808f7aa016f1fa7142c461d7e5704aaa8d697" 2932 | dependencies: 2933 | ast-types "0.8.12" 2934 | esprima-fb "~15001.1001.0-dev-harmony-fb" 2935 | private "~0.1.5" 2936 | source-map "~0.5.0" 2937 | 2938 | recast@^0.10.10: 2939 | version "0.10.43" 2940 | resolved "https://registry.yarnpkg.com/recast/-/recast-0.10.43.tgz#b95d50f6d60761a5f6252e15d80678168491ce7f" 2941 | dependencies: 2942 | ast-types "0.8.15" 2943 | esprima-fb "~15001.1001.0-dev-harmony-fb" 2944 | private "~0.1.5" 2945 | source-map "~0.5.0" 2946 | 2947 | recast@^0.11.17: 2948 | version "0.11.20" 2949 | resolved "https://registry.yarnpkg.com/recast/-/recast-0.11.20.tgz#2cb9bec269c03b36d0598118a936cd0a293ca3f3" 2950 | dependencies: 2951 | ast-types "0.9.4" 2952 | esprima "~3.1.0" 2953 | private "~0.1.5" 2954 | source-map "~0.5.0" 2955 | 2956 | rechoir@^0.6.2: 2957 | version "0.6.2" 2958 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2959 | dependencies: 2960 | resolve "^1.1.6" 2961 | 2962 | redent@^1.0.0: 2963 | version "1.0.0" 2964 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 2965 | dependencies: 2966 | indent-string "^2.1.0" 2967 | strip-indent "^1.0.1" 2968 | 2969 | regenerate@^1.2.1: 2970 | version "1.3.2" 2971 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2972 | 2973 | regenerator-runtime@^0.10.0: 2974 | version "0.10.1" 2975 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb" 2976 | 2977 | regenerator@0.8.40: 2978 | version "0.8.40" 2979 | resolved "https://registry.yarnpkg.com/regenerator/-/regenerator-0.8.40.tgz#a0e457c58ebdbae575c9f8cd75127e93756435d8" 2980 | dependencies: 2981 | commoner "~0.10.3" 2982 | defs "~1.1.0" 2983 | esprima-fb "~15001.1001.0-dev-harmony-fb" 2984 | private "~0.1.5" 2985 | recast "0.10.33" 2986 | through "~2.3.8" 2987 | 2988 | regex-cache@^0.4.2: 2989 | version "0.4.3" 2990 | resolved "http://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2991 | dependencies: 2992 | is-equal-shallow "^0.1.3" 2993 | is-primitive "^2.0.0" 2994 | 2995 | regexpu@^1.3.0: 2996 | version "1.3.0" 2997 | resolved "https://registry.yarnpkg.com/regexpu/-/regexpu-1.3.0.tgz#e534dc991a9e5846050c98de6d7dd4a55c9ea16d" 2998 | dependencies: 2999 | esprima "^2.6.0" 3000 | recast "^0.10.10" 3001 | regenerate "^1.2.1" 3002 | regjsgen "^0.2.0" 3003 | regjsparser "^0.1.4" 3004 | 3005 | registry-url@^3.0.0: 3006 | version "3.1.0" 3007 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 3008 | dependencies: 3009 | rc "^1.0.1" 3010 | 3011 | regjsgen@^0.2.0: 3012 | version "0.2.0" 3013 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3014 | 3015 | regjsparser@^0.1.4: 3016 | version "0.1.5" 3017 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3018 | dependencies: 3019 | jsesc "~0.5.0" 3020 | 3021 | repeat-element@^1.1.2: 3022 | version "1.1.2" 3023 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3024 | 3025 | repeat-string@^1.5.2: 3026 | version "1.6.1" 3027 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3028 | 3029 | repeating@^1.1.0, repeating@^1.1.2: 3030 | version "1.1.3" 3031 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" 3032 | dependencies: 3033 | is-finite "^1.0.0" 3034 | 3035 | repeating@^2.0.0: 3036 | version "2.0.1" 3037 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3038 | dependencies: 3039 | is-finite "^1.0.0" 3040 | 3041 | replace-ext@0.0.1: 3042 | version "0.0.1" 3043 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" 3044 | 3045 | request-promise-core@1.1.1: 3046 | version "1.1.1" 3047 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 3048 | dependencies: 3049 | lodash "^4.13.1" 3050 | 3051 | request-promise@^4.1.1: 3052 | version "4.1.1" 3053 | resolved "https://registry.yarnpkg.com/request-promise/-/request-promise-4.1.1.tgz#26021e4f6f56fd4c309f6bf1ebd8c97a95ac1fb5" 3054 | dependencies: 3055 | bluebird "^3.4.1" 3056 | request-promise-core "1.1.1" 3057 | stealthy-require "^1.0.0" 3058 | 3059 | request@2.42.0: 3060 | version "2.42.0" 3061 | resolved "https://registry.yarnpkg.com/request/-/request-2.42.0.tgz#572bd0148938564040ac7ab148b96423a063304a" 3062 | dependencies: 3063 | bl "~0.9.0" 3064 | caseless "~0.6.0" 3065 | forever-agent "~0.5.0" 3066 | json-stringify-safe "~5.0.0" 3067 | mime-types "~1.0.1" 3068 | node-uuid "~1.4.0" 3069 | qs "~1.2.0" 3070 | tunnel-agent "~0.4.0" 3071 | optionalDependencies: 3072 | aws-sign2 "~0.5.0" 3073 | form-data "~0.1.0" 3074 | hawk "1.1.1" 3075 | http-signature "~0.10.0" 3076 | oauth-sign "~0.4.0" 3077 | stringstream "~0.0.4" 3078 | tough-cookie ">=0.12.0" 3079 | 3080 | request@^2.72.0, request@^2.74.0, request@^2.78.0, request@^2.79.0: 3081 | version "2.79.0" 3082 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 3083 | dependencies: 3084 | aws-sign2 "~0.6.0" 3085 | aws4 "^1.2.1" 3086 | caseless "~0.11.0" 3087 | combined-stream "~1.0.5" 3088 | extend "~3.0.0" 3089 | forever-agent "~0.6.1" 3090 | form-data "~2.1.1" 3091 | har-validator "~2.0.6" 3092 | hawk "~3.1.3" 3093 | http-signature "~1.1.0" 3094 | is-typedarray "~1.0.0" 3095 | isstream "~0.1.2" 3096 | json-stringify-safe "~5.0.1" 3097 | mime-types "~2.1.7" 3098 | oauth-sign "~0.8.1" 3099 | qs "~6.3.0" 3100 | stringstream "~0.0.4" 3101 | tough-cookie "~2.3.0" 3102 | tunnel-agent "~0.4.1" 3103 | uuid "^3.0.0" 3104 | 3105 | request@~2.74.0: 3106 | version "2.74.0" 3107 | resolved "https://registry.yarnpkg.com/request/-/request-2.74.0.tgz#7693ca768bbb0ea5c8ce08c084a45efa05b892ab" 3108 | dependencies: 3109 | aws-sign2 "~0.6.0" 3110 | aws4 "^1.2.1" 3111 | bl "~1.1.2" 3112 | caseless "~0.11.0" 3113 | combined-stream "~1.0.5" 3114 | extend "~3.0.0" 3115 | forever-agent "~0.6.1" 3116 | form-data "~1.0.0-rc4" 3117 | har-validator "~2.0.6" 3118 | hawk "~3.1.3" 3119 | http-signature "~1.1.0" 3120 | is-typedarray "~1.0.0" 3121 | isstream "~0.1.2" 3122 | json-stringify-safe "~5.0.1" 3123 | mime-types "~2.1.7" 3124 | node-uuid "~1.4.7" 3125 | oauth-sign "~0.8.1" 3126 | qs "~6.2.0" 3127 | stringstream "~0.0.4" 3128 | tough-cookie "~2.3.0" 3129 | tunnel-agent "~0.4.1" 3130 | 3131 | require-dir@^0.1.0: 3132 | version "0.1.0" 3133 | resolved "https://registry.yarnpkg.com/require-dir/-/require-dir-0.1.0.tgz#81e01e299faf5b74c34b6594f8e5add5985ddec5" 3134 | 3135 | require-directory@^2.1.1: 3136 | version "2.1.1" 3137 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3138 | 3139 | require-main-filename@^1.0.1: 3140 | version "1.0.1" 3141 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3142 | 3143 | require-relative@^0.8.7: 3144 | version "0.8.7" 3145 | resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" 3146 | 3147 | resolve-dir@^0.1.0: 3148 | version "0.1.1" 3149 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e" 3150 | dependencies: 3151 | expand-tilde "^1.2.2" 3152 | global-modules "^0.2.3" 3153 | 3154 | resolve@1.1.x, resolve@^1.1.6, resolve@^1.1.7: 3155 | version "1.1.7" 3156 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3157 | 3158 | restore-cursor@^1.0.1: 3159 | version "1.0.1" 3160 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3161 | dependencies: 3162 | exit-hook "^1.0.0" 3163 | onetime "^1.0.0" 3164 | 3165 | resumer@~0.0.0: 3166 | version "0.0.0" 3167 | resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759" 3168 | dependencies: 3169 | through "~2.3.4" 3170 | 3171 | retry@^0.10.0: 3172 | version "0.10.1" 3173 | resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" 3174 | 3175 | right-align@^0.1.1: 3176 | version "0.1.3" 3177 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3178 | dependencies: 3179 | align-text "^0.1.1" 3180 | 3181 | rimraf@2, rimraf@~2.5.1, rimraf@~2.5.4: 3182 | version "2.5.4" 3183 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 3184 | dependencies: 3185 | glob "^7.0.5" 3186 | 3187 | rimraf@2.4.3: 3188 | version "2.4.3" 3189 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.4.3.tgz#e5b51c9437a4c582adb955e9f28cf8d945e272af" 3190 | dependencies: 3191 | glob "^5.0.14" 3192 | 3193 | run-async@^0.1.0: 3194 | version "0.1.0" 3195 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3196 | dependencies: 3197 | once "^1.3.0" 3198 | 3199 | run-auto@^2.0.0: 3200 | version "2.0.0" 3201 | resolved "https://registry.yarnpkg.com/run-auto/-/run-auto-2.0.0.tgz#5f4353f58adbd6b74926489b4f259e1dad6a78d6" 3202 | dependencies: 3203 | dezalgo "^1.0.1" 3204 | 3205 | run-series@^1.1.3: 3206 | version "1.1.4" 3207 | resolved "https://registry.yarnpkg.com/run-series/-/run-series-1.1.4.tgz#89a73ddc5e75c9ef8ab6320c0a1600d6a41179b9" 3208 | 3209 | rx-lite@^3.1.2: 3210 | version "3.1.2" 3211 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3212 | 3213 | samsam@1.1.2, samsam@~1.1: 3214 | version "1.1.2" 3215 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.1.2.tgz#bec11fdc83a9fda063401210e40176c3024d1567" 3216 | 3217 | semantic-release@^6.3.2: 3218 | version "6.3.6" 3219 | resolved "https://registry.yarnpkg.com/semantic-release/-/semantic-release-6.3.6.tgz#629d0aec90b38a2957a57a4a9ee1214af51928c7" 3220 | dependencies: 3221 | "@semantic-release/commit-analyzer" "^2.0.0" 3222 | "@semantic-release/condition-travis" "^5.0.2" 3223 | "@semantic-release/error" "^1.0.0" 3224 | "@semantic-release/last-release-npm" "^1.2.1" 3225 | "@semantic-release/release-notes-generator" "^2.0.0" 3226 | git-head "^1.2.1" 3227 | github "^8.0.0" 3228 | lodash "^4.0.0" 3229 | nerf-dart "^1.0.0" 3230 | nopt "^4.0.0" 3231 | normalize-package-data "^2.3.4" 3232 | npmconf "^2.1.2" 3233 | npmlog "^4.0.0" 3234 | parse-github-repo-url "^1.3.0" 3235 | require-relative "^0.8.7" 3236 | run-auto "^2.0.0" 3237 | run-series "^1.1.3" 3238 | semver "^5.2.0" 3239 | 3240 | semver-diff@^2.0.0: 3241 | version "2.1.0" 3242 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 3243 | dependencies: 3244 | semver "^5.0.3" 3245 | 3246 | semver-regex@1.0.0: 3247 | version "1.0.0" 3248 | resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-1.0.0.tgz#92a4969065f9c70c694753d55248fc68f8f652c9" 3249 | 3250 | "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: 3251 | version "5.3.0" 3252 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3253 | 3254 | "semver@2 || 3 || 4", semver@^4.1.0: 3255 | version "4.3.6" 3256 | resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" 3257 | 3258 | semver@5.0.3, semver@~5.0.1: 3259 | version "5.0.3" 3260 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.0.3.tgz#77466de589cd5d3c95f138aa78bc569a3cb5d27a" 3261 | 3262 | sequencify@~0.0.7: 3263 | version "0.0.7" 3264 | resolved "https://registry.yarnpkg.com/sequencify/-/sequencify-0.0.7.tgz#90cff19d02e07027fd767f5ead3e7b95d1e7380c" 3265 | 3266 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3267 | version "2.0.0" 3268 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3269 | 3270 | set-immediate-shim@^1.0.1: 3271 | version "1.0.1" 3272 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3273 | 3274 | shebang-regex@^1.0.0: 3275 | version "1.0.0" 3276 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3277 | 3278 | shelljs@0.5.3: 3279 | version "0.5.3" 3280 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.5.3.tgz#c54982b996c76ef0c1e6b59fbdc5825f5b713113" 3281 | 3282 | sigmund@~1.0.0: 3283 | version "1.0.1" 3284 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 3285 | 3286 | signal-exit@^3.0.0: 3287 | version "3.0.2" 3288 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3289 | 3290 | simple-fmt@~0.1.0: 3291 | version "0.1.0" 3292 | resolved "https://registry.yarnpkg.com/simple-fmt/-/simple-fmt-0.1.0.tgz#191bf566a59e6530482cb25ab53b4a8dc85c3a6b" 3293 | 3294 | simple-is@~0.2.0: 3295 | version "0.2.0" 3296 | resolved "https://registry.yarnpkg.com/simple-is/-/simple-is-0.2.0.tgz#2abb75aade39deb5cc815ce10e6191164850baf0" 3297 | 3298 | sinon@1.17.2: 3299 | version "1.17.2" 3300 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-1.17.2.tgz#c1ea67b84a1e7b3350f6c4713efacef8e4ae8b71" 3301 | dependencies: 3302 | formatio "1.1.1" 3303 | lolex "1.3.2" 3304 | samsam "1.1.2" 3305 | util ">=0.10.3 <1" 3306 | 3307 | slash@^1.0.0: 3308 | version "1.0.0" 3309 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3310 | 3311 | slide@^1.1.3, slide@^1.1.5: 3312 | version "1.1.6" 3313 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3314 | 3315 | sntp@0.2.x: 3316 | version "0.2.4" 3317 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-0.2.4.tgz#fb885f18b0f3aad189f824862536bceeec750900" 3318 | dependencies: 3319 | hoek "0.9.x" 3320 | 3321 | sntp@1.x.x: 3322 | version "1.0.9" 3323 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3324 | dependencies: 3325 | hoek "2.x.x" 3326 | 3327 | source-map-support@^0.2.10: 3328 | version "0.2.10" 3329 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.2.10.tgz#ea5a3900a1c1cb25096a0ae8cc5c2b4b10ded3dc" 3330 | dependencies: 3331 | source-map "0.1.32" 3332 | 3333 | source-map@0.1.32: 3334 | version "0.1.32" 3335 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.32.tgz#c8b6c167797ba4740a8ea33252162ff08591b266" 3336 | dependencies: 3337 | amdefine ">=0.0.4" 3338 | 3339 | source-map@^0.4.4: 3340 | version "0.4.4" 3341 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3342 | dependencies: 3343 | amdefine ">=0.0.4" 3344 | 3345 | source-map@^0.5.0, source-map@~0.5.0, source-map@~0.5.1: 3346 | version "0.5.6" 3347 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3348 | 3349 | source-map@~0.2.0: 3350 | version "0.2.0" 3351 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3352 | dependencies: 3353 | amdefine ">=0.0.4" 3354 | 3355 | sparkles@^1.0.0: 3356 | version "1.0.0" 3357 | resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3" 3358 | 3359 | spawn-command@0.0.2-1: 3360 | version "0.0.2-1" 3361 | resolved "https://registry.yarnpkg.com/spawn-command/-/spawn-command-0.0.2-1.tgz#62f5e9466981c1b796dc5929937e11c9c6921bd0" 3362 | 3363 | spdx-correct@~1.0.0: 3364 | version "1.0.2" 3365 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3366 | dependencies: 3367 | spdx-license-ids "^1.0.2" 3368 | 3369 | spdx-expression-parse@~1.0.0: 3370 | version "1.0.4" 3371 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3372 | 3373 | spdx-license-ids@^1.0.2: 3374 | version "1.2.2" 3375 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3376 | 3377 | split@0.3: 3378 | version "0.3.3" 3379 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 3380 | dependencies: 3381 | through "2" 3382 | 3383 | split@~0.2.10: 3384 | version "0.2.10" 3385 | resolved "https://registry.yarnpkg.com/split/-/split-0.2.10.tgz#67097c601d697ce1368f418f06cd201cf0521a57" 3386 | dependencies: 3387 | through "2" 3388 | 3389 | sprintf-js@~1.0.2: 3390 | version "1.0.3" 3391 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3392 | 3393 | sshpk@^1.7.0: 3394 | version "1.10.2" 3395 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.2.tgz#d5a804ce22695515638e798dbe23273de070a5fa" 3396 | dependencies: 3397 | asn1 "~0.2.3" 3398 | assert-plus "^1.0.0" 3399 | dashdash "^1.12.0" 3400 | getpass "^0.1.1" 3401 | optionalDependencies: 3402 | bcrypt-pbkdf "^1.0.0" 3403 | ecc-jsbn "~0.1.1" 3404 | jodid25519 "^1.0.0" 3405 | jsbn "~0.1.0" 3406 | tweetnacl "~0.14.0" 3407 | 3408 | stable@~0.1.3: 3409 | version "0.1.5" 3410 | resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.5.tgz#08232f60c732e9890784b5bed0734f8b32a887b9" 3411 | 3412 | stealthy-require@^1.0.0: 3413 | version "1.0.0" 3414 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.0.0.tgz#1a8ed8fc19a8b56268f76f5a1a3e3832b0c26200" 3415 | 3416 | stream-combiner@~0.0.2, stream-combiner@~0.0.4: 3417 | version "0.0.4" 3418 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 3419 | dependencies: 3420 | duplexer "~0.1.1" 3421 | 3422 | stream-consume@^0.1.0, stream-consume@~0.1.0: 3423 | version "0.1.0" 3424 | resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.0.tgz#a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f" 3425 | 3426 | stream-shift@^1.0.0: 3427 | version "1.0.0" 3428 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 3429 | 3430 | string-length@^1.0.0: 3431 | version "1.0.1" 3432 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 3433 | dependencies: 3434 | strip-ansi "^3.0.0" 3435 | 3436 | string-width@^1.0.1: 3437 | version "1.0.2" 3438 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3439 | dependencies: 3440 | code-point-at "^1.0.0" 3441 | is-fullwidth-code-point "^1.0.0" 3442 | strip-ansi "^3.0.0" 3443 | 3444 | string_decoder@~0.10.x: 3445 | version "0.10.31" 3446 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3447 | 3448 | stringmap@~0.2.2: 3449 | version "0.2.2" 3450 | resolved "https://registry.yarnpkg.com/stringmap/-/stringmap-0.2.2.tgz#556c137b258f942b8776f5b2ef582aa069d7d1b1" 3451 | 3452 | stringset@~0.2.1: 3453 | version "0.2.1" 3454 | resolved "https://registry.yarnpkg.com/stringset/-/stringset-0.2.1.tgz#ef259c4e349344377fcd1c913dd2e848c9c042b5" 3455 | 3456 | stringstream@~0.0.4: 3457 | version "0.0.5" 3458 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3459 | 3460 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3461 | version "3.0.1" 3462 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3463 | dependencies: 3464 | ansi-regex "^2.0.0" 3465 | 3466 | strip-bom@^1.0.0: 3467 | version "1.0.0" 3468 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-1.0.0.tgz#85b8862f3844b5a6d5ec8467a93598173a36f794" 3469 | dependencies: 3470 | first-chunk-stream "^1.0.0" 3471 | is-utf8 "^0.2.0" 3472 | 3473 | strip-bom@^2.0.0: 3474 | version "2.0.0" 3475 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3476 | dependencies: 3477 | is-utf8 "^0.2.0" 3478 | 3479 | strip-indent@^1.0.1: 3480 | version "1.0.1" 3481 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 3482 | dependencies: 3483 | get-stdin "^4.0.1" 3484 | 3485 | strip-json-comments@2.0.0: 3486 | version "2.0.0" 3487 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.0.tgz#413fc5a34ef34a29e4376c7eb632c884d2e97f95" 3488 | 3489 | strip-json-comments@~1.0.4: 3490 | version "1.0.4" 3491 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 3492 | 3493 | supports-color@1.2.0: 3494 | version "1.2.0" 3495 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-1.2.0.tgz#ff1ed1e61169d06b3cf2d588e188b18d8847e17e" 3496 | 3497 | supports-color@^0.2.0: 3498 | version "0.2.0" 3499 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a" 3500 | 3501 | supports-color@^2.0.0: 3502 | version "2.0.0" 3503 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3504 | 3505 | supports-color@^3.1.0: 3506 | version "3.2.3" 3507 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3508 | dependencies: 3509 | has-flag "^1.0.0" 3510 | 3511 | tape@2.3.0: 3512 | version "2.3.0" 3513 | resolved "https://registry.yarnpkg.com/tape/-/tape-2.3.0.tgz#0dfeec709227fbcc9170abe7f046962b271431db" 3514 | dependencies: 3515 | deep-equal "~0.1.0" 3516 | defined "~0.0.0" 3517 | inherits "~2.0.1" 3518 | jsonify "~0.0.0" 3519 | resumer "~0.0.0" 3520 | split "~0.2.10" 3521 | stream-combiner "~0.0.2" 3522 | through "~2.3.4" 3523 | 3524 | tar-pack@~3.3.0: 3525 | version "3.3.0" 3526 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 3527 | dependencies: 3528 | debug "~2.2.0" 3529 | fstream "~1.0.10" 3530 | fstream-ignore "~1.0.5" 3531 | once "~1.3.3" 3532 | readable-stream "~2.1.4" 3533 | rimraf "~2.5.1" 3534 | tar "~2.2.1" 3535 | uid-number "~0.0.6" 3536 | 3537 | tar@~2.2.1: 3538 | version "2.2.1" 3539 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3540 | dependencies: 3541 | block-stream "*" 3542 | fstream "^1.0.2" 3543 | inherits "2" 3544 | 3545 | through2@^0.6.1, through2@^0.6.5: 3546 | version "0.6.5" 3547 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 3548 | dependencies: 3549 | readable-stream ">=1.0.33-1 <1.1.0-0" 3550 | xtend ">=4.0.0 <4.1.0-0" 3551 | 3552 | through2@^2.0.0: 3553 | version "2.0.3" 3554 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3555 | dependencies: 3556 | readable-stream "^2.1.5" 3557 | xtend "~4.0.1" 3558 | 3559 | through@2, through@^2.3.6, through@~2.3, through@~2.3.1, through@~2.3.4, through@~2.3.8: 3560 | version "2.3.8" 3561 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3562 | 3563 | tildify@^1.0.0: 3564 | version "1.2.0" 3565 | resolved "https://registry.yarnpkg.com/tildify/-/tildify-1.2.0.tgz#dcec03f55dca9b7aa3e5b04f21817eb56e63588a" 3566 | dependencies: 3567 | os-homedir "^1.0.0" 3568 | 3569 | time-stamp@^1.0.0: 3570 | version "1.0.1" 3571 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.0.1.tgz#9f4bd23559c9365966f3302dbba2b07c6b99b151" 3572 | 3573 | timed-out@^2.0.0: 3574 | version "2.0.0" 3575 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-2.0.0.tgz#f38b0ae81d3747d628001f41dafc652ace671c0a" 3576 | 3577 | to-fast-properties@^1.0.0: 3578 | version "1.0.2" 3579 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3580 | 3581 | touch@1.0.0: 3582 | version "1.0.0" 3583 | resolved "https://registry.yarnpkg.com/touch/-/touch-1.0.0.tgz#449cbe2dbae5a8c8038e30d71fa0ff464947c4de" 3584 | dependencies: 3585 | nopt "~1.0.10" 3586 | 3587 | tough-cookie@>=0.12.0, tough-cookie@~2.3.0: 3588 | version "2.3.2" 3589 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3590 | dependencies: 3591 | punycode "^1.4.1" 3592 | 3593 | travis-ci@^2.1.1: 3594 | version "2.1.1" 3595 | resolved "https://registry.yarnpkg.com/travis-ci/-/travis-ci-2.1.1.tgz#98696265af827ae3576f31aa06d876e74b4b082e" 3596 | dependencies: 3597 | github "~0.1.10" 3598 | lodash "~1.3.1" 3599 | request "~2.74.0" 3600 | underscore.string "~2.2.0rc" 3601 | 3602 | travis-deploy-once@1.0.0-node-0.10-support: 3603 | version "1.0.0-node-0.10-support" 3604 | resolved "https://registry.yarnpkg.com/travis-deploy-once/-/travis-deploy-once-1.0.0-node-0.10-support.tgz#98ecce7d95b2f4ba5dcdeeebf54b9df87713d5e6" 3605 | dependencies: 3606 | babel-polyfill "^6.16.0" 3607 | bluebird "^3.4.6" 3608 | request "^2.78.0" 3609 | request-promise "^4.1.1" 3610 | travis-ci "^2.1.1" 3611 | 3612 | trim-newlines@^1.0.0: 3613 | version "1.0.0" 3614 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 3615 | 3616 | trim-right@^1.0.0: 3617 | version "1.0.1" 3618 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3619 | 3620 | try-resolve@^1.0.0: 3621 | version "1.0.1" 3622 | resolved "https://registry.yarnpkg.com/try-resolve/-/try-resolve-1.0.1.tgz#cfde6fabd72d63e5797cfaab873abbe8e700e912" 3623 | 3624 | tryor@~0.1.2: 3625 | version "0.1.2" 3626 | resolved "https://registry.yarnpkg.com/tryor/-/tryor-0.1.2.tgz#8145e4ca7caff40acde3ccf946e8b8bb75b4172b" 3627 | 3628 | tunnel-agent@~0.4.0, tunnel-agent@~0.4.1: 3629 | version "0.4.3" 3630 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3631 | 3632 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3633 | version "0.14.5" 3634 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3635 | 3636 | type-check@~0.3.1: 3637 | version "0.3.2" 3638 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3639 | dependencies: 3640 | prelude-ls "~1.1.2" 3641 | 3642 | type-detect@0.1.1: 3643 | version "0.1.1" 3644 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 3645 | 3646 | type-detect@^1.0.0: 3647 | version "1.0.0" 3648 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 3649 | 3650 | typedarray@^0.0.6: 3651 | version "0.0.6" 3652 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3653 | 3654 | uglify-js@^2.6: 3655 | version "2.7.5" 3656 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8" 3657 | dependencies: 3658 | async "~0.2.6" 3659 | source-map "~0.5.1" 3660 | uglify-to-browserify "~1.0.0" 3661 | yargs "~3.10.0" 3662 | 3663 | uglify-to-browserify@~1.0.0: 3664 | version "1.0.2" 3665 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3666 | 3667 | uid-number@0.0.5: 3668 | version "0.0.5" 3669 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.5.tgz#5a3db23ef5dbd55b81fce0ec9a2ac6fccdebb81e" 3670 | 3671 | uid-number@~0.0.6: 3672 | version "0.0.6" 3673 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3674 | 3675 | unc-path-regex@^0.1.0: 3676 | version "0.1.2" 3677 | resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" 3678 | 3679 | undefsafe@0.0.3: 3680 | version "0.0.3" 3681 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-0.0.3.tgz#ecca3a03e56b9af17385baac812ac83b994a962f" 3682 | 3683 | underscore.string@~2.2.0rc: 3684 | version "2.2.1" 3685 | resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-2.2.1.tgz#d7c0fa2af5d5a1a67f4253daee98132e733f0f19" 3686 | 3687 | unique-stream@^1.0.0: 3688 | version "1.0.0" 3689 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-1.0.0.tgz#d59a4a75427447d9aa6c91e70263f8d26a4b104b" 3690 | 3691 | update-notifier@0.5.0: 3692 | version "0.5.0" 3693 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-0.5.0.tgz#07b5dc2066b3627ab3b4f530130f7eddda07a4cc" 3694 | dependencies: 3695 | chalk "^1.0.0" 3696 | configstore "^1.0.0" 3697 | is-npm "^1.0.0" 3698 | latest-version "^1.0.0" 3699 | repeating "^1.1.2" 3700 | semver-diff "^2.0.0" 3701 | string-length "^1.0.0" 3702 | 3703 | urlgrey@0.4.0: 3704 | version "0.4.0" 3705 | resolved "https://registry.yarnpkg.com/urlgrey/-/urlgrey-0.4.0.tgz#f065357040fb35c3b311d4e5dc36484d96dbea06" 3706 | dependencies: 3707 | tape "2.3.0" 3708 | 3709 | user-home@^1.1.1: 3710 | version "1.1.1" 3711 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3712 | 3713 | util-deprecate@~1.0.1: 3714 | version "1.0.2" 3715 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3716 | 3717 | "util@>=0.10.3 <1": 3718 | version "0.10.3" 3719 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3720 | dependencies: 3721 | inherits "2.0.1" 3722 | 3723 | uuid@^2.0.1: 3724 | version "2.0.3" 3725 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3726 | 3727 | uuid@^3.0.0: 3728 | version "3.0.1" 3729 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3730 | 3731 | v8flags@^2.0.2: 3732 | version "2.0.11" 3733 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 3734 | dependencies: 3735 | user-home "^1.1.1" 3736 | 3737 | validate-npm-package-license@^3.0.1: 3738 | version "3.0.1" 3739 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3740 | dependencies: 3741 | spdx-correct "~1.0.0" 3742 | spdx-expression-parse "~1.0.0" 3743 | 3744 | verror@1.3.6: 3745 | version "1.3.6" 3746 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3747 | dependencies: 3748 | extsprintf "1.0.2" 3749 | 3750 | vinyl-fs@^0.3.0: 3751 | version "0.3.14" 3752 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-0.3.14.tgz#9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6" 3753 | dependencies: 3754 | defaults "^1.0.0" 3755 | glob-stream "^3.1.5" 3756 | glob-watcher "^0.0.6" 3757 | graceful-fs "^3.0.0" 3758 | mkdirp "^0.5.0" 3759 | strip-bom "^1.0.0" 3760 | through2 "^0.6.1" 3761 | vinyl "^0.4.0" 3762 | 3763 | vinyl@^0.4.0: 3764 | version "0.4.6" 3765 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847" 3766 | dependencies: 3767 | clone "^0.2.0" 3768 | clone-stats "^0.0.1" 3769 | 3770 | vinyl@^0.5.0: 3771 | version "0.5.3" 3772 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde" 3773 | dependencies: 3774 | clone "^1.0.0" 3775 | clone-stats "^0.0.1" 3776 | replace-ext "0.0.1" 3777 | 3778 | walk@^2.3.9: 3779 | version "2.3.9" 3780 | resolved "https://registry.yarnpkg.com/walk/-/walk-2.3.9.tgz#31b4db6678f2ae01c39ea9fb8725a9031e558a7b" 3781 | dependencies: 3782 | foreachasync "^3.0.0" 3783 | 3784 | which-module@^1.0.0: 3785 | version "1.0.0" 3786 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3787 | 3788 | which@^1.1.1, which@^1.2.12: 3789 | version "1.2.12" 3790 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" 3791 | dependencies: 3792 | isexe "^1.1.1" 3793 | 3794 | wide-align@^1.1.0: 3795 | version "1.1.0" 3796 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3797 | dependencies: 3798 | string-width "^1.0.1" 3799 | 3800 | window-size@0.1.0: 3801 | version "0.1.0" 3802 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3803 | 3804 | window-size@^0.1.2: 3805 | version "0.1.4" 3806 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" 3807 | 3808 | window-size@^0.2.0: 3809 | version "0.2.0" 3810 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 3811 | 3812 | word-wrap@^1.0.3: 3813 | version "1.2.0" 3814 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.0.tgz#ee971b6b7ce9ecae73a4b89a1cfdaa48dcf38ce7" 3815 | 3816 | wordwrap@0.0.2: 3817 | version "0.0.2" 3818 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3819 | 3820 | wordwrap@^1.0.0: 3821 | version "1.0.0" 3822 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3823 | 3824 | wordwrap@~0.0.2: 3825 | version "0.0.3" 3826 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3827 | 3828 | wrap-ansi@^2.0.0: 3829 | version "2.1.0" 3830 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3831 | dependencies: 3832 | string-width "^1.0.1" 3833 | strip-ansi "^3.0.1" 3834 | 3835 | wrappy@1: 3836 | version "1.0.2" 3837 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3838 | 3839 | write-file-atomic@^1.1.2: 3840 | version "1.3.1" 3841 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.1.tgz#7d45ba32316328dd1ec7d90f60ebc0d845bb759a" 3842 | dependencies: 3843 | graceful-fs "^4.1.11" 3844 | imurmurhash "^0.1.4" 3845 | slide "^1.1.5" 3846 | 3847 | xdg-basedir@^2.0.0: 3848 | version "2.0.0" 3849 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 3850 | dependencies: 3851 | os-homedir "^1.0.0" 3852 | 3853 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@~4.0.1: 3854 | version "4.0.1" 3855 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3856 | 3857 | y18n@^3.2.0, y18n@^3.2.1: 3858 | version "3.2.1" 3859 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3860 | 3861 | yargs-parser@^2.4.1: 3862 | version "2.4.1" 3863 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-2.4.1.tgz#85568de3cf150ff49fa51825f03a8c880ddcc5c4" 3864 | dependencies: 3865 | camelcase "^3.0.0" 3866 | lodash.assign "^4.0.6" 3867 | 3868 | yargs@^4.7.0: 3869 | version "4.8.1" 3870 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0" 3871 | dependencies: 3872 | cliui "^3.2.0" 3873 | decamelize "^1.1.1" 3874 | get-caller-file "^1.0.1" 3875 | lodash.assign "^4.0.3" 3876 | os-locale "^1.4.0" 3877 | read-pkg-up "^1.0.1" 3878 | require-directory "^2.1.1" 3879 | require-main-filename "^1.0.1" 3880 | set-blocking "^2.0.0" 3881 | string-width "^1.0.1" 3882 | which-module "^1.0.0" 3883 | window-size "^0.2.0" 3884 | y18n "^3.2.1" 3885 | yargs-parser "^2.4.1" 3886 | 3887 | yargs@~3.10.0: 3888 | version "3.10.0" 3889 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3890 | dependencies: 3891 | camelcase "^1.0.2" 3892 | cliui "^2.1.0" 3893 | decamelize "^1.0.0" 3894 | window-size "0.1.0" 3895 | 3896 | yargs@~3.27.0: 3897 | version "3.27.0" 3898 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.27.0.tgz#21205469316e939131d59f2da0c6d7f98221ea40" 3899 | dependencies: 3900 | camelcase "^1.2.1" 3901 | cliui "^2.1.0" 3902 | decamelize "^1.0.0" 3903 | os-locale "^1.4.0" 3904 | window-size "^0.1.2" 3905 | y18n "^3.2.0" 3906 | --------------------------------------------------------------------------------