├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dist ├── index.d.ts ├── index.js └── index.js.map ├── lib └── index.ts ├── package.json ├── renovate.json ├── tsconfig.json └── yarn.lock /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. 4 | 5 | # [1.3.0](https://github.com/nuxt-community/nuxt-class-component/compare/v1.2.1...v1.3.0) (2019-03-06) 6 | 7 | 8 | ### Features 9 | 10 | * add mixins support ([1339347](https://github.com/nuxt-community/nuxt-class-component/commit/1339347)) 11 | * upgrade vue-class-component to v7 ([748fe26](https://github.com/nuxt-community/nuxt-class-component/commit/748fe26)) 12 | 13 | 14 | 15 | 16 | ## [1.2.1](https://github.com/nuxt-community/nuxt-class-component/compare/v1.1.3...v1.2.1) (2018-04-04) 17 | 18 | 19 | ### Bug Fixes 20 | 21 | * **types:** explicitly define "types" field ([da21f13](https://github.com/nuxt-community/nuxt-class-component/commit/da21f13)) 22 | * missing trailing comma ([871d845](https://github.com/nuxt-community/nuxt-class-component/commit/871d845)) 23 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 NUXT 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Deprecated Repository 2 | 3 | Please consider using [nuxt-property-decorator](https://github.com/nuxt-community/nuxt-property-decorator/) instead. 4 | 5 | ---- 6 | 7 |

Nuxt Class Component

8 |

ES and Typescript Class Components Decorators for Nuxt.js extending vue-class-component

9 |

10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |

