├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── LICENSE.md ├── README.md ├── babel.config.js ├── dist ├── vue-peerjs.esm.js └── vue-peerjs.min.js ├── example └── index.html ├── package.json ├── scripts ├── release.sh └── rollup-build.js ├── src ├── Observe.js ├── constants.js ├── defaults.js ├── index.js └── utils │ ├── index.js │ └── vuex.js ├── types ├── index.d.ts ├── peerjs.d.ts ├── tsconfig.json └── vue.d.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | insert_final_newline = true 8 | trim_trailing_whitespace = true 9 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | # Dependency directories 2 | node_modules/ 3 | 4 | # Project-specific 5 | dist 6 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "extends": [ 4 | "airbnb-base" 5 | ], 6 | "env": { 7 | "browser": true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | 4 | # Log files 5 | npm-debug.log* 6 | yarn-debug.log* 7 | yarn-error.log* 8 | 9 | # Editor directories and files 10 | .idea 11 | .vscode 12 | *.suo 13 | *.ntvs* 14 | *.njsproj 15 | *.sln 16 | *.sw* -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2019 Joost van Someren 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 | # Vue-PeerJS 2 | 3 | [PeerJS](https://peerjs.com/) bindings for Vue.js and Vuex (inspired by [Vue-Socket.io-Extended](https://github.com/probil/vue-socket.io-extended)) 4 | 5 | ## Requirements 6 | 7 | * [Vue.js](https://vuejs.org/) `>=2.X` 8 | * [PeerJS](https://socket.io) `>=1.X` 9 | * [Vuex](https://vuex.vuejs.org/) `>=2.X` (optional, for integration with Vuex only) 10 | 11 | ## Installation 12 | 13 | ```bash 14 | npm install vue-peerjs peerjs 15 | ``` 16 | 17 | ## Initialization 18 | 19 | #### ES2015 (Webpack/Rollup/Browserify/Parcel/etc) 20 | ``` js 21 | import VuePeerJS from 'vue-peerjs'; 22 | import Peer from 'peerjs'; 23 | 24 | Vue.use(VuePeerJS, new Peer({})); 25 | ``` 26 | *Note:* you have to pass instance of `peerjs` as second argument to prevent library duplication. 27 | 28 | #### UMD (Browser) 29 | 30 | ``` html 31 | 32 | 33 | 34 | 37 | ``` 38 | 39 | ## Usage 40 | 41 | #### On Vue.js component 42 | 43 | ``` js 44 | new Vue({ 45 | methods: { 46 | clickButton(val) { 47 | // this.$peer is `peerjs` instance 48 | const dataConnection = this.$peer.connect(id); 49 | this.$peer.on('open', function(id) { ... }); 50 | } 51 | } 52 | }) 53 | ``` 54 | 55 | **Note**: Don't use arrow functions for methods or listeners if you are going to emit `socket.io` events inside. You will end up with using incorrect `this`. 56 | 57 | #### Typescript 58 | 59 | Currently the typing aren't configured correctly to correct for this please add the following shim. 60 | 61 | ```typescript 62 | // -- file: src/shims-vue-peerjs.d.ts --- // 63 | import Peer from 'peerjs'; 64 | 65 | declare module 'vue/types/vue' { 66 | interface Vue { 67 | $peer: Peer; 68 | } 69 | } 70 | ``` 71 | 72 | ## Vuex Store integration 73 | 74 | To enable Vuex integration just pass the store as the third argument, e.g.: 75 | ``` js 76 | import store from './store' 77 | 78 | Vue.use(VuePeerJS, new Peer({}), { store }); 79 | ``` 80 | 81 | The main idea behind the integration is that mutations and actions are dispatched/committed automatically on Vuex store when a peer/dataConnection/mediaConnection event arrives. Not every mutation and action is invoked. It should follow special formatting convention, so the plugin can easily determine which one should be called. 82 | 83 | * a **mutation** should start with `PEER_` prefix and continue with an uppercase version of the event 84 | * an **action** should start with `peer_` prefix and continue with camelcase version of the event 85 | 86 | @TODO 87 | 88 | | Server Event | Mutation | Action 89 | | --- | --- | --- | 90 | | `chat message` | `SOCKET_CHAT MESSAGE` | `socket_chatMessage` | 91 | | `chat_message` | `SOCKET_CHAT_MESSAGE` | `socket_chatMessage` | 92 | | `chatMessage` | `SOCKET_CHATMESSAGE` | `socket_chatMessage` | 93 | | `CHAT_MESSAGE` | `SOCKET_CHAT_MESSAGE` | `socket_chatMessage` | 94 | 95 | Check [Configuration](#gear-configuration) section if you'd like to use custom transformation. 96 | 97 | **Note**: different server events can commit/dispatch the same mutation or/and the same action. So try to use only one naming convention to avoid possible bugs. In any case, this behavior is going to be changed soon and considered as problematic. 98 | 99 | You can use either mutation or action or even both in your store. Don't forget that mutations are synchronous transactions. If you have any async operations inside, it's better to use actions instead. Learn more about Vuex [here](https://vuex.vuejs.org/en/). 100 | 101 | ```js 102 | import Vue from 'vue' 103 | import Vuex from 'vuex' 104 | 105 | Vue.use(Vuex); 106 | 107 | export default new Vuex.Store({ 108 | state: { 109 | id: null, 110 | error: null, 111 | }, 112 | mutations: { 113 | PEER_OPEN(state, id) { 114 | state.id = id; 115 | }, 116 | PEER_ERROR(state, error) { 117 | state.error = error; 118 | }, 119 | }, 120 | actions: { 121 | otherAction(context, type) { 122 | return true; 123 | }, 124 | PEER_ERROR({ commit, dispatch }, error) { 125 | dispatch('newError', error); 126 | commit('NEW_ERROR_RECEIVED', error); 127 | // ... 128 | }, 129 | }, 130 | }) 131 | ``` 132 | 133 | #### Namespaced vuex modules 134 | 135 | Namespaced modules are supported out-of-the-box when plugin initialized with Vuex store. You can easily divide your store into modules without worrying that mutation or action will not be called. The plugin checks all your modules for mutation and action that are formatted by convention described above and call them all. That means you can listen for the same event from multiple stores with no issue. 136 | 137 | Check the following example: 138 | 139 | ```js 140 | import Vue from 'vue' 141 | import Vuex from 'vuex' 142 | 143 | Vue.use(Vuex); 144 | 145 | const messages = { 146 | state: { 147 | messages: [] 148 | }, 149 | mutations: { 150 | PEER_DATA(state, {args, dataConnection}) { 151 | state.messages.push(args[0]); 152 | } 153 | }, 154 | actions: { 155 | peer_data() { 156 | console.log('this action will be called'); 157 | } 158 | }, 159 | }; 160 | 161 | const notifications = { 162 | state: { 163 | notifications: [] 164 | }, 165 | mutations: { 166 | PEER_DATA(state, {args, dataConnection}) { 167 | state.notifications.push({ type: 'message', payload: args[0] }); 168 | } 169 | }, 170 | } 171 | 172 | export default new Vuex.Store({ 173 | modules: { 174 | messages, 175 | notifications, 176 | } 177 | }) 178 | ``` 179 | 180 | That's what will happen, on `data` from a dataConnection: 181 | * `PEER_DATA` mutation commited on `messages` module 182 | * `PEER_DATA` mutation commited on `notification` module 183 | * `peer_data` action dispatched on `messages` module 184 | 185 | ## Configuration 186 | 187 | In addition to store instance, `vue-peerjs` accepts other options. 188 | Here they are: 189 | 190 | | Option | Type | Default | Description | 191 | | ---- | ---- | ------- | ------- | 192 | | `store` | `Object` | `undefined` | Vuex store instance, enables vuex integration | 193 | | `actionPrefix` | `String` | `'peer_'` | Prepend to event name while converting event to action. Empty string disables prefixing | 194 | | `mutationPrefix` | `String` | `'PEER_'` | Prepend to event name while converting event to mutation. Empty string disables prefixing | 195 | | `eventToMutationTransformer` | `Function` `string => string` | uppercase function | Determines how event name converted to mutation | 196 | | `eventToActionTransformer` | `Function` `string => string` | camelcase function | Determines how event name converted to action | 197 | 198 | *FYI:* You can always access default plugin options if you need it (e.g. re-use default `eventToActionTransformer` function): 199 | 200 | ```js 201 | import VuePeerJS from 'vue-peerjs'; 202 | VuePeerJS.defaults // -> { actionPrefix: '...', mutationPrefix: '...', ... } 203 | ``` 204 | 205 | ## Roadmap 206 | 207 | * [ ] Set correct typings 208 | * [ ] Add global mixin 209 | 210 | ## Contribution 211 | 212 | I'd be more than happy to see potential contributions, so don't hesitate. If you have any suggestions, ideas or problems feel free to add new [issue](https://github.com/JvSomeren/vue-peerjs/issues/new), but first please make sure your question does not repeat previous ones. 213 | 214 | Also a huge shoutout to [Vue-Socket.io-Extended](https://github.com/probil/vue-socket.io-extended)! 215 | A large portion of the code is based on that package and it was a great example when building this package. 216 | 217 | ## License 218 | 219 | See the [LICENSE](LICENSE) file for license rights and limitations (MIT). 220 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | [ 4 | '@babel/preset-env', 5 | { 6 | modules: false, 7 | targets: { 8 | browsers: [ 9 | '> 1%', 10 | 'last 2 versions', 11 | 'not ie <= 8', 12 | ], 13 | }, 14 | }, 15 | ], 16 | ], 17 | comments: false, 18 | env: { 19 | test: { 20 | presets: [ 21 | '@babel/preset-env', 22 | ], 23 | }, 24 | }, 25 | plugins: [ 26 | '@babel/plugin-proposal-export-namespace-from', 27 | ], 28 | }; 29 | -------------------------------------------------------------------------------- /dist/vue-peerjs.esm.js: -------------------------------------------------------------------------------- 1 | var e=function(e){return"function"==typeof e},r=function(e){return e&&e.length<=1?e[0]:e},t=function(){for(var e=arguments.length,r=new Array(e),t=0;t=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var s=function(e){return Object.keys(e._mutations)},p=function(e){return Object.keys(e._actions)},v=function(e){return e.split("/").pop()},y=["open","connection","call","close","disconnected","error"],g=["data","open","close","error"],b=["stream","close","error"],h=function(e){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},a=o.store,i=l(o,["store"]),h=function(e){for(var r=1;r2&&void 0!==arguments[2]?arguments[2]:h.peerPrefix;if(a){var o=O(n)(e),i=d(n)(e),c=s(a),u=p(a),f=r(t);c.filter(function(e){return v(e)===o}).forEach(function(e){return a.commit(e,f)}),u.filter(function(e){return v(e)===i}).forEach(function(e){return a.dispatch(e,f)})}}var m,C=function(e){g.forEach(function(r){e.on(r,function(){for(var t=arguments.length,n=new Array(t),o=0;o1&&void 0!==arguments[1]?arguments[1]:{},n=e.peerConnect(r,t);return m(n),n},function(r){Object.defineProperty(e,"peerCall",{value:e.call,writable:!0}),e.call=function(t,n){var o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=e.peerCall(t,n,o);return r(a),a}}(j),e.on("connection",function(e){C(e)}),e.on("call",function(e){j(e)}),y.forEach(function(r){e.on(r,function(){for(var e=arguments.length,t=new Array(e),n=0;n=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var l=function(e){return Object.keys(e._mutations)},p=function(e){return Object.keys(e._actions)},y=function(e){return e.split("/").pop()},v=["open","connection","call","close","disconnected","error"],d=["data","open","close","error"],g=["stream","close","error"],b=function(e){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=o.store,a=s(o,["store"]),b=function(e){for(var r=1;r2&&void 0!==arguments[2]?arguments[2]:b.peerPrefix;if(i){var o=h(n)(e),a=O(n)(e),c=l(i),u=p(i),f=r(t);c.filter(function(e){return y(e)===o}).forEach(function(e){return i.commit(e,f)}),u.filter(function(e){return y(e)===a}).forEach(function(e){return i.dispatch(e,f)})}}var w,j=function(e){d.forEach(function(r){e.on(r,function(){for(var t=arguments.length,n=new Array(t),o=0;o1&&void 0!==arguments[1]?arguments[1]:{},n=e.peerConnect(r,t);return w(n),n},function(r){Object.defineProperty(e,"peerCall",{value:e.call,writable:!0}),e.call=function(t,n){var o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=e.peerCall(t,n,o);return r(i),i}}(C),e.on("connection",function(e){j(e)}),e.on("call",function(e){C(e)}),v.forEach(function(r){e.on(r,function(){for(var e=arguments.length,t=new Array(e),n=0;n 2 | 3 | 4 | 5 | Vue-PeerJS Example 6 | 7 | 8 |
9 |

You're browser does not support webRTC please use a modern browser.

