├── .gitignore ├── README.md ├── get-next-version.js ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # git-flow-standard-version 2 | 3 | Examples of using [conventional commits](https://conventionalcommits.org/) and [standard-version](https://github.com/conventional-changelog/standard-version) with [Git flow](http://nvie.com/posts/a-successful-git-branching-model/). 4 | 5 | The Git flow branches that we are interested in are the following branches : 6 | 7 | * `develop` (long lived) - latest development work, deploys to a dev environment 8 | * `release/*` (short lived) - release candidate, bug fixes for a release, deploys to a test environment 9 | * `master` (long lived) - last release, deploys to a production environment 10 | * `hotfix/*` (short lived) - urgent fixes to production 11 | 12 | # standard-version behaviour 13 | 14 | `standard-version` uses the format of your commit messages to determine the next [semver](http://semver.org/) version number of your release in the format *major.minor.patch*. 15 | 16 | If you have only applied `fix: ...` commits, then it will bump your *patch* number, if you have applied a `feat: ...` commit, then it will bump your *minor* version, and if you have applied a `BREAKING CHANGE` commit, then it will bump your *major* number. See [conventional commits](https://conventionalcommits.org/) for more details. 17 | 18 | This means that if your starting version number is `1.0.0` and you apply ten `fix: ...` commits, then your next version number will be `1.0.1`, not `1.0.10`. Likewise, if you applied ten `fix: ...` commits and ten `feat: ...` commits, then your next version number will be `1.1.0`. 19 | 20 | # Getting started 21 | 22 | * Run `git flow init` and configure all of the default options 23 | * When using `standard-version` for versioning, you need to add a `package.json` file to the root of your Git repository 24 | * You can install [yarn](https://yarnpkg.com/en/) and use `yarn init` 25 | * Add `standard-version` as a development dependency with `yarn add standard-version -D` 26 | * Add a `release` script in your package.json: 27 | 28 | ``` 29 | "scripts": { 30 | "release": "standard-version" 31 | }, 32 | "standard-version": { 33 | "skip": { 34 | "tag": true 35 | } 36 | } 37 | ``` 38 | 39 | > Note as we will be leaving release tags to `git flow`, we disable them in `standard-version`. `standard-version` will take care of bumping our `package.json` file with the version number, and updating the `CHANGELOG.md` file with changes in each release. 40 | 41 | # Features, fixes, docs, performance improvements, refactoring, etc: 42 | 43 | * Create a branch off of `develop` 44 | * If you wish to maintain pull requests so that changes are reviewed and accepted to `develop`, then you can choose not use the `git flow` commands for feature branches, and instead just push your `feature/...` or `bugfix/...` branches to a remote equivalent and create a pull request to `develop` 45 | * Branches can actually be called anything except `develop`, `master`, `release/*`, or `hotfix/*` 46 | * Commit messages should follow conventional commits, e.g. `feat: ...` for features, and `fix: ...` for fixes 47 | * Other work which shouldn't affect the version number should also follow a standard commit message structure, e.g. `docs: ...` or `refactor: ...` 48 | 49 | # Starting a release 50 | 51 | * Do not choose a version number yourself for your `release/*` branch, instead get the next version number based from your conventional commits. 52 | * See [an example script](https://github.com/devdigital/git-flow-standard-version/blob/master/get-next-version.js) that you can add to your `package.json`. 53 | * With the version number calculated for you, use the `git flow release start ` to start a release 54 | * This will create a `release/` branch 55 | * Within this branch, you should then run `yarn run release` to increment the version number within `package.json` automatically to match the release branch name, as well as updating the `CHANGELOG.md` file automatically 56 | 57 | # Bugfixing a release 58 | 59 | * Your `release/` branch should deploy to a test environment 60 | * Based on testing feedback, you may need to fix a bug for that release, whilst the `develop` branch has continued on into development for the next release 61 | * To do this you can create a branch off of your `release/` branch 62 | * If you wish to maintain pull requests for release bug fixes, then you can push your e.g. `bugfix/...` branch to a remote equivalent and create a pull request into `release/` 63 | * **You should not** run `standard-version` (`yarn run release`) after merging a release bugfix, as you want the release version to stay the same (the release branch name and version should be immutable) 64 | * Any release bug fixes will be included in the version calculation for your *next* release, as well as being included in the *next* `CHANGELOG.md` 65 | 66 | # Finishing a release 67 | 68 | * Once happy, you can merge your `release/` branch into `master` and any changes back into `develop` with `git flow release finish ` 69 | * This also creates a tag with the version number (TODO: is this an issue with standard-version and git flow both creating a release tag?) 70 | * The release branch is also automatically deleted 71 | * Your production build should then begin from the updated `master` branch and your latest release is now ready to deploy from `master` 72 | 73 | # Creating a hotfix 74 | 75 | * If you need to fix a critical bug in production, then you need to create a hotfix 76 | * These are branches off of `master` and can be created with `git flow hotfix start ` - as a hotfix is a *fix*, you can just increment the patch version number from the last completed release, e.g. if `master` is release 1.0.1, then create a `hotfix/1.0.2` branch 77 | * You must then update the `package.json` file to in the hotfix branch to match the hotfix branch version number (otherwise the `develop` branch will not have its version updated when you finish the hotfix, and the tagging will fail on the next release start) 78 | * **You should not** run `standard-version` as you do not wish to update the `CHANGELOG.md` - the hotfix will be included in the next release `CHANGELOG.md` 79 | 80 | # Finishing the hotfix 81 | 82 | * Once you have made the hotfix, you should then merge it into `master` and back into the `develop` branch using `git flow hotfix finish ` 83 | * This does mean *you lose the ability to do pull requests on hotfixes*, and it also means you need push permission to `master` to be possible. TODO: are there ways around this? 84 | * **You should not** run `standard-version` when your hotfix is merged into master, as the fix will be included in the *next* release version calculation and in the *next* `CHANGELOG.md` 85 | -------------------------------------------------------------------------------- /get-next-version.js: -------------------------------------------------------------------------------- 1 | const packageJson = require('./package.json') 2 | const conventionalRecommendedBump = require('conventional-recommended-bump') 3 | const semver = require('semver') 4 | 5 | const getNextVersion = currentVersion => { 6 | return new Promise((resolve, reject) => { 7 | conventionalRecommendedBump( 8 | { 9 | preset: 'angular', 10 | }, 11 | (err, release) => { 12 | if (err) { 13 | reject(err) 14 | return 15 | } 16 | 17 | const nextVersion = 18 | semver.valid(release.releaseType) || 19 | semver.inc(currentVersion, release.releaseType) 20 | 21 | resolve(nextVersion) 22 | } 23 | ) 24 | }) 25 | } 26 | 27 | getNextVersion(packageJson.version) 28 | .then(version => console.log(version)) 29 | .catch(error => console.log(error)) 30 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "git-flow-standard-version", 3 | "version": "1.0.1", 4 | "main": "index.js", 5 | "repository": "https://github.com/devdigital/git-flow-standard-version.git", 6 | "license": "MIT", 7 | "scripts": { 8 | "get-next-version": "node ./get-next-version.js", 9 | "release": "standard-version" 10 | }, 11 | "devDependencies": { 12 | "conventional-recommended-bump": "^1.0.1", 13 | "nodegit": "^0.20.1", 14 | "nodegit-flow": "^0.4.2", 15 | "semver": "^5.4.1", 16 | "standard-version": "^4.2.0" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | JSONStream@^1.0.4: 6 | version "1.3.1" 7 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.1.tgz#707f761e01dae9e16f1bcf93703b78c70966579a" 8 | dependencies: 9 | jsonparse "^1.2.0" 10 | through ">=2.2.7 <3" 11 | 12 | abbrev@1: 13 | version "1.1.0" 14 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 15 | 16 | ajv@^4.9.1: 17 | version "4.11.8" 18 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 19 | dependencies: 20 | co "^4.6.0" 21 | json-stable-stringify "^1.0.1" 22 | 23 | align-text@^0.1.1, align-text@^0.1.3: 24 | version "0.1.4" 25 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 26 | dependencies: 27 | kind-of "^3.0.2" 28 | longest "^1.0.1" 29 | repeat-string "^1.5.2" 30 | 31 | amdefine@>=0.0.4: 32 | version "1.0.1" 33 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 34 | 35 | ansi-regex@^2.0.0: 36 | version "2.1.1" 37 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 38 | 39 | ansi-regex@^3.0.0: 40 | version "3.0.0" 41 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 42 | 43 | ansi-styles@^2.2.1: 44 | version "2.2.1" 45 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 46 | 47 | aproba@^1.0.3: 48 | version "1.1.2" 49 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 50 | 51 | are-we-there-yet@~1.1.2: 52 | version "1.1.4" 53 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 54 | dependencies: 55 | delegates "^1.0.0" 56 | readable-stream "^2.0.6" 57 | 58 | array-find-index@^1.0.1: 59 | version "1.0.2" 60 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 61 | 62 | array-ify@^1.0.0: 63 | version "1.0.0" 64 | resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" 65 | 66 | asap@~2.0.3: 67 | version "2.0.6" 68 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 69 | 70 | asn1@~0.2.3: 71 | version "0.2.3" 72 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 73 | 74 | assert-plus@1.0.0, assert-plus@^1.0.0: 75 | version "1.0.0" 76 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 77 | 78 | assert-plus@^0.2.0: 79 | version "0.2.0" 80 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 81 | 82 | async@^1.4.0: 83 | version "1.5.2" 84 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 85 | 86 | asynckit@^0.4.0: 87 | version "0.4.0" 88 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 89 | 90 | aws-sign2@~0.6.0: 91 | version "0.6.0" 92 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 93 | 94 | aws4@^1.2.1: 95 | version "1.6.0" 96 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 97 | 98 | balanced-match@^1.0.0: 99 | version "1.0.0" 100 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 101 | 102 | bcrypt-pbkdf@^1.0.0: 103 | version "1.0.1" 104 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 105 | dependencies: 106 | tweetnacl "^0.14.3" 107 | 108 | block-stream@*: 109 | version "0.0.9" 110 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 111 | dependencies: 112 | inherits "~2.0.0" 113 | 114 | boom@2.x.x: 115 | version "2.10.1" 116 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 117 | dependencies: 118 | hoek "2.x.x" 119 | 120 | brace-expansion@^1.1.7: 121 | version "1.1.8" 122 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 123 | dependencies: 124 | balanced-match "^1.0.0" 125 | concat-map "0.0.1" 126 | 127 | builtin-modules@^1.0.0: 128 | version "1.1.1" 129 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 130 | 131 | camelcase-keys@^2.0.0: 132 | version "2.1.0" 133 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 134 | dependencies: 135 | camelcase "^2.0.0" 136 | map-obj "^1.0.0" 137 | 138 | camelcase@^1.0.2: 139 | version "1.2.1" 140 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 141 | 142 | camelcase@^2.0.0: 143 | version "2.1.1" 144 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 145 | 146 | camelcase@^4.1.0: 147 | version "4.1.0" 148 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 149 | 150 | caseless@~0.12.0: 151 | version "0.12.0" 152 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 153 | 154 | center-align@^0.1.1: 155 | version "0.1.3" 156 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 157 | dependencies: 158 | align-text "^0.1.3" 159 | lazy-cache "^1.0.3" 160 | 161 | chalk@^1.1.3: 162 | version "1.1.3" 163 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 164 | dependencies: 165 | ansi-styles "^2.2.1" 166 | escape-string-regexp "^1.0.2" 167 | has-ansi "^2.0.0" 168 | strip-ansi "^3.0.0" 169 | supports-color "^2.0.0" 170 | 171 | cliui@^2.1.0: 172 | version "2.1.0" 173 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 174 | dependencies: 175 | center-align "^0.1.1" 176 | right-align "^0.1.1" 177 | wordwrap "0.0.2" 178 | 179 | cliui@^3.2.0: 180 | version "3.2.0" 181 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 182 | dependencies: 183 | string-width "^1.0.1" 184 | strip-ansi "^3.0.1" 185 | wrap-ansi "^2.0.0" 186 | 187 | co@^4.6.0: 188 | version "4.6.0" 189 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 190 | 191 | code-point-at@^1.0.0: 192 | version "1.1.0" 193 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 194 | 195 | combined-stream@^1.0.5, combined-stream@~1.0.5: 196 | version "1.0.5" 197 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 198 | dependencies: 199 | delayed-stream "~1.0.0" 200 | 201 | compare-func@^1.3.1: 202 | version "1.3.2" 203 | resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648" 204 | dependencies: 205 | array-ify "^1.0.0" 206 | dot-prop "^3.0.0" 207 | 208 | concat-map@0.0.1: 209 | version "0.0.1" 210 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 211 | 212 | concat-stream@^1.4.10: 213 | version "1.6.0" 214 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 215 | dependencies: 216 | inherits "^2.0.3" 217 | readable-stream "^2.2.2" 218 | typedarray "^0.0.6" 219 | 220 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 221 | version "1.1.0" 222 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 223 | 224 | conventional-changelog-angular@^1.5.0: 225 | version "1.5.0" 226 | resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-1.5.0.tgz#50b2d45008448455fdf67e06ea01972fbd08182a" 227 | dependencies: 228 | compare-func "^1.3.1" 229 | q "^1.4.1" 230 | 231 | conventional-changelog-atom@^0.1.1: 232 | version "0.1.1" 233 | resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-0.1.1.tgz#d40a9b297961b53c745e5d1718fd1a3379f6a92f" 234 | dependencies: 235 | q "^1.4.1" 236 | 237 | conventional-changelog-codemirror@^0.2.0: 238 | version "0.2.0" 239 | resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-0.2.0.tgz#3cc925955f3b14402827b15168049821972d9459" 240 | dependencies: 241 | q "^1.4.1" 242 | 243 | conventional-changelog-core@^1.9.1: 244 | version "1.9.1" 245 | resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-1.9.1.tgz#ddf767c405850dfc8df31726c80fa1a6a10bdc7b" 246 | dependencies: 247 | conventional-changelog-writer "^2.0.1" 248 | conventional-commits-parser "^2.0.0" 249 | dateformat "^1.0.12" 250 | get-pkg-repo "^1.0.0" 251 | git-raw-commits "^1.2.0" 252 | git-remote-origin-url "^2.0.0" 253 | git-semver-tags "^1.2.1" 254 | lodash "^4.0.0" 255 | normalize-package-data "^2.3.5" 256 | q "^1.4.1" 257 | read-pkg "^1.1.0" 258 | read-pkg-up "^1.0.1" 259 | through2 "^2.0.0" 260 | 261 | conventional-changelog-ember@^0.2.7: 262 | version "0.2.7" 263 | resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-0.2.7.tgz#c6aff35976284e7222649f81c62bd96ff3217bd2" 264 | dependencies: 265 | q "^1.4.1" 266 | 267 | conventional-changelog-eslint@^0.2.0: 268 | version "0.2.0" 269 | resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-0.2.0.tgz#b4b9b5dc09417844d87c7bcfb16bdcc686c4b1c1" 270 | dependencies: 271 | q "^1.4.1" 272 | 273 | conventional-changelog-express@^0.2.0: 274 | version "0.2.0" 275 | resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-0.2.0.tgz#8d666ad41b10ebf964a4602062ddd2e00deb518d" 276 | dependencies: 277 | q "^1.4.1" 278 | 279 | conventional-changelog-jquery@^0.1.0: 280 | version "0.1.0" 281 | resolved "https://registry.yarnpkg.com/conventional-changelog-jquery/-/conventional-changelog-jquery-0.1.0.tgz#0208397162e3846986e71273b6c79c5b5f80f510" 282 | dependencies: 283 | q "^1.4.1" 284 | 285 | conventional-changelog-jscs@^0.1.0: 286 | version "0.1.0" 287 | resolved "https://registry.yarnpkg.com/conventional-changelog-jscs/-/conventional-changelog-jscs-0.1.0.tgz#0479eb443cc7d72c58bf0bcf0ef1d444a92f0e5c" 288 | dependencies: 289 | q "^1.4.1" 290 | 291 | conventional-changelog-jshint@^0.2.0: 292 | version "0.2.0" 293 | resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-0.2.0.tgz#63ad7aec66cd1ae559bafe80348c4657a6eb1872" 294 | dependencies: 295 | compare-func "^1.3.1" 296 | q "^1.4.1" 297 | 298 | conventional-changelog-writer@^2.0.1: 299 | version "2.0.1" 300 | resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-2.0.1.tgz#47c10d0faba526b78d194389d1e931d09ee62372" 301 | dependencies: 302 | compare-func "^1.3.1" 303 | conventional-commits-filter "^1.0.0" 304 | dateformat "^1.0.11" 305 | handlebars "^4.0.2" 306 | json-stringify-safe "^5.0.1" 307 | lodash "^4.0.0" 308 | meow "^3.3.0" 309 | semver "^5.0.1" 310 | split "^1.0.0" 311 | through2 "^2.0.0" 312 | 313 | conventional-changelog@^1.1.0: 314 | version "1.1.5" 315 | resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-1.1.5.tgz#4c46fb64b2986cab19888d8c4b87ca7c0e431bfd" 316 | dependencies: 317 | conventional-changelog-angular "^1.5.0" 318 | conventional-changelog-atom "^0.1.1" 319 | conventional-changelog-codemirror "^0.2.0" 320 | conventional-changelog-core "^1.9.1" 321 | conventional-changelog-ember "^0.2.7" 322 | conventional-changelog-eslint "^0.2.0" 323 | conventional-changelog-express "^0.2.0" 324 | conventional-changelog-jquery "^0.1.0" 325 | conventional-changelog-jscs "^0.1.0" 326 | conventional-changelog-jshint "^0.2.0" 327 | 328 | conventional-commits-filter@^1.0.0: 329 | version "1.0.0" 330 | resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-1.0.0.tgz#6fc2a659372bc3f2339cf9ffff7e1b0344b93039" 331 | dependencies: 332 | is-subset "^0.1.1" 333 | modify-values "^1.0.0" 334 | 335 | conventional-commits-parser@^2.0.0: 336 | version "2.0.0" 337 | resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-2.0.0.tgz#71d01910cb0a99aeb20c144e50f81f4df3178447" 338 | dependencies: 339 | JSONStream "^1.0.4" 340 | is-text-path "^1.0.0" 341 | lodash "^4.2.1" 342 | meow "^3.3.0" 343 | split2 "^2.0.0" 344 | through2 "^2.0.0" 345 | trim-off-newlines "^1.0.0" 346 | 347 | conventional-recommended-bump@^1.0.0, conventional-recommended-bump@^1.0.1: 348 | version "1.0.1" 349 | resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-1.0.1.tgz#56b8ae553a8a1152fa069e767599e1f6948bd36c" 350 | dependencies: 351 | concat-stream "^1.4.10" 352 | conventional-commits-filter "^1.0.0" 353 | conventional-commits-parser "^2.0.0" 354 | git-raw-commits "^1.2.0" 355 | git-semver-tags "^1.2.1" 356 | meow "^3.3.0" 357 | object-assign "^4.0.1" 358 | 359 | core-util-is@1.0.2, core-util-is@~1.0.0: 360 | version "1.0.2" 361 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 362 | 363 | cross-spawn@^5.0.1: 364 | version "5.1.0" 365 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 366 | dependencies: 367 | lru-cache "^4.0.1" 368 | shebang-command "^1.2.0" 369 | which "^1.2.9" 370 | 371 | cryptiles@2.x.x: 372 | version "2.0.5" 373 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 374 | dependencies: 375 | boom "2.x.x" 376 | 377 | currently-unhandled@^0.4.1: 378 | version "0.4.1" 379 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 380 | dependencies: 381 | array-find-index "^1.0.1" 382 | 383 | dargs@^4.0.1: 384 | version "4.1.0" 385 | resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17" 386 | dependencies: 387 | number-is-nan "^1.0.0" 388 | 389 | dashdash@^1.12.0: 390 | version "1.14.1" 391 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 392 | dependencies: 393 | assert-plus "^1.0.0" 394 | 395 | dateformat@^1.0.11, dateformat@^1.0.12: 396 | version "1.0.12" 397 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" 398 | dependencies: 399 | get-stdin "^4.0.1" 400 | meow "^3.3.0" 401 | 402 | debug@^2.2.0: 403 | version "2.6.8" 404 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 405 | dependencies: 406 | ms "2.0.0" 407 | 408 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 409 | version "1.2.0" 410 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 411 | 412 | deep-extend@~0.4.0: 413 | version "0.4.2" 414 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 415 | 416 | delayed-stream@~1.0.0: 417 | version "1.0.0" 418 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 419 | 420 | delegates@^1.0.0: 421 | version "1.0.0" 422 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 423 | 424 | dot-prop@^3.0.0: 425 | version "3.0.0" 426 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 427 | dependencies: 428 | is-obj "^1.0.0" 429 | 430 | ecc-jsbn@~0.1.1: 431 | version "0.1.1" 432 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 433 | dependencies: 434 | jsbn "~0.1.0" 435 | 436 | error-ex@^1.2.0: 437 | version "1.3.1" 438 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 439 | dependencies: 440 | is-arrayish "^0.2.1" 441 | 442 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 443 | version "1.0.5" 444 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 445 | 446 | execa@^0.7.0: 447 | version "0.7.0" 448 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 449 | dependencies: 450 | cross-spawn "^5.0.1" 451 | get-stream "^3.0.0" 452 | is-stream "^1.1.0" 453 | npm-run-path "^2.0.0" 454 | p-finally "^1.0.0" 455 | signal-exit "^3.0.0" 456 | strip-eof "^1.0.0" 457 | 458 | extend@~3.0.0: 459 | version "3.0.1" 460 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 461 | 462 | extsprintf@1.3.0, extsprintf@^1.2.0: 463 | version "1.3.0" 464 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 465 | 466 | figures@^1.5.0: 467 | version "1.7.0" 468 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 469 | dependencies: 470 | escape-string-regexp "^1.0.5" 471 | object-assign "^4.1.0" 472 | 473 | find-up@^1.0.0: 474 | version "1.1.2" 475 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 476 | dependencies: 477 | path-exists "^2.0.0" 478 | pinkie-promise "^2.0.0" 479 | 480 | find-up@^2.0.0: 481 | version "2.1.0" 482 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 483 | dependencies: 484 | locate-path "^2.0.0" 485 | 486 | forever-agent@~0.6.1: 487 | version "0.6.1" 488 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 489 | 490 | form-data@~2.1.1: 491 | version "2.1.4" 492 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 493 | dependencies: 494 | asynckit "^0.4.0" 495 | combined-stream "^1.0.5" 496 | mime-types "^2.1.12" 497 | 498 | fs-access@^1.0.0: 499 | version "1.0.1" 500 | resolved "https://registry.yarnpkg.com/fs-access/-/fs-access-1.0.1.tgz#d6a87f262271cefebec30c553407fb995da8777a" 501 | dependencies: 502 | null-check "^1.0.0" 503 | 504 | fs-extra@~0.26.2: 505 | version "0.26.7" 506 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.26.7.tgz#9ae1fdd94897798edab76d0918cf42d0c3184fa9" 507 | dependencies: 508 | graceful-fs "^4.1.2" 509 | jsonfile "^2.1.0" 510 | klaw "^1.0.0" 511 | path-is-absolute "^1.0.0" 512 | rimraf "^2.2.8" 513 | 514 | fs.realpath@^1.0.0: 515 | version "1.0.0" 516 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 517 | 518 | fstream-ignore@^1.0.5: 519 | version "1.0.5" 520 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 521 | dependencies: 522 | fstream "^1.0.0" 523 | inherits "2" 524 | minimatch "^3.0.0" 525 | 526 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 527 | version "1.0.11" 528 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 529 | dependencies: 530 | graceful-fs "^4.1.2" 531 | inherits "~2.0.0" 532 | mkdirp ">=0.5 0" 533 | rimraf "2" 534 | 535 | gauge@~2.7.3: 536 | version "2.7.4" 537 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 538 | dependencies: 539 | aproba "^1.0.3" 540 | console-control-strings "^1.0.0" 541 | has-unicode "^2.0.0" 542 | object-assign "^4.1.0" 543 | signal-exit "^3.0.0" 544 | string-width "^1.0.1" 545 | strip-ansi "^3.0.1" 546 | wide-align "^1.1.0" 547 | 548 | get-caller-file@^1.0.1: 549 | version "1.0.2" 550 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 551 | 552 | get-pkg-repo@^1.0.0: 553 | version "1.4.0" 554 | resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d" 555 | dependencies: 556 | hosted-git-info "^2.1.4" 557 | meow "^3.3.0" 558 | normalize-package-data "^2.3.0" 559 | parse-github-repo-url "^1.3.0" 560 | through2 "^2.0.0" 561 | 562 | get-stdin@^4.0.1: 563 | version "4.0.1" 564 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 565 | 566 | get-stream@^3.0.0: 567 | version "3.0.0" 568 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 569 | 570 | getpass@^0.1.1: 571 | version "0.1.7" 572 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 573 | dependencies: 574 | assert-plus "^1.0.0" 575 | 576 | git-raw-commits@^1.2.0: 577 | version "1.2.0" 578 | resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-1.2.0.tgz#0f3a8bfd99ae0f2d8b9224d58892975e9a52d03c" 579 | dependencies: 580 | dargs "^4.0.1" 581 | lodash.template "^4.0.2" 582 | meow "^3.3.0" 583 | split2 "^2.0.0" 584 | through2 "^2.0.0" 585 | 586 | git-remote-origin-url@^2.0.0: 587 | version "2.0.0" 588 | resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" 589 | dependencies: 590 | gitconfiglocal "^1.0.0" 591 | pify "^2.3.0" 592 | 593 | git-semver-tags@^1.2.1: 594 | version "1.2.1" 595 | resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-1.2.1.tgz#6ccd2a52e735b736748dc762444fcd9588e27490" 596 | dependencies: 597 | meow "^3.3.0" 598 | semver "^5.0.1" 599 | 600 | gitconfiglocal@^1.0.0: 601 | version "1.0.0" 602 | resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" 603 | dependencies: 604 | ini "^1.3.2" 605 | 606 | glob@^7.0.3, glob@^7.0.5: 607 | version "7.1.2" 608 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 609 | dependencies: 610 | fs.realpath "^1.0.0" 611 | inflight "^1.0.4" 612 | inherits "2" 613 | minimatch "^3.0.4" 614 | once "^1.3.0" 615 | path-is-absolute "^1.0.0" 616 | 617 | graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 618 | version "4.1.11" 619 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 620 | 621 | handlebars@^4.0.2: 622 | version "4.0.10" 623 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 624 | dependencies: 625 | async "^1.4.0" 626 | optimist "^0.6.1" 627 | source-map "^0.4.4" 628 | optionalDependencies: 629 | uglify-js "^2.6" 630 | 631 | har-schema@^1.0.5: 632 | version "1.0.5" 633 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 634 | 635 | har-validator@~4.2.1: 636 | version "4.2.1" 637 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 638 | dependencies: 639 | ajv "^4.9.1" 640 | har-schema "^1.0.5" 641 | 642 | has-ansi@^2.0.0: 643 | version "2.0.0" 644 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 645 | dependencies: 646 | ansi-regex "^2.0.0" 647 | 648 | has-unicode@^2.0.0: 649 | version "2.0.1" 650 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 651 | 652 | hawk@~3.1.3: 653 | version "3.1.3" 654 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 655 | dependencies: 656 | boom "2.x.x" 657 | cryptiles "2.x.x" 658 | hoek "2.x.x" 659 | sntp "1.x.x" 660 | 661 | hoek@2.x.x: 662 | version "2.16.3" 663 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 664 | 665 | hosted-git-info@^2.1.4: 666 | version "2.5.0" 667 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 668 | 669 | http-signature@~1.1.0: 670 | version "1.1.1" 671 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 672 | dependencies: 673 | assert-plus "^0.2.0" 674 | jsprim "^1.2.2" 675 | sshpk "^1.7.0" 676 | 677 | indent-string@^2.1.0: 678 | version "2.1.0" 679 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 680 | dependencies: 681 | repeating "^2.0.0" 682 | 683 | inflight@^1.0.4: 684 | version "1.0.6" 685 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 686 | dependencies: 687 | once "^1.3.0" 688 | wrappy "1" 689 | 690 | inherits@2, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: 691 | version "2.0.3" 692 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 693 | 694 | ini@^1.3.2, ini@~1.3.0: 695 | version "1.3.4" 696 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 697 | 698 | invert-kv@^1.0.0: 699 | version "1.0.0" 700 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 701 | 702 | is-arrayish@^0.2.1: 703 | version "0.2.1" 704 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 705 | 706 | is-buffer@^1.1.5: 707 | version "1.1.5" 708 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 709 | 710 | is-builtin-module@^1.0.0: 711 | version "1.0.0" 712 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 713 | dependencies: 714 | builtin-modules "^1.0.0" 715 | 716 | is-finite@^1.0.0: 717 | version "1.0.2" 718 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 719 | dependencies: 720 | number-is-nan "^1.0.0" 721 | 722 | is-fullwidth-code-point@^1.0.0: 723 | version "1.0.0" 724 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 725 | dependencies: 726 | number-is-nan "^1.0.0" 727 | 728 | is-fullwidth-code-point@^2.0.0: 729 | version "2.0.0" 730 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 731 | 732 | is-obj@^1.0.0: 733 | version "1.0.1" 734 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 735 | 736 | is-stream@^1.1.0: 737 | version "1.1.0" 738 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 739 | 740 | is-subset@^0.1.1: 741 | version "0.1.1" 742 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" 743 | 744 | is-text-path@^1.0.0: 745 | version "1.0.1" 746 | resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" 747 | dependencies: 748 | text-extensions "^1.0.0" 749 | 750 | is-typedarray@~1.0.0: 751 | version "1.0.0" 752 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 753 | 754 | is-utf8@^0.2.0: 755 | version "0.2.1" 756 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 757 | 758 | isarray@~1.0.0: 759 | version "1.0.0" 760 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 761 | 762 | isexe@^2.0.0: 763 | version "2.0.0" 764 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 765 | 766 | isstream@~0.1.2: 767 | version "0.1.2" 768 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 769 | 770 | jsbn@~0.1.0: 771 | version "0.1.1" 772 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 773 | 774 | json-schema@0.2.3: 775 | version "0.2.3" 776 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 777 | 778 | json-stable-stringify@^1.0.1: 779 | version "1.0.1" 780 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 781 | dependencies: 782 | jsonify "~0.0.0" 783 | 784 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: 785 | version "5.0.1" 786 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 787 | 788 | jsonfile@^2.1.0: 789 | version "2.4.0" 790 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 791 | optionalDependencies: 792 | graceful-fs "^4.1.6" 793 | 794 | jsonify@~0.0.0: 795 | version "0.0.0" 796 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 797 | 798 | jsonparse@^1.2.0: 799 | version "1.3.1" 800 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 801 | 802 | jsprim@^1.2.2: 803 | version "1.4.1" 804 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 805 | dependencies: 806 | assert-plus "1.0.0" 807 | extsprintf "1.3.0" 808 | json-schema "0.2.3" 809 | verror "1.10.0" 810 | 811 | kind-of@^3.0.2: 812 | version "3.2.2" 813 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 814 | dependencies: 815 | is-buffer "^1.1.5" 816 | 817 | klaw@^1.0.0: 818 | version "1.3.1" 819 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 820 | optionalDependencies: 821 | graceful-fs "^4.1.9" 822 | 823 | lazy-cache@^1.0.3: 824 | version "1.0.4" 825 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 826 | 827 | lcid@^1.0.0: 828 | version "1.0.0" 829 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 830 | dependencies: 831 | invert-kv "^1.0.0" 832 | 833 | load-json-file@^1.0.0: 834 | version "1.1.0" 835 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 836 | dependencies: 837 | graceful-fs "^4.1.2" 838 | parse-json "^2.2.0" 839 | pify "^2.0.0" 840 | pinkie-promise "^2.0.0" 841 | strip-bom "^2.0.0" 842 | 843 | load-json-file@^2.0.0: 844 | version "2.0.0" 845 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 846 | dependencies: 847 | graceful-fs "^4.1.2" 848 | parse-json "^2.2.0" 849 | pify "^2.0.0" 850 | strip-bom "^3.0.0" 851 | 852 | locate-path@^2.0.0: 853 | version "2.0.0" 854 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 855 | dependencies: 856 | p-locate "^2.0.0" 857 | path-exists "^3.0.0" 858 | 859 | lodash._reinterpolate@~3.0.0: 860 | version "3.0.0" 861 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 862 | 863 | lodash.template@^4.0.2: 864 | version "4.4.0" 865 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0" 866 | dependencies: 867 | lodash._reinterpolate "~3.0.0" 868 | lodash.templatesettings "^4.0.0" 869 | 870 | lodash.templatesettings@^4.0.0: 871 | version "4.1.0" 872 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz#2b4d4e95ba440d915ff08bc899e4553666713316" 873 | dependencies: 874 | lodash._reinterpolate "~3.0.0" 875 | 876 | lodash@^4.0.0, lodash@^4.13.1, lodash@^4.2.1: 877 | version "4.17.4" 878 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 879 | 880 | longest@^1.0.1: 881 | version "1.0.1" 882 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 883 | 884 | loud-rejection@^1.0.0: 885 | version "1.6.0" 886 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 887 | dependencies: 888 | currently-unhandled "^0.4.1" 889 | signal-exit "^3.0.0" 890 | 891 | lru-cache@^4.0.1: 892 | version "4.1.1" 893 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 894 | dependencies: 895 | pseudomap "^1.0.2" 896 | yallist "^2.1.2" 897 | 898 | map-obj@^1.0.0, map-obj@^1.0.1: 899 | version "1.0.1" 900 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 901 | 902 | mem@^1.1.0: 903 | version "1.1.0" 904 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 905 | dependencies: 906 | mimic-fn "^1.0.0" 907 | 908 | meow@^3.3.0: 909 | version "3.7.0" 910 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 911 | dependencies: 912 | camelcase-keys "^2.0.0" 913 | decamelize "^1.1.2" 914 | loud-rejection "^1.0.0" 915 | map-obj "^1.0.1" 916 | minimist "^1.1.3" 917 | normalize-package-data "^2.3.4" 918 | object-assign "^4.0.1" 919 | read-pkg-up "^1.0.1" 920 | redent "^1.0.0" 921 | trim-newlines "^1.0.0" 922 | 923 | mime-db@~1.29.0: 924 | version "1.29.0" 925 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.29.0.tgz#48d26d235589651704ac5916ca06001914266878" 926 | 927 | mime-types@^2.1.12, mime-types@~2.1.7: 928 | version "2.1.16" 929 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23" 930 | dependencies: 931 | mime-db "~1.29.0" 932 | 933 | mimic-fn@^1.0.0: 934 | version "1.1.0" 935 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 936 | 937 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 938 | version "3.0.4" 939 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 940 | dependencies: 941 | brace-expansion "^1.1.7" 942 | 943 | minimist@0.0.8, minimist@~0.0.1: 944 | version "0.0.8" 945 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 946 | 947 | minimist@^1.1.3, minimist@^1.2.0: 948 | version "1.2.0" 949 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 950 | 951 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 952 | version "0.5.1" 953 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 954 | dependencies: 955 | minimist "0.0.8" 956 | 957 | modify-values@^1.0.0: 958 | version "1.0.0" 959 | resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.0.tgz#e2b6cdeb9ce19f99317a53722f3dbf5df5eaaab2" 960 | 961 | ms@2.0.0: 962 | version "2.0.0" 963 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 964 | 965 | nan@^2.2.0: 966 | version "2.7.0" 967 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 968 | 969 | node-gyp@^3.5.0: 970 | version "3.6.2" 971 | resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.6.2.tgz#9bfbe54562286284838e750eac05295853fa1c60" 972 | dependencies: 973 | fstream "^1.0.0" 974 | glob "^7.0.3" 975 | graceful-fs "^4.1.2" 976 | minimatch "^3.0.2" 977 | mkdirp "^0.5.0" 978 | nopt "2 || 3" 979 | npmlog "0 || 1 || 2 || 3 || 4" 980 | osenv "0" 981 | request "2" 982 | rimraf "2" 983 | semver "~5.3.0" 984 | tar "^2.0.0" 985 | which "1" 986 | 987 | node-pre-gyp@~0.6.32: 988 | version "0.6.36" 989 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 990 | dependencies: 991 | mkdirp "^0.5.1" 992 | nopt "^4.0.1" 993 | npmlog "^4.0.2" 994 | rc "^1.1.7" 995 | request "^2.81.0" 996 | rimraf "^2.6.1" 997 | semver "^5.3.0" 998 | tar "^2.2.1" 999 | tar-pack "^3.4.0" 1000 | 1001 | nodegit-flow@^0.4.2: 1002 | version "0.4.2" 1003 | resolved "https://registry.yarnpkg.com/nodegit-flow/-/nodegit-flow-0.4.2.tgz#c144561575aecc05f371838b2c5190c6d11ba5b3" 1004 | 1005 | nodegit-promise@~4.0.0: 1006 | version "4.0.0" 1007 | resolved "https://registry.yarnpkg.com/nodegit-promise/-/nodegit-promise-4.0.0.tgz#5722b184f2df7327161064a791d2e842c9167b34" 1008 | dependencies: 1009 | asap "~2.0.3" 1010 | 1011 | nodegit@^0.20.1: 1012 | version "0.20.1" 1013 | resolved "https://registry.yarnpkg.com/nodegit/-/nodegit-0.20.1.tgz#9f5faeb954e47cb0701027decb71091cd60df4fe" 1014 | dependencies: 1015 | fs-extra "~0.26.2" 1016 | lodash "^4.13.1" 1017 | nan "^2.2.0" 1018 | node-gyp "^3.5.0" 1019 | node-pre-gyp "~0.6.32" 1020 | promisify-node "~0.3.0" 1021 | 1022 | "nopt@2 || 3": 1023 | version "3.0.6" 1024 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1025 | dependencies: 1026 | abbrev "1" 1027 | 1028 | nopt@^4.0.1: 1029 | version "4.0.1" 1030 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1031 | dependencies: 1032 | abbrev "1" 1033 | osenv "^0.1.4" 1034 | 1035 | normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5: 1036 | version "2.4.0" 1037 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1038 | dependencies: 1039 | hosted-git-info "^2.1.4" 1040 | is-builtin-module "^1.0.0" 1041 | semver "2 || 3 || 4 || 5" 1042 | validate-npm-package-license "^3.0.1" 1043 | 1044 | npm-run-path@^2.0.0: 1045 | version "2.0.2" 1046 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1047 | dependencies: 1048 | path-key "^2.0.0" 1049 | 1050 | "npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.2: 1051 | version "4.1.2" 1052 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1053 | dependencies: 1054 | are-we-there-yet "~1.1.2" 1055 | console-control-strings "~1.1.0" 1056 | gauge "~2.7.3" 1057 | set-blocking "~2.0.0" 1058 | 1059 | null-check@^1.0.0: 1060 | version "1.0.0" 1061 | resolved "https://registry.yarnpkg.com/null-check/-/null-check-1.0.0.tgz#977dffd7176012b9ec30d2a39db5cf72a0439edd" 1062 | 1063 | number-is-nan@^1.0.0: 1064 | version "1.0.1" 1065 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1066 | 1067 | oauth-sign@~0.8.1: 1068 | version "0.8.2" 1069 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1070 | 1071 | object-assign@^4.0.1, object-assign@^4.1.0: 1072 | version "4.1.1" 1073 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1074 | 1075 | once@^1.3.0, once@^1.3.3: 1076 | version "1.4.0" 1077 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1078 | dependencies: 1079 | wrappy "1" 1080 | 1081 | optimist@^0.6.1: 1082 | version "0.6.1" 1083 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1084 | dependencies: 1085 | minimist "~0.0.1" 1086 | wordwrap "~0.0.2" 1087 | 1088 | os-homedir@^1.0.0: 1089 | version "1.0.2" 1090 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1091 | 1092 | os-locale@^2.0.0: 1093 | version "2.1.0" 1094 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 1095 | dependencies: 1096 | execa "^0.7.0" 1097 | lcid "^1.0.0" 1098 | mem "^1.1.0" 1099 | 1100 | os-tmpdir@^1.0.0: 1101 | version "1.0.2" 1102 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1103 | 1104 | osenv@0, osenv@^0.1.4: 1105 | version "0.1.4" 1106 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1107 | dependencies: 1108 | os-homedir "^1.0.0" 1109 | os-tmpdir "^1.0.0" 1110 | 1111 | p-finally@^1.0.0: 1112 | version "1.0.0" 1113 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1114 | 1115 | p-limit@^1.1.0: 1116 | version "1.1.0" 1117 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1118 | 1119 | p-locate@^2.0.0: 1120 | version "2.0.0" 1121 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1122 | dependencies: 1123 | p-limit "^1.1.0" 1124 | 1125 | parse-github-repo-url@^1.3.0: 1126 | version "1.4.1" 1127 | resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50" 1128 | 1129 | parse-json@^2.2.0: 1130 | version "2.2.0" 1131 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1132 | dependencies: 1133 | error-ex "^1.2.0" 1134 | 1135 | path-exists@^2.0.0: 1136 | version "2.1.0" 1137 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1138 | dependencies: 1139 | pinkie-promise "^2.0.0" 1140 | 1141 | path-exists@^3.0.0: 1142 | version "3.0.0" 1143 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1144 | 1145 | path-is-absolute@^1.0.0: 1146 | version "1.0.1" 1147 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1148 | 1149 | path-key@^2.0.0: 1150 | version "2.0.1" 1151 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1152 | 1153 | path-type@^1.0.0: 1154 | version "1.1.0" 1155 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1156 | dependencies: 1157 | graceful-fs "^4.1.2" 1158 | pify "^2.0.0" 1159 | pinkie-promise "^2.0.0" 1160 | 1161 | path-type@^2.0.0: 1162 | version "2.0.0" 1163 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1164 | dependencies: 1165 | pify "^2.0.0" 1166 | 1167 | performance-now@^0.2.0: 1168 | version "0.2.0" 1169 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1170 | 1171 | pify@^2.0.0, pify@^2.3.0: 1172 | version "2.3.0" 1173 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1174 | 1175 | pinkie-promise@^2.0.0: 1176 | version "2.0.1" 1177 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1178 | dependencies: 1179 | pinkie "^2.0.0" 1180 | 1181 | pinkie@^2.0.0: 1182 | version "2.0.4" 1183 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1184 | 1185 | process-nextick-args@~1.0.6: 1186 | version "1.0.7" 1187 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1188 | 1189 | promisify-node@~0.3.0: 1190 | version "0.3.0" 1191 | resolved "https://registry.yarnpkg.com/promisify-node/-/promisify-node-0.3.0.tgz#b4b55acf90faa7d2b8b90ca396899086c03060cf" 1192 | dependencies: 1193 | nodegit-promise "~4.0.0" 1194 | 1195 | pseudomap@^1.0.2: 1196 | version "1.0.2" 1197 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1198 | 1199 | punycode@^1.4.1: 1200 | version "1.4.1" 1201 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1202 | 1203 | q@^1.4.1: 1204 | version "1.5.0" 1205 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" 1206 | 1207 | qs@~6.4.0: 1208 | version "6.4.0" 1209 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1210 | 1211 | rc@^1.1.7: 1212 | version "1.2.1" 1213 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 1214 | dependencies: 1215 | deep-extend "~0.4.0" 1216 | ini "~1.3.0" 1217 | minimist "^1.2.0" 1218 | strip-json-comments "~2.0.1" 1219 | 1220 | read-pkg-up@^1.0.1: 1221 | version "1.0.1" 1222 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1223 | dependencies: 1224 | find-up "^1.0.0" 1225 | read-pkg "^1.0.0" 1226 | 1227 | read-pkg-up@^2.0.0: 1228 | version "2.0.0" 1229 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1230 | dependencies: 1231 | find-up "^2.0.0" 1232 | read-pkg "^2.0.0" 1233 | 1234 | read-pkg@^1.0.0, read-pkg@^1.1.0: 1235 | version "1.1.0" 1236 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1237 | dependencies: 1238 | load-json-file "^1.0.0" 1239 | normalize-package-data "^2.3.2" 1240 | path-type "^1.0.0" 1241 | 1242 | read-pkg@^2.0.0: 1243 | version "2.0.0" 1244 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1245 | dependencies: 1246 | load-json-file "^2.0.0" 1247 | normalize-package-data "^2.3.2" 1248 | path-type "^2.0.0" 1249 | 1250 | readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2: 1251 | version "2.3.3" 1252 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1253 | dependencies: 1254 | core-util-is "~1.0.0" 1255 | inherits "~2.0.3" 1256 | isarray "~1.0.0" 1257 | process-nextick-args "~1.0.6" 1258 | safe-buffer "~5.1.1" 1259 | string_decoder "~1.0.3" 1260 | util-deprecate "~1.0.1" 1261 | 1262 | redent@^1.0.0: 1263 | version "1.0.0" 1264 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 1265 | dependencies: 1266 | indent-string "^2.1.0" 1267 | strip-indent "^1.0.1" 1268 | 1269 | repeat-string@^1.5.2: 1270 | version "1.6.1" 1271 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1272 | 1273 | repeating@^2.0.0: 1274 | version "2.0.1" 1275 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1276 | dependencies: 1277 | is-finite "^1.0.0" 1278 | 1279 | request@2, request@^2.81.0: 1280 | version "2.81.0" 1281 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1282 | dependencies: 1283 | aws-sign2 "~0.6.0" 1284 | aws4 "^1.2.1" 1285 | caseless "~0.12.0" 1286 | combined-stream "~1.0.5" 1287 | extend "~3.0.0" 1288 | forever-agent "~0.6.1" 1289 | form-data "~2.1.1" 1290 | har-validator "~4.2.1" 1291 | hawk "~3.1.3" 1292 | http-signature "~1.1.0" 1293 | is-typedarray "~1.0.0" 1294 | isstream "~0.1.2" 1295 | json-stringify-safe "~5.0.1" 1296 | mime-types "~2.1.7" 1297 | oauth-sign "~0.8.1" 1298 | performance-now "^0.2.0" 1299 | qs "~6.4.0" 1300 | safe-buffer "^5.0.1" 1301 | stringstream "~0.0.4" 1302 | tough-cookie "~2.3.0" 1303 | tunnel-agent "^0.6.0" 1304 | uuid "^3.0.0" 1305 | 1306 | require-directory@^2.1.1: 1307 | version "2.1.1" 1308 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1309 | 1310 | require-main-filename@^1.0.1: 1311 | version "1.0.1" 1312 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1313 | 1314 | right-align@^0.1.1: 1315 | version "0.1.3" 1316 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 1317 | dependencies: 1318 | align-text "^0.1.1" 1319 | 1320 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 1321 | version "2.6.1" 1322 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1323 | dependencies: 1324 | glob "^7.0.5" 1325 | 1326 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1327 | version "5.1.1" 1328 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1329 | 1330 | "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1: 1331 | version "5.4.1" 1332 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 1333 | 1334 | semver@~5.3.0: 1335 | version "5.3.0" 1336 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 1337 | 1338 | set-blocking@^2.0.0, set-blocking@~2.0.0: 1339 | version "2.0.0" 1340 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1341 | 1342 | shebang-command@^1.2.0: 1343 | version "1.2.0" 1344 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1345 | dependencies: 1346 | shebang-regex "^1.0.0" 1347 | 1348 | shebang-regex@^1.0.0: 1349 | version "1.0.0" 1350 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1351 | 1352 | signal-exit@^3.0.0: 1353 | version "3.0.2" 1354 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1355 | 1356 | sntp@1.x.x: 1357 | version "1.0.9" 1358 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1359 | dependencies: 1360 | hoek "2.x.x" 1361 | 1362 | source-map@^0.4.4: 1363 | version "0.4.4" 1364 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 1365 | dependencies: 1366 | amdefine ">=0.0.4" 1367 | 1368 | source-map@~0.5.1: 1369 | version "0.5.7" 1370 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1371 | 1372 | spdx-correct@~1.0.0: 1373 | version "1.0.2" 1374 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 1375 | dependencies: 1376 | spdx-license-ids "^1.0.2" 1377 | 1378 | spdx-expression-parse@~1.0.0: 1379 | version "1.0.4" 1380 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 1381 | 1382 | spdx-license-ids@^1.0.2: 1383 | version "1.2.2" 1384 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 1385 | 1386 | split2@^2.0.0: 1387 | version "2.1.1" 1388 | resolved "https://registry.yarnpkg.com/split2/-/split2-2.1.1.tgz#7a1f551e176a90ecd3345f7246a0cfe175ef4fd0" 1389 | dependencies: 1390 | through2 "^2.0.2" 1391 | 1392 | split@^1.0.0: 1393 | version "1.0.1" 1394 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" 1395 | dependencies: 1396 | through "2" 1397 | 1398 | sshpk@^1.7.0: 1399 | version "1.13.1" 1400 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 1401 | dependencies: 1402 | asn1 "~0.2.3" 1403 | assert-plus "^1.0.0" 1404 | dashdash "^1.12.0" 1405 | getpass "^0.1.1" 1406 | optionalDependencies: 1407 | bcrypt-pbkdf "^1.0.0" 1408 | ecc-jsbn "~0.1.1" 1409 | jsbn "~0.1.0" 1410 | tweetnacl "~0.14.0" 1411 | 1412 | standard-version@^4.2.0: 1413 | version "4.2.0" 1414 | resolved "https://registry.yarnpkg.com/standard-version/-/standard-version-4.2.0.tgz#3017e8c5ced2a92db7501790255c3ba85157375d" 1415 | dependencies: 1416 | chalk "^1.1.3" 1417 | conventional-changelog "^1.1.0" 1418 | conventional-recommended-bump "^1.0.0" 1419 | figures "^1.5.0" 1420 | fs-access "^1.0.0" 1421 | semver "^5.1.0" 1422 | yargs "^8.0.1" 1423 | 1424 | string-width@^1.0.1, string-width@^1.0.2: 1425 | version "1.0.2" 1426 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1427 | dependencies: 1428 | code-point-at "^1.0.0" 1429 | is-fullwidth-code-point "^1.0.0" 1430 | strip-ansi "^3.0.0" 1431 | 1432 | string-width@^2.0.0: 1433 | version "2.1.1" 1434 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1435 | dependencies: 1436 | is-fullwidth-code-point "^2.0.0" 1437 | strip-ansi "^4.0.0" 1438 | 1439 | string_decoder@~1.0.3: 1440 | version "1.0.3" 1441 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 1442 | dependencies: 1443 | safe-buffer "~5.1.0" 1444 | 1445 | stringstream@~0.0.4: 1446 | version "0.0.5" 1447 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1448 | 1449 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1450 | version "3.0.1" 1451 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1452 | dependencies: 1453 | ansi-regex "^2.0.0" 1454 | 1455 | strip-ansi@^4.0.0: 1456 | version "4.0.0" 1457 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1458 | dependencies: 1459 | ansi-regex "^3.0.0" 1460 | 1461 | strip-bom@^2.0.0: 1462 | version "2.0.0" 1463 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1464 | dependencies: 1465 | is-utf8 "^0.2.0" 1466 | 1467 | strip-bom@^3.0.0: 1468 | version "3.0.0" 1469 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1470 | 1471 | strip-eof@^1.0.0: 1472 | version "1.0.0" 1473 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 1474 | 1475 | strip-indent@^1.0.1: 1476 | version "1.0.1" 1477 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 1478 | dependencies: 1479 | get-stdin "^4.0.1" 1480 | 1481 | strip-json-comments@~2.0.1: 1482 | version "2.0.1" 1483 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1484 | 1485 | supports-color@^2.0.0: 1486 | version "2.0.0" 1487 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1488 | 1489 | tar-pack@^3.4.0: 1490 | version "3.4.0" 1491 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 1492 | dependencies: 1493 | debug "^2.2.0" 1494 | fstream "^1.0.10" 1495 | fstream-ignore "^1.0.5" 1496 | once "^1.3.3" 1497 | readable-stream "^2.1.4" 1498 | rimraf "^2.5.1" 1499 | tar "^2.2.1" 1500 | uid-number "^0.0.6" 1501 | 1502 | tar@^2.0.0, tar@^2.2.1: 1503 | version "2.2.1" 1504 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1505 | dependencies: 1506 | block-stream "*" 1507 | fstream "^1.0.2" 1508 | inherits "2" 1509 | 1510 | text-extensions@^1.0.0: 1511 | version "1.5.0" 1512 | resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.5.0.tgz#d1cb2d14b5d0bc45bfdca8a08a473f68c7eb0cbc" 1513 | 1514 | through2@^2.0.0, through2@^2.0.2: 1515 | version "2.0.3" 1516 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 1517 | dependencies: 1518 | readable-stream "^2.1.5" 1519 | xtend "~4.0.1" 1520 | 1521 | through@2, "through@>=2.2.7 <3": 1522 | version "2.3.8" 1523 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1524 | 1525 | tough-cookie@~2.3.0: 1526 | version "2.3.2" 1527 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1528 | dependencies: 1529 | punycode "^1.4.1" 1530 | 1531 | trim-newlines@^1.0.0: 1532 | version "1.0.0" 1533 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 1534 | 1535 | trim-off-newlines@^1.0.0: 1536 | version "1.0.1" 1537 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" 1538 | 1539 | tunnel-agent@^0.6.0: 1540 | version "0.6.0" 1541 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1542 | dependencies: 1543 | safe-buffer "^5.0.1" 1544 | 1545 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1546 | version "0.14.5" 1547 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1548 | 1549 | typedarray@^0.0.6: 1550 | version "0.0.6" 1551 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1552 | 1553 | uglify-js@^2.6: 1554 | version "2.8.29" 1555 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 1556 | dependencies: 1557 | source-map "~0.5.1" 1558 | yargs "~3.10.0" 1559 | optionalDependencies: 1560 | uglify-to-browserify "~1.0.0" 1561 | 1562 | uglify-to-browserify@~1.0.0: 1563 | version "1.0.2" 1564 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 1565 | 1566 | uid-number@^0.0.6: 1567 | version "0.0.6" 1568 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1569 | 1570 | util-deprecate@~1.0.1: 1571 | version "1.0.2" 1572 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1573 | 1574 | uuid@^3.0.0: 1575 | version "3.1.0" 1576 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 1577 | 1578 | validate-npm-package-license@^3.0.1: 1579 | version "3.0.1" 1580 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 1581 | dependencies: 1582 | spdx-correct "~1.0.0" 1583 | spdx-expression-parse "~1.0.0" 1584 | 1585 | verror@1.10.0: 1586 | version "1.10.0" 1587 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1588 | dependencies: 1589 | assert-plus "^1.0.0" 1590 | core-util-is "1.0.2" 1591 | extsprintf "^1.2.0" 1592 | 1593 | which-module@^2.0.0: 1594 | version "2.0.0" 1595 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 1596 | 1597 | which@1, which@^1.2.9: 1598 | version "1.3.0" 1599 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 1600 | dependencies: 1601 | isexe "^2.0.0" 1602 | 1603 | wide-align@^1.1.0: 1604 | version "1.1.2" 1605 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 1606 | dependencies: 1607 | string-width "^1.0.2" 1608 | 1609 | window-size@0.1.0: 1610 | version "0.1.0" 1611 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 1612 | 1613 | wordwrap@0.0.2: 1614 | version "0.0.2" 1615 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 1616 | 1617 | wordwrap@~0.0.2: 1618 | version "0.0.3" 1619 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 1620 | 1621 | wrap-ansi@^2.0.0: 1622 | version "2.1.0" 1623 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 1624 | dependencies: 1625 | string-width "^1.0.1" 1626 | strip-ansi "^3.0.1" 1627 | 1628 | wrappy@1: 1629 | version "1.0.2" 1630 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1631 | 1632 | xtend@~4.0.1: 1633 | version "4.0.1" 1634 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1635 | 1636 | y18n@^3.2.1: 1637 | version "3.2.1" 1638 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 1639 | 1640 | yallist@^2.1.2: 1641 | version "2.1.2" 1642 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 1643 | 1644 | yargs-parser@^7.0.0: 1645 | version "7.0.0" 1646 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 1647 | dependencies: 1648 | camelcase "^4.1.0" 1649 | 1650 | yargs@^8.0.1: 1651 | version "8.0.2" 1652 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" 1653 | dependencies: 1654 | camelcase "^4.1.0" 1655 | cliui "^3.2.0" 1656 | decamelize "^1.1.1" 1657 | get-caller-file "^1.0.1" 1658 | os-locale "^2.0.0" 1659 | read-pkg-up "^2.0.0" 1660 | require-directory "^2.1.1" 1661 | require-main-filename "^1.0.1" 1662 | set-blocking "^2.0.0" 1663 | string-width "^2.0.0" 1664 | which-module "^2.0.0" 1665 | y18n "^3.2.1" 1666 | yargs-parser "^7.0.0" 1667 | 1668 | yargs@~3.10.0: 1669 | version "3.10.0" 1670 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 1671 | dependencies: 1672 | camelcase "^1.0.2" 1673 | cliui "^2.1.0" 1674 | decamelize "^1.0.0" 1675 | window-size "0.1.0" 1676 | --------------------------------------------------------------------------------