21 | 22 | 23 | ## Installation 24 | 25 | ```bash 26 | npm install --save nuxt-class-component 27 | 28 | # or 29 | 30 | yarn add nuxt-class-component 31 | ``` 32 | 33 | ### Babel Instructions 34 | 35 | ```bash 36 | npm install --save-dev babel-plugin-transform-decorators-legacy babel-plugin-transform-class-properties 37 | 38 | # or 39 | 40 | yarn add --dev babel-plugin-transform-decorators-legacy babel-plugin-transform-class-properties 41 | ``` 42 | 43 | Then you can configure Babel plugins on `nuxt.config.js` - Plugin order is important (see [here](https://github.com/loganfsmyth/babel-plugin-transform-decorators-legacy#note-order-of-plugins-matters)): 44 | 45 | ```js 46 | module.exports = { 47 | build: { 48 | babel: { 49 | plugins: ['transform-decorators-legacy', 'transform-class-properties'] 50 | } 51 | } 52 | } 53 | 54 | ``` 55 | 56 | ### Typescript Instructions 57 | 58 | You will need to enable [`experimentalDecorators`] on your Typescript compiler.(http://www.typescriptlang.org/docs/handbook/decorators.html). 59 | 60 | - Using Typescript Compiler argument `--experimentalDecorators` like this: 61 | ```bash 62 | tsc --experimentalDecorators 63 | ``` 64 | 65 | - Using `tsconfig.json`: 66 | ```json 67 | { 68 | "compilerOptions": { 69 | "experimentalDecorators": true, 70 | ... 71 | } 72 | } 73 | ``` 74 | 75 | ## Usage 76 | 77 | See [vue-class-component](https://github.com/vuejs/vue-class-component), [vuex-class](https://github.com/vuejs/vuex) documentation. 78 | 79 | You can also see the [official TypeScript examples of Nuxt.js](https://github.com/nuxt/typescript/tree/master/examples). 80 | 81 | ### Example 82 | 83 | ```js 84 | import Vue from 'vue' 85 | import Component from 'nuxt-class-component' 86 | import { 87 | State, 88 | Getter, 89 | Action, 90 | Mutation, 91 | namespace 92 | } from 'vuex-class' 93 | 94 | const Module = namespace('path/to/module') 95 | 96 | @Component({ 97 | props: { 98 | propMessage: String 99 | } 100 | }) 101 | export class MyComp extends Vue { 102 | @State('foo') stateFoo 103 | @State(state => state.bar) stateBar 104 | @Getter('foo') getterFoo 105 | @Action('foo') actionFoo 106 | @Mutation('foo') mutationFoo 107 | @Module.Getter('foo') moduleGetterFoo 108 | @Module.Action('foo') moduleActionFoo 109 | 110 | // If the argument is omitted, use the property name 111 | // for each state/getter/action/mutation type 112 | @State foo 113 | @Getter bar 114 | @Action baz 115 | @Mutation qux 116 | 117 | // initial data 118 | msg = 123 119 | 120 | // use prop values for initial data 121 | helloMsg = 'Hello, ' + this.propMessage 122 | 123 | // lifecycle hooks 124 | created () { 125 | this.stateFoo // -> store.state.foo 126 | this.stateBar // -> store.state.bar 127 | this.getterFoo // -> store.getters.foo 128 | this.actionFoo({ value: true }) // -> store.dispatch('foo', { value: true }) 129 | this.mutationFoo({ value: true }) // -> store.commit('foo', { value: true }) 130 | this.moduleGetterFoo // -> store.getters['path/to/module/foo'] 131 | } 132 | 133 | mounted () { 134 | this.greet() 135 | } 136 | 137 | fetch () { 138 | // fetch data 139 | } 140 | 141 | async asyncData () { 142 | // async fetching data 143 | } 144 | 145 | // computed 146 | get computedMsg () { 147 | return 'computed ' + this.msg 148 | } 149 | 150 | // method 151 | greet () { 152 | alert('greeting: ' + this.msg) 153 | } 154 | } 155 | ``` 156 | 157 | 158 | ## License 159 | 160 | [MIT License](./LICENSE) - Copyright (c) Nuxt Community 161 | 162 | -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- 1 | import Component, { mixins } from 'vue-class-component'; 2 | import { State, Getter, Action, Mutation, namespace } from 'vuex-class'; 3 | export { Component as default, mixins, State, Getter, Action, Mutation, namespace }; 4 | -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | var __importStar = (this && this.__importStar) || function (mod) { 3 | if (mod && mod.__esModule) return mod; 4 | var result = {}; 5 | if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; 6 | result["default"] = mod; 7 | return result; 8 | }; 9 | Object.defineProperty(exports, "__esModule", { value: true }); 10 | var vue_class_component_1 = __importStar(require("vue-class-component")); 11 | exports.default = vue_class_component_1.default; 12 | exports.mixins = vue_class_component_1.mixins; 13 | var vuex_class_1 = require("vuex-class"); 14 | exports.State = vuex_class_1.State; 15 | exports.Getter = vuex_class_1.Getter; 16 | exports.Action = vuex_class_1.Action; 17 | exports.Mutation = vuex_class_1.Mutation; 18 | exports.namespace = vuex_class_1.namespace; 19 | vue_class_component_1.default.registerHooks([ 20 | 'beforeRouteEnter', 21 | 'beforeRouteLeave', 22 | 'asyncData', 23 | 'fetch', 24 | 'head', 25 | 'middleware', 26 | 'layout', 27 | 'transition', 28 | 'scrollToTop', 29 | 'validate' 30 | ]); 31 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../lib/index.ts"],"names":[],"mappings":";;;;;;;;;AAAA,yEAAuD;AAgBjC,kBAhBf,6BAAS,CAgBa;AAAE,iBAhBX,4BAAM,CAgBW;AAfrC,yCAAuE;AAehC,gBAf9B,kBAAK,CAe8B;AAAE,iBAf9B,mBAAM,CAe8B;AAAE,iBAf9B,mBAAM,CAe8B;AAAE,mBAf9B,qBAAQ,CAe8B;AAAE,oBAf9B,sBAAS,CAe8B;AAbjF,6BAAS,CAAC,aAAa,CAAC;IACtB,kBAAkB;IAClB,kBAAkB;IAClB,WAAW;IACX,OAAO;IACP,MAAM;IACN,YAAY;IACZ,QAAQ;IACR,YAAY;IACZ,aAAa;IACb,UAAU;CACX,CAAC,CAAA"} -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- 1 | import Component, { mixins } from 'vue-class-component' 2 | import { State, Getter, Action, Mutation, namespace } from 'vuex-class' 3 | 4 | Component.registerHooks([ 5 | 'beforeRouteEnter', 6 | 'beforeRouteLeave', 7 | 'asyncData', 8 | 'fetch', 9 | 'head', 10 | 'middleware', 11 | 'layout', 12 | 'transition', 13 | 'scrollToTop', 14 | 'validate' 15 | ]) 16 | 17 | export { Component as default, mixins, State, Getter, Action, Mutation, namespace } 18 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nuxt-class-component", 3 | "version": "1.3.0", 4 | "description": "ES and Tyepscript Class Components Decorators for Nuxt.js", 5 | "license": "MIT", 6 | "contributors": [ 7 | { 8 | "name": "John Lindquist ", 9 | "url": "https://github.com/johnlindquist" 10 | }, 11 | { 12 | "name": "Tony Briet", 13 | "url": "https://github.com/breakingrobot" 14 | } 15 | ], 16 | "main": "./dist/index.js", 17 | "types": "./dist/index.d.ts", 18 | "repository": "https://github.com/nuxt-community/nuxt-class-component.git", 19 | "publishConfig": { 20 | "access": "public" 21 | }, 22 | "scripts": { 23 | "build": "tsc --p .", 24 | "release": "standard-version && git push --follow-tags && npm publish" 25 | }, 26 | "dependencies": { 27 | "vue-class-component": "^7.0.1", 28 | "vuex-class": "^0.3.1" 29 | }, 30 | "devDependencies": { 31 | "standard-version": "latest", 32 | "typescript": "^2.8.1", 33 | "vue": "^2.5.16", 34 | "vuex": "^3.0.1" 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "@nuxtjs" 4 | ], 5 | "lockFileMaintenance": { 6 | "enabled": true 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "allowSyntheticDefaultImports": true, 4 | "declaration": true, 5 | "esModuleInterop": true, 6 | "emitDecoratorMetadata": true, 7 | "experimentalDecorators": true, 8 | "module": "commonjs", 9 | "moduleResolution": "node", 10 | "outDir": "./dist", 11 | "sourceMap": true, 12 | "strict": true, 13 | "target": "es5" 14 | }, 15 | "include": [ 16 | "lib/**/*" 17 | ], 18 | "exclude": [ 19 | "node_modules/**/*" 20 | ] 21 | } -------------------------------------------------------------------------------- /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.5" 7 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" 8 | integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== 9 | dependencies: 10 | jsonparse "^1.2.0" 11 | through ">=2.2.7 <3" 12 | 13 | ansi-regex@^2.0.0: 14 | version "2.1.1" 15 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 16 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 17 | 18 | ansi-regex@^3.0.0: 19 | version "3.0.0" 20 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 21 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 22 | 23 | ansi-styles@^3.2.1: 24 | version "3.2.1" 25 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 26 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 27 | dependencies: 28 | color-convert "^1.9.0" 29 | 30 | array-find-index@^1.0.1: 31 | version "1.0.2" 32 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 33 | integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= 34 | 35 | array-ify@^1.0.0: 36 | version "1.0.0" 37 | resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" 38 | integrity sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4= 39 | 40 | arrify@^1.0.1: 41 | version "1.0.1" 42 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 43 | integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= 44 | 45 | async@^2.5.0: 46 | version "2.6.2" 47 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.2.tgz#18330ea7e6e313887f5d2f2a904bac6fe4dd5381" 48 | integrity sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg== 49 | dependencies: 50 | lodash "^4.17.11" 51 | 52 | balanced-match@^1.0.0: 53 | version "1.0.0" 54 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 55 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 56 | 57 | brace-expansion@^1.1.7: 58 | version "1.1.11" 59 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 60 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 61 | dependencies: 62 | balanced-match "^1.0.0" 63 | concat-map "0.0.1" 64 | 65 | buffer-from@^1.0.0: 66 | version "1.1.1" 67 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 68 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 69 | 70 | camelcase-keys@^2.0.0: 71 | version "2.1.0" 72 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 73 | integrity sha1-MIvur/3ygRkFHvodkyITyRuPkuc= 74 | dependencies: 75 | camelcase "^2.0.0" 76 | map-obj "^1.0.0" 77 | 78 | camelcase-keys@^4.0.0: 79 | version "4.2.0" 80 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77" 81 | integrity sha1-oqpfsa9oh1glnDLBQUJteJI7m3c= 82 | dependencies: 83 | camelcase "^4.1.0" 84 | map-obj "^2.0.0" 85 | quick-lru "^1.0.0" 86 | 87 | camelcase@^2.0.0: 88 | version "2.1.1" 89 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 90 | integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= 91 | 92 | camelcase@^4.1.0: 93 | version "4.1.0" 94 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 95 | integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= 96 | 97 | camelcase@^5.0.0: 98 | version "5.2.0" 99 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.2.0.tgz#e7522abda5ed94cc0489e1b8466610e88404cf45" 100 | integrity sha512-IXFsBS2pC+X0j0N/GE7Dm7j3bsEBp+oTpb7F50dwEVX7rf3IgwO9XatnegTsDtniKCUtEJH4fSU6Asw7uoVLfQ== 101 | 102 | chalk@^2.4.1: 103 | version "2.4.2" 104 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 105 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 106 | dependencies: 107 | ansi-styles "^3.2.1" 108 | escape-string-regexp "^1.0.5" 109 | supports-color "^5.3.0" 110 | 111 | cliui@^4.0.0: 112 | version "4.1.0" 113 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 114 | integrity sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ== 115 | dependencies: 116 | string-width "^2.1.1" 117 | strip-ansi "^4.0.0" 118 | wrap-ansi "^2.0.0" 119 | 120 | code-point-at@^1.0.0: 121 | version "1.1.0" 122 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 123 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 124 | 125 | color-convert@^1.9.0: 126 | version "1.9.3" 127 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 128 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 129 | dependencies: 130 | color-name "1.1.3" 131 | 132 | color-name@1.1.3: 133 | version "1.1.3" 134 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 135 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 136 | 137 | commander@~2.17.1: 138 | version "2.17.1" 139 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" 140 | integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg== 141 | 142 | compare-func@^1.3.1: 143 | version "1.3.2" 144 | resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648" 145 | integrity sha1-md0LpFfh+bxyKxLAjsM+6rMfpkg= 146 | dependencies: 147 | array-ify "^1.0.0" 148 | dot-prop "^3.0.0" 149 | 150 | concat-map@0.0.1: 151 | version "0.0.1" 152 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 153 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 154 | 155 | concat-stream@^1.6.0: 156 | version "1.6.2" 157 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 158 | integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== 159 | dependencies: 160 | buffer-from "^1.0.0" 161 | inherits "^2.0.3" 162 | readable-stream "^2.2.2" 163 | typedarray "^0.0.6" 164 | 165 | conventional-changelog-angular@^5.0.3: 166 | version "5.0.3" 167 | resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.3.tgz#299fdd43df5a1f095283ac16aeedfb0a682ecab0" 168 | integrity sha512-YD1xzH7r9yXQte/HF9JBuEDfvjxxwDGGwZU1+ndanbY0oFgA+Po1T9JDSpPLdP0pZT6MhCAsdvFKC4TJ4MTJTA== 169 | dependencies: 170 | compare-func "^1.3.1" 171 | q "^1.5.1" 172 | 173 | conventional-changelog-atom@^2.0.1: 174 | version "2.0.1" 175 | resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-2.0.1.tgz#dc88ce650ffa9ceace805cbe70f88bfd0cb2c13a" 176 | integrity sha512-9BniJa4gLwL20Sm7HWSNXd0gd9c5qo49gCi8nylLFpqAHhkFTj7NQfROq3f1VpffRtzfTQp4VKU5nxbe2v+eZQ== 177 | dependencies: 178 | q "^1.5.1" 179 | 180 | conventional-changelog-codemirror@^2.0.1: 181 | version "2.0.1" 182 | resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.1.tgz#acc046bc0971460939a0cc2d390e5eafc5eb30da" 183 | integrity sha512-23kT5IZWa+oNoUaDUzVXMYn60MCdOygTA2I+UjnOMiYVhZgmVwNd6ri/yDlmQGXHqbKhNR5NoXdBzSOSGxsgIQ== 184 | dependencies: 185 | q "^1.5.1" 186 | 187 | conventional-changelog-core@^3.1.6: 188 | version "3.1.6" 189 | resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-3.1.6.tgz#ac1731a461c50d150d29c1ad4f33143293bcd32f" 190 | integrity sha512-5teTAZOtJ4HLR6384h50nPAaKdDr+IaU0rnD2Gg2C3MS7hKsEPH8pZxrDNqam9eOSPQg9tET6uZY79zzgSz+ig== 191 | dependencies: 192 | conventional-changelog-writer "^4.0.3" 193 | conventional-commits-parser "^3.0.1" 194 | dateformat "^3.0.0" 195 | get-pkg-repo "^1.0.0" 196 | git-raw-commits "2.0.0" 197 | git-remote-origin-url "^2.0.0" 198 | git-semver-tags "^2.0.2" 199 | lodash "^4.2.1" 200 | normalize-package-data "^2.3.5" 201 | q "^1.5.1" 202 | read-pkg "^3.0.0" 203 | read-pkg-up "^3.0.0" 204 | through2 "^2.0.0" 205 | 206 | conventional-changelog-ember@^2.0.2: 207 | version "2.0.2" 208 | resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-2.0.2.tgz#284ffdea8c83ea8c210b65c5b4eb3e5cc0f4f51a" 209 | integrity sha512-qtZbA3XefO/n6DDmkYywDYi6wDKNNc98MMl2F9PKSaheJ25Trpi3336W8fDlBhq0X+EJRuseceAdKLEMmuX2tg== 210 | dependencies: 211 | q "^1.5.1" 212 | 213 | conventional-changelog-eslint@^3.0.1: 214 | version "3.0.1" 215 | resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.1.tgz#f65e0e7f63dc09c044244b8785313a602e628002" 216 | integrity sha512-yH3+bYrtvgKxSFChUBQnKNh9/U9kN2JElYBm253VpYs5wXhPHVc9ENcuVGWijh24nnOkei7wEJmnmUzgZ4ok+A== 217 | dependencies: 218 | q "^1.5.1" 219 | 220 | conventional-changelog-express@^2.0.1: 221 | version "2.0.1" 222 | resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-2.0.1.tgz#fea2231d99a5381b4e6badb0c1c40a41fcacb755" 223 | integrity sha512-G6uCuCaQhLxdb4eEfAIHpcfcJ2+ao3hJkbLrw/jSK/eROeNfnxCJasaWdDAfFkxsbpzvQT4W01iSynU3OoPLIw== 224 | dependencies: 225 | q "^1.5.1" 226 | 227 | conventional-changelog-jquery@^3.0.4: 228 | version "3.0.4" 229 | resolved "https://registry.yarnpkg.com/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.4.tgz#7eb598467b83db96742178e1e8d68598bffcd7ae" 230 | integrity sha512-IVJGI3MseYoY6eybknnTf9WzeQIKZv7aNTm2KQsiFVJH21bfP2q7XVjfoMibdCg95GmgeFlaygMdeoDDa+ZbEQ== 231 | dependencies: 232 | q "^1.5.1" 233 | 234 | conventional-changelog-jshint@^2.0.1: 235 | version "2.0.1" 236 | resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.1.tgz#11c0e8283abf156a4ff78e89be6fdedf9bd72202" 237 | integrity sha512-kRFJsCOZzPFm2tzRHULWP4tauGMvccOlXYf3zGeuSW4U0mZhk5NsjnRZ7xFWrTFPlCLV+PNmHMuXp5atdoZmEg== 238 | dependencies: 239 | compare-func "^1.3.1" 240 | q "^1.5.1" 241 | 242 | conventional-changelog-preset-loader@^2.0.2: 243 | version "2.0.2" 244 | resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.0.2.tgz#81d1a07523913f3d17da3a49f0091f967ad345b0" 245 | integrity sha512-pBY+qnUoJPXAXXqVGwQaVmcye05xi6z231QM98wHWamGAmu/ghkBprQAwmF5bdmyobdVxiLhPY3PrCfSeUNzRQ== 246 | 247 | conventional-changelog-writer@^4.0.3: 248 | version "4.0.3" 249 | resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-4.0.3.tgz#916a2b302d0bb5ef18efd236a034c13fb273cde1" 250 | integrity sha512-bIlpSiQtQZ1+nDVHEEh798Erj2jhN/wEjyw9sfxY9es6h7pREE5BNJjfv0hXGH/FTrAsEpHUq4xzK99eePpwuA== 251 | dependencies: 252 | compare-func "^1.3.1" 253 | conventional-commits-filter "^2.0.1" 254 | dateformat "^3.0.0" 255 | handlebars "^4.1.0" 256 | json-stringify-safe "^5.0.1" 257 | lodash "^4.2.1" 258 | meow "^4.0.0" 259 | semver "^5.5.0" 260 | split "^1.0.0" 261 | through2 "^2.0.0" 262 | 263 | conventional-changelog@^3.0.6: 264 | version "3.0.6" 265 | resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-3.0.6.tgz#a0bd3b51a0549ec03eb6ef90af7f9fa8c358b15f" 266 | integrity sha512-1b96x3G67lDKakRvMm+VvYGwgRk+C8aapHKL5iZ/TJzzD/RuyGA2diHNEsR+uPHmQ7/A4Ts7j6N+VNqUoOfksg== 267 | dependencies: 268 | conventional-changelog-angular "^5.0.3" 269 | conventional-changelog-atom "^2.0.1" 270 | conventional-changelog-codemirror "^2.0.1" 271 | conventional-changelog-core "^3.1.6" 272 | conventional-changelog-ember "^2.0.2" 273 | conventional-changelog-eslint "^3.0.1" 274 | conventional-changelog-express "^2.0.1" 275 | conventional-changelog-jquery "^3.0.4" 276 | conventional-changelog-jshint "^2.0.1" 277 | conventional-changelog-preset-loader "^2.0.2" 278 | 279 | conventional-commits-filter@^2.0.1: 280 | version "2.0.1" 281 | resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-2.0.1.tgz#55a135de1802f6510b6758e0a6aa9e0b28618db3" 282 | integrity sha512-92OU8pz/977udhBjgPEbg3sbYzIxMDFTlQT97w7KdhR9igNqdJvy8smmedAAgn4tPiqseFloKkrVfbXCVd+E7A== 283 | dependencies: 284 | is-subset "^0.1.1" 285 | modify-values "^1.0.0" 286 | 287 | conventional-commits-parser@^3.0.1: 288 | version "3.0.1" 289 | resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.0.1.tgz#fe1c49753df3f98edb2285a5e485e11ffa7f2e4c" 290 | integrity sha512-P6U5UOvDeidUJ8ebHVDIoXzI7gMlQ1OF/id6oUvp8cnZvOXMt1n8nYl74Ey9YMn0uVQtxmCtjPQawpsssBWtGg== 291 | dependencies: 292 | JSONStream "^1.0.4" 293 | is-text-path "^1.0.0" 294 | lodash "^4.2.1" 295 | meow "^4.0.0" 296 | split2 "^2.0.0" 297 | through2 "^2.0.0" 298 | trim-off-newlines "^1.0.0" 299 | 300 | conventional-recommended-bump@^4.0.4: 301 | version "4.0.4" 302 | resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-4.0.4.tgz#05540584641d3da758c8863c09788fcaeb586872" 303 | integrity sha512-9mY5Yoblq+ZMqJpBzgS+RpSq+SUfP2miOR3H/NR9drGf08WCrY9B6HAGJZEm6+ThsVP917VHAahSOjM6k1vhPg== 304 | dependencies: 305 | concat-stream "^1.6.0" 306 | conventional-changelog-preset-loader "^2.0.2" 307 | conventional-commits-filter "^2.0.1" 308 | conventional-commits-parser "^3.0.1" 309 | git-raw-commits "2.0.0" 310 | git-semver-tags "^2.0.2" 311 | meow "^4.0.0" 312 | q "^1.5.1" 313 | 314 | core-util-is@~1.0.0: 315 | version "1.0.2" 316 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 317 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 318 | 319 | cross-spawn@^6.0.0: 320 | version "6.0.5" 321 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 322 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 323 | dependencies: 324 | nice-try "^1.0.4" 325 | path-key "^2.0.1" 326 | semver "^5.5.0" 327 | shebang-command "^1.2.0" 328 | which "^1.2.9" 329 | 330 | currently-unhandled@^0.4.1: 331 | version "0.4.1" 332 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 333 | integrity sha1-mI3zP+qxke95mmE2nddsF635V+o= 334 | dependencies: 335 | array-find-index "^1.0.1" 336 | 337 | dargs@^4.0.1: 338 | version "4.1.0" 339 | resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17" 340 | integrity sha1-A6nbtLXC8Tm/FK5T8LiipqhvThc= 341 | dependencies: 342 | number-is-nan "^1.0.0" 343 | 344 | dateformat@^3.0.0: 345 | version "3.0.3" 346 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" 347 | integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== 348 | 349 | decamelize-keys@^1.0.0: 350 | version "1.1.0" 351 | resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" 352 | integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk= 353 | dependencies: 354 | decamelize "^1.1.0" 355 | map-obj "^1.0.0" 356 | 357 | decamelize@^1.1.0, decamelize@^1.1.2, decamelize@^1.2.0: 358 | version "1.2.0" 359 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 360 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 361 | 362 | detect-indent@^5.0.0: 363 | version "5.0.0" 364 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" 365 | integrity sha1-OHHMCmoALow+Wzz38zYmRnXwa50= 366 | 367 | detect-newline@^2.1.0: 368 | version "2.1.0" 369 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 370 | integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I= 371 | 372 | dot-prop@^3.0.0: 373 | version "3.0.0" 374 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 375 | integrity sha1-G3CK8JSknJoOfbyteQq6U52sEXc= 376 | dependencies: 377 | is-obj "^1.0.0" 378 | 379 | dotgitignore@^1.0.3: 380 | version "1.0.3" 381 | resolved "https://registry.yarnpkg.com/dotgitignore/-/dotgitignore-1.0.3.tgz#a442cbde7dc20dff51cdb849e4c5a64568c07923" 382 | integrity sha512-eu5XjSstm0WXQsARgo6kPjkINYZlOUW+z/KtAAIBjHa5mUpMPrxJytbPIndWz6GubBuuuH5ljtVcXKnVnH5q8w== 383 | dependencies: 384 | find-up "^2.1.0" 385 | minimatch "^3.0.4" 386 | 387 | end-of-stream@^1.1.0: 388 | version "1.4.1" 389 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 390 | integrity sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q== 391 | dependencies: 392 | once "^1.4.0" 393 | 394 | error-ex@^1.2.0, error-ex@^1.3.1: 395 | version "1.3.2" 396 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 397 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 398 | dependencies: 399 | is-arrayish "^0.2.1" 400 | 401 | escape-string-regexp@^1.0.5: 402 | version "1.0.5" 403 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 404 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 405 | 406 | execa@^1.0.0: 407 | version "1.0.0" 408 | resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" 409 | integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== 410 | dependencies: 411 | cross-spawn "^6.0.0" 412 | get-stream "^4.0.0" 413 | is-stream "^1.1.0" 414 | npm-run-path "^2.0.0" 415 | p-finally "^1.0.0" 416 | signal-exit "^3.0.0" 417 | strip-eof "^1.0.0" 418 | 419 | figures@^2.0.0: 420 | version "2.0.0" 421 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 422 | integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= 423 | dependencies: 424 | escape-string-regexp "^1.0.5" 425 | 426 | find-up@^1.0.0: 427 | version "1.1.2" 428 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 429 | integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= 430 | dependencies: 431 | path-exists "^2.0.0" 432 | pinkie-promise "^2.0.0" 433 | 434 | find-up@^2.0.0, find-up@^2.1.0: 435 | version "2.1.0" 436 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 437 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= 438 | dependencies: 439 | locate-path "^2.0.0" 440 | 441 | find-up@^3.0.0: 442 | version "3.0.0" 443 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 444 | integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== 445 | dependencies: 446 | locate-path "^3.0.0" 447 | 448 | fs-access@^1.0.0: 449 | version "1.0.1" 450 | resolved "https://registry.yarnpkg.com/fs-access/-/fs-access-1.0.1.tgz#d6a87f262271cefebec30c553407fb995da8777a" 451 | integrity sha1-1qh/JiJxzv6+wwxVNAf7mV2od3o= 452 | dependencies: 453 | null-check "^1.0.0" 454 | 455 | get-caller-file@^1.0.1: 456 | version "1.0.3" 457 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 458 | integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== 459 | 460 | get-pkg-repo@^1.0.0: 461 | version "1.4.0" 462 | resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d" 463 | integrity sha1-xztInAbYDMVTbCyFP54FIyBWly0= 464 | dependencies: 465 | hosted-git-info "^2.1.4" 466 | meow "^3.3.0" 467 | normalize-package-data "^2.3.0" 468 | parse-github-repo-url "^1.3.0" 469 | through2 "^2.0.0" 470 | 471 | get-stdin@^4.0.1: 472 | version "4.0.1" 473 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 474 | integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4= 475 | 476 | get-stream@^4.0.0: 477 | version "4.1.0" 478 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 479 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 480 | dependencies: 481 | pump "^3.0.0" 482 | 483 | git-raw-commits@2.0.0: 484 | version "2.0.0" 485 | resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-2.0.0.tgz#d92addf74440c14bcc5c83ecce3fb7f8a79118b5" 486 | integrity sha512-w4jFEJFgKXMQJ0H0ikBk2S+4KP2VEjhCvLCNqbNRQC8BgGWgLKNCO7a9K9LI+TVT7Gfoloje502sEnctibffgg== 487 | dependencies: 488 | dargs "^4.0.1" 489 | lodash.template "^4.0.2" 490 | meow "^4.0.0" 491 | split2 "^2.0.0" 492 | through2 "^2.0.0" 493 | 494 | git-remote-origin-url@^2.0.0: 495 | version "2.0.0" 496 | resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" 497 | integrity sha1-UoJlna4hBxRaERJhEq0yFuxfpl8= 498 | dependencies: 499 | gitconfiglocal "^1.0.0" 500 | pify "^2.3.0" 501 | 502 | git-semver-tags@^2.0.2: 503 | version "2.0.2" 504 | resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-2.0.2.tgz#f506ec07caade191ac0c8d5a21bdb8131b4934e3" 505 | integrity sha512-34lMF7Yo1xEmsK2EkbArdoU79umpvm0MfzaDkSNYSJqtM5QLAVTPWgpiXSVI5o/O9EvZPSrP4Zvnec/CqhSd5w== 506 | dependencies: 507 | meow "^4.0.0" 508 | semver "^5.5.0" 509 | 510 | gitconfiglocal@^1.0.0: 511 | version "1.0.0" 512 | resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" 513 | integrity sha1-QdBF84UaXqiPA/JMocYXgRRGS5s= 514 | dependencies: 515 | ini "^1.3.2" 516 | 517 | graceful-fs@^4.1.2: 518 | version "4.1.15" 519 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" 520 | integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== 521 | 522 | handlebars@^4.1.0: 523 | version "4.1.0" 524 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.0.tgz#0d6a6f34ff1f63cecec8423aa4169827bf787c3a" 525 | integrity sha512-l2jRuU1NAWK6AW5qqcTATWQJvNPEwkM7NEKSiv/gqOsoSQbVoWyqVEY5GS+XPQ88zLNmqASRpzfdm8d79hJS+w== 526 | dependencies: 527 | async "^2.5.0" 528 | optimist "^0.6.1" 529 | source-map "^0.6.1" 530 | optionalDependencies: 531 | uglify-js "^3.1.4" 532 | 533 | has-flag@^3.0.0: 534 | version "3.0.0" 535 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 536 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 537 | 538 | hosted-git-info@^2.1.4: 539 | version "2.7.1" 540 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" 541 | integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w== 542 | 543 | indent-string@^2.1.0: 544 | version "2.1.0" 545 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 546 | integrity sha1-ji1INIdCEhtKghi3oTfppSBJ3IA= 547 | dependencies: 548 | repeating "^2.0.0" 549 | 550 | indent-string@^3.0.0: 551 | version "3.2.0" 552 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 553 | integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok= 554 | 555 | inherits@^2.0.3, inherits@~2.0.3: 556 | version "2.0.3" 557 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 558 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 559 | 560 | ini@^1.3.2: 561 | version "1.3.5" 562 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 563 | integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== 564 | 565 | invert-kv@^2.0.0: 566 | version "2.0.0" 567 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" 568 | integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== 569 | 570 | is-arrayish@^0.2.1: 571 | version "0.2.1" 572 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 573 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 574 | 575 | is-finite@^1.0.0: 576 | version "1.0.2" 577 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 578 | integrity sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko= 579 | dependencies: 580 | number-is-nan "^1.0.0" 581 | 582 | is-fullwidth-code-point@^1.0.0: 583 | version "1.0.0" 584 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 585 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 586 | dependencies: 587 | number-is-nan "^1.0.0" 588 | 589 | is-fullwidth-code-point@^2.0.0: 590 | version "2.0.0" 591 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 592 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 593 | 594 | is-obj@^1.0.0: 595 | version "1.0.1" 596 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 597 | integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= 598 | 599 | is-plain-obj@^1.1.0: 600 | version "1.1.0" 601 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 602 | integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= 603 | 604 | is-stream@^1.1.0: 605 | version "1.1.0" 606 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 607 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 608 | 609 | is-subset@^0.1.1: 610 | version "0.1.1" 611 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" 612 | integrity sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY= 613 | 614 | is-text-path@^1.0.0: 615 | version "1.0.1" 616 | resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" 617 | integrity sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4= 618 | dependencies: 619 | text-extensions "^1.0.0" 620 | 621 | is-utf8@^0.2.0: 622 | version "0.2.1" 623 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 624 | integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= 625 | 626 | isarray@~1.0.0: 627 | version "1.0.0" 628 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 629 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 630 | 631 | isexe@^2.0.0: 632 | version "2.0.0" 633 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 634 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 635 | 636 | json-parse-better-errors@^1.0.1: 637 | version "1.0.2" 638 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 639 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 640 | 641 | json-stringify-safe@^5.0.1: 642 | version "5.0.1" 643 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 644 | integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= 645 | 646 | jsonparse@^1.2.0: 647 | version "1.3.1" 648 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 649 | integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA= 650 | 651 | lcid@^2.0.0: 652 | version "2.0.0" 653 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" 654 | integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA== 655 | dependencies: 656 | invert-kv "^2.0.0" 657 | 658 | load-json-file@^1.0.0: 659 | version "1.1.0" 660 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 661 | integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= 662 | dependencies: 663 | graceful-fs "^4.1.2" 664 | parse-json "^2.2.0" 665 | pify "^2.0.0" 666 | pinkie-promise "^2.0.0" 667 | strip-bom "^2.0.0" 668 | 669 | load-json-file@^4.0.0: 670 | version "4.0.0" 671 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 672 | integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= 673 | dependencies: 674 | graceful-fs "^4.1.2" 675 | parse-json "^4.0.0" 676 | pify "^3.0.0" 677 | strip-bom "^3.0.0" 678 | 679 | locate-path@^2.0.0: 680 | version "2.0.0" 681 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 682 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= 683 | dependencies: 684 | p-locate "^2.0.0" 685 | path-exists "^3.0.0" 686 | 687 | locate-path@^3.0.0: 688 | version "3.0.0" 689 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 690 | integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== 691 | dependencies: 692 | p-locate "^3.0.0" 693 | path-exists "^3.0.0" 694 | 695 | lodash._reinterpolate@~3.0.0: 696 | version "3.0.0" 697 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 698 | integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= 699 | 700 | lodash.template@^4.0.2: 701 | version "4.4.0" 702 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0" 703 | integrity sha1-5zoDhcg1VZF0bgILmWecaQ5o+6A= 704 | dependencies: 705 | lodash._reinterpolate "~3.0.0" 706 | lodash.templatesettings "^4.0.0" 707 | 708 | lodash.templatesettings@^4.0.0: 709 | version "4.1.0" 710 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz#2b4d4e95ba440d915ff08bc899e4553666713316" 711 | integrity sha1-K01OlbpEDZFf8IvImeRVNmZxMxY= 712 | dependencies: 713 | lodash._reinterpolate "~3.0.0" 714 | 715 | lodash@^4.17.11, lodash@^4.2.1: 716 | version "4.17.11" 717 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" 718 | integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== 719 | 720 | loud-rejection@^1.0.0: 721 | version "1.6.0" 722 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 723 | integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8= 724 | dependencies: 725 | currently-unhandled "^0.4.1" 726 | signal-exit "^3.0.0" 727 | 728 | map-age-cleaner@^0.1.1: 729 | version "0.1.3" 730 | resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" 731 | integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== 732 | dependencies: 733 | p-defer "^1.0.0" 734 | 735 | map-obj@^1.0.0, map-obj@^1.0.1: 736 | version "1.0.1" 737 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 738 | integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= 739 | 740 | map-obj@^2.0.0: 741 | version "2.0.0" 742 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" 743 | integrity sha1-plzSkIepJZi4eRJXpSPgISIqwfk= 744 | 745 | mem@^4.0.0: 746 | version "4.1.0" 747 | resolved "https://registry.yarnpkg.com/mem/-/mem-4.1.0.tgz#aeb9be2d21f47e78af29e4ac5978e8afa2ca5b8a" 748 | integrity sha512-I5u6Q1x7wxO0kdOpYBB28xueHADYps5uty/zg936CiG8NTe5sJL8EjrCuLneuDW3PlMdZBGDIn8BirEVdovZvg== 749 | dependencies: 750 | map-age-cleaner "^0.1.1" 751 | mimic-fn "^1.0.0" 752 | p-is-promise "^2.0.0" 753 | 754 | meow@^3.3.0: 755 | version "3.7.0" 756 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 757 | integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs= 758 | dependencies: 759 | camelcase-keys "^2.0.0" 760 | decamelize "^1.1.2" 761 | loud-rejection "^1.0.0" 762 | map-obj "^1.0.1" 763 | minimist "^1.1.3" 764 | normalize-package-data "^2.3.4" 765 | object-assign "^4.0.1" 766 | read-pkg-up "^1.0.1" 767 | redent "^1.0.0" 768 | trim-newlines "^1.0.0" 769 | 770 | meow@^4.0.0: 771 | version "4.0.1" 772 | resolved "https://registry.yarnpkg.com/meow/-/meow-4.0.1.tgz#d48598f6f4b1472f35bf6317a95945ace347f975" 773 | integrity sha512-xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A== 774 | dependencies: 775 | camelcase-keys "^4.0.0" 776 | decamelize-keys "^1.0.0" 777 | loud-rejection "^1.0.0" 778 | minimist "^1.1.3" 779 | minimist-options "^3.0.1" 780 | normalize-package-data "^2.3.4" 781 | read-pkg-up "^3.0.0" 782 | redent "^2.0.0" 783 | trim-newlines "^2.0.0" 784 | 785 | mimic-fn@^1.0.0: 786 | version "1.2.0" 787 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 788 | integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== 789 | 790 | minimatch@^3.0.4: 791 | version "3.0.4" 792 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 793 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 794 | dependencies: 795 | brace-expansion "^1.1.7" 796 | 797 | minimist-options@^3.0.1: 798 | version "3.0.2" 799 | resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954" 800 | integrity sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ== 801 | dependencies: 802 | arrify "^1.0.1" 803 | is-plain-obj "^1.1.0" 804 | 805 | minimist@^1.1.3: 806 | version "1.2.0" 807 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 808 | integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= 809 | 810 | minimist@~0.0.1: 811 | version "0.0.10" 812 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 813 | integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= 814 | 815 | modify-values@^1.0.0: 816 | version "1.0.1" 817 | resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" 818 | integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== 819 | 820 | nice-try@^1.0.4: 821 | version "1.0.5" 822 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 823 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 824 | 825 | normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5: 826 | version "2.5.0" 827 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 828 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 829 | dependencies: 830 | hosted-git-info "^2.1.4" 831 | resolve "^1.10.0" 832 | semver "2 || 3 || 4 || 5" 833 | validate-npm-package-license "^3.0.1" 834 | 835 | npm-run-path@^2.0.0: 836 | version "2.0.2" 837 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 838 | integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= 839 | dependencies: 840 | path-key "^2.0.0" 841 | 842 | null-check@^1.0.0: 843 | version "1.0.0" 844 | resolved "https://registry.yarnpkg.com/null-check/-/null-check-1.0.0.tgz#977dffd7176012b9ec30d2a39db5cf72a0439edd" 845 | integrity sha1-l33/1xdgErnsMNKjnbXPcqBDnt0= 846 | 847 | number-is-nan@^1.0.0: 848 | version "1.0.1" 849 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 850 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 851 | 852 | object-assign@^4.0.1: 853 | version "4.1.1" 854 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 855 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 856 | 857 | once@^1.3.1, once@^1.4.0: 858 | version "1.4.0" 859 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 860 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 861 | dependencies: 862 | wrappy "1" 863 | 864 | optimist@^0.6.1: 865 | version "0.6.1" 866 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 867 | integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY= 868 | dependencies: 869 | minimist "~0.0.1" 870 | wordwrap "~0.0.2" 871 | 872 | os-locale@^3.0.0: 873 | version "3.1.0" 874 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" 875 | integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== 876 | dependencies: 877 | execa "^1.0.0" 878 | lcid "^2.0.0" 879 | mem "^4.0.0" 880 | 881 | p-defer@^1.0.0: 882 | version "1.0.0" 883 | resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" 884 | integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= 885 | 886 | p-finally@^1.0.0: 887 | version "1.0.0" 888 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 889 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 890 | 891 | p-is-promise@^2.0.0: 892 | version "2.0.0" 893 | resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.0.0.tgz#7554e3d572109a87e1f3f53f6a7d85d1b194f4c5" 894 | integrity sha512-pzQPhYMCAgLAKPWD2jC3Se9fEfrD9npNos0y150EeqZll7akhEgGhTW/slB6lHku8AvYGiJ+YJ5hfHKePPgFWg== 895 | 896 | p-limit@^1.1.0: 897 | version "1.3.0" 898 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 899 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 900 | dependencies: 901 | p-try "^1.0.0" 902 | 903 | p-limit@^2.0.0: 904 | version "2.2.0" 905 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2" 906 | integrity sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ== 907 | dependencies: 908 | p-try "^2.0.0" 909 | 910 | p-locate@^2.0.0: 911 | version "2.0.0" 912 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 913 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= 914 | dependencies: 915 | p-limit "^1.1.0" 916 | 917 | p-locate@^3.0.0: 918 | version "3.0.0" 919 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 920 | integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== 921 | dependencies: 922 | p-limit "^2.0.0" 923 | 924 | p-try@^1.0.0: 925 | version "1.0.0" 926 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 927 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= 928 | 929 | p-try@^2.0.0: 930 | version "2.0.0" 931 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.0.0.tgz#85080bb87c64688fa47996fe8f7dfbe8211760b1" 932 | integrity sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ== 933 | 934 | parse-github-repo-url@^1.3.0: 935 | version "1.4.1" 936 | resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50" 937 | integrity sha1-nn2LslKmy2ukJZUGC3v23z28H1A= 938 | 939 | parse-json@^2.2.0: 940 | version "2.2.0" 941 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 942 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= 943 | dependencies: 944 | error-ex "^1.2.0" 945 | 946 | parse-json@^4.0.0: 947 | version "4.0.0" 948 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 949 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= 950 | dependencies: 951 | error-ex "^1.3.1" 952 | json-parse-better-errors "^1.0.1" 953 | 954 | path-exists@^2.0.0: 955 | version "2.1.0" 956 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 957 | integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= 958 | dependencies: 959 | pinkie-promise "^2.0.0" 960 | 961 | path-exists@^3.0.0: 962 | version "3.0.0" 963 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 964 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 965 | 966 | path-key@^2.0.0, path-key@^2.0.1: 967 | version "2.0.1" 968 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 969 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 970 | 971 | path-parse@^1.0.6: 972 | version "1.0.6" 973 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 974 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 975 | 976 | path-type@^1.0.0: 977 | version "1.1.0" 978 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 979 | integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= 980 | dependencies: 981 | graceful-fs "^4.1.2" 982 | pify "^2.0.0" 983 | pinkie-promise "^2.0.0" 984 | 985 | path-type@^3.0.0: 986 | version "3.0.0" 987 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 988 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== 989 | dependencies: 990 | pify "^3.0.0" 991 | 992 | pify@^2.0.0, pify@^2.3.0: 993 | version "2.3.0" 994 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 995 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 996 | 997 | pify@^3.0.0: 998 | version "3.0.0" 999 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1000 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= 1001 | 1002 | pinkie-promise@^2.0.0: 1003 | version "2.0.1" 1004 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1005 | integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= 1006 | dependencies: 1007 | pinkie "^2.0.0" 1008 | 1009 | pinkie@^2.0.0: 1010 | version "2.0.4" 1011 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1012 | integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= 1013 | 1014 | process-nextick-args@~2.0.0: 1015 | version "2.0.0" 1016 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 1017 | integrity sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw== 1018 | 1019 | pump@^3.0.0: 1020 | version "3.0.0" 1021 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 1022 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 1023 | dependencies: 1024 | end-of-stream "^1.1.0" 1025 | once "^1.3.1" 1026 | 1027 | q@^1.5.1: 1028 | version "1.5.1" 1029 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 1030 | integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= 1031 | 1032 | quick-lru@^1.0.0: 1033 | version "1.1.0" 1034 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" 1035 | integrity sha1-Q2CxfGETatOAeDl/8RQW4Ybc+7g= 1036 | 1037 | read-pkg-up@^1.0.1: 1038 | version "1.0.1" 1039 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1040 | integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= 1041 | dependencies: 1042 | find-up "^1.0.0" 1043 | read-pkg "^1.0.0" 1044 | 1045 | read-pkg-up@^3.0.0: 1046 | version "3.0.0" 1047 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" 1048 | integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc= 1049 | dependencies: 1050 | find-up "^2.0.0" 1051 | read-pkg "^3.0.0" 1052 | 1053 | read-pkg@^1.0.0: 1054 | version "1.1.0" 1055 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1056 | integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= 1057 | dependencies: 1058 | load-json-file "^1.0.0" 1059 | normalize-package-data "^2.3.2" 1060 | path-type "^1.0.0" 1061 | 1062 | read-pkg@^3.0.0: 1063 | version "3.0.0" 1064 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 1065 | integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= 1066 | dependencies: 1067 | load-json-file "^4.0.0" 1068 | normalize-package-data "^2.3.2" 1069 | path-type "^3.0.0" 1070 | 1071 | readable-stream@^2.2.2, readable-stream@~2.3.6: 1072 | version "2.3.6" 1073 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 1074 | integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== 1075 | dependencies: 1076 | core-util-is "~1.0.0" 1077 | inherits "~2.0.3" 1078 | isarray "~1.0.0" 1079 | process-nextick-args "~2.0.0" 1080 | safe-buffer "~5.1.1" 1081 | string_decoder "~1.1.1" 1082 | util-deprecate "~1.0.1" 1083 | 1084 | redent@^1.0.0: 1085 | version "1.0.0" 1086 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 1087 | integrity sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94= 1088 | dependencies: 1089 | indent-string "^2.1.0" 1090 | strip-indent "^1.0.1" 1091 | 1092 | redent@^2.0.0: 1093 | version "2.0.0" 1094 | resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa" 1095 | integrity sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo= 1096 | dependencies: 1097 | indent-string "^3.0.0" 1098 | strip-indent "^2.0.0" 1099 | 1100 | repeating@^2.0.0: 1101 | version "2.0.1" 1102 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1103 | integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= 1104 | dependencies: 1105 | is-finite "^1.0.0" 1106 | 1107 | require-directory@^2.1.1: 1108 | version "2.1.1" 1109 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1110 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 1111 | 1112 | require-main-filename@^1.0.1: 1113 | version "1.0.1" 1114 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1115 | integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= 1116 | 1117 | resolve@^1.10.0: 1118 | version "1.10.0" 1119 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba" 1120 | integrity sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg== 1121 | dependencies: 1122 | path-parse "^1.0.6" 1123 | 1124 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1125 | version "5.1.2" 1126 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1127 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1128 | 1129 | "semver@2 || 3 || 4 || 5", semver@^5.2.0, semver@^5.5.0: 1130 | version "5.6.0" 1131 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" 1132 | integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg== 1133 | 1134 | set-blocking@^2.0.0: 1135 | version "2.0.0" 1136 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1137 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 1138 | 1139 | shebang-command@^1.2.0: 1140 | version "1.2.0" 1141 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1142 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 1143 | dependencies: 1144 | shebang-regex "^1.0.0" 1145 | 1146 | shebang-regex@^1.0.0: 1147 | version "1.0.0" 1148 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1149 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 1150 | 1151 | signal-exit@^3.0.0: 1152 | version "3.0.2" 1153 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1154 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 1155 | 1156 | source-map@^0.6.1, source-map@~0.6.1: 1157 | version "0.6.1" 1158 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1159 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 1160 | 1161 | spdx-correct@^3.0.0: 1162 | version "3.1.0" 1163 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" 1164 | integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== 1165 | dependencies: 1166 | spdx-expression-parse "^3.0.0" 1167 | spdx-license-ids "^3.0.0" 1168 | 1169 | spdx-exceptions@^2.1.0: 1170 | version "2.2.0" 1171 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" 1172 | integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== 1173 | 1174 | spdx-expression-parse@^3.0.0: 1175 | version "3.0.0" 1176 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 1177 | integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== 1178 | dependencies: 1179 | spdx-exceptions "^2.1.0" 1180 | spdx-license-ids "^3.0.0" 1181 | 1182 | spdx-license-ids@^3.0.0: 1183 | version "3.0.3" 1184 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.3.tgz#81c0ce8f21474756148bbb5f3bfc0f36bf15d76e" 1185 | integrity sha512-uBIcIl3Ih6Phe3XHK1NqboJLdGfwr1UN3k6wSD1dZpmPsIkb8AGNbZYJ1fOBk834+Gxy8rpfDxrS6XLEMZMY2g== 1186 | 1187 | split2@^2.0.0: 1188 | version "2.2.0" 1189 | resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" 1190 | integrity sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw== 1191 | dependencies: 1192 | through2 "^2.0.2" 1193 | 1194 | split@^1.0.0: 1195 | version "1.0.1" 1196 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" 1197 | integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== 1198 | dependencies: 1199 | through "2" 1200 | 1201 | standard-version@latest: 1202 | version "5.0.1" 1203 | resolved "https://registry.yarnpkg.com/standard-version/-/standard-version-5.0.1.tgz#b2b2e858379c75b7da25fbc1cdafe8b6f36810d3" 1204 | integrity sha512-nlab5/C0P1Zd5k/2Zer/Y8xDnyf9kHES8Hy82aO8owJG9TJb3KbdNNOBNAgfa/ZsiDlJE9WQTGm1yN2VM1qxTg== 1205 | dependencies: 1206 | chalk "^2.4.1" 1207 | conventional-changelog "^3.0.6" 1208 | conventional-recommended-bump "^4.0.4" 1209 | detect-indent "^5.0.0" 1210 | detect-newline "^2.1.0" 1211 | dotgitignore "^1.0.3" 1212 | figures "^2.0.0" 1213 | fs-access "^1.0.0" 1214 | git-semver-tags "^2.0.2" 1215 | semver "^5.2.0" 1216 | stringify-package "^1.0.0" 1217 | yargs "^12.0.2" 1218 | 1219 | string-width@^1.0.1: 1220 | version "1.0.2" 1221 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1222 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 1223 | dependencies: 1224 | code-point-at "^1.0.0" 1225 | is-fullwidth-code-point "^1.0.0" 1226 | strip-ansi "^3.0.0" 1227 | 1228 | string-width@^2.0.0, string-width@^2.1.1: 1229 | version "2.1.1" 1230 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1231 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 1232 | dependencies: 1233 | is-fullwidth-code-point "^2.0.0" 1234 | strip-ansi "^4.0.0" 1235 | 1236 | string_decoder@~1.1.1: 1237 | version "1.1.1" 1238 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1239 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 1240 | dependencies: 1241 | safe-buffer "~5.1.0" 1242 | 1243 | stringify-package@^1.0.0: 1244 | version "1.0.0" 1245 | resolved "https://registry.yarnpkg.com/stringify-package/-/stringify-package-1.0.0.tgz#e02828089333d7d45cd8c287c30aa9a13375081b" 1246 | integrity sha512-JIQqiWmLiEozOC0b0BtxZ/AOUtdUZHCBPgqIZ2kSJJqGwgb9neo44XdTHUC4HZSGqi03hOeB7W/E8rAlKnGe9g== 1247 | 1248 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1249 | version "3.0.1" 1250 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1251 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 1252 | dependencies: 1253 | ansi-regex "^2.0.0" 1254 | 1255 | strip-ansi@^4.0.0: 1256 | version "4.0.0" 1257 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1258 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 1259 | dependencies: 1260 | ansi-regex "^3.0.0" 1261 | 1262 | strip-bom@^2.0.0: 1263 | version "2.0.0" 1264 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1265 | integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= 1266 | dependencies: 1267 | is-utf8 "^0.2.0" 1268 | 1269 | strip-bom@^3.0.0: 1270 | version "3.0.0" 1271 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1272 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 1273 | 1274 | strip-eof@^1.0.0: 1275 | version "1.0.0" 1276 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 1277 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 1278 | 1279 | strip-indent@^1.0.1: 1280 | version "1.0.1" 1281 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 1282 | integrity sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI= 1283 | dependencies: 1284 | get-stdin "^4.0.1" 1285 | 1286 | strip-indent@^2.0.0: 1287 | version "2.0.0" 1288 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 1289 | integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g= 1290 | 1291 | supports-color@^5.3.0: 1292 | version "5.5.0" 1293 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1294 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1295 | dependencies: 1296 | has-flag "^3.0.0" 1297 | 1298 | text-extensions@^1.0.0: 1299 | version "1.9.0" 1300 | resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" 1301 | integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ== 1302 | 1303 | through2@^2.0.0, through2@^2.0.2: 1304 | version "2.0.5" 1305 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" 1306 | integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== 1307 | dependencies: 1308 | readable-stream "~2.3.6" 1309 | xtend "~4.0.1" 1310 | 1311 | through@2, "through@>=2.2.7 <3": 1312 | version "2.3.8" 1313 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1314 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 1315 | 1316 | trim-newlines@^1.0.0: 1317 | version "1.0.0" 1318 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 1319 | integrity sha1-WIeWa7WCpFA6QetST301ARgVphM= 1320 | 1321 | trim-newlines@^2.0.0: 1322 | version "2.0.0" 1323 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20" 1324 | integrity sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA= 1325 | 1326 | trim-off-newlines@^1.0.0: 1327 | version "1.0.1" 1328 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" 1329 | integrity sha1-n5up2e+odkw4dpi8v+sshI8RrbM= 1330 | 1331 | typedarray@^0.0.6: 1332 | version "0.0.6" 1333 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1334 | integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= 1335 | 1336 | typescript@^2.8.1: 1337 | version "2.9.2" 1338 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.9.2.tgz#1cbf61d05d6b96269244eb6a3bce4bd914e0f00c" 1339 | integrity sha512-Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w== 1340 | 1341 | uglify-js@^3.1.4: 1342 | version "3.4.9" 1343 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.4.9.tgz#af02f180c1207d76432e473ed24a28f4a782bae3" 1344 | integrity sha512-8CJsbKOtEbnJsTyv6LE6m6ZKniqMiFWmm9sRbopbkGs3gMPPfd3Fh8iIA4Ykv5MgaTbqHr4BaoGLJLZNhsrW1Q== 1345 | dependencies: 1346 | commander "~2.17.1" 1347 | source-map "~0.6.1" 1348 | 1349 | util-deprecate@~1.0.1: 1350 | version "1.0.2" 1351 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1352 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 1353 | 1354 | validate-npm-package-license@^3.0.1: 1355 | version "3.0.4" 1356 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 1357 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 1358 | dependencies: 1359 | spdx-correct "^3.0.0" 1360 | spdx-expression-parse "^3.0.0" 1361 | 1362 | vue-class-component@^7.0.1: 1363 | version "7.0.1" 1364 | resolved "https://registry.yarnpkg.com/vue-class-component/-/vue-class-component-7.0.1.tgz#7af2225c600667c7042b60712eefdf41dfc6de63" 1365 | integrity sha512-YIihdl7YmceEOjSwcxLhCXCNA3TKC2FStuMcjtuzhUAgw5x5d1T5gZTmVQHGyOaQsaKffL4GlZzYN3dlMYl53w== 1366 | 1367 | vue@^2.5.16: 1368 | version "2.6.8" 1369 | resolved "https://registry.yarnpkg.com/vue/-/vue-2.6.8.tgz#f21cbc536bfc14f7d1d792a137bb12f69e60ea91" 1370 | integrity sha512-+vp9lEC2Kt3yom673pzg1J7T1NVGuGzO9j8Wxno+rQN2WYVBX2pyo/RGQ3fXCLh2Pk76Skw/laAPCuBuEQ4diw== 1371 | 1372 | vuex-class@^0.3.1: 1373 | version "0.3.1" 1374 | resolved "https://registry.yarnpkg.com/vuex-class/-/vuex-class-0.3.1.tgz#3c0b946bcff4cf2be1904de5b0cab1a3dd5c41d5" 1375 | integrity sha512-d7Hc+ItQx6p9E/2mEWiyrvyEuo7Uj0mq4VNImd7dmxTelnkhOavKPMEG1Xdypug2RlPEYv0920IOa3hdVZ+4AA== 1376 | 1377 | vuex@^3.0.1: 1378 | version "3.1.0" 1379 | resolved "https://registry.yarnpkg.com/vuex/-/vuex-3.1.0.tgz#634b81515cf0cfe976bd1ffe9601755e51f843b9" 1380 | integrity sha512-mdHeHT/7u4BncpUZMlxNaIdcN/HIt1GsGG5LKByArvYG/v6DvHcOxvDCts+7SRdCoIRGllK8IMZvQtQXLppDYg== 1381 | 1382 | which-module@^2.0.0: 1383 | version "2.0.0" 1384 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 1385 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 1386 | 1387 | which@^1.2.9: 1388 | version "1.3.1" 1389 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 1390 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 1391 | dependencies: 1392 | isexe "^2.0.0" 1393 | 1394 | wordwrap@~0.0.2: 1395 | version "0.0.3" 1396 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 1397 | integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= 1398 | 1399 | wrap-ansi@^2.0.0: 1400 | version "2.1.0" 1401 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 1402 | integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= 1403 | dependencies: 1404 | string-width "^1.0.1" 1405 | strip-ansi "^3.0.1" 1406 | 1407 | wrappy@1: 1408 | version "1.0.2" 1409 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1410 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1411 | 1412 | xtend@~4.0.1: 1413 | version "4.0.1" 1414 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1415 | integrity sha1-pcbVMr5lbiPbgg77lDofBJmNY68= 1416 | 1417 | "y18n@^3.2.1 || ^4.0.0": 1418 | version "4.0.0" 1419 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" 1420 | integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== 1421 | 1422 | yargs-parser@^11.1.1: 1423 | version "11.1.1" 1424 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" 1425 | integrity sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ== 1426 | dependencies: 1427 | camelcase "^5.0.0" 1428 | decamelize "^1.2.0" 1429 | 1430 | yargs@^12.0.2: 1431 | version "12.0.5" 1432 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" 1433 | integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw== 1434 | dependencies: 1435 | cliui "^4.0.0" 1436 | decamelize "^1.2.0" 1437 | find-up "^3.0.0" 1438 | get-caller-file "^1.0.1" 1439 | os-locale "^3.0.0" 1440 | require-directory "^2.1.1" 1441 | require-main-filename "^1.0.1" 1442 | set-blocking "^2.0.0" 1443 | string-width "^2.0.0" 1444 | which-module "^2.0.0" 1445 | y18n "^3.2.1 || ^4.0.0" 1446 | yargs-parser "^11.1.1" 1447 | --------------------------------------------------------------------------------