10 | 11 |
12 | 13 | 14 | {{ ownId }} 15 |
16 | 17 |
18 |
21 | {{ connection.connectionId }} 22 | 24 |
25 |
26 |
27 | 28 | 29 | 30 | 31 | 103 | 104 | 105 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-peerjs", 3 | "version": "0.3.0", 4 | "description": "PeerJS bindings for Vue.js and Vuex", 5 | "main": "dist/vue-peerjs.min.js", 6 | "module": "dist/vue-peerjs.esm.js", 7 | "scripts": { 8 | "lint": "eslint scripts src", 9 | "release": "bash scripts/release.sh", 10 | "build": "rollup -c scripts/rollup-build.js" 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "git+https://github.com/JvSomeren/vue-peerjs" 15 | }, 16 | "files": [ 17 | "dist/", 18 | "types/index.d.ts", 19 | "types/peerjs.d.ts", 20 | "types/vue.d.ts" 21 | ], 22 | "types": "types/index.d.ts", 23 | "keywords": [ 24 | "vuejs", 25 | "vue", 26 | "peerjs", 27 | "peerjs-client", 28 | "p2p", 29 | "webrtc", 30 | "realtime", 31 | "vuex" 32 | ], 33 | "author": "Joost van Someren ", 34 | "license": "MIT", 35 | "bugs": { 36 | "url": "https://github.com/JvSomeren/vue-peerjs/issues" 37 | }, 38 | "homepage": "https://github.com/JvSomeren/vue-peerjs#readme", 39 | "dependencies": { 40 | "camelcase": "^5.3.1" 41 | }, 42 | "devDependencies": { 43 | "@babel/core": "^7.4.3", 44 | "@babel/plugin-external-helpers": "^7.2.0", 45 | "@babel/plugin-proposal-export-namespace-from": "^7.2.0", 46 | "@babel/preset-env": "^7.4.3", 47 | "@vue/test-utils": "^1.0.0-beta.29", 48 | "eslint": "^5.16.0", 49 | "eslint-config-airbnb-base": "^13.1.0", 50 | "eslint-plugin-import": "^2.17.1", 51 | "rollup": "^1.10.0", 52 | "rollup-plugin-babel": "^4.3.2", 53 | "rollup-plugin-commonjs": "^9.3.4", 54 | "rollup-plugin-filesize": "^6.0.1", 55 | "rollup-plugin-node-resolve": "^4.2.3", 56 | "rollup-plugin-terser": "^4.0.4", 57 | "vue": "^2.6.10", 58 | "vuex": "^3.1.0" 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -e 3 | 4 | if [[ -z $1 ]]; then 5 | echo "Enter new version: " 6 | read $VERSION 7 | else 8 | VERSION=$1 9 | fi 10 | 11 | read -p "Releasing $VERSION - are you sure? (y/n) " -n 1 -r 12 | echo 13 | if [[ $REPLY =~ ^[Yy]$ ]]; then 14 | echo "Releasing $VERSION ..." 15 | 16 | if [[ -z ${SKIP_TESTS} ]]; then 17 | echo 'Nothing' 18 | npm run lint 19 | # npm run flow 20 | # npm run test -- --coverage 21 | # npm run test:coverage 22 | # npm run test:e2e 23 | # npm run test:ssr 24 | fi 25 | 26 | # build 27 | VERSION=${VERSION} npm run build 28 | 29 | # commit 30 | git add -f \ 31 | dist/*.js 32 | git commit -m "build: build $VERSION" 33 | # generate release note 34 | # npm run release:note ${VERSION} 35 | # tag version 36 | npm version ${VERSION} --message "build: release $VERSION" 37 | 38 | # publish 39 | git push origin refs/tags/v${VERSION} 40 | git push 41 | npm publish 42 | fi 43 | -------------------------------------------------------------------------------- /scripts/rollup-build.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable import/no-extraneous-dependencies */ 2 | import nodeResolve from 'rollup-plugin-node-resolve'; 3 | import babel from 'rollup-plugin-babel'; 4 | import { terser } from 'rollup-plugin-terser'; 5 | import commonjs from 'rollup-plugin-commonjs'; 6 | import filesize from 'rollup-plugin-filesize'; 7 | 8 | export default [ 9 | { 10 | input: 'src/index.js', 11 | plugins: [ 12 | nodeResolve(), 13 | commonjs(), 14 | babel(), 15 | terser(), // uglifyjs alternative 16 | filesize(), 17 | ], 18 | output: { 19 | format: 'es', 20 | file: 'dist/vue-peerjs.esm.js', 21 | }, 22 | }, 23 | { 24 | input: 'src/index.js', 25 | plugins: [ 26 | nodeResolve(), 27 | commonjs(), 28 | babel(), 29 | terser(), // uglifyjs alternative 30 | filesize(), 31 | ], 32 | output: 33 | { 34 | format: 'umd', 35 | name: 'VuePeerJS', 36 | exports: 'default', 37 | file: 'dist/vue-peerjs.min.js', 38 | }, 39 | }, 40 | ]; 41 | -------------------------------------------------------------------------------- /src/Observe.js: -------------------------------------------------------------------------------- 1 | import defaults from './defaults'; 2 | import { pipe, prefixWith, unwrapIfSingle } from './utils'; 3 | import { getRegisteredActions, getRegisteredMutations, trimNamespace } from './utils/vuex'; 4 | import { DATA_CONNECTION_EVENTS, MEDIA_CONNECTION_EVENTS, PEER_EVENTS } from './constants'; 5 | 6 | export default (Peer, { store, ...otherOptions } = {}) => { 7 | const options = { ...defaults, ...otherOptions }; 8 | 9 | const augmentPeerConnect = (handlerFn) => { 10 | Object.defineProperty(Peer, 'peerConnect', { 11 | value: Peer.connect, 12 | writable: true, 13 | }); 14 | // eslint-disable-next-line no-param-reassign 15 | Peer.connect = (id, opts = {}) => { 16 | const dataConnection = Peer.peerConnect(id, opts); 17 | 18 | handlerFn(dataConnection); 19 | 20 | return dataConnection; 21 | }; 22 | }; 23 | 24 | const augmentPeerCall = (handlerFn) => { 25 | Object.defineProperty(Peer, 'peerCall', { 26 | value: Peer.call, 27 | writable: true, 28 | }); 29 | // eslint-disable-next-line no-param-reassign 30 | Peer.call = (id, stream, opts = {}) => { 31 | const mediaConnection = Peer.peerCall(id, stream, opts); 32 | 33 | handlerFn(mediaConnection); 34 | 35 | return mediaConnection; 36 | }; 37 | }; 38 | 39 | const eventToMutation = prefix => pipe( 40 | options.eventToMutationTransformer, 41 | prefixWith(prefix.mutation), 42 | ); 43 | 44 | const eventToAction = prefix => pipe( 45 | options.eventToActionTransformer, 46 | prefixWith(prefix.action), 47 | ); 48 | 49 | function passToStore(event, payload, prefix = options.peerPrefix) { 50 | if (!store) return; 51 | 52 | const desiredMutation = eventToMutation(prefix)(event); 53 | const desiredAction = eventToAction(prefix)(event); 54 | const mutations = getRegisteredMutations(store); 55 | const actions = getRegisteredActions(store); 56 | const unwrappedPayload = unwrapIfSingle(payload); 57 | 58 | mutations 59 | .filter(namespacedMutation => trimNamespace(namespacedMutation) === desiredMutation) 60 | .forEach(namespacedMutation => store.commit(namespacedMutation, unwrappedPayload)); 61 | 62 | actions 63 | .filter(namespacedAction => trimNamespace(namespacedAction) === desiredAction) 64 | .forEach(namespacedAction => store.dispatch(namespacedAction, unwrappedPayload)); 65 | } 66 | 67 | const registerDataConnectionEventHandler = (dataConnection) => { 68 | DATA_CONNECTION_EVENTS.forEach((eventName) => { 69 | dataConnection.on(eventName, (...args) => { 70 | passToStore(eventName, { dataConnection, args }, options.dataPrefix); 71 | }); 72 | }); 73 | }; 74 | 75 | const registerMediaConnectionEventHandler = (mediaConnection) => { 76 | MEDIA_CONNECTION_EVENTS.forEach((eventName) => { 77 | mediaConnection.on(eventName, (...args) => { 78 | passToStore(eventName, { mediaConnection, args }, options.mediaPrefix); 79 | }); 80 | }); 81 | }; 82 | 83 | const registerEventHandler = () => { 84 | Peer.on('connection', (dataConnection) => { 85 | registerDataConnectionEventHandler(dataConnection); 86 | }); 87 | 88 | Peer.on('call', (mediaConnection) => { 89 | registerMediaConnectionEventHandler(mediaConnection); 90 | }); 91 | 92 | PEER_EVENTS.forEach((eventName) => { 93 | Peer.on(eventName, (...args) => { 94 | passToStore(eventName, { args }, options.peerPrefix); 95 | }); 96 | }); 97 | }; 98 | 99 | augmentPeerConnect(registerDataConnectionEventHandler); 100 | augmentPeerCall(registerMediaConnectionEventHandler); 101 | registerEventHandler(); 102 | }; 103 | -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- 1 | export const PEER_EVENTS = [ 2 | 'open', 3 | 'connection', 4 | 'call', 5 | 'close', 6 | 'disconnected', 7 | 'error', 8 | ]; 9 | 10 | export const DATA_CONNECTION_EVENTS = [ 11 | 'data', 12 | 'open', 13 | 'close', 14 | 'error', 15 | ]; 16 | 17 | export const MEDIA_CONNECTION_EVENTS = [ 18 | 'stream', 19 | 'close', 20 | 'error', 21 | ]; 22 | -------------------------------------------------------------------------------- /src/defaults.js: -------------------------------------------------------------------------------- 1 | import camelcase from 'camelcase'; 2 | 3 | export default Object.freeze({ 4 | peerPrefix: { 5 | action: 'peer_', 6 | mutation: 'PEER_', 7 | }, 8 | dataPrefix: { 9 | action: 'data_', 10 | mutation: 'DATA_', 11 | }, 12 | mediaPrefix: { 13 | action: 'media_', 14 | mutation: 'MEDIA_', 15 | }, 16 | eventToMutationTransformer: event => event.toUpperCase(), 17 | eventToActionTransformer: camelcase, 18 | }); 19 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import { isPeerJS } from './utils'; 2 | import defaults from './defaults'; 3 | import Observe from './Observe'; 4 | 5 | export default { 6 | install(Vue, peer, options) { 7 | if (!isPeerJS(peer)) { 8 | throw new Error('[vue-peerjs] you have to pass a `Peer` instance to the plugin'); 9 | } 10 | 11 | Observe(peer, options); 12 | // eslint-disable-next-line no-param-reassign 13 | Vue.prototype.$peer = peer; 14 | }, 15 | defaults, 16 | }; 17 | -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- 1 | export const isFunction = obj => ( 2 | typeof obj === 'function' 3 | ); 4 | 5 | export const isPeerJS = obj => ( 6 | !!obj && isFunction(obj.on) && isFunction(obj.call) 7 | ); 8 | 9 | export const unwrapIfSingle = args => ( 10 | args && args.length <= 1 11 | ? args[0] 12 | : args 13 | ); 14 | 15 | export const pipe = (...fns) => x => ( 16 | fns.reduce((v, f) => f(v), x) 17 | ); 18 | 19 | export const prefixWith = prefix => string => ( 20 | prefix + string 21 | ); 22 | -------------------------------------------------------------------------------- /src/utils/vuex.js: -------------------------------------------------------------------------------- 1 | export const getRegisteredMutations = store => ( 2 | // eslint-disable-next-line no-underscore-dangle 3 | Object.keys(store._mutations) 4 | ); 5 | 6 | export const getRegisteredActions = store => ( 7 | // eslint-disable-next-line no-underscore-dangle 8 | Object.keys(store._actions) 9 | ); 10 | 11 | export const trimNamespace = namespaced => ( 12 | namespaced.split('/').pop() 13 | ); 14 | -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- 1 | import {PluginFunction} from 'vue'; 2 | import Peer from './peerjs'; 3 | // augment typings of Vue.js 4 | import './vue'; 5 | 6 | export interface PeerToVuexOptions { 7 | actionPrefix?: string; 8 | mutationPrefix?: string; // @TODO more options? 9 | } 10 | 11 | export interface VuePeerJSOptions extends PeerToVuexOptions { 12 | peer: Peer; 13 | } 14 | 15 | declare class VuePeerJS { 16 | static install: PluginFunction; 17 | static defaults: PeerToVuexOptions; 18 | } 19 | 20 | export default VuePeerJS; 21 | -------------------------------------------------------------------------------- /types/peerjs.d.ts: -------------------------------------------------------------------------------- 1 | // Type definitions for the PeerJS class module 2 | // Original definitions by Toshiya Nakakura 3 | // at https://github.com/DefinitelyTyped/DefinitelyTyped 4 | 5 | export = Peer; 6 | 7 | declare class Peer { 8 | prototype: RTCIceServer; 9 | 10 | /** 11 | * A peer can connect to other peers and listen for connections. 12 | * @param id Other peers can connect to this peer using the provided ID. 13 | * If no ID is given, one will be generated by the brokering server. 14 | * @param options for specifying details about PeerServer 15 | */ 16 | constructor(id?: string, options?: Peer.PeerJSOption); 17 | 18 | /** 19 | * A peer can connect to other peers and listen for connections. 20 | * @param options for specifying details about PeerServer 21 | */ 22 | constructor(options: Peer.PeerJSOption); 23 | 24 | /** 25 | * 26 | * @param id The brokering ID of the remote peer (their peer.id). 27 | * @param options for specifying details about Peer Connection 28 | */ 29 | connect(id: string, options?: Peer.PeerConnectOption): Peer.DataConnection; 30 | /** 31 | * Connects to the remote peer specified by id and returns a data connection. 32 | * @param id The brokering ID of the remote peer (their peer.id). 33 | * @param stream The caller's media stream 34 | * @param options Metadata associated with the connection, passed in by whoever initiated the connection. 35 | */ 36 | call(id: string, stream: MediaStream, options?: Peer.CallOption): Peer.MediaConnection; 37 | /** 38 | * Calls the remote peer specified by id and returns a media connection. 39 | * @param event Event name 40 | * @param cb Callback Function 41 | */ 42 | on(event: string, cb: () => void): void; 43 | /** 44 | * Emitted when a connection to the PeerServer is established. 45 | * @param event Event name 46 | * @param cb id is the brokering ID of the peer 47 | */ 48 | on(event: "open", cb: (id: string) => void): void; 49 | /** 50 | * Emitted when a new data connection is established from a remote peer. 51 | * @param event Event name 52 | * @param cb Callback Function 53 | */ 54 | on( 55 | event: "connection", 56 | cb: (dataConnection: Peer.DataConnection) => void 57 | ): void; 58 | /** 59 | * Emitted when a remote peer attempts to call you. 60 | * @param event Event name 61 | * @param cb Callback Function 62 | */ 63 | on(event: "call", cb: (mediaConnection: Peer.MediaConnection) => void): void; 64 | /** 65 | * Emitted when the peer is destroyed and can no longer accept or create any new connections. 66 | * @param event Event name 67 | * @param cb Callback Function 68 | */ 69 | on(event: "close", cb: () => void): void; 70 | /** 71 | * Emitted when the peer is disconnected from the signalling server 72 | * @param event Event name 73 | * @param cb Callback Function 74 | */ 75 | on(event: "disconnected", cb: () => void): void; 76 | /** 77 | * Errors on the peer are almost always fatal and will destroy the peer. 78 | * @param event Event name 79 | * @param cb Callback Function 80 | */ 81 | on(event: "error", cb: (err: any) => void): void; 82 | /** 83 | * Remove event listeners.(EventEmitter3) 84 | * @param {String} event The event we want to remove. 85 | * @param {Function} fn The listener that we need to find. 86 | * @param {Boolean} once Only remove once listeners. 87 | */ 88 | off(event: string, fn: Function, once?: boolean): void; 89 | /** 90 | * Close the connection to the server, leaving all existing data and media connections intact. 91 | */ 92 | disconnect(): void; 93 | /** 94 | * Attempt to reconnect to the server with the peer's old ID 95 | */ 96 | reconnect(): void; 97 | /** 98 | * Close the connection to the server and terminate all existing connections. 99 | */ 100 | destroy(): void; 101 | 102 | /** 103 | * Retrieve a data/media connection for this peer. 104 | * @param peerId 105 | * @param connectionId 106 | */ 107 | getConnection(peerId: string, connectionId: string): Peer.MediaConnection | Peer.DataConnection | null; 108 | 109 | /** 110 | * Get a list of available peer IDs 111 | * @param callback 112 | */ 113 | listAllPeers(callback: (peerIds: Array) => void): void; 114 | /** 115 | * The brokering ID of this peer 116 | */ 117 | id: string; 118 | /** 119 | * A hash of all connections associated with this peer, keyed by the remote peer's ID. 120 | */ 121 | connections: any; 122 | /** 123 | * false if there is an active connection to the PeerServer. 124 | */ 125 | disconnected: boolean; 126 | /** 127 | * true if this peer and all of its connections can no longer be used. 128 | */ 129 | destroyed: boolean; 130 | } 131 | 132 | declare namespace Peer { 133 | interface PeerJSOption { 134 | key?: string; 135 | host?: string; 136 | port?: number; 137 | path?: string; 138 | secure?: boolean; 139 | config?: RTCConfiguration; 140 | debug?: number; 141 | } 142 | 143 | interface PeerConnectOption { 144 | label?: string; 145 | metadata?: any; 146 | serialization?: string; 147 | reliable?: boolean; 148 | } 149 | 150 | interface CallOption { 151 | metadata?: any; 152 | sdpTransform?: Function; 153 | } 154 | 155 | interface AnswerOption { 156 | sdpTransform?: Function; 157 | } 158 | 159 | interface DataConnection { 160 | send(data: any): void; 161 | close(): void; 162 | on(event: string, cb: () => void): void; 163 | on(event: "data", cb: (data: any) => void): void; 164 | on(event: "open", cb: () => void): void; 165 | on(event: "close", cb: () => void): void; 166 | on(event: "error", cb: (err: any) => void): void; 167 | off(event: string, fn: Function, once?: boolean): void; 168 | dataChannel: RTCDataChannel; 169 | label: string; 170 | metadata: any; 171 | open: boolean; 172 | peerConnection: RTCPeerConnection; 173 | peer: string; 174 | reliable: boolean; 175 | serialization: string; 176 | type: string; 177 | bufferSize: number; 178 | } 179 | 180 | interface MediaConnection { 181 | answer(stream?: MediaStream, options?: AnswerOption): void; 182 | close(): void; 183 | on(event: string, cb: () => void): void; 184 | on(event: "stream", cb: (stream: MediaStream) => void): void; 185 | on(event: "close", cb: () => void): void; 186 | on(event: "error", cb: (err: any) => void): void; 187 | off(event: string, fn: Function, once?: boolean): void; 188 | open: boolean; 189 | metadata: any; 190 | peerConnection: RTCPeerConnection; 191 | peer: string; 192 | type: string; 193 | } 194 | 195 | interface utilSupportsObj { 196 | audioVideo: boolean; 197 | data: boolean; 198 | binary: boolean; 199 | reliable: boolean; 200 | } 201 | 202 | interface util { 203 | browser: string; 204 | supports: utilSupportsObj; 205 | } 206 | } 207 | -------------------------------------------------------------------------------- /types/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "module": "es2015", 5 | "moduleResolution": "node", 6 | "lib": [ 7 | "es5" 8 | ], 9 | "strict": true, 10 | "noEmit": true 11 | }, 12 | "include": [ 13 | "*.d.ts" 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /types/vue.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Extends interfaces in Vue.js 3 | */ 4 | import Vue from 'vue'; 5 | import * as Peer from './peerjs'; 6 | 7 | declare module 'vue/types/options' { 8 | interface ComponentOptions { 9 | // @TODO 10 | } 11 | } 12 | 13 | declare module 'vue/types/vue' { 14 | interface Vue { 15 | $peer: Peer; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5": 6 | version "7.5.5" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" 8 | integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw== 9 | dependencies: 10 | "@babel/highlight" "^7.0.0" 11 | 12 | "@babel/core@^7.4.3": 13 | version "7.5.5" 14 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.5.5.tgz#17b2686ef0d6bc58f963dddd68ab669755582c30" 15 | integrity sha512-i4qoSr2KTtce0DmkuuQBV4AuQgGPUcPXMr9L5MyYAtk06z068lQ10a4O009fe5OB/DfNV+h+qqT7ddNV8UnRjg== 16 | dependencies: 17 | "@babel/code-frame" "^7.5.5" 18 | "@babel/generator" "^7.5.5" 19 | "@babel/helpers" "^7.5.5" 20 | "@babel/parser" "^7.5.5" 21 | "@babel/template" "^7.4.4" 22 | "@babel/traverse" "^7.5.5" 23 | "@babel/types" "^7.5.5" 24 | convert-source-map "^1.1.0" 25 | debug "^4.1.0" 26 | json5 "^2.1.0" 27 | lodash "^4.17.13" 28 | resolve "^1.3.2" 29 | semver "^5.4.1" 30 | source-map "^0.5.0" 31 | 32 | "@babel/generator@^7.5.5": 33 | version "7.5.5" 34 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.5.5.tgz#873a7f936a3c89491b43536d12245b626664e3cf" 35 | integrity sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ== 36 | dependencies: 37 | "@babel/types" "^7.5.5" 38 | jsesc "^2.5.1" 39 | lodash "^4.17.13" 40 | source-map "^0.5.0" 41 | trim-right "^1.0.1" 42 | 43 | "@babel/helper-annotate-as-pure@^7.0.0": 44 | version "7.0.0" 45 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" 46 | integrity sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q== 47 | dependencies: 48 | "@babel/types" "^7.0.0" 49 | 50 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0": 51 | version "7.1.0" 52 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f" 53 | integrity sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w== 54 | dependencies: 55 | "@babel/helper-explode-assignable-expression" "^7.1.0" 56 | "@babel/types" "^7.0.0" 57 | 58 | "@babel/helper-call-delegate@^7.4.4": 59 | version "7.4.4" 60 | resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz#87c1f8ca19ad552a736a7a27b1c1fcf8b1ff1f43" 61 | integrity sha512-l79boDFJ8S1c5hvQvG+rc+wHw6IuH7YldmRKsYtpbawsxURu/paVy57FZMomGK22/JckepaikOkY0MoAmdyOlQ== 62 | dependencies: 63 | "@babel/helper-hoist-variables" "^7.4.4" 64 | "@babel/traverse" "^7.4.4" 65 | "@babel/types" "^7.4.4" 66 | 67 | "@babel/helper-define-map@^7.5.5": 68 | version "7.5.5" 69 | resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.5.5.tgz#3dec32c2046f37e09b28c93eb0b103fd2a25d369" 70 | integrity sha512-fTfxx7i0B5NJqvUOBBGREnrqbTxRh7zinBANpZXAVDlsZxYdclDp467G1sQ8VZYMnAURY3RpBUAgOYT9GfzHBg== 71 | dependencies: 72 | "@babel/helper-function-name" "^7.1.0" 73 | "@babel/types" "^7.5.5" 74 | lodash "^4.17.13" 75 | 76 | "@babel/helper-explode-assignable-expression@^7.1.0": 77 | version "7.1.0" 78 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6" 79 | integrity sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA== 80 | dependencies: 81 | "@babel/traverse" "^7.1.0" 82 | "@babel/types" "^7.0.0" 83 | 84 | "@babel/helper-function-name@^7.1.0": 85 | version "7.1.0" 86 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" 87 | integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw== 88 | dependencies: 89 | "@babel/helper-get-function-arity" "^7.0.0" 90 | "@babel/template" "^7.1.0" 91 | "@babel/types" "^7.0.0" 92 | 93 | "@babel/helper-get-function-arity@^7.0.0": 94 | version "7.0.0" 95 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" 96 | integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ== 97 | dependencies: 98 | "@babel/types" "^7.0.0" 99 | 100 | "@babel/helper-hoist-variables@^7.4.4": 101 | version "7.4.4" 102 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz#0298b5f25c8c09c53102d52ac4a98f773eb2850a" 103 | integrity sha512-VYk2/H/BnYbZDDg39hr3t2kKyifAm1W6zHRfhx8jGjIHpQEBv9dry7oQ2f3+J703TLu69nYdxsovl0XYfcnK4w== 104 | dependencies: 105 | "@babel/types" "^7.4.4" 106 | 107 | "@babel/helper-member-expression-to-functions@^7.5.5": 108 | version "7.5.5" 109 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.5.5.tgz#1fb5b8ec4453a93c439ee9fe3aeea4a84b76b590" 110 | integrity sha512-5qZ3D1uMclSNqYcXqiHoA0meVdv+xUEex9em2fqMnrk/scphGlGgg66zjMrPJESPwrFJ6sbfFQYUSa0Mz7FabA== 111 | dependencies: 112 | "@babel/types" "^7.5.5" 113 | 114 | "@babel/helper-module-imports@^7.0.0": 115 | version "7.0.0" 116 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" 117 | integrity sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A== 118 | dependencies: 119 | "@babel/types" "^7.0.0" 120 | 121 | "@babel/helper-module-transforms@^7.1.0", "@babel/helper-module-transforms@^7.4.4": 122 | version "7.5.5" 123 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.5.5.tgz#f84ff8a09038dcbca1fd4355661a500937165b4a" 124 | integrity sha512-jBeCvETKuJqeiaCdyaheF40aXnnU1+wkSiUs/IQg3tB85up1LyL8x77ClY8qJpuRJUcXQo+ZtdNESmZl4j56Pw== 125 | dependencies: 126 | "@babel/helper-module-imports" "^7.0.0" 127 | "@babel/helper-simple-access" "^7.1.0" 128 | "@babel/helper-split-export-declaration" "^7.4.4" 129 | "@babel/template" "^7.4.4" 130 | "@babel/types" "^7.5.5" 131 | lodash "^4.17.13" 132 | 133 | "@babel/helper-optimise-call-expression@^7.0.0": 134 | version "7.0.0" 135 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" 136 | integrity sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g== 137 | dependencies: 138 | "@babel/types" "^7.0.0" 139 | 140 | "@babel/helper-plugin-utils@^7.0.0": 141 | version "7.0.0" 142 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" 143 | integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA== 144 | 145 | "@babel/helper-regex@^7.0.0", "@babel/helper-regex@^7.4.4": 146 | version "7.5.5" 147 | resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.5.5.tgz#0aa6824f7100a2e0e89c1527c23936c152cab351" 148 | integrity sha512-CkCYQLkfkiugbRDO8eZn6lRuR8kzZoGXCg3149iTk5se7g6qykSpy3+hELSwquhu+TgHn8nkLiBwHvNX8Hofcw== 149 | dependencies: 150 | lodash "^4.17.13" 151 | 152 | "@babel/helper-remap-async-to-generator@^7.1.0": 153 | version "7.1.0" 154 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f" 155 | integrity sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg== 156 | dependencies: 157 | "@babel/helper-annotate-as-pure" "^7.0.0" 158 | "@babel/helper-wrap-function" "^7.1.0" 159 | "@babel/template" "^7.1.0" 160 | "@babel/traverse" "^7.1.0" 161 | "@babel/types" "^7.0.0" 162 | 163 | "@babel/helper-replace-supers@^7.5.5": 164 | version "7.5.5" 165 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.5.5.tgz#f84ce43df031222d2bad068d2626cb5799c34bc2" 166 | integrity sha512-XvRFWrNnlsow2u7jXDuH4jDDctkxbS7gXssrP4q2nUD606ukXHRvydj346wmNg+zAgpFx4MWf4+usfC93bElJg== 167 | dependencies: 168 | "@babel/helper-member-expression-to-functions" "^7.5.5" 169 | "@babel/helper-optimise-call-expression" "^7.0.0" 170 | "@babel/traverse" "^7.5.5" 171 | "@babel/types" "^7.5.5" 172 | 173 | "@babel/helper-simple-access@^7.1.0": 174 | version "7.1.0" 175 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c" 176 | integrity sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w== 177 | dependencies: 178 | "@babel/template" "^7.1.0" 179 | "@babel/types" "^7.0.0" 180 | 181 | "@babel/helper-split-export-declaration@^7.4.4": 182 | version "7.4.4" 183 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677" 184 | integrity sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q== 185 | dependencies: 186 | "@babel/types" "^7.4.4" 187 | 188 | "@babel/helper-wrap-function@^7.1.0": 189 | version "7.2.0" 190 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa" 191 | integrity sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ== 192 | dependencies: 193 | "@babel/helper-function-name" "^7.1.0" 194 | "@babel/template" "^7.1.0" 195 | "@babel/traverse" "^7.1.0" 196 | "@babel/types" "^7.2.0" 197 | 198 | "@babel/helpers@^7.5.5": 199 | version "7.5.5" 200 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.5.5.tgz#63908d2a73942229d1e6685bc2a0e730dde3b75e" 201 | integrity sha512-nRq2BUhxZFnfEn/ciJuhklHvFOqjJUD5wpx+1bxUF2axL9C+v4DE/dmp5sT2dKnpOs4orZWzpAZqlCy8QqE/7g== 202 | dependencies: 203 | "@babel/template" "^7.4.4" 204 | "@babel/traverse" "^7.5.5" 205 | "@babel/types" "^7.5.5" 206 | 207 | "@babel/highlight@^7.0.0": 208 | version "7.5.0" 209 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa619591d02472be6e8cb32540" 210 | integrity sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ== 211 | dependencies: 212 | chalk "^2.0.0" 213 | esutils "^2.0.2" 214 | js-tokens "^4.0.0" 215 | 216 | "@babel/parser@^7.4.4", "@babel/parser@^7.5.5": 217 | version "7.5.5" 218 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.5.5.tgz#02f077ac8817d3df4a832ef59de67565e71cca4b" 219 | integrity sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g== 220 | 221 | "@babel/plugin-external-helpers@^7.2.0": 222 | version "7.2.0" 223 | resolved "https://registry.yarnpkg.com/@babel/plugin-external-helpers/-/plugin-external-helpers-7.2.0.tgz#7f4cb7dee651cd380d2034847d914288467a6be4" 224 | integrity sha512-QFmtcCShFkyAsNtdCM3lJPmRe1iB+vPZymlB4LnDIKEBj2yKQLQKtoxXxJ8ePT5fwMl4QGg303p4mB0UsSI2/g== 225 | dependencies: 226 | "@babel/helper-plugin-utils" "^7.0.0" 227 | 228 | "@babel/plugin-proposal-async-generator-functions@^7.2.0": 229 | version "7.2.0" 230 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e" 231 | integrity sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ== 232 | dependencies: 233 | "@babel/helper-plugin-utils" "^7.0.0" 234 | "@babel/helper-remap-async-to-generator" "^7.1.0" 235 | "@babel/plugin-syntax-async-generators" "^7.2.0" 236 | 237 | "@babel/plugin-proposal-dynamic-import@^7.5.0": 238 | version "7.5.0" 239 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.5.0.tgz#e532202db4838723691b10a67b8ce509e397c506" 240 | integrity sha512-x/iMjggsKTFHYC6g11PL7Qy58IK8H5zqfm9e6hu4z1iH2IRyAp9u9dL80zA6R76yFovETFLKz2VJIC2iIPBuFw== 241 | dependencies: 242 | "@babel/helper-plugin-utils" "^7.0.0" 243 | "@babel/plugin-syntax-dynamic-import" "^7.2.0" 244 | 245 | "@babel/plugin-proposal-export-namespace-from@^7.2.0": 246 | version "7.5.2" 247 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.5.2.tgz#ccd5ed05b06d700688ff1db01a9dd27155e0d2a0" 248 | integrity sha512-TKUdOL07anjZEbR1iSxb5WFh810KyObdd29XLFLGo1IDsSuGrjH3ouWSbAxHNmrVKzr9X71UYl2dQ7oGGcRp0g== 249 | dependencies: 250 | "@babel/helper-plugin-utils" "^7.0.0" 251 | "@babel/plugin-syntax-export-namespace-from" "^7.2.0" 252 | 253 | "@babel/plugin-proposal-json-strings@^7.2.0": 254 | version "7.2.0" 255 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317" 256 | integrity sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg== 257 | dependencies: 258 | "@babel/helper-plugin-utils" "^7.0.0" 259 | "@babel/plugin-syntax-json-strings" "^7.2.0" 260 | 261 | "@babel/plugin-proposal-object-rest-spread@^7.5.5": 262 | version "7.5.5" 263 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.5.5.tgz#61939744f71ba76a3ae46b5eea18a54c16d22e58" 264 | integrity sha512-F2DxJJSQ7f64FyTVl5cw/9MWn6naXGdk3Q3UhDbFEEHv+EilCPoeRD3Zh/Utx1CJz4uyKlQ4uH+bJPbEhMV7Zw== 265 | dependencies: 266 | "@babel/helper-plugin-utils" "^7.0.0" 267 | "@babel/plugin-syntax-object-rest-spread" "^7.2.0" 268 | 269 | "@babel/plugin-proposal-optional-catch-binding@^7.2.0": 270 | version "7.2.0" 271 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5" 272 | integrity sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g== 273 | dependencies: 274 | "@babel/helper-plugin-utils" "^7.0.0" 275 | "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" 276 | 277 | "@babel/plugin-proposal-unicode-property-regex@^7.4.4": 278 | version "7.4.4" 279 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz#501ffd9826c0b91da22690720722ac7cb1ca9c78" 280 | integrity sha512-j1NwnOqMG9mFUOH58JTFsA/+ZYzQLUZ/drqWUqxCYLGeu2JFZL8YrNC9hBxKmWtAuOCHPcRpgv7fhap09Fb4kA== 281 | dependencies: 282 | "@babel/helper-plugin-utils" "^7.0.0" 283 | "@babel/helper-regex" "^7.4.4" 284 | regexpu-core "^4.5.4" 285 | 286 | "@babel/plugin-syntax-async-generators@^7.2.0": 287 | version "7.2.0" 288 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f" 289 | integrity sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg== 290 | dependencies: 291 | "@babel/helper-plugin-utils" "^7.0.0" 292 | 293 | "@babel/plugin-syntax-dynamic-import@^7.2.0": 294 | version "7.2.0" 295 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz#69c159ffaf4998122161ad8ebc5e6d1f55df8612" 296 | integrity sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w== 297 | dependencies: 298 | "@babel/helper-plugin-utils" "^7.0.0" 299 | 300 | "@babel/plugin-syntax-export-namespace-from@^7.2.0": 301 | version "7.2.0" 302 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.2.0.tgz#8d257838c6b3b779db52c0224443459bd27fb039" 303 | integrity sha512-1zGA3UNch6A+A11nIzBVEaE3DDJbjfB+eLIcf0GGOh/BJr/8NxL3546MGhV/r0RhH4xADFIEso39TKCfEMlsGA== 304 | dependencies: 305 | "@babel/helper-plugin-utils" "^7.0.0" 306 | 307 | "@babel/plugin-syntax-json-strings@^7.2.0": 308 | version "7.2.0" 309 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470" 310 | integrity sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg== 311 | dependencies: 312 | "@babel/helper-plugin-utils" "^7.0.0" 313 | 314 | "@babel/plugin-syntax-object-rest-spread@^7.2.0": 315 | version "7.2.0" 316 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" 317 | integrity sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA== 318 | dependencies: 319 | "@babel/helper-plugin-utils" "^7.0.0" 320 | 321 | "@babel/plugin-syntax-optional-catch-binding@^7.2.0": 322 | version "7.2.0" 323 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c" 324 | integrity sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w== 325 | dependencies: 326 | "@babel/helper-plugin-utils" "^7.0.0" 327 | 328 | "@babel/plugin-transform-arrow-functions@^7.2.0": 329 | version "7.2.0" 330 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550" 331 | integrity sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg== 332 | dependencies: 333 | "@babel/helper-plugin-utils" "^7.0.0" 334 | 335 | "@babel/plugin-transform-async-to-generator@^7.5.0": 336 | version "7.5.0" 337 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.5.0.tgz#89a3848a0166623b5bc481164b5936ab947e887e" 338 | integrity sha512-mqvkzwIGkq0bEF1zLRRiTdjfomZJDV33AH3oQzHVGkI2VzEmXLpKKOBvEVaFZBJdN0XTyH38s9j/Kiqr68dggg== 339 | dependencies: 340 | "@babel/helper-module-imports" "^7.0.0" 341 | "@babel/helper-plugin-utils" "^7.0.0" 342 | "@babel/helper-remap-async-to-generator" "^7.1.0" 343 | 344 | "@babel/plugin-transform-block-scoped-functions@^7.2.0": 345 | version "7.2.0" 346 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190" 347 | integrity sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w== 348 | dependencies: 349 | "@babel/helper-plugin-utils" "^7.0.0" 350 | 351 | "@babel/plugin-transform-block-scoping@^7.5.5": 352 | version "7.5.5" 353 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.5.5.tgz#a35f395e5402822f10d2119f6f8e045e3639a2ce" 354 | integrity sha512-82A3CLRRdYubkG85lKwhZB0WZoHxLGsJdux/cOVaJCJpvYFl1LVzAIFyRsa7CvXqW8rBM4Zf3Bfn8PHt5DP0Sg== 355 | dependencies: 356 | "@babel/helper-plugin-utils" "^7.0.0" 357 | lodash "^4.17.13" 358 | 359 | "@babel/plugin-transform-classes@^7.5.5": 360 | version "7.5.5" 361 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.5.5.tgz#d094299d9bd680a14a2a0edae38305ad60fb4de9" 362 | integrity sha512-U2htCNK/6e9K7jGyJ++1p5XRU+LJjrwtoiVn9SzRlDT2KubcZ11OOwy3s24TjHxPgxNwonCYP7U2K51uVYCMDg== 363 | dependencies: 364 | "@babel/helper-annotate-as-pure" "^7.0.0" 365 | "@babel/helper-define-map" "^7.5.5" 366 | "@babel/helper-function-name" "^7.1.0" 367 | "@babel/helper-optimise-call-expression" "^7.0.0" 368 | "@babel/helper-plugin-utils" "^7.0.0" 369 | "@babel/helper-replace-supers" "^7.5.5" 370 | "@babel/helper-split-export-declaration" "^7.4.4" 371 | globals "^11.1.0" 372 | 373 | "@babel/plugin-transform-computed-properties@^7.2.0": 374 | version "7.2.0" 375 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da" 376 | integrity sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA== 377 | dependencies: 378 | "@babel/helper-plugin-utils" "^7.0.0" 379 | 380 | "@babel/plugin-transform-destructuring@^7.5.0": 381 | version "7.5.0" 382 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.5.0.tgz#f6c09fdfe3f94516ff074fe877db7bc9ef05855a" 383 | integrity sha512-YbYgbd3TryYYLGyC7ZR+Tq8H/+bCmwoaxHfJHupom5ECstzbRLTch6gOQbhEY9Z4hiCNHEURgq06ykFv9JZ/QQ== 384 | dependencies: 385 | "@babel/helper-plugin-utils" "^7.0.0" 386 | 387 | "@babel/plugin-transform-dotall-regex@^7.4.4": 388 | version "7.4.4" 389 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz#361a148bc951444312c69446d76ed1ea8e4450c3" 390 | integrity sha512-P05YEhRc2h53lZDjRPk/OektxCVevFzZs2Gfjd545Wde3k+yFDbXORgl2e0xpbq8mLcKJ7Idss4fAg0zORN/zg== 391 | dependencies: 392 | "@babel/helper-plugin-utils" "^7.0.0" 393 | "@babel/helper-regex" "^7.4.4" 394 | regexpu-core "^4.5.4" 395 | 396 | "@babel/plugin-transform-duplicate-keys@^7.5.0": 397 | version "7.5.0" 398 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.5.0.tgz#c5dbf5106bf84cdf691222c0974c12b1df931853" 399 | integrity sha512-igcziksHizyQPlX9gfSjHkE2wmoCH3evvD2qR5w29/Dk0SMKE/eOI7f1HhBdNhR/zxJDqrgpoDTq5YSLH/XMsQ== 400 | dependencies: 401 | "@babel/helper-plugin-utils" "^7.0.0" 402 | 403 | "@babel/plugin-transform-exponentiation-operator@^7.2.0": 404 | version "7.2.0" 405 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008" 406 | integrity sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A== 407 | dependencies: 408 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0" 409 | "@babel/helper-plugin-utils" "^7.0.0" 410 | 411 | "@babel/plugin-transform-for-of@^7.4.4": 412 | version "7.4.4" 413 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556" 414 | integrity sha512-9T/5Dlr14Z9TIEXLXkt8T1DU7F24cbhwhMNUziN3hB1AXoZcdzPcTiKGRn/6iOymDqtTKWnr/BtRKN9JwbKtdQ== 415 | dependencies: 416 | "@babel/helper-plugin-utils" "^7.0.0" 417 | 418 | "@babel/plugin-transform-function-name@^7.4.4": 419 | version "7.4.4" 420 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz#e1436116abb0610c2259094848754ac5230922ad" 421 | integrity sha512-iU9pv7U+2jC9ANQkKeNF6DrPy4GBa4NWQtl6dHB4Pb3izX2JOEvDTFarlNsBj/63ZEzNNIAMs3Qw4fNCcSOXJA== 422 | dependencies: 423 | "@babel/helper-function-name" "^7.1.0" 424 | "@babel/helper-plugin-utils" "^7.0.0" 425 | 426 | "@babel/plugin-transform-literals@^7.2.0": 427 | version "7.2.0" 428 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1" 429 | integrity sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg== 430 | dependencies: 431 | "@babel/helper-plugin-utils" "^7.0.0" 432 | 433 | "@babel/plugin-transform-member-expression-literals@^7.2.0": 434 | version "7.2.0" 435 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz#fa10aa5c58a2cb6afcf2c9ffa8cb4d8b3d489a2d" 436 | integrity sha512-HiU3zKkSU6scTidmnFJ0bMX8hz5ixC93b4MHMiYebmk2lUVNGOboPsqQvx5LzooihijUoLR/v7Nc1rbBtnc7FA== 437 | dependencies: 438 | "@babel/helper-plugin-utils" "^7.0.0" 439 | 440 | "@babel/plugin-transform-modules-amd@^7.5.0": 441 | version "7.5.0" 442 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.5.0.tgz#ef00435d46da0a5961aa728a1d2ecff063e4fb91" 443 | integrity sha512-n20UsQMKnWrltocZZm24cRURxQnWIvsABPJlw/fvoy9c6AgHZzoelAIzajDHAQrDpuKFFPPcFGd7ChsYuIUMpg== 444 | dependencies: 445 | "@babel/helper-module-transforms" "^7.1.0" 446 | "@babel/helper-plugin-utils" "^7.0.0" 447 | babel-plugin-dynamic-import-node "^2.3.0" 448 | 449 | "@babel/plugin-transform-modules-commonjs@^7.5.0": 450 | version "7.5.0" 451 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.5.0.tgz#425127e6045231360858eeaa47a71d75eded7a74" 452 | integrity sha512-xmHq0B+ytyrWJvQTc5OWAC4ii6Dhr0s22STOoydokG51JjWhyYo5mRPXoi+ZmtHQhZZwuXNN+GG5jy5UZZJxIQ== 453 | dependencies: 454 | "@babel/helper-module-transforms" "^7.4.4" 455 | "@babel/helper-plugin-utils" "^7.0.0" 456 | "@babel/helper-simple-access" "^7.1.0" 457 | babel-plugin-dynamic-import-node "^2.3.0" 458 | 459 | "@babel/plugin-transform-modules-systemjs@^7.5.0": 460 | version "7.5.0" 461 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.5.0.tgz#e75266a13ef94202db2a0620977756f51d52d249" 462 | integrity sha512-Q2m56tyoQWmuNGxEtUyeEkm6qJYFqs4c+XyXH5RAuYxObRNz9Zgj/1g2GMnjYp2EUyEy7YTrxliGCXzecl/vJg== 463 | dependencies: 464 | "@babel/helper-hoist-variables" "^7.4.4" 465 | "@babel/helper-plugin-utils" "^7.0.0" 466 | babel-plugin-dynamic-import-node "^2.3.0" 467 | 468 | "@babel/plugin-transform-modules-umd@^7.2.0": 469 | version "7.2.0" 470 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae" 471 | integrity sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw== 472 | dependencies: 473 | "@babel/helper-module-transforms" "^7.1.0" 474 | "@babel/helper-plugin-utils" "^7.0.0" 475 | 476 | "@babel/plugin-transform-named-capturing-groups-regex@^7.4.5": 477 | version "7.4.5" 478 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.5.tgz#9d269fd28a370258199b4294736813a60bbdd106" 479 | integrity sha512-z7+2IsWafTBbjNsOxU/Iv5CvTJlr5w4+HGu1HovKYTtgJ362f7kBcQglkfmlspKKZ3bgrbSGvLfNx++ZJgCWsg== 480 | dependencies: 481 | regexp-tree "^0.1.6" 482 | 483 | "@babel/plugin-transform-new-target@^7.4.4": 484 | version "7.4.4" 485 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5" 486 | integrity sha512-r1z3T2DNGQwwe2vPGZMBNjioT2scgWzK9BCnDEh+46z8EEwXBq24uRzd65I7pjtugzPSj921aM15RpESgzsSuA== 487 | dependencies: 488 | "@babel/helper-plugin-utils" "^7.0.0" 489 | 490 | "@babel/plugin-transform-object-super@^7.5.5": 491 | version "7.5.5" 492 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.5.5.tgz#c70021df834073c65eb613b8679cc4a381d1a9f9" 493 | integrity sha512-un1zJQAhSosGFBduPgN/YFNvWVpRuHKU7IHBglLoLZsGmruJPOo6pbInneflUdmq7YvSVqhpPs5zdBvLnteltQ== 494 | dependencies: 495 | "@babel/helper-plugin-utils" "^7.0.0" 496 | "@babel/helper-replace-supers" "^7.5.5" 497 | 498 | "@babel/plugin-transform-parameters@^7.4.4": 499 | version "7.4.4" 500 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz#7556cf03f318bd2719fe4c922d2d808be5571e16" 501 | integrity sha512-oMh5DUO1V63nZcu/ZVLQFqiihBGo4OpxJxR1otF50GMeCLiRx5nUdtokd+u9SuVJrvvuIh9OosRFPP4pIPnwmw== 502 | dependencies: 503 | "@babel/helper-call-delegate" "^7.4.4" 504 | "@babel/helper-get-function-arity" "^7.0.0" 505 | "@babel/helper-plugin-utils" "^7.0.0" 506 | 507 | "@babel/plugin-transform-property-literals@^7.2.0": 508 | version "7.2.0" 509 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz#03e33f653f5b25c4eb572c98b9485055b389e905" 510 | integrity sha512-9q7Dbk4RhgcLp8ebduOpCbtjh7C0itoLYHXd9ueASKAG/is5PQtMR5VJGka9NKqGhYEGn5ITahd4h9QeBMylWQ== 511 | dependencies: 512 | "@babel/helper-plugin-utils" "^7.0.0" 513 | 514 | "@babel/plugin-transform-regenerator@^7.4.5": 515 | version "7.4.5" 516 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz#629dc82512c55cee01341fb27bdfcb210354680f" 517 | integrity sha512-gBKRh5qAaCWntnd09S8QC7r3auLCqq5DI6O0DlfoyDjslSBVqBibrMdsqO+Uhmx3+BlOmE/Kw1HFxmGbv0N9dA== 518 | dependencies: 519 | regenerator-transform "^0.14.0" 520 | 521 | "@babel/plugin-transform-reserved-words@^7.2.0": 522 | version "7.2.0" 523 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz#4792af87c998a49367597d07fedf02636d2e1634" 524 | integrity sha512-fz43fqW8E1tAB3DKF19/vxbpib1fuyCwSPE418ge5ZxILnBhWyhtPgz8eh1RCGGJlwvksHkyxMxh0eenFi+kFw== 525 | dependencies: 526 | "@babel/helper-plugin-utils" "^7.0.0" 527 | 528 | "@babel/plugin-transform-shorthand-properties@^7.2.0": 529 | version "7.2.0" 530 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0" 531 | integrity sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg== 532 | dependencies: 533 | "@babel/helper-plugin-utils" "^7.0.0" 534 | 535 | "@babel/plugin-transform-spread@^7.2.0": 536 | version "7.2.2" 537 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz#3103a9abe22f742b6d406ecd3cd49b774919b406" 538 | integrity sha512-KWfky/58vubwtS0hLqEnrWJjsMGaOeSBn90Ezn5Jeg9Z8KKHmELbP1yGylMlm5N6TPKeY9A2+UaSYLdxahg01w== 539 | dependencies: 540 | "@babel/helper-plugin-utils" "^7.0.0" 541 | 542 | "@babel/plugin-transform-sticky-regex@^7.2.0": 543 | version "7.2.0" 544 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1" 545 | integrity sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw== 546 | dependencies: 547 | "@babel/helper-plugin-utils" "^7.0.0" 548 | "@babel/helper-regex" "^7.0.0" 549 | 550 | "@babel/plugin-transform-template-literals@^7.4.4": 551 | version "7.4.4" 552 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz#9d28fea7bbce637fb7612a0750989d8321d4bcb0" 553 | integrity sha512-mQrEC4TWkhLN0z8ygIvEL9ZEToPhG5K7KDW3pzGqOfIGZ28Jb0POUkeWcoz8HnHvhFy6dwAT1j8OzqN8s804+g== 554 | dependencies: 555 | "@babel/helper-annotate-as-pure" "^7.0.0" 556 | "@babel/helper-plugin-utils" "^7.0.0" 557 | 558 | "@babel/plugin-transform-typeof-symbol@^7.2.0": 559 | version "7.2.0" 560 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2" 561 | integrity sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw== 562 | dependencies: 563 | "@babel/helper-plugin-utils" "^7.0.0" 564 | 565 | "@babel/plugin-transform-unicode-regex@^7.4.4": 566 | version "7.4.4" 567 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz#ab4634bb4f14d36728bf5978322b35587787970f" 568 | integrity sha512-il+/XdNw01i93+M9J9u4T7/e/Ue/vWfNZE4IRUQjplu2Mqb/AFTDimkw2tdEdSH50wuQXZAbXSql0UphQke+vA== 569 | dependencies: 570 | "@babel/helper-plugin-utils" "^7.0.0" 571 | "@babel/helper-regex" "^7.4.4" 572 | regexpu-core "^4.5.4" 573 | 574 | "@babel/preset-env@^7.4.3": 575 | version "7.5.5" 576 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.5.5.tgz#bc470b53acaa48df4b8db24a570d6da1fef53c9a" 577 | integrity sha512-GMZQka/+INwsMz1A5UEql8tG015h5j/qjptpKY2gJ7giy8ohzU710YciJB5rcKsWGWHiW3RUnHib0E5/m3Tp3A== 578 | dependencies: 579 | "@babel/helper-module-imports" "^7.0.0" 580 | "@babel/helper-plugin-utils" "^7.0.0" 581 | "@babel/plugin-proposal-async-generator-functions" "^7.2.0" 582 | "@babel/plugin-proposal-dynamic-import" "^7.5.0" 583 | "@babel/plugin-proposal-json-strings" "^7.2.0" 584 | "@babel/plugin-proposal-object-rest-spread" "^7.5.5" 585 | "@babel/plugin-proposal-optional-catch-binding" "^7.2.0" 586 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" 587 | "@babel/plugin-syntax-async-generators" "^7.2.0" 588 | "@babel/plugin-syntax-dynamic-import" "^7.2.0" 589 | "@babel/plugin-syntax-json-strings" "^7.2.0" 590 | "@babel/plugin-syntax-object-rest-spread" "^7.2.0" 591 | "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" 592 | "@babel/plugin-transform-arrow-functions" "^7.2.0" 593 | "@babel/plugin-transform-async-to-generator" "^7.5.0" 594 | "@babel/plugin-transform-block-scoped-functions" "^7.2.0" 595 | "@babel/plugin-transform-block-scoping" "^7.5.5" 596 | "@babel/plugin-transform-classes" "^7.5.5" 597 | "@babel/plugin-transform-computed-properties" "^7.2.0" 598 | "@babel/plugin-transform-destructuring" "^7.5.0" 599 | "@babel/plugin-transform-dotall-regex" "^7.4.4" 600 | "@babel/plugin-transform-duplicate-keys" "^7.5.0" 601 | "@babel/plugin-transform-exponentiation-operator" "^7.2.0" 602 | "@babel/plugin-transform-for-of" "^7.4.4" 603 | "@babel/plugin-transform-function-name" "^7.4.4" 604 | "@babel/plugin-transform-literals" "^7.2.0" 605 | "@babel/plugin-transform-member-expression-literals" "^7.2.0" 606 | "@babel/plugin-transform-modules-amd" "^7.5.0" 607 | "@babel/plugin-transform-modules-commonjs" "^7.5.0" 608 | "@babel/plugin-transform-modules-systemjs" "^7.5.0" 609 | "@babel/plugin-transform-modules-umd" "^7.2.0" 610 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.4.5" 611 | "@babel/plugin-transform-new-target" "^7.4.4" 612 | "@babel/plugin-transform-object-super" "^7.5.5" 613 | "@babel/plugin-transform-parameters" "^7.4.4" 614 | "@babel/plugin-transform-property-literals" "^7.2.0" 615 | "@babel/plugin-transform-regenerator" "^7.4.5" 616 | "@babel/plugin-transform-reserved-words" "^7.2.0" 617 | "@babel/plugin-transform-shorthand-properties" "^7.2.0" 618 | "@babel/plugin-transform-spread" "^7.2.0" 619 | "@babel/plugin-transform-sticky-regex" "^7.2.0" 620 | "@babel/plugin-transform-template-literals" "^7.4.4" 621 | "@babel/plugin-transform-typeof-symbol" "^7.2.0" 622 | "@babel/plugin-transform-unicode-regex" "^7.4.4" 623 | "@babel/types" "^7.5.5" 624 | browserslist "^4.6.0" 625 | core-js-compat "^3.1.1" 626 | invariant "^2.2.2" 627 | js-levenshtein "^1.1.3" 628 | semver "^5.5.0" 629 | 630 | "@babel/template@^7.1.0", "@babel/template@^7.4.4": 631 | version "7.4.4" 632 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237" 633 | integrity sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw== 634 | dependencies: 635 | "@babel/code-frame" "^7.0.0" 636 | "@babel/parser" "^7.4.4" 637 | "@babel/types" "^7.4.4" 638 | 639 | "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.4", "@babel/traverse@^7.5.5": 640 | version "7.5.5" 641 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.5.5.tgz#f664f8f368ed32988cd648da9f72d5ca70f165bb" 642 | integrity sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ== 643 | dependencies: 644 | "@babel/code-frame" "^7.5.5" 645 | "@babel/generator" "^7.5.5" 646 | "@babel/helper-function-name" "^7.1.0" 647 | "@babel/helper-split-export-declaration" "^7.4.4" 648 | "@babel/parser" "^7.5.5" 649 | "@babel/types" "^7.5.5" 650 | debug "^4.1.0" 651 | globals "^11.1.0" 652 | lodash "^4.17.13" 653 | 654 | "@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.4.4", "@babel/types@^7.5.5": 655 | version "7.5.5" 656 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.5.5.tgz#97b9f728e182785909aa4ab56264f090a028d18a" 657 | integrity sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw== 658 | dependencies: 659 | esutils "^2.0.2" 660 | lodash "^4.17.13" 661 | to-fast-properties "^2.0.0" 662 | 663 | "@types/estree@0.0.39": 664 | version "0.0.39" 665 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" 666 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== 667 | 668 | "@types/node@*", "@types/node@^12.6.9": 669 | version "12.6.9" 670 | resolved "https://registry.yarnpkg.com/@types/node/-/node-12.6.9.tgz#ffeee23afdc19ab16e979338e7b536fdebbbaeaf" 671 | integrity sha512-+YB9FtyxXGyD54p8rXwWaN1EWEyar5L58GlGWgtH2I9rGmLGBQcw63+0jw+ujqVavNuO47S1ByAjm9zdHMnskw== 672 | 673 | "@types/resolve@0.0.8": 674 | version "0.0.8" 675 | resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-0.0.8.tgz#f26074d238e02659e323ce1a13d041eee280e194" 676 | integrity sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ== 677 | dependencies: 678 | "@types/node" "*" 679 | 680 | "@vue/test-utils@^1.0.0-beta.29": 681 | version "1.0.0-beta.29" 682 | resolved "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-1.0.0-beta.29.tgz#c942cf25e891cf081b6a03332b4ae1ef430726f0" 683 | integrity sha512-yX4sxEIHh4M9yAbLA/ikpEnGKMNBCnoX98xE1RwxfhQVcn0MaXNSj1Qmac+ZydTj6VBSEVukchBogXBTwc+9iA== 684 | dependencies: 685 | dom-event-types "^1.0.0" 686 | lodash "^4.17.4" 687 | 688 | acorn-jsx@^5.0.0: 689 | version "5.0.1" 690 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz#32a064fd925429216a09b141102bfdd185fae40e" 691 | integrity sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg== 692 | 693 | acorn@^6.0.7, acorn@^6.2.1: 694 | version "6.4.1" 695 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" 696 | integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== 697 | 698 | ajv@^6.10.2, ajv@^6.9.1: 699 | version "6.10.2" 700 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52" 701 | integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw== 702 | dependencies: 703 | fast-deep-equal "^2.0.1" 704 | fast-json-stable-stringify "^2.0.0" 705 | json-schema-traverse "^0.4.1" 706 | uri-js "^4.2.2" 707 | 708 | ansi-align@^3.0.0: 709 | version "3.0.0" 710 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.0.tgz#b536b371cf687caaef236c18d3e21fe3797467cb" 711 | integrity sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw== 712 | dependencies: 713 | string-width "^3.0.0" 714 | 715 | ansi-escapes@^3.2.0: 716 | version "3.2.0" 717 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" 718 | integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== 719 | 720 | ansi-regex@^2.0.0: 721 | version "2.1.1" 722 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 723 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 724 | 725 | ansi-regex@^3.0.0: 726 | version "3.0.0" 727 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 728 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 729 | 730 | ansi-regex@^4.1.0: 731 | version "4.1.0" 732 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 733 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 734 | 735 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 736 | version "3.2.1" 737 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 738 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 739 | dependencies: 740 | color-convert "^1.9.0" 741 | 742 | aproba@^1.0.3: 743 | version "1.2.0" 744 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 745 | integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== 746 | 747 | are-we-there-yet@~1.1.2: 748 | version "1.1.5" 749 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 750 | integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== 751 | dependencies: 752 | delegates "^1.0.0" 753 | readable-stream "^2.0.6" 754 | 755 | argparse@^1.0.7: 756 | version "1.0.10" 757 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 758 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 759 | dependencies: 760 | sprintf-js "~1.0.2" 761 | 762 | array-includes@^3.0.3: 763 | version "3.0.3" 764 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" 765 | integrity sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0= 766 | dependencies: 767 | define-properties "^1.1.2" 768 | es-abstract "^1.7.0" 769 | 770 | astral-regex@^1.0.0: 771 | version "1.0.0" 772 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 773 | integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== 774 | 775 | babel-plugin-dynamic-import-node@^2.3.0: 776 | version "2.3.0" 777 | resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f" 778 | integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ== 779 | dependencies: 780 | object.assign "^4.1.0" 781 | 782 | balanced-match@^1.0.0: 783 | version "1.0.0" 784 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 785 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 786 | 787 | bl@^1.0.0: 788 | version "1.2.3" 789 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.3.tgz#1e8dd80142eac80d7158c9dccc047fb620e035e7" 790 | integrity sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww== 791 | dependencies: 792 | readable-stream "^2.3.5" 793 | safe-buffer "^5.1.1" 794 | 795 | boxen@^4.1.0: 796 | version "4.1.0" 797 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-4.1.0.tgz#256f6b2eb09ba22ea558e5acc0a5ff637bf8ed03" 798 | integrity sha512-Iwq1qOkmEsl0EVABa864Bbj3HCL4186DRZgFW/NrFs5y5GMM3ljsxzMLgOHdWISDRvcM8beh8q4tTNzXz+mSKg== 799 | dependencies: 800 | ansi-align "^3.0.0" 801 | camelcase "^5.3.1" 802 | chalk "^2.4.2" 803 | cli-boxes "^2.2.0" 804 | string-width "^4.1.0" 805 | term-size "^2.1.0" 806 | type-fest "^0.5.2" 807 | widest-line "^3.1.0" 808 | 809 | brace-expansion@^1.1.7: 810 | version "1.1.11" 811 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 812 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 813 | dependencies: 814 | balanced-match "^1.0.0" 815 | concat-map "0.0.1" 816 | 817 | brotli-size@0.1.0: 818 | version "0.1.0" 819 | resolved "https://registry.yarnpkg.com/brotli-size/-/brotli-size-0.1.0.tgz#a2c518096c7c1a75e9e66908a42cd9dc77d2b69f" 820 | integrity sha512-5ny7BNvpe2TSmdafF1T9dnFYp3AIrJ8qJt29K0DQJzORlK38LBim/CmlY26JtreV6SWmXza7Oa+9m61SzvxR0Q== 821 | dependencies: 822 | duplexer "^0.1.1" 823 | iltorb "^2.4.3" 824 | 825 | browserslist@^4.6.0, browserslist@^4.6.2: 826 | version "4.6.6" 827 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.6.6.tgz#6e4bf467cde520bc9dbdf3747dafa03531cec453" 828 | integrity sha512-D2Nk3W9JL9Fp/gIcWei8LrERCS+eXu9AM5cfXA8WEZ84lFks+ARnZ0q/R69m2SV3Wjma83QDDPxsNKXUwdIsyA== 829 | dependencies: 830 | caniuse-lite "^1.0.30000984" 831 | electron-to-chromium "^1.3.191" 832 | node-releases "^1.1.25" 833 | 834 | buffer-alloc-unsafe@^1.1.0: 835 | version "1.1.0" 836 | resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" 837 | integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== 838 | 839 | buffer-alloc@^1.2.0: 840 | version "1.2.0" 841 | resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" 842 | integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== 843 | dependencies: 844 | buffer-alloc-unsafe "^1.1.0" 845 | buffer-fill "^1.0.0" 846 | 847 | buffer-fill@^1.0.0: 848 | version "1.0.0" 849 | resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" 850 | integrity sha1-+PeLdniYiO858gXNY39o5wISKyw= 851 | 852 | buffer-from@^1.0.0: 853 | version "1.1.1" 854 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 855 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 856 | 857 | builtin-modules@^3.1.0: 858 | version "3.1.0" 859 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.1.0.tgz#aad97c15131eb76b65b50ef208e7584cd76a7484" 860 | integrity sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw== 861 | 862 | callsites@^3.0.0: 863 | version "3.1.0" 864 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 865 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 866 | 867 | camelcase@^5.3.1: 868 | version "5.3.1" 869 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 870 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 871 | 872 | caniuse-lite@^1.0.30000984: 873 | version "1.0.30000989" 874 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000989.tgz#b9193e293ccf7e4426c5245134b8f2a56c0ac4b9" 875 | integrity sha512-vrMcvSuMz16YY6GSVZ0dWDTJP8jqk3iFQ/Aq5iqblPwxSVVZI+zxDyTX0VPqtQsDnfdrBDcsmhgTEOh5R8Lbpw== 876 | 877 | chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.2: 878 | version "2.4.2" 879 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 880 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 881 | dependencies: 882 | ansi-styles "^3.2.1" 883 | escape-string-regexp "^1.0.5" 884 | supports-color "^5.3.0" 885 | 886 | chardet@^0.7.0: 887 | version "0.7.0" 888 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" 889 | integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== 890 | 891 | chownr@^1.0.1: 892 | version "1.1.2" 893 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.2.tgz#a18f1e0b269c8a6a5d3c86eb298beb14c3dd7bf6" 894 | integrity sha512-GkfeAQh+QNy3wquu9oIZr6SS5x7wGdSgNQvD10X3r+AZr1Oys22HW8kAmDMvNg2+Dm0TeGaEuO8gFwdBXxwO8A== 895 | 896 | cli-boxes@^2.2.0: 897 | version "2.2.0" 898 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.0.tgz#538ecae8f9c6ca508e3c3c95b453fe93cb4c168d" 899 | integrity sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w== 900 | 901 | cli-cursor@^2.1.0: 902 | version "2.1.0" 903 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 904 | integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= 905 | dependencies: 906 | restore-cursor "^2.0.0" 907 | 908 | cli-width@^2.0.0: 909 | version "2.2.0" 910 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 911 | integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= 912 | 913 | code-point-at@^1.0.0: 914 | version "1.1.0" 915 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 916 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 917 | 918 | color-convert@^1.9.0: 919 | version "1.9.3" 920 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 921 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 922 | dependencies: 923 | color-name "1.1.3" 924 | 925 | color-name@1.1.3: 926 | version "1.1.3" 927 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 928 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 929 | 930 | colors@^1.3.3: 931 | version "1.3.3" 932 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.3.3.tgz#39e005d546afe01e01f9c4ca8fa50f686a01205d" 933 | integrity sha512-mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg== 934 | 935 | commander@^2.19.0, commander@^2.20.0: 936 | version "2.20.0" 937 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" 938 | integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ== 939 | 940 | concat-map@0.0.1: 941 | version "0.0.1" 942 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 943 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 944 | 945 | confusing-browser-globals@^1.0.5: 946 | version "1.0.7" 947 | resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.7.tgz#5ae852bd541a910e7ffb2dbb864a2d21a36ad29b" 948 | integrity sha512-cgHI1azax5ATrZ8rJ+ODDML9Fvu67PimB6aNxBrc/QwSaDaM9eTfIEUHx3bBLJJ82ioSb+/5zfsMCCEJax3ByQ== 949 | 950 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 951 | version "1.1.0" 952 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 953 | integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= 954 | 955 | contains-path@^0.1.0: 956 | version "0.1.0" 957 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 958 | integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= 959 | 960 | convert-source-map@^1.1.0: 961 | version "1.6.0" 962 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" 963 | integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== 964 | dependencies: 965 | safe-buffer "~5.1.1" 966 | 967 | core-js-compat@^3.1.1: 968 | version "3.1.4" 969 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.1.4.tgz#e4d0c40fbd01e65b1d457980fe4112d4358a7408" 970 | integrity sha512-Z5zbO9f1d0YrJdoaQhphVAnKPimX92D6z8lCGphH89MNRxlL1prI9ExJPqVwP0/kgkQCv8c4GJGT8X16yUncOg== 971 | dependencies: 972 | browserslist "^4.6.2" 973 | core-js-pure "3.1.4" 974 | semver "^6.1.1" 975 | 976 | core-js-pure@3.1.4: 977 | version "3.1.4" 978 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.1.4.tgz#5fa17dc77002a169a3566cc48dc774d2e13e3769" 979 | integrity sha512-uJ4Z7iPNwiu1foygbcZYJsJs1jiXrTTCvxfLDXNhI/I+NHbSIEyr548y4fcsCEyWY0XgfAG/qqaunJ1SThHenA== 980 | 981 | core-util-is@~1.0.0: 982 | version "1.0.2" 983 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 984 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 985 | 986 | cross-spawn@^6.0.5: 987 | version "6.0.5" 988 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 989 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 990 | dependencies: 991 | nice-try "^1.0.4" 992 | path-key "^2.0.1" 993 | semver "^5.5.0" 994 | shebang-command "^1.2.0" 995 | which "^1.2.9" 996 | 997 | debug@^2.6.8, debug@^2.6.9: 998 | version "2.6.9" 999 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1000 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 1001 | dependencies: 1002 | ms "2.0.0" 1003 | 1004 | debug@^4.0.1, debug@^4.1.0: 1005 | version "4.1.1" 1006 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 1007 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 1008 | dependencies: 1009 | ms "^2.1.1" 1010 | 1011 | decompress-response@^3.3.0: 1012 | version "3.3.0" 1013 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" 1014 | integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= 1015 | dependencies: 1016 | mimic-response "^1.0.0" 1017 | 1018 | deep-assign@^3.0.0: 1019 | version "3.0.0" 1020 | resolved "https://registry.yarnpkg.com/deep-assign/-/deep-assign-3.0.0.tgz#c8e4c4d401cba25550a2f0f486a2e75bc5f219a2" 1021 | integrity sha512-YX2i9XjJ7h5q/aQ/IM9PEwEnDqETAIYbggmdDB3HLTlSgo1CxPsj6pvhPG68rq6SVE0+p+6Ywsm5fTYNrYtBWw== 1022 | dependencies: 1023 | is-obj "^1.0.0" 1024 | 1025 | deep-extend@^0.6.0: 1026 | version "0.6.0" 1027 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 1028 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 1029 | 1030 | deep-is@~0.1.3: 1031 | version "0.1.3" 1032 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1033 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 1034 | 1035 | define-properties@^1.1.2, define-properties@^1.1.3: 1036 | version "1.1.3" 1037 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 1038 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 1039 | dependencies: 1040 | object-keys "^1.0.12" 1041 | 1042 | delegates@^1.0.0: 1043 | version "1.0.0" 1044 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1045 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 1046 | 1047 | detect-libc@^1.0.3: 1048 | version "1.0.3" 1049 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1050 | integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= 1051 | 1052 | doctrine@1.5.0: 1053 | version "1.5.0" 1054 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1055 | integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo= 1056 | dependencies: 1057 | esutils "^2.0.2" 1058 | isarray "^1.0.0" 1059 | 1060 | doctrine@^3.0.0: 1061 | version "3.0.0" 1062 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 1063 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 1064 | dependencies: 1065 | esutils "^2.0.2" 1066 | 1067 | dom-event-types@^1.0.0: 1068 | version "1.0.0" 1069 | resolved "https://registry.yarnpkg.com/dom-event-types/-/dom-event-types-1.0.0.tgz#5830a0a29e1bf837fe50a70cd80a597232813cae" 1070 | integrity sha512-2G2Vwi2zXTHBGqXHsJ4+ak/iP0N8Ar+G8a7LiD2oup5o4sQWytwqqrZu/O6hIMV0KMID2PL69OhpshLO0n7UJQ== 1071 | 1072 | duplexer@^0.1.1: 1073 | version "0.1.1" 1074 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 1075 | integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= 1076 | 1077 | electron-to-chromium@^1.3.191: 1078 | version "1.3.216" 1079 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.216.tgz#7eda27727ba5412c96729df8fceb35bf503eb65a" 1080 | integrity sha512-G2rJKCdDLTaAP56WKMj0mcr7jtr3LBBL2EaF73DamfFpvcl0PzKUIaUocPP8NLu9s/RbbHLMGkbFOkDRK5PQIQ== 1081 | 1082 | emoji-regex@^7.0.1: 1083 | version "7.0.3" 1084 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 1085 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 1086 | 1087 | emoji-regex@^8.0.0: 1088 | version "8.0.0" 1089 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 1090 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1091 | 1092 | end-of-stream@^1.0.0, end-of-stream@^1.1.0: 1093 | version "1.4.1" 1094 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 1095 | integrity sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q== 1096 | dependencies: 1097 | once "^1.4.0" 1098 | 1099 | error-ex@^1.2.0: 1100 | version "1.3.2" 1101 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1102 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1103 | dependencies: 1104 | is-arrayish "^0.2.1" 1105 | 1106 | es-abstract@^1.12.0, es-abstract@^1.7.0: 1107 | version "1.13.0" 1108 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" 1109 | integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg== 1110 | dependencies: 1111 | es-to-primitive "^1.2.0" 1112 | function-bind "^1.1.1" 1113 | has "^1.0.3" 1114 | is-callable "^1.1.4" 1115 | is-regex "^1.0.4" 1116 | object-keys "^1.0.12" 1117 | 1118 | es-to-primitive@^1.2.0: 1119 | version "1.2.0" 1120 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" 1121 | integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== 1122 | dependencies: 1123 | is-callable "^1.1.4" 1124 | is-date-object "^1.0.1" 1125 | is-symbol "^1.0.2" 1126 | 1127 | escape-string-regexp@^1.0.5: 1128 | version "1.0.5" 1129 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1130 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1131 | 1132 | eslint-config-airbnb-base@^13.1.0: 1133 | version "13.2.0" 1134 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-13.2.0.tgz#f6ea81459ff4dec2dda200c35f1d8f7419d57943" 1135 | integrity sha512-1mg/7eoB4AUeB0X1c/ho4vb2gYkNH8Trr/EgCT/aGmKhhG+F6vF5s8+iRBlWAzFIAphxIdp3YfEKgEl0f9Xg+w== 1136 | dependencies: 1137 | confusing-browser-globals "^1.0.5" 1138 | object.assign "^4.1.0" 1139 | object.entries "^1.1.0" 1140 | 1141 | eslint-import-resolver-node@^0.3.2: 1142 | version "0.3.2" 1143 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" 1144 | integrity sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q== 1145 | dependencies: 1146 | debug "^2.6.9" 1147 | resolve "^1.5.0" 1148 | 1149 | eslint-module-utils@^2.4.0: 1150 | version "2.4.1" 1151 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.4.1.tgz#7b4675875bf96b0dbf1b21977456e5bb1f5e018c" 1152 | integrity sha512-H6DOj+ejw7Tesdgbfs4jeS4YMFrT8uI8xwd1gtQqXssaR0EQ26L+2O/w6wkYFy2MymON0fTwHmXBvvfLNZVZEw== 1153 | dependencies: 1154 | debug "^2.6.8" 1155 | pkg-dir "^2.0.0" 1156 | 1157 | eslint-plugin-import@^2.17.1: 1158 | version "2.18.2" 1159 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.18.2.tgz#02f1180b90b077b33d447a17a2326ceb400aceb6" 1160 | integrity sha512-5ohpsHAiUBRNaBWAF08izwUGlbrJoJJ+W9/TBwsGoR1MnlgfwMIKrFeSjWbt6moabiXW9xNvtFz+97KHRfI4HQ== 1161 | dependencies: 1162 | array-includes "^3.0.3" 1163 | contains-path "^0.1.0" 1164 | debug "^2.6.9" 1165 | doctrine "1.5.0" 1166 | eslint-import-resolver-node "^0.3.2" 1167 | eslint-module-utils "^2.4.0" 1168 | has "^1.0.3" 1169 | minimatch "^3.0.4" 1170 | object.values "^1.1.0" 1171 | read-pkg-up "^2.0.0" 1172 | resolve "^1.11.0" 1173 | 1174 | eslint-scope@^4.0.3: 1175 | version "4.0.3" 1176 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" 1177 | integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== 1178 | dependencies: 1179 | esrecurse "^4.1.0" 1180 | estraverse "^4.1.1" 1181 | 1182 | eslint-utils@^1.3.1: 1183 | version "1.4.3" 1184 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f" 1185 | integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q== 1186 | dependencies: 1187 | eslint-visitor-keys "^1.1.0" 1188 | 1189 | eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0: 1190 | version "1.1.0" 1191 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" 1192 | integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A== 1193 | 1194 | eslint@^5.16.0: 1195 | version "5.16.0" 1196 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.16.0.tgz#a1e3ac1aae4a3fbd8296fcf8f7ab7314cbb6abea" 1197 | integrity sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg== 1198 | dependencies: 1199 | "@babel/code-frame" "^7.0.0" 1200 | ajv "^6.9.1" 1201 | chalk "^2.1.0" 1202 | cross-spawn "^6.0.5" 1203 | debug "^4.0.1" 1204 | doctrine "^3.0.0" 1205 | eslint-scope "^4.0.3" 1206 | eslint-utils "^1.3.1" 1207 | eslint-visitor-keys "^1.0.0" 1208 | espree "^5.0.1" 1209 | esquery "^1.0.1" 1210 | esutils "^2.0.2" 1211 | file-entry-cache "^5.0.1" 1212 | functional-red-black-tree "^1.0.1" 1213 | glob "^7.1.2" 1214 | globals "^11.7.0" 1215 | ignore "^4.0.6" 1216 | import-fresh "^3.0.0" 1217 | imurmurhash "^0.1.4" 1218 | inquirer "^6.2.2" 1219 | js-yaml "^3.13.0" 1220 | json-stable-stringify-without-jsonify "^1.0.1" 1221 | levn "^0.3.0" 1222 | lodash "^4.17.11" 1223 | minimatch "^3.0.4" 1224 | mkdirp "^0.5.1" 1225 | natural-compare "^1.4.0" 1226 | optionator "^0.8.2" 1227 | path-is-inside "^1.0.2" 1228 | progress "^2.0.0" 1229 | regexpp "^2.0.1" 1230 | semver "^5.5.1" 1231 | strip-ansi "^4.0.0" 1232 | strip-json-comments "^2.0.1" 1233 | table "^5.2.3" 1234 | text-table "^0.2.0" 1235 | 1236 | espree@^5.0.1: 1237 | version "5.0.1" 1238 | resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.1.tgz#5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a" 1239 | integrity sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A== 1240 | dependencies: 1241 | acorn "^6.0.7" 1242 | acorn-jsx "^5.0.0" 1243 | eslint-visitor-keys "^1.0.0" 1244 | 1245 | esprima@^4.0.0: 1246 | version "4.0.1" 1247 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1248 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1249 | 1250 | esquery@^1.0.1: 1251 | version "1.0.1" 1252 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" 1253 | integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== 1254 | dependencies: 1255 | estraverse "^4.0.0" 1256 | 1257 | esrecurse@^4.1.0: 1258 | version "4.2.1" 1259 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 1260 | integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== 1261 | dependencies: 1262 | estraverse "^4.1.0" 1263 | 1264 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 1265 | version "4.2.0" 1266 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1267 | integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= 1268 | 1269 | estree-walker@^0.6.0, estree-walker@^0.6.1: 1270 | version "0.6.1" 1271 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" 1272 | integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== 1273 | 1274 | esutils@^2.0.2: 1275 | version "2.0.3" 1276 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1277 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1278 | 1279 | expand-template@^2.0.3: 1280 | version "2.0.3" 1281 | resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" 1282 | integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== 1283 | 1284 | external-editor@^3.0.3: 1285 | version "3.1.0" 1286 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" 1287 | integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== 1288 | dependencies: 1289 | chardet "^0.7.0" 1290 | iconv-lite "^0.4.24" 1291 | tmp "^0.0.33" 1292 | 1293 | fast-deep-equal@^2.0.1: 1294 | version "2.0.1" 1295 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 1296 | integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= 1297 | 1298 | fast-json-stable-stringify@^2.0.0: 1299 | version "2.0.0" 1300 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1301 | integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= 1302 | 1303 | fast-levenshtein@~2.0.4: 1304 | version "2.0.6" 1305 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1306 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1307 | 1308 | figures@^2.0.0: 1309 | version "2.0.0" 1310 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1311 | integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= 1312 | dependencies: 1313 | escape-string-regexp "^1.0.5" 1314 | 1315 | file-entry-cache@^5.0.1: 1316 | version "5.0.1" 1317 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" 1318 | integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== 1319 | dependencies: 1320 | flat-cache "^2.0.1" 1321 | 1322 | filesize@^4.1.2: 1323 | version "4.1.2" 1324 | resolved "https://registry.yarnpkg.com/filesize/-/filesize-4.1.2.tgz#fcd570af1353cea97897be64f56183adb995994b" 1325 | integrity sha512-iSWteWtfNcrWQTkQw8ble2bnonSl7YJImsn9OZKpE2E4IHhXI78eASpDYUljXZZdYj36QsEKjOs/CsiDqmKMJw== 1326 | 1327 | find-up@^2.0.0, find-up@^2.1.0: 1328 | version "2.1.0" 1329 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1330 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= 1331 | dependencies: 1332 | locate-path "^2.0.0" 1333 | 1334 | flat-cache@^2.0.1: 1335 | version "2.0.1" 1336 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" 1337 | integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== 1338 | dependencies: 1339 | flatted "^2.0.0" 1340 | rimraf "2.6.3" 1341 | write "1.0.3" 1342 | 1343 | flatted@^2.0.0: 1344 | version "2.0.1" 1345 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.1.tgz#69e57caa8f0eacbc281d2e2cb458d46fdb449e08" 1346 | integrity sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg== 1347 | 1348 | fs-constants@^1.0.0: 1349 | version "1.0.0" 1350 | resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" 1351 | integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== 1352 | 1353 | fs.realpath@^1.0.0: 1354 | version "1.0.0" 1355 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1356 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1357 | 1358 | function-bind@^1.1.1: 1359 | version "1.1.1" 1360 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1361 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1362 | 1363 | functional-red-black-tree@^1.0.1: 1364 | version "1.0.1" 1365 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1366 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 1367 | 1368 | gauge@~2.7.3: 1369 | version "2.7.4" 1370 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1371 | integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= 1372 | dependencies: 1373 | aproba "^1.0.3" 1374 | console-control-strings "^1.0.0" 1375 | has-unicode "^2.0.0" 1376 | object-assign "^4.1.0" 1377 | signal-exit "^3.0.0" 1378 | string-width "^1.0.1" 1379 | strip-ansi "^3.0.1" 1380 | wide-align "^1.1.0" 1381 | 1382 | github-from-package@0.0.0: 1383 | version "0.0.0" 1384 | resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" 1385 | integrity sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4= 1386 | 1387 | glob@^7.1.2, glob@^7.1.3: 1388 | version "7.1.4" 1389 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" 1390 | integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== 1391 | dependencies: 1392 | fs.realpath "^1.0.0" 1393 | inflight "^1.0.4" 1394 | inherits "2" 1395 | minimatch "^3.0.4" 1396 | once "^1.3.0" 1397 | path-is-absolute "^1.0.0" 1398 | 1399 | globals@^11.1.0, globals@^11.7.0: 1400 | version "11.12.0" 1401 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1402 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1403 | 1404 | graceful-fs@^4.1.2: 1405 | version "4.2.1" 1406 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.1.tgz#1c1f0c364882c868f5bff6512146328336a11b1d" 1407 | integrity sha512-b9usnbDGnD928gJB3LrCmxoibr3VE4U2SMo5PBuBnokWyDADTqDPXg4YpwKF1trpH+UbGp7QLicO3+aWEy0+mw== 1408 | 1409 | gzip-size@^5.1.1: 1410 | version "5.1.1" 1411 | resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274" 1412 | integrity sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA== 1413 | dependencies: 1414 | duplexer "^0.1.1" 1415 | pify "^4.0.1" 1416 | 1417 | has-flag@^3.0.0: 1418 | version "3.0.0" 1419 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1420 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1421 | 1422 | has-symbols@^1.0.0: 1423 | version "1.0.0" 1424 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 1425 | integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= 1426 | 1427 | has-unicode@^2.0.0: 1428 | version "2.0.1" 1429 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1430 | integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= 1431 | 1432 | has@^1.0.1, has@^1.0.3: 1433 | version "1.0.3" 1434 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1435 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1436 | dependencies: 1437 | function-bind "^1.1.1" 1438 | 1439 | hosted-git-info@^2.1.4: 1440 | version "2.8.2" 1441 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.2.tgz#a35c3f355ac1249f1093c0c2a542ace8818c171a" 1442 | integrity sha512-CyjlXII6LMsPMyUzxpTt8fzh5QwzGqPmQXgY/Jyf4Zfp27t/FvfhwoE/8laaMUcMy816CkWF20I7NeQhwwY88w== 1443 | dependencies: 1444 | lru-cache "^5.1.1" 1445 | 1446 | iconv-lite@^0.4.24: 1447 | version "0.4.24" 1448 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1449 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1450 | dependencies: 1451 | safer-buffer ">= 2.1.2 < 3" 1452 | 1453 | ignore@^4.0.6: 1454 | version "4.0.6" 1455 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 1456 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 1457 | 1458 | iltorb@^2.4.3: 1459 | version "2.4.3" 1460 | resolved "https://registry.yarnpkg.com/iltorb/-/iltorb-2.4.3.tgz#b489689d24c8a25a2cf170c515f97954edd45577" 1461 | integrity sha512-cr/kC07Cf9sW3TWH7yUxV2QkNjby4LMCsXGmxPCQs5x//QzTpF3GLPNY7L66G+DkNGaTRCgY+vYZ+dyAcuDOnQ== 1462 | dependencies: 1463 | detect-libc "^1.0.3" 1464 | nan "^2.13.2" 1465 | npmlog "^4.1.2" 1466 | prebuild-install "^5.3.0" 1467 | which-pm-runs "^1.0.0" 1468 | 1469 | import-fresh@^3.0.0: 1470 | version "3.1.0" 1471 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.1.0.tgz#6d33fa1dcef6df930fae003446f33415af905118" 1472 | integrity sha512-PpuksHKGt8rXfWEr9m9EHIpgyyaltBy8+eF6GJM0QCAxMgxCfucMF3mjecK2QsJr0amJW7gTqh5/wht0z2UhEQ== 1473 | dependencies: 1474 | parent-module "^1.0.0" 1475 | resolve-from "^4.0.0" 1476 | 1477 | imurmurhash@^0.1.4: 1478 | version "0.1.4" 1479 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1480 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1481 | 1482 | inflight@^1.0.4: 1483 | version "1.0.6" 1484 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1485 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1486 | dependencies: 1487 | once "^1.3.0" 1488 | wrappy "1" 1489 | 1490 | inherits@2, inherits@~2.0.3: 1491 | version "2.0.4" 1492 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1493 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1494 | 1495 | ini@~1.3.0: 1496 | version "1.3.7" 1497 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.7.tgz#a09363e1911972ea16d7a8851005d84cf09a9a84" 1498 | integrity sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ== 1499 | 1500 | inquirer@^6.2.2: 1501 | version "6.5.0" 1502 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.0.tgz#2303317efc9a4ea7ec2e2df6f86569b734accf42" 1503 | integrity sha512-scfHejeG/lVZSpvCXpsB4j/wQNPM5JC8kiElOI0OUTwmc1RTpXr4H32/HOlQHcZiYl2z2VElwuCVDRG8vFmbnA== 1504 | dependencies: 1505 | ansi-escapes "^3.2.0" 1506 | chalk "^2.4.2" 1507 | cli-cursor "^2.1.0" 1508 | cli-width "^2.0.0" 1509 | external-editor "^3.0.3" 1510 | figures "^2.0.0" 1511 | lodash "^4.17.12" 1512 | mute-stream "0.0.7" 1513 | run-async "^2.2.0" 1514 | rxjs "^6.4.0" 1515 | string-width "^2.1.0" 1516 | strip-ansi "^5.1.0" 1517 | through "^2.3.6" 1518 | 1519 | invariant@^2.2.2: 1520 | version "2.2.4" 1521 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1522 | integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== 1523 | dependencies: 1524 | loose-envify "^1.0.0" 1525 | 1526 | is-arrayish@^0.2.1: 1527 | version "0.2.1" 1528 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1529 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1530 | 1531 | is-callable@^1.1.4: 1532 | version "1.1.4" 1533 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" 1534 | integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== 1535 | 1536 | is-date-object@^1.0.1: 1537 | version "1.0.1" 1538 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1539 | integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= 1540 | 1541 | is-fullwidth-code-point@^1.0.0: 1542 | version "1.0.0" 1543 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1544 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 1545 | dependencies: 1546 | number-is-nan "^1.0.0" 1547 | 1548 | is-fullwidth-code-point@^2.0.0: 1549 | version "2.0.0" 1550 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1551 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 1552 | 1553 | is-fullwidth-code-point@^3.0.0: 1554 | version "3.0.0" 1555 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1556 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1557 | 1558 | is-module@^1.0.0: 1559 | version "1.0.0" 1560 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" 1561 | integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= 1562 | 1563 | is-obj@^1.0.0: 1564 | version "1.0.1" 1565 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1566 | integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= 1567 | 1568 | is-promise@^2.1.0: 1569 | version "2.1.0" 1570 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1571 | integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= 1572 | 1573 | is-regex@^1.0.4: 1574 | version "1.0.4" 1575 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1576 | integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= 1577 | dependencies: 1578 | has "^1.0.1" 1579 | 1580 | is-symbol@^1.0.2: 1581 | version "1.0.2" 1582 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" 1583 | integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== 1584 | dependencies: 1585 | has-symbols "^1.0.0" 1586 | 1587 | isarray@^1.0.0, isarray@~1.0.0: 1588 | version "1.0.0" 1589 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1590 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 1591 | 1592 | isexe@^2.0.0: 1593 | version "2.0.0" 1594 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1595 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1596 | 1597 | jest-worker@^24.0.0: 1598 | version "24.6.0" 1599 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.6.0.tgz#7f81ceae34b7cde0c9827a6980c35b7cdc0161b3" 1600 | integrity sha512-jDwgW5W9qGNvpI1tNnvajh0a5IE/PuGLFmHk6aR/BZFz8tSgGw17GsDPXAJ6p91IvYDjOw8GpFbvvZGAK+DPQQ== 1601 | dependencies: 1602 | merge-stream "^1.0.1" 1603 | supports-color "^6.1.0" 1604 | 1605 | js-levenshtein@^1.1.3: 1606 | version "1.1.6" 1607 | resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" 1608 | integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g== 1609 | 1610 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1611 | version "4.0.0" 1612 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1613 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1614 | 1615 | js-yaml@^3.13.0: 1616 | version "3.13.1" 1617 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 1618 | integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== 1619 | dependencies: 1620 | argparse "^1.0.7" 1621 | esprima "^4.0.0" 1622 | 1623 | jsesc@^2.5.1: 1624 | version "2.5.2" 1625 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1626 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1627 | 1628 | jsesc@~0.5.0: 1629 | version "0.5.0" 1630 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1631 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 1632 | 1633 | json-schema-traverse@^0.4.1: 1634 | version "0.4.1" 1635 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1636 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1637 | 1638 | json-stable-stringify-without-jsonify@^1.0.1: 1639 | version "1.0.1" 1640 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1641 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 1642 | 1643 | json5@^2.1.0: 1644 | version "2.1.0" 1645 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" 1646 | integrity sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ== 1647 | dependencies: 1648 | minimist "^1.2.0" 1649 | 1650 | levn@^0.3.0, levn@~0.3.0: 1651 | version "0.3.0" 1652 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1653 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 1654 | dependencies: 1655 | prelude-ls "~1.1.2" 1656 | type-check "~0.3.2" 1657 | 1658 | load-json-file@^2.0.0: 1659 | version "2.0.0" 1660 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1661 | integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= 1662 | dependencies: 1663 | graceful-fs "^4.1.2" 1664 | parse-json "^2.2.0" 1665 | pify "^2.0.0" 1666 | strip-bom "^3.0.0" 1667 | 1668 | locate-path@^2.0.0: 1669 | version "2.0.0" 1670 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1671 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= 1672 | dependencies: 1673 | p-locate "^2.0.0" 1674 | path-exists "^3.0.0" 1675 | 1676 | lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.4: 1677 | version "4.17.19" 1678 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" 1679 | integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== 1680 | 1681 | loose-envify@^1.0.0: 1682 | version "1.4.0" 1683 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1684 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1685 | dependencies: 1686 | js-tokens "^3.0.0 || ^4.0.0" 1687 | 1688 | lru-cache@^5.1.1: 1689 | version "5.1.1" 1690 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" 1691 | integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== 1692 | dependencies: 1693 | yallist "^3.0.2" 1694 | 1695 | magic-string@^0.25.2: 1696 | version "0.25.3" 1697 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.3.tgz#34b8d2a2c7fec9d9bdf9929a3fd81d271ef35be9" 1698 | integrity sha512-6QK0OpF/phMz0Q2AxILkX2mFhi7m+WMwTRg0LQKq/WBB0cDP4rYH3Wp4/d3OTXlrPLVJT/RFqj8tFeAR4nk8AA== 1699 | dependencies: 1700 | sourcemap-codec "^1.4.4" 1701 | 1702 | merge-stream@^1.0.1: 1703 | version "1.0.1" 1704 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 1705 | integrity sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE= 1706 | dependencies: 1707 | readable-stream "^2.0.1" 1708 | 1709 | mimic-fn@^1.0.0: 1710 | version "1.2.0" 1711 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 1712 | integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== 1713 | 1714 | mimic-response@^1.0.0: 1715 | version "1.0.1" 1716 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" 1717 | integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== 1718 | 1719 | minimatch@^3.0.4: 1720 | version "3.0.4" 1721 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1722 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1723 | dependencies: 1724 | brace-expansion "^1.1.7" 1725 | 1726 | minimist@0.0.8: 1727 | version "0.0.8" 1728 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1729 | integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= 1730 | 1731 | minimist@^1.2.0: 1732 | version "1.2.0" 1733 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1734 | integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= 1735 | 1736 | mkdirp@^0.5.1: 1737 | version "0.5.1" 1738 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1739 | integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= 1740 | dependencies: 1741 | minimist "0.0.8" 1742 | 1743 | ms@2.0.0: 1744 | version "2.0.0" 1745 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1746 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1747 | 1748 | ms@^2.1.1: 1749 | version "2.1.2" 1750 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1751 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1752 | 1753 | mute-stream@0.0.7: 1754 | version "0.0.7" 1755 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1756 | integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= 1757 | 1758 | nan@^2.13.2: 1759 | version "2.14.0" 1760 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" 1761 | integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== 1762 | 1763 | napi-build-utils@^1.0.1: 1764 | version "1.0.1" 1765 | resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.1.tgz#1381a0f92c39d66bf19852e7873432fc2123e508" 1766 | integrity sha512-boQj1WFgQH3v4clhu3mTNfP+vOBxorDlE8EKiMjUlLG3C4qAESnn9AxIOkFgTR2c9LtzNjPrjS60cT27ZKBhaA== 1767 | 1768 | natural-compare@^1.4.0: 1769 | version "1.4.0" 1770 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1771 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 1772 | 1773 | nice-try@^1.0.4: 1774 | version "1.0.5" 1775 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 1776 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 1777 | 1778 | node-abi@^2.7.0: 1779 | version "2.10.0" 1780 | resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.10.0.tgz#894bc6625ee042627ed9b5e9270d80bb63ef5045" 1781 | integrity sha512-OT0WepUvYHXdki6DU8LWhEkuo3M44i2paWBYtH9qXtPb9YiKlYEKa5WUII20XEcOv7UJPzfB0kZfPZdW46zdkw== 1782 | dependencies: 1783 | semver "^5.4.1" 1784 | 1785 | node-releases@^1.1.25: 1786 | version "1.1.26" 1787 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.26.tgz#f30563edc5c7dc20cf524cc8652ffa7be0762937" 1788 | integrity sha512-fZPsuhhUHMTlfkhDLGtfY80DSJTjOcx+qD1j5pqPkuhUHVS7xHZIg9EE4DHK8O3f0zTxXHX5VIkDG8pu98/wfQ== 1789 | dependencies: 1790 | semver "^5.3.0" 1791 | 1792 | noop-logger@^0.1.1: 1793 | version "0.1.1" 1794 | resolved "https://registry.yarnpkg.com/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2" 1795 | integrity sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI= 1796 | 1797 | normalize-package-data@^2.3.2: 1798 | version "2.5.0" 1799 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1800 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1801 | dependencies: 1802 | hosted-git-info "^2.1.4" 1803 | resolve "^1.10.0" 1804 | semver "2 || 3 || 4 || 5" 1805 | validate-npm-package-license "^3.0.1" 1806 | 1807 | npmlog@^4.0.1, npmlog@^4.1.2: 1808 | version "4.1.2" 1809 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1810 | integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== 1811 | dependencies: 1812 | are-we-there-yet "~1.1.2" 1813 | console-control-strings "~1.1.0" 1814 | gauge "~2.7.3" 1815 | set-blocking "~2.0.0" 1816 | 1817 | number-is-nan@^1.0.0: 1818 | version "1.0.1" 1819 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1820 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 1821 | 1822 | object-assign@^4.1.0: 1823 | version "4.1.1" 1824 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1825 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1826 | 1827 | object-keys@^1.0.11, object-keys@^1.0.12: 1828 | version "1.1.1" 1829 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1830 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1831 | 1832 | object.assign@^4.1.0: 1833 | version "4.1.0" 1834 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 1835 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== 1836 | dependencies: 1837 | define-properties "^1.1.2" 1838 | function-bind "^1.1.1" 1839 | has-symbols "^1.0.0" 1840 | object-keys "^1.0.11" 1841 | 1842 | object.entries@^1.1.0: 1843 | version "1.1.0" 1844 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519" 1845 | integrity sha512-l+H6EQ8qzGRxbkHOd5I/aHRhHDKoQXQ8g0BYt4uSweQU1/J6dZUOyWh9a2Vky35YCKjzmgxOzta2hH6kf9HuXA== 1846 | dependencies: 1847 | define-properties "^1.1.3" 1848 | es-abstract "^1.12.0" 1849 | function-bind "^1.1.1" 1850 | has "^1.0.3" 1851 | 1852 | object.values@^1.1.0: 1853 | version "1.1.0" 1854 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9" 1855 | integrity sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg== 1856 | dependencies: 1857 | define-properties "^1.1.3" 1858 | es-abstract "^1.12.0" 1859 | function-bind "^1.1.1" 1860 | has "^1.0.3" 1861 | 1862 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 1863 | version "1.4.0" 1864 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1865 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1866 | dependencies: 1867 | wrappy "1" 1868 | 1869 | onetime@^2.0.0: 1870 | version "2.0.1" 1871 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1872 | integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= 1873 | dependencies: 1874 | mimic-fn "^1.0.0" 1875 | 1876 | optionator@^0.8.2: 1877 | version "0.8.2" 1878 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1879 | integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= 1880 | dependencies: 1881 | deep-is "~0.1.3" 1882 | fast-levenshtein "~2.0.4" 1883 | levn "~0.3.0" 1884 | prelude-ls "~1.1.2" 1885 | type-check "~0.3.2" 1886 | wordwrap "~1.0.0" 1887 | 1888 | os-homedir@^1.0.1: 1889 | version "1.0.2" 1890 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1891 | integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= 1892 | 1893 | os-tmpdir@~1.0.2: 1894 | version "1.0.2" 1895 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1896 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 1897 | 1898 | p-limit@^1.1.0: 1899 | version "1.3.0" 1900 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1901 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 1902 | dependencies: 1903 | p-try "^1.0.0" 1904 | 1905 | p-locate@^2.0.0: 1906 | version "2.0.0" 1907 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1908 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= 1909 | dependencies: 1910 | p-limit "^1.1.0" 1911 | 1912 | p-try@^1.0.0: 1913 | version "1.0.0" 1914 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1915 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= 1916 | 1917 | parent-module@^1.0.0: 1918 | version "1.0.1" 1919 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1920 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1921 | dependencies: 1922 | callsites "^3.0.0" 1923 | 1924 | parse-json@^2.2.0: 1925 | version "2.2.0" 1926 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1927 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= 1928 | dependencies: 1929 | error-ex "^1.2.0" 1930 | 1931 | path-exists@^3.0.0: 1932 | version "3.0.0" 1933 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1934 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 1935 | 1936 | path-is-absolute@^1.0.0: 1937 | version "1.0.1" 1938 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1939 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1940 | 1941 | path-is-inside@^1.0.2: 1942 | version "1.0.2" 1943 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1944 | integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= 1945 | 1946 | path-key@^2.0.1: 1947 | version "2.0.1" 1948 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1949 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 1950 | 1951 | path-parse@^1.0.6: 1952 | version "1.0.6" 1953 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 1954 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 1955 | 1956 | path-type@^2.0.0: 1957 | version "2.0.0" 1958 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1959 | integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= 1960 | dependencies: 1961 | pify "^2.0.0" 1962 | 1963 | pify@^2.0.0: 1964 | version "2.3.0" 1965 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1966 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 1967 | 1968 | pify@^4.0.1: 1969 | version "4.0.1" 1970 | resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" 1971 | integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== 1972 | 1973 | pkg-dir@^2.0.0: 1974 | version "2.0.0" 1975 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 1976 | integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= 1977 | dependencies: 1978 | find-up "^2.1.0" 1979 | 1980 | prebuild-install@^5.3.0: 1981 | version "5.3.0" 1982 | resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-5.3.0.tgz#58b4d8344e03590990931ee088dd5401b03004c8" 1983 | integrity sha512-aaLVANlj4HgZweKttFNUVNRxDukytuIuxeK2boIMHjagNJCiVKWFsKF4tCE3ql3GbrD2tExPQ7/pwtEJcHNZeg== 1984 | dependencies: 1985 | detect-libc "^1.0.3" 1986 | expand-template "^2.0.3" 1987 | github-from-package "0.0.0" 1988 | minimist "^1.2.0" 1989 | mkdirp "^0.5.1" 1990 | napi-build-utils "^1.0.1" 1991 | node-abi "^2.7.0" 1992 | noop-logger "^0.1.1" 1993 | npmlog "^4.0.1" 1994 | os-homedir "^1.0.1" 1995 | pump "^2.0.1" 1996 | rc "^1.2.7" 1997 | simple-get "^2.7.0" 1998 | tar-fs "^1.13.0" 1999 | tunnel-agent "^0.6.0" 2000 | which-pm-runs "^1.0.0" 2001 | 2002 | prelude-ls@~1.1.2: 2003 | version "1.1.2" 2004 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2005 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 2006 | 2007 | private@^0.1.6: 2008 | version "0.1.8" 2009 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2010 | integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== 2011 | 2012 | process-nextick-args@~2.0.0: 2013 | version "2.0.1" 2014 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 2015 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 2016 | 2017 | progress@^2.0.0: 2018 | version "2.0.3" 2019 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 2020 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 2021 | 2022 | pump@^1.0.0: 2023 | version "1.0.3" 2024 | resolved "https://registry.yarnpkg.com/pump/-/pump-1.0.3.tgz#5dfe8311c33bbf6fc18261f9f34702c47c08a954" 2025 | integrity sha512-8k0JupWme55+9tCVE+FS5ULT3K6AbgqrGa58lTT49RpyfwwcGedHqaC5LlQNdEAumn/wFsu6aPwkuPMioy8kqw== 2026 | dependencies: 2027 | end-of-stream "^1.1.0" 2028 | once "^1.3.1" 2029 | 2030 | pump@^2.0.1: 2031 | version "2.0.1" 2032 | resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" 2033 | integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== 2034 | dependencies: 2035 | end-of-stream "^1.1.0" 2036 | once "^1.3.1" 2037 | 2038 | punycode@^2.1.0: 2039 | version "2.1.1" 2040 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2041 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2042 | 2043 | rc@^1.2.7: 2044 | version "1.2.8" 2045 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2046 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 2047 | dependencies: 2048 | deep-extend "^0.6.0" 2049 | ini "~1.3.0" 2050 | minimist "^1.2.0" 2051 | strip-json-comments "~2.0.1" 2052 | 2053 | read-pkg-up@^2.0.0: 2054 | version "2.0.0" 2055 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2056 | integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= 2057 | dependencies: 2058 | find-up "^2.0.0" 2059 | read-pkg "^2.0.0" 2060 | 2061 | read-pkg@^2.0.0: 2062 | version "2.0.0" 2063 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2064 | integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= 2065 | dependencies: 2066 | load-json-file "^2.0.0" 2067 | normalize-package-data "^2.3.2" 2068 | path-type "^2.0.0" 2069 | 2070 | readable-stream@^2.0.1, readable-stream@^2.0.6, readable-stream@^2.3.0, readable-stream@^2.3.5: 2071 | version "2.3.7" 2072 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 2073 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== 2074 | dependencies: 2075 | core-util-is "~1.0.0" 2076 | inherits "~2.0.3" 2077 | isarray "~1.0.0" 2078 | process-nextick-args "~2.0.0" 2079 | safe-buffer "~5.1.1" 2080 | string_decoder "~1.1.1" 2081 | util-deprecate "~1.0.1" 2082 | 2083 | regenerate-unicode-properties@^8.0.2: 2084 | version "8.1.0" 2085 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e" 2086 | integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA== 2087 | dependencies: 2088 | regenerate "^1.4.0" 2089 | 2090 | regenerate@^1.4.0: 2091 | version "1.4.0" 2092 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 2093 | integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== 2094 | 2095 | regenerator-transform@^0.14.0: 2096 | version "0.14.1" 2097 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.1.tgz#3b2fce4e1ab7732c08f665dfdb314749c7ddd2fb" 2098 | integrity sha512-flVuee02C3FKRISbxhXl9mGzdbWUVHubl1SMaknjxkFB1/iqpJhArQUvRxOOPEc/9tAiX0BaQ28FJH10E4isSQ== 2099 | dependencies: 2100 | private "^0.1.6" 2101 | 2102 | regexp-tree@^0.1.6: 2103 | version "0.1.11" 2104 | resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.11.tgz#c9c7f00fcf722e0a56c7390983a7a63dd6c272f3" 2105 | integrity sha512-7/l/DgapVVDzZobwMCCgMlqiqyLFJ0cduo/j+3BcDJIB+yJdsYCfKuI3l/04NV+H/rfNRdPIDbXNZHM9XvQatg== 2106 | 2107 | regexpp@^2.0.1: 2108 | version "2.0.1" 2109 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" 2110 | integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== 2111 | 2112 | regexpu-core@^4.5.4: 2113 | version "4.5.4" 2114 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.4.tgz#080d9d02289aa87fe1667a4f5136bc98a6aebaae" 2115 | integrity sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ== 2116 | dependencies: 2117 | regenerate "^1.4.0" 2118 | regenerate-unicode-properties "^8.0.2" 2119 | regjsgen "^0.5.0" 2120 | regjsparser "^0.6.0" 2121 | unicode-match-property-ecmascript "^1.0.4" 2122 | unicode-match-property-value-ecmascript "^1.1.0" 2123 | 2124 | regjsgen@^0.5.0: 2125 | version "0.5.0" 2126 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" 2127 | integrity sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA== 2128 | 2129 | regjsparser@^0.6.0: 2130 | version "0.6.0" 2131 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" 2132 | integrity sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ== 2133 | dependencies: 2134 | jsesc "~0.5.0" 2135 | 2136 | resolve-from@^4.0.0: 2137 | version "4.0.0" 2138 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 2139 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 2140 | 2141 | resolve@^1.10.0, resolve@^1.11.0, resolve@^1.3.2, resolve@^1.5.0: 2142 | version "1.12.0" 2143 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6" 2144 | integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w== 2145 | dependencies: 2146 | path-parse "^1.0.6" 2147 | 2148 | restore-cursor@^2.0.0: 2149 | version "2.0.0" 2150 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2151 | integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= 2152 | dependencies: 2153 | onetime "^2.0.0" 2154 | signal-exit "^3.0.2" 2155 | 2156 | rimraf@2.6.3: 2157 | version "2.6.3" 2158 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 2159 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 2160 | dependencies: 2161 | glob "^7.1.3" 2162 | 2163 | rollup-plugin-babel@^4.3.2: 2164 | version "4.3.3" 2165 | resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-4.3.3.tgz#7eb5ac16d9b5831c3fd5d97e8df77ba25c72a2aa" 2166 | integrity sha512-tKzWOCmIJD/6aKNz0H1GMM+lW1q9KyFubbWzGiOG540zxPPifnEAHTZwjo0g991Y+DyOZcLqBgqOdqazYE5fkw== 2167 | dependencies: 2168 | "@babel/helper-module-imports" "^7.0.0" 2169 | rollup-pluginutils "^2.8.1" 2170 | 2171 | rollup-plugin-commonjs@^9.3.4: 2172 | version "9.3.4" 2173 | resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-9.3.4.tgz#2b3dddbbbded83d45c36ff101cdd29e924fd23bc" 2174 | integrity sha512-DTZOvRoiVIHHLFBCL4pFxOaJt8pagxsVldEXBOn6wl3/V21wVaj17HFfyzTsQUuou3sZL3lEJZVWKPFblJfI6w== 2175 | dependencies: 2176 | estree-walker "^0.6.0" 2177 | magic-string "^0.25.2" 2178 | resolve "^1.10.0" 2179 | rollup-pluginutils "^2.6.0" 2180 | 2181 | rollup-plugin-filesize@^6.0.1: 2182 | version "6.1.1" 2183 | resolved "https://registry.yarnpkg.com/rollup-plugin-filesize/-/rollup-plugin-filesize-6.1.1.tgz#43c90120c6120fc3450ef34daadf5467c8821ad7" 2184 | integrity sha512-rvLvYXiKJVAPS2pbxzH72B72lnDMR3wM1O2seTWY/8xM6v9I6sO4f+/FrEo0TT2KsTTmCtlnueTFuiWRBKcIZw== 2185 | dependencies: 2186 | boxen "^4.1.0" 2187 | brotli-size "0.1.0" 2188 | colors "^1.3.3" 2189 | deep-assign "^3.0.0" 2190 | filesize "^4.1.2" 2191 | gzip-size "^5.1.1" 2192 | terser "^4.0.0" 2193 | 2194 | rollup-plugin-node-resolve@^4.2.3: 2195 | version "4.2.4" 2196 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-4.2.4.tgz#7d370f8d6fd3031006a0032c38262dd9be3c6250" 2197 | integrity sha512-t/64I6l7fZ9BxqD3XlX4ZeO6+5RLKyfpwE2CiPNUKa+GocPlQhf/C208ou8y3AwtNsc6bjSk/8/6y/YAyxCIvw== 2198 | dependencies: 2199 | "@types/resolve" "0.0.8" 2200 | builtin-modules "^3.1.0" 2201 | is-module "^1.0.0" 2202 | resolve "^1.10.0" 2203 | 2204 | rollup-plugin-terser@^4.0.4: 2205 | version "4.0.4" 2206 | resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-4.0.4.tgz#6f661ef284fa7c27963d242601691dc3d23f994e" 2207 | integrity sha512-wPANT5XKVJJ8RDUN0+wIr7UPd0lIXBo4UdJ59VmlPCtlFsE20AM+14pe+tk7YunCsWEiuzkDBY3QIkSCjtrPXg== 2208 | dependencies: 2209 | "@babel/code-frame" "^7.0.0" 2210 | jest-worker "^24.0.0" 2211 | serialize-javascript "^1.6.1" 2212 | terser "^3.14.1" 2213 | 2214 | rollup-pluginutils@^2.6.0, rollup-pluginutils@^2.8.1: 2215 | version "2.8.1" 2216 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.1.tgz#8fa6dd0697344938ef26c2c09d2488ce9e33ce97" 2217 | integrity sha512-J5oAoysWar6GuZo0s+3bZ6sVZAC0pfqKz68De7ZgDi5z63jOVZn1uJL/+z1jeKHNbGII8kAyHF5q8LnxSX5lQg== 2218 | dependencies: 2219 | estree-walker "^0.6.1" 2220 | 2221 | rollup@^1.10.0: 2222 | version "1.19.3" 2223 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-1.19.3.tgz#77e59426faa6d8399e7b75c129e81447cf9db317" 2224 | integrity sha512-+6VtYadkQEp6OTSa6ms1eAE/CYW+kD9rCd3fq4E2T3VaVqwTcY4vq0zBcB4nhQANnId+SwSpgCn4RFfOUAsWjQ== 2225 | dependencies: 2226 | "@types/estree" "0.0.39" 2227 | "@types/node" "^12.6.9" 2228 | acorn "^6.2.1" 2229 | 2230 | run-async@^2.2.0: 2231 | version "2.3.0" 2232 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2233 | integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= 2234 | dependencies: 2235 | is-promise "^2.1.0" 2236 | 2237 | rxjs@^6.4.0: 2238 | version "6.5.2" 2239 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.2.tgz#2e35ce815cd46d84d02a209fb4e5921e051dbec7" 2240 | integrity sha512-HUb7j3kvb7p7eCUHE3FqjoDsC1xfZQ4AHFWfTKSpZ+sAhhz5X1WX0ZuUqWbzB2QhSLp3DoLUG+hMdEDKqWo2Zg== 2241 | dependencies: 2242 | tslib "^1.9.0" 2243 | 2244 | safe-buffer@^5.0.1, safe-buffer@^5.1.1: 2245 | version "5.2.1" 2246 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 2247 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 2248 | 2249 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2250 | version "5.1.2" 2251 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2252 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2253 | 2254 | "safer-buffer@>= 2.1.2 < 3": 2255 | version "2.1.2" 2256 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2257 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2258 | 2259 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1: 2260 | version "5.7.0" 2261 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" 2262 | integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== 2263 | 2264 | semver@^6.1.1: 2265 | version "6.3.0" 2266 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2267 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2268 | 2269 | serialize-javascript@^1.6.1: 2270 | version "1.7.0" 2271 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.7.0.tgz#d6e0dfb2a3832a8c94468e6eb1db97e55a192a65" 2272 | integrity sha512-ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA== 2273 | 2274 | set-blocking@~2.0.0: 2275 | version "2.0.0" 2276 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2277 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 2278 | 2279 | shebang-command@^1.2.0: 2280 | version "1.2.0" 2281 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2282 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 2283 | dependencies: 2284 | shebang-regex "^1.0.0" 2285 | 2286 | shebang-regex@^1.0.0: 2287 | version "1.0.0" 2288 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2289 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 2290 | 2291 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2292 | version "3.0.2" 2293 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2294 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 2295 | 2296 | simple-concat@^1.0.0: 2297 | version "1.0.0" 2298 | resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.0.tgz#7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6" 2299 | integrity sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY= 2300 | 2301 | simple-get@^2.7.0: 2302 | version "2.8.1" 2303 | resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-2.8.1.tgz#0e22e91d4575d87620620bc91308d57a77f44b5d" 2304 | integrity sha512-lSSHRSw3mQNUGPAYRqo7xy9dhKmxFXIjLjp4KHpf99GEH2VH7C3AM+Qfx6du6jhfUi6Vm7XnbEVEf7Wb6N8jRw== 2305 | dependencies: 2306 | decompress-response "^3.3.0" 2307 | once "^1.3.1" 2308 | simple-concat "^1.0.0" 2309 | 2310 | slice-ansi@^2.1.0: 2311 | version "2.1.0" 2312 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" 2313 | integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== 2314 | dependencies: 2315 | ansi-styles "^3.2.0" 2316 | astral-regex "^1.0.0" 2317 | is-fullwidth-code-point "^2.0.0" 2318 | 2319 | source-map-support@~0.5.10, source-map-support@~0.5.12: 2320 | version "0.5.13" 2321 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" 2322 | integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== 2323 | dependencies: 2324 | buffer-from "^1.0.0" 2325 | source-map "^0.6.0" 2326 | 2327 | source-map@^0.5.0: 2328 | version "0.5.7" 2329 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2330 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 2331 | 2332 | source-map@^0.6.0, source-map@~0.6.1: 2333 | version "0.6.1" 2334 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2335 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2336 | 2337 | sourcemap-codec@^1.4.4: 2338 | version "1.4.6" 2339 | resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.6.tgz#e30a74f0402bad09807640d39e971090a08ce1e9" 2340 | integrity sha512-1ZooVLYFxC448piVLBbtOxFcXwnymH9oUF8nRd3CuYDVvkRBxRl6pB4Mtas5a4drtL+E8LDgFkQNcgIw6tc8Hg== 2341 | 2342 | spdx-correct@^3.0.0: 2343 | version "3.1.0" 2344 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" 2345 | integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== 2346 | dependencies: 2347 | spdx-expression-parse "^3.0.0" 2348 | spdx-license-ids "^3.0.0" 2349 | 2350 | spdx-exceptions@^2.1.0: 2351 | version "2.2.0" 2352 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" 2353 | integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== 2354 | 2355 | spdx-expression-parse@^3.0.0: 2356 | version "3.0.0" 2357 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 2358 | integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== 2359 | dependencies: 2360 | spdx-exceptions "^2.1.0" 2361 | spdx-license-ids "^3.0.0" 2362 | 2363 | spdx-license-ids@^3.0.0: 2364 | version "3.0.5" 2365 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" 2366 | integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== 2367 | 2368 | sprintf-js@~1.0.2: 2369 | version "1.0.3" 2370 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2371 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 2372 | 2373 | string-width@^1.0.1: 2374 | version "1.0.2" 2375 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2376 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 2377 | dependencies: 2378 | code-point-at "^1.0.0" 2379 | is-fullwidth-code-point "^1.0.0" 2380 | strip-ansi "^3.0.0" 2381 | 2382 | "string-width@^1.0.2 || 2", string-width@^2.1.0: 2383 | version "2.1.1" 2384 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2385 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 2386 | dependencies: 2387 | is-fullwidth-code-point "^2.0.0" 2388 | strip-ansi "^4.0.0" 2389 | 2390 | string-width@^3.0.0: 2391 | version "3.1.0" 2392 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 2393 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 2394 | dependencies: 2395 | emoji-regex "^7.0.1" 2396 | is-fullwidth-code-point "^2.0.0" 2397 | strip-ansi "^5.1.0" 2398 | 2399 | string-width@^4.0.0, string-width@^4.1.0: 2400 | version "4.1.0" 2401 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.1.0.tgz#ba846d1daa97c3c596155308063e075ed1c99aff" 2402 | integrity sha512-NrX+1dVVh+6Y9dnQ19pR0pP4FiEIlUvdTGn8pw6CKTNq5sgib2nIhmUNT5TAmhWmvKr3WcxBcP3E8nWezuipuQ== 2403 | dependencies: 2404 | emoji-regex "^8.0.0" 2405 | is-fullwidth-code-point "^3.0.0" 2406 | strip-ansi "^5.2.0" 2407 | 2408 | string_decoder@~1.1.1: 2409 | version "1.1.1" 2410 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2411 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 2412 | dependencies: 2413 | safe-buffer "~5.1.0" 2414 | 2415 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2416 | version "3.0.1" 2417 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2418 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 2419 | dependencies: 2420 | ansi-regex "^2.0.0" 2421 | 2422 | strip-ansi@^4.0.0: 2423 | version "4.0.0" 2424 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2425 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 2426 | dependencies: 2427 | ansi-regex "^3.0.0" 2428 | 2429 | strip-ansi@^5.1.0, strip-ansi@^5.2.0: 2430 | version "5.2.0" 2431 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 2432 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 2433 | dependencies: 2434 | ansi-regex "^4.1.0" 2435 | 2436 | strip-bom@^3.0.0: 2437 | version "3.0.0" 2438 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2439 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 2440 | 2441 | strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: 2442 | version "2.0.1" 2443 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2444 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 2445 | 2446 | supports-color@^5.3.0: 2447 | version "5.5.0" 2448 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2449 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2450 | dependencies: 2451 | has-flag "^3.0.0" 2452 | 2453 | supports-color@^6.1.0: 2454 | version "6.1.0" 2455 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" 2456 | integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== 2457 | dependencies: 2458 | has-flag "^3.0.0" 2459 | 2460 | table@^5.2.3: 2461 | version "5.4.5" 2462 | resolved "https://registry.yarnpkg.com/table/-/table-5.4.5.tgz#c8f4ea2d8fee08c0027fac27b0ec0a4fe01dfa42" 2463 | integrity sha512-oGa2Hl7CQjfoaogtrOHEJroOcYILTx7BZWLGsJIlzoWmB2zmguhNfPJZsWPKYek/MgCxfco54gEi31d1uN2hFA== 2464 | dependencies: 2465 | ajv "^6.10.2" 2466 | lodash "^4.17.14" 2467 | slice-ansi "^2.1.0" 2468 | string-width "^3.0.0" 2469 | 2470 | tar-fs@^1.13.0: 2471 | version "1.16.3" 2472 | resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-1.16.3.tgz#966a628841da2c4010406a82167cbd5e0c72d509" 2473 | integrity sha512-NvCeXpYx7OsmOh8zIOP/ebG55zZmxLE0etfWRbWok+q2Qo8x/vOR/IJT1taADXPe+jsiu9axDb3X4B+iIgNlKw== 2474 | dependencies: 2475 | chownr "^1.0.1" 2476 | mkdirp "^0.5.1" 2477 | pump "^1.0.0" 2478 | tar-stream "^1.1.2" 2479 | 2480 | tar-stream@^1.1.2: 2481 | version "1.6.2" 2482 | resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" 2483 | integrity sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A== 2484 | dependencies: 2485 | bl "^1.0.0" 2486 | buffer-alloc "^1.2.0" 2487 | end-of-stream "^1.0.0" 2488 | fs-constants "^1.0.0" 2489 | readable-stream "^2.3.0" 2490 | to-buffer "^1.1.1" 2491 | xtend "^4.0.0" 2492 | 2493 | term-size@^2.1.0: 2494 | version "2.1.0" 2495 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.1.0.tgz#3aec444c07a7cf936e157c1dc224b590c3c7eef2" 2496 | integrity sha512-I42EWhJ+2aeNQawGx1VtpO0DFI9YcfuvAMNIdKyf/6sRbHJ4P+ZQ/zIT87tE+ln1ymAGcCJds4dolfSAS0AcNg== 2497 | 2498 | terser@^3.14.1: 2499 | version "3.17.0" 2500 | resolved "https://registry.yarnpkg.com/terser/-/terser-3.17.0.tgz#f88ffbeda0deb5637f9d24b0da66f4e15ab10cb2" 2501 | integrity sha512-/FQzzPJmCpjAH9Xvk2paiWrFq+5M6aVOf+2KRbwhByISDX/EujxsK+BAvrhb6H+2rtrLCHK9N01wO014vrIwVQ== 2502 | dependencies: 2503 | commander "^2.19.0" 2504 | source-map "~0.6.1" 2505 | source-map-support "~0.5.10" 2506 | 2507 | terser@^4.0.0: 2508 | version "4.1.3" 2509 | resolved "https://registry.yarnpkg.com/terser/-/terser-4.1.3.tgz#6074fbcf3517561c3272ea885f422c7a8c32d689" 2510 | integrity sha512-on13d+cnpn5bMouZu+J8tPYQecsdRJCJuxFJ+FVoPBoLJgk5bCBkp+Uen2hWyi0KIUm6eDarnlAlH+KgIx/PuQ== 2511 | dependencies: 2512 | commander "^2.20.0" 2513 | source-map "~0.6.1" 2514 | source-map-support "~0.5.12" 2515 | 2516 | text-table@^0.2.0: 2517 | version "0.2.0" 2518 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2519 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 2520 | 2521 | through@^2.3.6: 2522 | version "2.3.8" 2523 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2524 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 2525 | 2526 | tmp@^0.0.33: 2527 | version "0.0.33" 2528 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 2529 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== 2530 | dependencies: 2531 | os-tmpdir "~1.0.2" 2532 | 2533 | to-buffer@^1.1.1: 2534 | version "1.1.1" 2535 | resolved "https://registry.yarnpkg.com/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80" 2536 | integrity sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg== 2537 | 2538 | to-fast-properties@^2.0.0: 2539 | version "2.0.0" 2540 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2541 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 2542 | 2543 | trim-right@^1.0.1: 2544 | version "1.0.1" 2545 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2546 | integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= 2547 | 2548 | tslib@^1.9.0: 2549 | version "1.10.0" 2550 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" 2551 | integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ== 2552 | 2553 | tunnel-agent@^0.6.0: 2554 | version "0.6.0" 2555 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2556 | integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= 2557 | dependencies: 2558 | safe-buffer "^5.0.1" 2559 | 2560 | type-check@~0.3.2: 2561 | version "0.3.2" 2562 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2563 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 2564 | dependencies: 2565 | prelude-ls "~1.1.2" 2566 | 2567 | type-fest@^0.5.2: 2568 | version "0.5.2" 2569 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.5.2.tgz#d6ef42a0356c6cd45f49485c3b6281fc148e48a2" 2570 | integrity sha512-DWkS49EQKVX//Tbupb9TFa19c7+MK1XmzkrZUR8TAktmE/DizXoaoJV6TZ/tSIPXipqNiRI6CyAe7x69Jb6RSw== 2571 | 2572 | unicode-canonical-property-names-ecmascript@^1.0.4: 2573 | version "1.0.4" 2574 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" 2575 | integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== 2576 | 2577 | unicode-match-property-ecmascript@^1.0.4: 2578 | version "1.0.4" 2579 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" 2580 | integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== 2581 | dependencies: 2582 | unicode-canonical-property-names-ecmascript "^1.0.4" 2583 | unicode-property-aliases-ecmascript "^1.0.4" 2584 | 2585 | unicode-match-property-value-ecmascript@^1.1.0: 2586 | version "1.1.0" 2587 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277" 2588 | integrity sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g== 2589 | 2590 | unicode-property-aliases-ecmascript@^1.0.4: 2591 | version "1.0.5" 2592 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57" 2593 | integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw== 2594 | 2595 | uri-js@^4.2.2: 2596 | version "4.2.2" 2597 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 2598 | integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== 2599 | dependencies: 2600 | punycode "^2.1.0" 2601 | 2602 | util-deprecate@~1.0.1: 2603 | version "1.0.2" 2604 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2605 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 2606 | 2607 | validate-npm-package-license@^3.0.1: 2608 | version "3.0.4" 2609 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 2610 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 2611 | dependencies: 2612 | spdx-correct "^3.0.0" 2613 | spdx-expression-parse "^3.0.0" 2614 | 2615 | vue@^2.6.10: 2616 | version "2.6.10" 2617 | resolved "https://registry.yarnpkg.com/vue/-/vue-2.6.10.tgz#a72b1a42a4d82a721ea438d1b6bf55e66195c637" 2618 | integrity sha512-ImThpeNU9HbdZL3utgMCq0oiMzAkt1mcgy3/E6zWC/G6AaQoeuFdsl9nDhTDU3X1R6FK7nsIUuRACVcjI+A2GQ== 2619 | 2620 | vuex@^3.1.0: 2621 | version "3.1.1" 2622 | resolved "https://registry.yarnpkg.com/vuex/-/vuex-3.1.1.tgz#0c264bfe30cdbccf96ab9db3177d211828a5910e" 2623 | integrity sha512-ER5moSbLZuNSMBFnEBVGhQ1uCBNJslH9W/Dw2W7GZN23UQA69uapP5GTT9Vm8Trc0PzBSVt6LzF3hGjmv41xcg== 2624 | 2625 | which-pm-runs@^1.0.0: 2626 | version "1.0.0" 2627 | resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" 2628 | integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs= 2629 | 2630 | which@^1.2.9: 2631 | version "1.3.1" 2632 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 2633 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 2634 | dependencies: 2635 | isexe "^2.0.0" 2636 | 2637 | wide-align@^1.1.0: 2638 | version "1.1.3" 2639 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 2640 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 2641 | dependencies: 2642 | string-width "^1.0.2 || 2" 2643 | 2644 | widest-line@^3.1.0: 2645 | version "3.1.0" 2646 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" 2647 | integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== 2648 | dependencies: 2649 | string-width "^4.0.0" 2650 | 2651 | wordwrap@~1.0.0: 2652 | version "1.0.0" 2653 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2654 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= 2655 | 2656 | wrappy@1: 2657 | version "1.0.2" 2658 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2659 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2660 | 2661 | write@1.0.3: 2662 | version "1.0.3" 2663 | resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" 2664 | integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== 2665 | dependencies: 2666 | mkdirp "^0.5.1" 2667 | 2668 | xtend@^4.0.0: 2669 | version "4.0.2" 2670 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 2671 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 2672 | 2673 | yallist@^3.0.2: 2674 | version "3.0.3" 2675 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" 2676 | integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== 2677 | --------------------------------------------------------------------------------