├── .npmignore ├── .gitignore ├── types ├── vue.d.ts ├── index.d.ts └── events.d.ts ├── package.json ├── LICENSE ├── src └── index.js ├── README.md └── yarn.lock /.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | .idea/ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | .idea/ 3 | node_modules/ -------------------------------------------------------------------------------- /types/vue.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Augment the typings of Vue.js 3 | */ 4 | 5 | import Vue from 'vue'; 6 | import VueEvents from './index'; 7 | 8 | declare module 'vue/types/vue' { 9 | interface Vue { 10 | $events: VueEvents 11 | } 12 | } -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Extends interfaces in Vue.js 3 | */ 4 | import './vue'; 5 | import * as E from './events'; 6 | 7 | declare namespace VueEvents { 8 | export type VueEvents = E.VueEvents; 9 | } 10 | 11 | declare class VueEvents extends E.VueEvents {} 12 | 13 | export default VueEvents; -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-events", 3 | "version": "3.0.1", 4 | "description": "Easy event handling for Vue applications.", 5 | "main": "dist/index.js", 6 | "typings": "types/index.d.ts", 7 | "scripts": { 8 | "compile": "babel --presets=es2015 -d dist src", 9 | "prepublish": "npm run compile" 10 | }, 11 | "repository": { 12 | "type": "git", 13 | "url": "git+https://github.com/cklmercer/vue-events.git" 14 | }, 15 | "keywords": [ 16 | "Vue", 17 | "events", 18 | "bus", 19 | "plugin" 20 | ], 21 | "author": "Cody Mercer ", 22 | "license": "MIT", 23 | "bugs": { 24 | "url": "https://github.com/cklmercer/vue-events/issues" 25 | }, 26 | "homepage": "https://github.com/cklmercer/vue-events#readme", 27 | "devDependencies": { 28 | "babel-cli": "^6.10.1", 29 | "babel-preset-es2015": "^6.9.0", 30 | "vue": "^2.5.2" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Cody Mercer 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 13 | all 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 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /types/events.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Vue-Events types. 3 | */ 4 | 5 | import Vue, { ComponentOptions, PluginFunction } from 'vue'; 6 | 7 | export declare class VueEvents { 8 | static install: PluginFunction; 9 | 10 | /** 11 | * Emit the given event. 12 | * 13 | * @param {string|object} event 14 | * @param {...any[]} args 15 | * @memberof VueEvents 16 | */ 17 | $emit(event: string, ...args: any[]): void; 18 | 19 | /** 20 | * @borrows $emit as emit 21 | */ 22 | emit(event: string, ...args: any[]): void; 23 | 24 | /** 25 | * @borrows emit as fire 26 | */ 27 | fire(event: string, ...args: any[]): void; 28 | 29 | /** 30 | * Listen for the given event. 31 | * 32 | * @param {string} event 33 | * @param {(eventData: any) => void} callback 34 | * @memberof VueEvents 35 | */ 36 | $on(event: string, callback: (eventData: any) => void): void; 37 | 38 | /** 39 | * @borrows $on as on 40 | */ 41 | on(event: string, callback: (eventData: any) => void): void; 42 | 43 | /** 44 | * @borrows on as listen 45 | */ 46 | listen(event: string, callback: (eventData: any) => void): void; 47 | 48 | /** 49 | * Listen for the given event once. 50 | * 51 | * @param {string} event 52 | * @param {(eventData: any) => void} callback 53 | * @memberof VueEvents 54 | */ 55 | $once(event: string, callback: (eventData: any) => void): void; 56 | 57 | /** 58 | * @borrows $once as once 59 | */ 60 | once(event: string, callback: (eventData: any) => void): void; 61 | 62 | /** 63 | * Remove one or more event listeners. 64 | * 65 | * @param {string} event 66 | * @param {(eventData: any) => void} [callback] 67 | * @memberof VueEvents 68 | */ 69 | $off(event:string, callback?: (eventData: any) => void): void; 70 | 71 | /** 72 | * @borrows $off as off 73 | */ 74 | off(event:string, callback?: (eventData: any) => void): void; 75 | 76 | /** 77 | * @borrows off as remove 78 | */ 79 | remove(event:string, callback?: (eventData: any) => void): void; 80 | } -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | function plugin(Vue) { 2 | 3 | // Exit if the plugin has already been installed. 4 | if (plugin.installed) return 5 | 6 | // Create a `vm` to serve as our global event bus. 7 | const events = new Vue({ 8 | methods: { 9 | /** 10 | * Emit the given event. 11 | * 12 | * @param {string|object} event 13 | * @param {...*} args 14 | */ 15 | emit(event, ...args) { 16 | this.$emit(event, ...args) 17 | }, 18 | 19 | /** 20 | * Emit the given event. 21 | * 22 | * @param {string|object} event 23 | * @param {...*} args 24 | */ 25 | fire(event, ...args) { 26 | this.emit(event, ...args) 27 | }, 28 | 29 | /** 30 | * Listen for the given event. 31 | * 32 | * @param {string} event 33 | * @param {function} callback 34 | */ 35 | on(event, callback) { 36 | this.$on(event, callback) 37 | }, 38 | 39 | /** 40 | * Listen for the given event. 41 | * 42 | * @param {string} event 43 | * @param {function} callback 44 | */ 45 | listen(event, callback) { 46 | this.on(event, callback) 47 | }, 48 | 49 | /** 50 | * Listen for the given event once. 51 | * 52 | * @param {string} event 53 | * @param {function} callback 54 | */ 55 | once(event, callback) { 56 | this.$once(event, callback) 57 | }, 58 | 59 | /** 60 | * Remove one or more event listeners. 61 | * 62 | * @param {string} event 63 | * @param {function} callback 64 | */ 65 | off(event, callback) { 66 | this.$off(event, callback) 67 | }, 68 | 69 | /** 70 | * Remove one or more event listeners. 71 | * 72 | * @param {string} event 73 | * @param {function} callback 74 | */ 75 | remove(event, callback) { 76 | this.off(event, callback) 77 | } 78 | } 79 | }) 80 | 81 | // Extend `Vue.prototype` to include our global event bus. 82 | Object.defineProperty(Vue.prototype, '$events', { 83 | get() { 84 | return events 85 | } 86 | }) 87 | 88 | // Register a mixin that adds an `events` option to Vue 2.0 components. 89 | Vue.mixin({ 90 | // Hook into the Vue 2.0 `beforeCreate` life-cycle event. 91 | beforeCreate() { 92 | // Exit if there's no `events` option. 93 | if (typeof this.$options.events !== 'object') return 94 | // Cache of events to bound functions for automatic unsubscriptions 95 | var eventMap = {} 96 | // Loop through each event. 97 | for (var key in this.$options.events) { 98 | // Assign event type and bound function to map 99 | eventMap[key] = this.$options.events[key].bind(this) 100 | } 101 | // Listen for the `hook:beforeMount` Vue 2.0 life-cycle event. 102 | this.$once('hook:beforeMount', () => { 103 | // Loop through each event. 104 | for (var key in eventMap) { 105 | // Register a listener for the event. 106 | events.$on(key, eventMap[key]) 107 | } 108 | }) 109 | // Listen for the `hook:beforeDestroy` Vue 2.0 life-cycle event. 110 | this.$once('hook:beforeDestroy', () => { 111 | // Loop through each event. 112 | for (var key in eventMap) { 113 | // Register a listener for the event. 114 | events.$off(key, eventMap[key]) 115 | } 116 | // Release cache 117 | eventMap = null 118 | }) 119 | } 120 | }) 121 | } 122 | 123 | // Check for `window.Vue` 124 | if (typeof window !== 'undefined' && window.Vue) { 125 | // Install plugin automatically. 126 | window.Vue.use(plugin) 127 | } 128 | 129 | export default plugin 130 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vue-events 2 | 3 | A [Vue.js](http://vuejs.org) plugin that simplify events. 4 | 5 | Works with both `Vue 1.0` & `Vue 2.0`. 6 | 7 | 8 | ## Installation 9 | ##### 1.) Install package via Yarn or NPM 10 | ```bash 11 | $ yarn add vue-events 12 | ``` 13 | --- 14 | ```bash 15 | $ npm install vue-events 16 | ``` 17 | ##### 2.) Install plugin within project. 18 | ```javascript 19 | import Vue from 'vue' 20 | import VueEvents from 'vue-events' 21 | Vue.use(VueEvents) 22 | ``` 23 | --- 24 | ```javascript 25 | window.Vue = require('vue') 26 | require('vue-events') 27 | ``` 28 | 29 | ## Methods 30 | Method | Params | Description | Docs 31 | ------------------- | ----------------- | -------------------------------------------------------------------------- | --------------------------------------------- 32 | `vm.$events.$emit` | `event, payload` | Emit the event with the given payload. | [vm.$emit](https://vuejs.org/v2/api/#vm-emit) 33 | `vm.$events.emit` | `event, payload` | Emit the event with the given payload. _Alias for `vm.$events.$emit`_ | [vm.$emit](https://vuejs.org/v2/api/#vm-emit) 34 | `vm.$events.fire` | `event, payload` | Emit the event with the given payload. _Alias for `vm.$events.$emit`_ | [vm.$emit](https://vuejs.org/v2/api/#vm-emit) 35 | `vm.$events.$on` | `event, callback` | Listen for the event with the given callback. | [vm.$on](https://vuejs.org/v2/api/#vm-on) 36 | `vm.$events.on` | `event, callback` | Listen for the event with the given callback. _Alias for `vm.$events.$on`_ | [vm.$on](https://vuejs.org/v2/api/#vm-on) 37 | `vm.$events.listen` | `event, callback` | Listen for the event with the given callback. _Alias for `vm.$events.$on`_ | [vm.$on](https://vuejs.org/v2/api/#vm-on) 38 | `vm.$events.$off` | `event, callback` | Remove event listener(s) for the event | [vm.$off](https://vuejs.org/v2/api/#vm-off) 39 | `vm.$events.off` | `event, callback` | Remove event listener(s) for the event. _Alias for `vm.$events.$off`_ | [vm.$off](https://vuejs.org/v2/api/#vm-off) 40 | `vm.$events.remove` | `event, callback` | Remove event listener(s) for the event _Alias for `vm.$events.$off`_ | [vm.$off](https://vuejs.org/v2/api/#vm-off) 41 | 42 | 43 | 44 | 45 | 46 | ## Usage 47 | ### The `$events` prototype object. 48 | This plugin extends `Vue.prototype` to include a new `$events` object, which is a just a plain `vm` 49 | that will serve as your global event bus. The `$events` `vm` has a couple aliases for the standard 50 | event methods. 51 | 52 | 53 | #### Firing an event 54 | There are 3 methods that fire events. 55 | 56 | _Note: `$events.fire` & `$events.emit` are aliases for `$events.$emit`_ 57 | 58 | ```javascript 59 | new Vue({ 60 | 61 | data() { 62 | return { 63 | eventData: { 64 | foo: 'baz' 65 | } 66 | } 67 | }, 68 | 69 | mounted() { 70 | this.$events.fire('testEvent', this.eventData); 71 | this.$events.emit('testEvent', this.eventData); 72 | this.$events.$emit('testEvent', this.eventData); 73 | } 74 | 75 | }) 76 | ``` 77 | 78 | #### Listening for an event 79 | There are 3 methods that register event listeners. 80 | 81 | _Note: `$events.listen` & `$events.on` are aliases for `$events.$on`._ 82 | 83 | ```javascript 84 | new Vue({ 85 | mounted() { 86 | this.$events.listen('testEvent', eventData => console.log(eventData)); 87 | this.$events.on('testEvent', eventData => console.log(eventData)); 88 | this.$events.$on('testEvent', eventData => console.log(eventData)); 89 | } 90 | }) 91 | ``` 92 | 93 | #### Removing an event listener 94 | 95 | There are 3 methods that remove event listeners. 96 | 97 | 98 | _Note: `$events.off` & `$events.remove` are aliases for `$events.$off`._ 99 | 100 | ```javascript 101 | new Vue({ 102 | mounted() { 103 | this.$events.on('testEvent', eventData => console.log(eventData)); 104 | }, 105 | 106 | beforeDestroy() { 107 | this.$events.$off('testEvent') 108 | this.$events.off('testEvent') 109 | this.$events.remove('testEvent') 110 | } 111 | }) 112 | ``` 113 | 114 | ### The `events` component options. 115 | Provide an `events` map as part of your component options and vue-events will automatically call $on when the component is mounted and $off when the component is destroyed. 116 | 117 | ```javascript 118 | new Vue({ 119 | events: { 120 | testEvent(eventData){ 121 | console.log(eventData) 122 | } 123 | } 124 | }) 125 | ``` 126 | 127 | Inside the event handlers, `this` is bound to the component instance. This way you can access your component's data, props, computed, methods, etc. For example: 128 | 129 | ```javascript 130 | new Vue({ 131 | events: { 132 | onShowAlert(message){ 133 | this.modalVisible = true 134 | this.message = message 135 | } 136 | } 137 | }) 138 | ``` 139 | 140 | ## Demo 141 | If you'd like to demo `vue-events` try [vue-mix](https://github.com/cklmercer/vue-mix) 142 | 143 | ## License 144 | 145 | [MIT](http://opensource.org/licenses/MIT) 146 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.0.9" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 8 | 9 | ansi-regex@^2.0.0: 10 | version "2.1.1" 11 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 12 | 13 | ansi-styles@^2.2.1: 14 | version "2.2.1" 15 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 16 | 17 | anymatch@^1.3.0: 18 | version "1.3.0" 19 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 20 | dependencies: 21 | arrify "^1.0.0" 22 | micromatch "^2.1.5" 23 | 24 | aproba@^1.0.3: 25 | version "1.0.4" 26 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 27 | 28 | are-we-there-yet@~1.1.2: 29 | version "1.1.2" 30 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 31 | dependencies: 32 | delegates "^1.0.0" 33 | readable-stream "^2.0.0 || ^1.1.13" 34 | 35 | arr-diff@^2.0.0: 36 | version "2.0.0" 37 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 38 | dependencies: 39 | arr-flatten "^1.0.1" 40 | 41 | arr-flatten@^1.0.1: 42 | version "1.0.1" 43 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 44 | 45 | array-unique@^0.2.1: 46 | version "0.2.1" 47 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 48 | 49 | arrify@^1.0.0: 50 | version "1.0.1" 51 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 52 | 53 | asn1@~0.2.3: 54 | version "0.2.3" 55 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 56 | 57 | assert-plus@^0.2.0: 58 | version "0.2.0" 59 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 60 | 61 | assert-plus@^1.0.0: 62 | version "1.0.0" 63 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 64 | 65 | async-each@^1.0.0: 66 | version "1.0.1" 67 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 68 | 69 | asynckit@^0.4.0: 70 | version "0.4.0" 71 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 72 | 73 | aws-sign2@~0.6.0: 74 | version "0.6.0" 75 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 76 | 77 | aws4@^1.2.1: 78 | version "1.5.0" 79 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 80 | 81 | babel-cli@^6.10.1: 82 | version "6.22.2" 83 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.22.2.tgz#3f814c8acf52759082b8fedd9627f938936ab559" 84 | dependencies: 85 | babel-core "^6.22.1" 86 | babel-polyfill "^6.22.0" 87 | babel-register "^6.22.0" 88 | babel-runtime "^6.22.0" 89 | commander "^2.8.1" 90 | convert-source-map "^1.1.0" 91 | fs-readdir-recursive "^1.0.0" 92 | glob "^7.0.0" 93 | lodash "^4.2.0" 94 | output-file-sync "^1.1.0" 95 | path-is-absolute "^1.0.0" 96 | slash "^1.0.0" 97 | source-map "^0.5.0" 98 | v8flags "^2.0.10" 99 | optionalDependencies: 100 | chokidar "^1.6.1" 101 | 102 | babel-code-frame@^6.22.0: 103 | version "6.22.0" 104 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 105 | dependencies: 106 | chalk "^1.1.0" 107 | esutils "^2.0.2" 108 | js-tokens "^3.0.0" 109 | 110 | babel-core@^6.22.0, babel-core@^6.22.1: 111 | version "6.22.1" 112 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.22.1.tgz#9c5fd658ba1772d28d721f6d25d968fc7ae21648" 113 | dependencies: 114 | babel-code-frame "^6.22.0" 115 | babel-generator "^6.22.0" 116 | babel-helpers "^6.22.0" 117 | babel-messages "^6.22.0" 118 | babel-register "^6.22.0" 119 | babel-runtime "^6.22.0" 120 | babel-template "^6.22.0" 121 | babel-traverse "^6.22.1" 122 | babel-types "^6.22.0" 123 | babylon "^6.11.0" 124 | convert-source-map "^1.1.0" 125 | debug "^2.1.1" 126 | json5 "^0.5.0" 127 | lodash "^4.2.0" 128 | minimatch "^3.0.2" 129 | path-is-absolute "^1.0.0" 130 | private "^0.1.6" 131 | slash "^1.0.0" 132 | source-map "^0.5.0" 133 | 134 | babel-generator@^6.22.0: 135 | version "6.22.0" 136 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.22.0.tgz#d642bf4961911a8adc7c692b0c9297f325cda805" 137 | dependencies: 138 | babel-messages "^6.22.0" 139 | babel-runtime "^6.22.0" 140 | babel-types "^6.22.0" 141 | detect-indent "^4.0.0" 142 | jsesc "^1.3.0" 143 | lodash "^4.2.0" 144 | source-map "^0.5.0" 145 | 146 | babel-helper-call-delegate@^6.22.0: 147 | version "6.22.0" 148 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef" 149 | dependencies: 150 | babel-helper-hoist-variables "^6.22.0" 151 | babel-runtime "^6.22.0" 152 | babel-traverse "^6.22.0" 153 | babel-types "^6.22.0" 154 | 155 | babel-helper-define-map@^6.22.0: 156 | version "6.22.0" 157 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.22.0.tgz#9544e9502b2d6dfe7d00ff60e82bd5a7a89e95b7" 158 | dependencies: 159 | babel-helper-function-name "^6.22.0" 160 | babel-runtime "^6.22.0" 161 | babel-types "^6.22.0" 162 | lodash "^4.2.0" 163 | 164 | babel-helper-function-name@^6.22.0: 165 | version "6.22.0" 166 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.22.0.tgz#51f1bdc4bb89b15f57a9b249f33d742816dcbefc" 167 | dependencies: 168 | babel-helper-get-function-arity "^6.22.0" 169 | babel-runtime "^6.22.0" 170 | babel-template "^6.22.0" 171 | babel-traverse "^6.22.0" 172 | babel-types "^6.22.0" 173 | 174 | babel-helper-get-function-arity@^6.22.0: 175 | version "6.22.0" 176 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce" 177 | dependencies: 178 | babel-runtime "^6.22.0" 179 | babel-types "^6.22.0" 180 | 181 | babel-helper-hoist-variables@^6.22.0: 182 | version "6.22.0" 183 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72" 184 | dependencies: 185 | babel-runtime "^6.22.0" 186 | babel-types "^6.22.0" 187 | 188 | babel-helper-optimise-call-expression@^6.22.0: 189 | version "6.22.0" 190 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.22.0.tgz#f8d5d4b40a6e2605a6a7f9d537b581bea3756d15" 191 | dependencies: 192 | babel-runtime "^6.22.0" 193 | babel-types "^6.22.0" 194 | 195 | babel-helper-regex@^6.22.0: 196 | version "6.22.0" 197 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d" 198 | dependencies: 199 | babel-runtime "^6.22.0" 200 | babel-types "^6.22.0" 201 | lodash "^4.2.0" 202 | 203 | babel-helper-replace-supers@^6.22.0: 204 | version "6.22.0" 205 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.22.0.tgz#1fcee2270657548908c34db16bcc345f9850cf42" 206 | dependencies: 207 | babel-helper-optimise-call-expression "^6.22.0" 208 | babel-messages "^6.22.0" 209 | babel-runtime "^6.22.0" 210 | babel-template "^6.22.0" 211 | babel-traverse "^6.22.0" 212 | babel-types "^6.22.0" 213 | 214 | babel-helpers@^6.22.0: 215 | version "6.22.0" 216 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.22.0.tgz#d275f55f2252b8101bff07bc0c556deda657392c" 217 | dependencies: 218 | babel-runtime "^6.22.0" 219 | babel-template "^6.22.0" 220 | 221 | babel-messages@^6.22.0: 222 | version "6.22.0" 223 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.22.0.tgz#36066a214f1217e4ed4164867669ecb39e3ea575" 224 | dependencies: 225 | babel-runtime "^6.22.0" 226 | 227 | babel-plugin-check-es2015-constants@^6.22.0: 228 | version "6.22.0" 229 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 230 | dependencies: 231 | babel-runtime "^6.22.0" 232 | 233 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 234 | version "6.22.0" 235 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 236 | dependencies: 237 | babel-runtime "^6.22.0" 238 | 239 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 240 | version "6.22.0" 241 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 242 | dependencies: 243 | babel-runtime "^6.22.0" 244 | 245 | babel-plugin-transform-es2015-block-scoping@^6.22.0: 246 | version "6.22.0" 247 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.22.0.tgz#00d6e3a0bebdcfe7536b9d653b44a9141e63e47e" 248 | dependencies: 249 | babel-runtime "^6.22.0" 250 | babel-template "^6.22.0" 251 | babel-traverse "^6.22.0" 252 | babel-types "^6.22.0" 253 | lodash "^4.2.0" 254 | 255 | babel-plugin-transform-es2015-classes@^6.22.0: 256 | version "6.22.0" 257 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.22.0.tgz#54d44998fd823d9dca15292324161c331c1b6f14" 258 | dependencies: 259 | babel-helper-define-map "^6.22.0" 260 | babel-helper-function-name "^6.22.0" 261 | babel-helper-optimise-call-expression "^6.22.0" 262 | babel-helper-replace-supers "^6.22.0" 263 | babel-messages "^6.22.0" 264 | babel-runtime "^6.22.0" 265 | babel-template "^6.22.0" 266 | babel-traverse "^6.22.0" 267 | babel-types "^6.22.0" 268 | 269 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 270 | version "6.22.0" 271 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7" 272 | dependencies: 273 | babel-runtime "^6.22.0" 274 | babel-template "^6.22.0" 275 | 276 | babel-plugin-transform-es2015-destructuring@^6.22.0: 277 | version "6.22.0" 278 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.22.0.tgz#8e0af2f885a0b2cf999d47c4c1dd23ce88cfa4c6" 279 | dependencies: 280 | babel-runtime "^6.22.0" 281 | 282 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 283 | version "6.22.0" 284 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b" 285 | dependencies: 286 | babel-runtime "^6.22.0" 287 | babel-types "^6.22.0" 288 | 289 | babel-plugin-transform-es2015-for-of@^6.22.0: 290 | version "6.22.0" 291 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.22.0.tgz#180467ad63aeea592a1caeee4bf1c8b3e2616265" 292 | dependencies: 293 | babel-runtime "^6.22.0" 294 | 295 | babel-plugin-transform-es2015-function-name@^6.22.0: 296 | version "6.22.0" 297 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" 298 | dependencies: 299 | babel-helper-function-name "^6.22.0" 300 | babel-runtime "^6.22.0" 301 | babel-types "^6.22.0" 302 | 303 | babel-plugin-transform-es2015-literals@^6.22.0: 304 | version "6.22.0" 305 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 306 | dependencies: 307 | babel-runtime "^6.22.0" 308 | 309 | babel-plugin-transform-es2015-modules-amd@^6.22.0: 310 | version "6.22.0" 311 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.22.0.tgz#bf69cd34889a41c33d90dfb740e0091ccff52f21" 312 | dependencies: 313 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 314 | babel-runtime "^6.22.0" 315 | babel-template "^6.22.0" 316 | 317 | babel-plugin-transform-es2015-modules-commonjs@^6.22.0: 318 | version "6.22.0" 319 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.22.0.tgz#6ca04e22b8e214fb50169730657e7a07dc941145" 320 | dependencies: 321 | babel-plugin-transform-strict-mode "^6.22.0" 322 | babel-runtime "^6.22.0" 323 | babel-template "^6.22.0" 324 | babel-types "^6.22.0" 325 | 326 | babel-plugin-transform-es2015-modules-systemjs@^6.22.0: 327 | version "6.22.0" 328 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.22.0.tgz#810cd0cd025a08383b84236b92c6e31f88e644ad" 329 | dependencies: 330 | babel-helper-hoist-variables "^6.22.0" 331 | babel-runtime "^6.22.0" 332 | babel-template "^6.22.0" 333 | 334 | babel-plugin-transform-es2015-modules-umd@^6.22.0: 335 | version "6.22.0" 336 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.22.0.tgz#60d0ba3bd23258719c64391d9bf492d648dc0fae" 337 | dependencies: 338 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 339 | babel-runtime "^6.22.0" 340 | babel-template "^6.22.0" 341 | 342 | babel-plugin-transform-es2015-object-super@^6.22.0: 343 | version "6.22.0" 344 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc" 345 | dependencies: 346 | babel-helper-replace-supers "^6.22.0" 347 | babel-runtime "^6.22.0" 348 | 349 | babel-plugin-transform-es2015-parameters@^6.22.0: 350 | version "6.22.0" 351 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.22.0.tgz#57076069232019094f27da8c68bb7162fe208dbb" 352 | dependencies: 353 | babel-helper-call-delegate "^6.22.0" 354 | babel-helper-get-function-arity "^6.22.0" 355 | babel-runtime "^6.22.0" 356 | babel-template "^6.22.0" 357 | babel-traverse "^6.22.0" 358 | babel-types "^6.22.0" 359 | 360 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 361 | version "6.22.0" 362 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723" 363 | dependencies: 364 | babel-runtime "^6.22.0" 365 | babel-types "^6.22.0" 366 | 367 | babel-plugin-transform-es2015-spread@^6.22.0: 368 | version "6.22.0" 369 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 370 | dependencies: 371 | babel-runtime "^6.22.0" 372 | 373 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 374 | version "6.22.0" 375 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" 376 | dependencies: 377 | babel-helper-regex "^6.22.0" 378 | babel-runtime "^6.22.0" 379 | babel-types "^6.22.0" 380 | 381 | babel-plugin-transform-es2015-template-literals@^6.22.0: 382 | version "6.22.0" 383 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 384 | dependencies: 385 | babel-runtime "^6.22.0" 386 | 387 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 388 | version "6.22.0" 389 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.22.0.tgz#87faf2336d3b6a97f68c4d906b0cd0edeae676e1" 390 | dependencies: 391 | babel-runtime "^6.22.0" 392 | 393 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 394 | version "6.22.0" 395 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" 396 | dependencies: 397 | babel-helper-regex "^6.22.0" 398 | babel-runtime "^6.22.0" 399 | regexpu-core "^2.0.0" 400 | 401 | babel-plugin-transform-regenerator@^6.22.0: 402 | version "6.22.0" 403 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6" 404 | dependencies: 405 | regenerator-transform "0.9.8" 406 | 407 | babel-plugin-transform-strict-mode@^6.22.0: 408 | version "6.22.0" 409 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c" 410 | dependencies: 411 | babel-runtime "^6.22.0" 412 | babel-types "^6.22.0" 413 | 414 | babel-polyfill@^6.22.0: 415 | version "6.22.0" 416 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.22.0.tgz#1ac99ebdcc6ba4db1e2618c387b2084a82154a3b" 417 | dependencies: 418 | babel-runtime "^6.22.0" 419 | core-js "^2.4.0" 420 | regenerator-runtime "^0.10.0" 421 | 422 | babel-preset-es2015@^6.9.0: 423 | version "6.22.0" 424 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.22.0.tgz#af5a98ecb35eb8af764ad8a5a05eb36dc4386835" 425 | dependencies: 426 | babel-plugin-check-es2015-constants "^6.22.0" 427 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 428 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 429 | babel-plugin-transform-es2015-block-scoping "^6.22.0" 430 | babel-plugin-transform-es2015-classes "^6.22.0" 431 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 432 | babel-plugin-transform-es2015-destructuring "^6.22.0" 433 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 434 | babel-plugin-transform-es2015-for-of "^6.22.0" 435 | babel-plugin-transform-es2015-function-name "^6.22.0" 436 | babel-plugin-transform-es2015-literals "^6.22.0" 437 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 438 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 439 | babel-plugin-transform-es2015-modules-systemjs "^6.22.0" 440 | babel-plugin-transform-es2015-modules-umd "^6.22.0" 441 | babel-plugin-transform-es2015-object-super "^6.22.0" 442 | babel-plugin-transform-es2015-parameters "^6.22.0" 443 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 444 | babel-plugin-transform-es2015-spread "^6.22.0" 445 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 446 | babel-plugin-transform-es2015-template-literals "^6.22.0" 447 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 448 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 449 | babel-plugin-transform-regenerator "^6.22.0" 450 | 451 | babel-register@^6.22.0: 452 | version "6.22.0" 453 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.22.0.tgz#a61dd83975f9ca4a9e7d6eff3059494cd5ea4c63" 454 | dependencies: 455 | babel-core "^6.22.0" 456 | babel-runtime "^6.22.0" 457 | core-js "^2.4.0" 458 | home-or-tmp "^2.0.0" 459 | lodash "^4.2.0" 460 | mkdirp "^0.5.1" 461 | source-map-support "^0.4.2" 462 | 463 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 464 | version "6.22.0" 465 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.22.0.tgz#1cf8b4ac67c77a4ddb0db2ae1f74de52ac4ca611" 466 | dependencies: 467 | core-js "^2.4.0" 468 | regenerator-runtime "^0.10.0" 469 | 470 | babel-template@^6.22.0: 471 | version "6.22.0" 472 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.22.0.tgz#403d110905a4626b317a2a1fcb8f3b73204b2edb" 473 | dependencies: 474 | babel-runtime "^6.22.0" 475 | babel-traverse "^6.22.0" 476 | babel-types "^6.22.0" 477 | babylon "^6.11.0" 478 | lodash "^4.2.0" 479 | 480 | babel-traverse@^6.22.0, babel-traverse@^6.22.1: 481 | version "6.22.1" 482 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.22.1.tgz#3b95cd6b7427d6f1f757704908f2fc9748a5f59f" 483 | dependencies: 484 | babel-code-frame "^6.22.0" 485 | babel-messages "^6.22.0" 486 | babel-runtime "^6.22.0" 487 | babel-types "^6.22.0" 488 | babylon "^6.15.0" 489 | debug "^2.2.0" 490 | globals "^9.0.0" 491 | invariant "^2.2.0" 492 | lodash "^4.2.0" 493 | 494 | babel-types@^6.19.0, babel-types@^6.22.0: 495 | version "6.22.0" 496 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.22.0.tgz#2a447e8d0ea25d2512409e4175479fd78cc8b1db" 497 | dependencies: 498 | babel-runtime "^6.22.0" 499 | esutils "^2.0.2" 500 | lodash "^4.2.0" 501 | to-fast-properties "^1.0.1" 502 | 503 | babylon@^6.11.0, babylon@^6.15.0: 504 | version "6.15.0" 505 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.15.0.tgz#ba65cfa1a80e1759b0e89fb562e27dccae70348e" 506 | 507 | balanced-match@^0.4.1: 508 | version "0.4.2" 509 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 510 | 511 | bcrypt-pbkdf@^1.0.0: 512 | version "1.0.1" 513 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 514 | dependencies: 515 | tweetnacl "^0.14.3" 516 | 517 | binary-extensions@^1.0.0: 518 | version "1.8.0" 519 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 520 | 521 | block-stream@*: 522 | version "0.0.9" 523 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 524 | dependencies: 525 | inherits "~2.0.0" 526 | 527 | boom@2.x.x: 528 | version "2.10.1" 529 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 530 | dependencies: 531 | hoek "2.x.x" 532 | 533 | brace-expansion@^1.0.0: 534 | version "1.1.6" 535 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 536 | dependencies: 537 | balanced-match "^0.4.1" 538 | concat-map "0.0.1" 539 | 540 | braces@^1.8.2: 541 | version "1.8.5" 542 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 543 | dependencies: 544 | expand-range "^1.8.1" 545 | preserve "^0.2.0" 546 | repeat-element "^1.1.2" 547 | 548 | buffer-shims@^1.0.0: 549 | version "1.0.0" 550 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 551 | 552 | caseless@~0.11.0: 553 | version "0.11.0" 554 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 555 | 556 | chalk@^1.1.0, chalk@^1.1.1: 557 | version "1.1.3" 558 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 559 | dependencies: 560 | ansi-styles "^2.2.1" 561 | escape-string-regexp "^1.0.2" 562 | has-ansi "^2.0.0" 563 | strip-ansi "^3.0.0" 564 | supports-color "^2.0.0" 565 | 566 | chokidar@^1.6.1: 567 | version "1.6.1" 568 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 569 | dependencies: 570 | anymatch "^1.3.0" 571 | async-each "^1.0.0" 572 | glob-parent "^2.0.0" 573 | inherits "^2.0.1" 574 | is-binary-path "^1.0.0" 575 | is-glob "^2.0.0" 576 | path-is-absolute "^1.0.0" 577 | readdirp "^2.0.0" 578 | optionalDependencies: 579 | fsevents "^1.0.0" 580 | 581 | code-point-at@^1.0.0: 582 | version "1.1.0" 583 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 584 | 585 | combined-stream@^1.0.5, combined-stream@~1.0.5: 586 | version "1.0.5" 587 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 588 | dependencies: 589 | delayed-stream "~1.0.0" 590 | 591 | commander@^2.8.1, commander@^2.9.0: 592 | version "2.9.0" 593 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 594 | dependencies: 595 | graceful-readlink ">= 1.0.0" 596 | 597 | concat-map@0.0.1: 598 | version "0.0.1" 599 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 600 | 601 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 602 | version "1.1.0" 603 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 604 | 605 | convert-source-map@^1.1.0: 606 | version "1.3.0" 607 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 608 | 609 | core-js@^2.4.0: 610 | version "2.4.1" 611 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 612 | 613 | core-util-is@~1.0.0: 614 | version "1.0.2" 615 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 616 | 617 | cryptiles@2.x.x: 618 | version "2.0.5" 619 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 620 | dependencies: 621 | boom "2.x.x" 622 | 623 | dashdash@^1.12.0: 624 | version "1.14.1" 625 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 626 | dependencies: 627 | assert-plus "^1.0.0" 628 | 629 | debug@^2.1.1, debug@^2.2.0: 630 | version "2.6.0" 631 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" 632 | dependencies: 633 | ms "0.7.2" 634 | 635 | debug@~2.2.0: 636 | version "2.2.0" 637 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 638 | dependencies: 639 | ms "0.7.1" 640 | 641 | deep-extend@~0.4.0: 642 | version "0.4.1" 643 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 644 | 645 | delayed-stream@~1.0.0: 646 | version "1.0.0" 647 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 648 | 649 | delegates@^1.0.0: 650 | version "1.0.0" 651 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 652 | 653 | detect-indent@^4.0.0: 654 | version "4.0.0" 655 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 656 | dependencies: 657 | repeating "^2.0.0" 658 | 659 | ecc-jsbn@~0.1.1: 660 | version "0.1.1" 661 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 662 | dependencies: 663 | jsbn "~0.1.0" 664 | 665 | escape-string-regexp@^1.0.2: 666 | version "1.0.5" 667 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 668 | 669 | esutils@^2.0.2: 670 | version "2.0.2" 671 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 672 | 673 | expand-brackets@^0.1.4: 674 | version "0.1.5" 675 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 676 | dependencies: 677 | is-posix-bracket "^0.1.0" 678 | 679 | expand-range@^1.8.1: 680 | version "1.8.2" 681 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 682 | dependencies: 683 | fill-range "^2.1.0" 684 | 685 | extend@~3.0.0: 686 | version "3.0.0" 687 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 688 | 689 | extglob@^0.3.1: 690 | version "0.3.2" 691 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 692 | dependencies: 693 | is-extglob "^1.0.0" 694 | 695 | extsprintf@1.0.2: 696 | version "1.0.2" 697 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 698 | 699 | filename-regex@^2.0.0: 700 | version "2.0.0" 701 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 702 | 703 | fill-range@^2.1.0: 704 | version "2.2.3" 705 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 706 | dependencies: 707 | is-number "^2.1.0" 708 | isobject "^2.0.0" 709 | randomatic "^1.1.3" 710 | repeat-element "^1.1.2" 711 | repeat-string "^1.5.2" 712 | 713 | for-in@^0.1.5: 714 | version "0.1.6" 715 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 716 | 717 | for-own@^0.1.4: 718 | version "0.1.4" 719 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 720 | dependencies: 721 | for-in "^0.1.5" 722 | 723 | forever-agent@~0.6.1: 724 | version "0.6.1" 725 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 726 | 727 | form-data@~2.1.1: 728 | version "2.1.2" 729 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 730 | dependencies: 731 | asynckit "^0.4.0" 732 | combined-stream "^1.0.5" 733 | mime-types "^2.1.12" 734 | 735 | fs-readdir-recursive@^1.0.0: 736 | version "1.0.0" 737 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 738 | 739 | fs.realpath@^1.0.0: 740 | version "1.0.0" 741 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 742 | 743 | fsevents@^1.0.0: 744 | version "1.0.17" 745 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.17.tgz#8537f3f12272678765b4fd6528c0f1f66f8f4558" 746 | dependencies: 747 | nan "^2.3.0" 748 | node-pre-gyp "^0.6.29" 749 | 750 | fstream-ignore@~1.0.5: 751 | version "1.0.5" 752 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 753 | dependencies: 754 | fstream "^1.0.0" 755 | inherits "2" 756 | minimatch "^3.0.0" 757 | 758 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 759 | version "1.0.10" 760 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 761 | dependencies: 762 | graceful-fs "^4.1.2" 763 | inherits "~2.0.0" 764 | mkdirp ">=0.5 0" 765 | rimraf "2" 766 | 767 | gauge@~2.7.1: 768 | version "2.7.2" 769 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.2.tgz#15cecc31b02d05345a5d6b0e171cdb3ad2307774" 770 | dependencies: 771 | aproba "^1.0.3" 772 | console-control-strings "^1.0.0" 773 | has-unicode "^2.0.0" 774 | object-assign "^4.1.0" 775 | signal-exit "^3.0.0" 776 | string-width "^1.0.1" 777 | strip-ansi "^3.0.1" 778 | supports-color "^0.2.0" 779 | wide-align "^1.1.0" 780 | 781 | generate-function@^2.0.0: 782 | version "2.0.0" 783 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 784 | 785 | generate-object-property@^1.1.0: 786 | version "1.2.0" 787 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 788 | dependencies: 789 | is-property "^1.0.0" 790 | 791 | getpass@^0.1.1: 792 | version "0.1.6" 793 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 794 | dependencies: 795 | assert-plus "^1.0.0" 796 | 797 | glob-base@^0.3.0: 798 | version "0.3.0" 799 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 800 | dependencies: 801 | glob-parent "^2.0.0" 802 | is-glob "^2.0.0" 803 | 804 | glob-parent@^2.0.0: 805 | version "2.0.0" 806 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 807 | dependencies: 808 | is-glob "^2.0.0" 809 | 810 | glob@^7.0.0, glob@^7.0.5: 811 | version "7.1.1" 812 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 813 | dependencies: 814 | fs.realpath "^1.0.0" 815 | inflight "^1.0.4" 816 | inherits "2" 817 | minimatch "^3.0.2" 818 | once "^1.3.0" 819 | path-is-absolute "^1.0.0" 820 | 821 | globals@^9.0.0: 822 | version "9.14.0" 823 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034" 824 | 825 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 826 | version "4.1.11" 827 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 828 | 829 | "graceful-readlink@>= 1.0.0": 830 | version "1.0.1" 831 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 832 | 833 | har-validator@~2.0.6: 834 | version "2.0.6" 835 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 836 | dependencies: 837 | chalk "^1.1.1" 838 | commander "^2.9.0" 839 | is-my-json-valid "^2.12.4" 840 | pinkie-promise "^2.0.0" 841 | 842 | has-ansi@^2.0.0: 843 | version "2.0.0" 844 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 845 | dependencies: 846 | ansi-regex "^2.0.0" 847 | 848 | has-unicode@^2.0.0: 849 | version "2.0.1" 850 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 851 | 852 | hawk@~3.1.3: 853 | version "3.1.3" 854 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 855 | dependencies: 856 | boom "2.x.x" 857 | cryptiles "2.x.x" 858 | hoek "2.x.x" 859 | sntp "1.x.x" 860 | 861 | hoek@2.x.x: 862 | version "2.16.3" 863 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 864 | 865 | home-or-tmp@^2.0.0: 866 | version "2.0.0" 867 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 868 | dependencies: 869 | os-homedir "^1.0.0" 870 | os-tmpdir "^1.0.1" 871 | 872 | http-signature@~1.1.0: 873 | version "1.1.1" 874 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 875 | dependencies: 876 | assert-plus "^0.2.0" 877 | jsprim "^1.2.2" 878 | sshpk "^1.7.0" 879 | 880 | inflight@^1.0.4: 881 | version "1.0.6" 882 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 883 | dependencies: 884 | once "^1.3.0" 885 | wrappy "1" 886 | 887 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 888 | version "2.0.3" 889 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 890 | 891 | ini@~1.3.0: 892 | version "1.3.4" 893 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 894 | 895 | invariant@^2.2.0: 896 | version "2.2.2" 897 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 898 | dependencies: 899 | loose-envify "^1.0.0" 900 | 901 | is-binary-path@^1.0.0: 902 | version "1.0.1" 903 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 904 | dependencies: 905 | binary-extensions "^1.0.0" 906 | 907 | is-buffer@^1.0.2: 908 | version "1.1.4" 909 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 910 | 911 | is-dotfile@^1.0.0: 912 | version "1.0.2" 913 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 914 | 915 | is-equal-shallow@^0.1.3: 916 | version "0.1.3" 917 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 918 | dependencies: 919 | is-primitive "^2.0.0" 920 | 921 | is-extendable@^0.1.1: 922 | version "0.1.1" 923 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 924 | 925 | is-extglob@^1.0.0: 926 | version "1.0.0" 927 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 928 | 929 | is-finite@^1.0.0: 930 | version "1.0.2" 931 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 932 | dependencies: 933 | number-is-nan "^1.0.0" 934 | 935 | is-fullwidth-code-point@^1.0.0: 936 | version "1.0.0" 937 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 938 | dependencies: 939 | number-is-nan "^1.0.0" 940 | 941 | is-glob@^2.0.0, is-glob@^2.0.1: 942 | version "2.0.1" 943 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 944 | dependencies: 945 | is-extglob "^1.0.0" 946 | 947 | is-my-json-valid@^2.12.4: 948 | version "2.15.0" 949 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 950 | dependencies: 951 | generate-function "^2.0.0" 952 | generate-object-property "^1.1.0" 953 | jsonpointer "^4.0.0" 954 | xtend "^4.0.0" 955 | 956 | is-number@^2.0.2, is-number@^2.1.0: 957 | version "2.1.0" 958 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 959 | dependencies: 960 | kind-of "^3.0.2" 961 | 962 | is-posix-bracket@^0.1.0: 963 | version "0.1.1" 964 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 965 | 966 | is-primitive@^2.0.0: 967 | version "2.0.0" 968 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 969 | 970 | is-property@^1.0.0: 971 | version "1.0.2" 972 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 973 | 974 | is-typedarray@~1.0.0: 975 | version "1.0.0" 976 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 977 | 978 | isarray@1.0.0, isarray@~1.0.0: 979 | version "1.0.0" 980 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 981 | 982 | isobject@^2.0.0: 983 | version "2.1.0" 984 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 985 | dependencies: 986 | isarray "1.0.0" 987 | 988 | isstream@~0.1.2: 989 | version "0.1.2" 990 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 991 | 992 | jodid25519@^1.0.0: 993 | version "1.0.2" 994 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 995 | dependencies: 996 | jsbn "~0.1.0" 997 | 998 | js-tokens@^3.0.0: 999 | version "3.0.1" 1000 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1001 | 1002 | jsbn@~0.1.0: 1003 | version "0.1.0" 1004 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 1005 | 1006 | jsesc@^1.3.0: 1007 | version "1.3.0" 1008 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1009 | 1010 | jsesc@~0.5.0: 1011 | version "0.5.0" 1012 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1013 | 1014 | json-schema@0.2.3: 1015 | version "0.2.3" 1016 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1017 | 1018 | json-stringify-safe@~5.0.1: 1019 | version "5.0.1" 1020 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1021 | 1022 | json5@^0.5.0: 1023 | version "0.5.1" 1024 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1025 | 1026 | jsonpointer@^4.0.0: 1027 | version "4.0.1" 1028 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1029 | 1030 | jsprim@^1.2.2: 1031 | version "1.3.1" 1032 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 1033 | dependencies: 1034 | extsprintf "1.0.2" 1035 | json-schema "0.2.3" 1036 | verror "1.3.6" 1037 | 1038 | kind-of@^3.0.2: 1039 | version "3.1.0" 1040 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 1041 | dependencies: 1042 | is-buffer "^1.0.2" 1043 | 1044 | lodash@^4.2.0: 1045 | version "4.17.4" 1046 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1047 | 1048 | loose-envify@^1.0.0: 1049 | version "1.3.1" 1050 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1051 | dependencies: 1052 | js-tokens "^3.0.0" 1053 | 1054 | micromatch@^2.1.5: 1055 | version "2.3.11" 1056 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1057 | dependencies: 1058 | arr-diff "^2.0.0" 1059 | array-unique "^0.2.1" 1060 | braces "^1.8.2" 1061 | expand-brackets "^0.1.4" 1062 | extglob "^0.3.1" 1063 | filename-regex "^2.0.0" 1064 | is-extglob "^1.0.0" 1065 | is-glob "^2.0.1" 1066 | kind-of "^3.0.2" 1067 | normalize-path "^2.0.1" 1068 | object.omit "^2.0.0" 1069 | parse-glob "^3.0.4" 1070 | regex-cache "^0.4.2" 1071 | 1072 | mime-db@~1.26.0: 1073 | version "1.26.0" 1074 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 1075 | 1076 | mime-types@^2.1.12, mime-types@~2.1.7: 1077 | version "2.1.14" 1078 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 1079 | dependencies: 1080 | mime-db "~1.26.0" 1081 | 1082 | minimatch@^3.0.0, minimatch@^3.0.2: 1083 | version "3.0.3" 1084 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1085 | dependencies: 1086 | brace-expansion "^1.0.0" 1087 | 1088 | minimist@0.0.8: 1089 | version "0.0.8" 1090 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1091 | 1092 | minimist@^1.2.0: 1093 | version "1.2.0" 1094 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1095 | 1096 | "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.1: 1097 | version "0.5.1" 1098 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1099 | dependencies: 1100 | minimist "0.0.8" 1101 | 1102 | ms@0.7.1: 1103 | version "0.7.1" 1104 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1105 | 1106 | ms@0.7.2: 1107 | version "0.7.2" 1108 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1109 | 1110 | nan@^2.3.0: 1111 | version "2.5.1" 1112 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 1113 | 1114 | node-pre-gyp@^0.6.29: 1115 | version "0.6.33" 1116 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.33.tgz#640ac55198f6a925972e0c16c4ac26a034d5ecc9" 1117 | dependencies: 1118 | mkdirp "~0.5.1" 1119 | nopt "~3.0.6" 1120 | npmlog "^4.0.1" 1121 | rc "~1.1.6" 1122 | request "^2.79.0" 1123 | rimraf "~2.5.4" 1124 | semver "~5.3.0" 1125 | tar "~2.2.1" 1126 | tar-pack "~3.3.0" 1127 | 1128 | nopt@~3.0.6: 1129 | version "3.0.6" 1130 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1131 | dependencies: 1132 | abbrev "1" 1133 | 1134 | normalize-path@^2.0.1: 1135 | version "2.0.1" 1136 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 1137 | 1138 | npmlog@^4.0.1: 1139 | version "4.0.2" 1140 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 1141 | dependencies: 1142 | are-we-there-yet "~1.1.2" 1143 | console-control-strings "~1.1.0" 1144 | gauge "~2.7.1" 1145 | set-blocking "~2.0.0" 1146 | 1147 | number-is-nan@^1.0.0: 1148 | version "1.0.1" 1149 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1150 | 1151 | oauth-sign@~0.8.1: 1152 | version "0.8.2" 1153 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1154 | 1155 | object-assign@^4.1.0: 1156 | version "4.1.1" 1157 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1158 | 1159 | object.omit@^2.0.0: 1160 | version "2.0.1" 1161 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1162 | dependencies: 1163 | for-own "^0.1.4" 1164 | is-extendable "^0.1.1" 1165 | 1166 | once@^1.3.0: 1167 | version "1.4.0" 1168 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1169 | dependencies: 1170 | wrappy "1" 1171 | 1172 | once@~1.3.3: 1173 | version "1.3.3" 1174 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 1175 | dependencies: 1176 | wrappy "1" 1177 | 1178 | os-homedir@^1.0.0: 1179 | version "1.0.2" 1180 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1181 | 1182 | os-tmpdir@^1.0.1: 1183 | version "1.0.2" 1184 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1185 | 1186 | output-file-sync@^1.1.0: 1187 | version "1.1.2" 1188 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1189 | dependencies: 1190 | graceful-fs "^4.1.4" 1191 | mkdirp "^0.5.1" 1192 | object-assign "^4.1.0" 1193 | 1194 | parse-glob@^3.0.4: 1195 | version "3.0.4" 1196 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1197 | dependencies: 1198 | glob-base "^0.3.0" 1199 | is-dotfile "^1.0.0" 1200 | is-extglob "^1.0.0" 1201 | is-glob "^2.0.0" 1202 | 1203 | path-is-absolute@^1.0.0: 1204 | version "1.0.1" 1205 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1206 | 1207 | pinkie-promise@^2.0.0: 1208 | version "2.0.1" 1209 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1210 | dependencies: 1211 | pinkie "^2.0.0" 1212 | 1213 | pinkie@^2.0.0: 1214 | version "2.0.4" 1215 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1216 | 1217 | preserve@^0.2.0: 1218 | version "0.2.0" 1219 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1220 | 1221 | private@^0.1.6: 1222 | version "0.1.6" 1223 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 1224 | 1225 | process-nextick-args@~1.0.6: 1226 | version "1.0.7" 1227 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1228 | 1229 | punycode@^1.4.1: 1230 | version "1.4.1" 1231 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1232 | 1233 | qs@~6.3.0: 1234 | version "6.3.0" 1235 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 1236 | 1237 | randomatic@^1.1.3: 1238 | version "1.1.6" 1239 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1240 | dependencies: 1241 | is-number "^2.0.2" 1242 | kind-of "^3.0.2" 1243 | 1244 | rc@~1.1.6: 1245 | version "1.1.6" 1246 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 1247 | dependencies: 1248 | deep-extend "~0.4.0" 1249 | ini "~1.3.0" 1250 | minimist "^1.2.0" 1251 | strip-json-comments "~1.0.4" 1252 | 1253 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2: 1254 | version "2.2.2" 1255 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 1256 | dependencies: 1257 | buffer-shims "^1.0.0" 1258 | core-util-is "~1.0.0" 1259 | inherits "~2.0.1" 1260 | isarray "~1.0.0" 1261 | process-nextick-args "~1.0.6" 1262 | string_decoder "~0.10.x" 1263 | util-deprecate "~1.0.1" 1264 | 1265 | readable-stream@~2.1.4: 1266 | version "2.1.5" 1267 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 1268 | dependencies: 1269 | buffer-shims "^1.0.0" 1270 | core-util-is "~1.0.0" 1271 | inherits "~2.0.1" 1272 | isarray "~1.0.0" 1273 | process-nextick-args "~1.0.6" 1274 | string_decoder "~0.10.x" 1275 | util-deprecate "~1.0.1" 1276 | 1277 | readdirp@^2.0.0: 1278 | version "2.1.0" 1279 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1280 | dependencies: 1281 | graceful-fs "^4.1.2" 1282 | minimatch "^3.0.2" 1283 | readable-stream "^2.0.2" 1284 | set-immediate-shim "^1.0.1" 1285 | 1286 | regenerate@^1.2.1: 1287 | version "1.3.2" 1288 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 1289 | 1290 | regenerator-runtime@^0.10.0: 1291 | version "0.10.1" 1292 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb" 1293 | 1294 | regenerator-transform@0.9.8: 1295 | version "0.9.8" 1296 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 1297 | dependencies: 1298 | babel-runtime "^6.18.0" 1299 | babel-types "^6.19.0" 1300 | private "^0.1.6" 1301 | 1302 | regex-cache@^0.4.2: 1303 | version "0.4.3" 1304 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1305 | dependencies: 1306 | is-equal-shallow "^0.1.3" 1307 | is-primitive "^2.0.0" 1308 | 1309 | regexpu-core@^2.0.0: 1310 | version "2.0.0" 1311 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1312 | dependencies: 1313 | regenerate "^1.2.1" 1314 | regjsgen "^0.2.0" 1315 | regjsparser "^0.1.4" 1316 | 1317 | regjsgen@^0.2.0: 1318 | version "0.2.0" 1319 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1320 | 1321 | regjsparser@^0.1.4: 1322 | version "0.1.5" 1323 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1324 | dependencies: 1325 | jsesc "~0.5.0" 1326 | 1327 | repeat-element@^1.1.2: 1328 | version "1.1.2" 1329 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1330 | 1331 | repeat-string@^1.5.2: 1332 | version "1.6.1" 1333 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1334 | 1335 | repeating@^2.0.0: 1336 | version "2.0.1" 1337 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1338 | dependencies: 1339 | is-finite "^1.0.0" 1340 | 1341 | request@^2.79.0: 1342 | version "2.79.0" 1343 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 1344 | dependencies: 1345 | aws-sign2 "~0.6.0" 1346 | aws4 "^1.2.1" 1347 | caseless "~0.11.0" 1348 | combined-stream "~1.0.5" 1349 | extend "~3.0.0" 1350 | forever-agent "~0.6.1" 1351 | form-data "~2.1.1" 1352 | har-validator "~2.0.6" 1353 | hawk "~3.1.3" 1354 | http-signature "~1.1.0" 1355 | is-typedarray "~1.0.0" 1356 | isstream "~0.1.2" 1357 | json-stringify-safe "~5.0.1" 1358 | mime-types "~2.1.7" 1359 | oauth-sign "~0.8.1" 1360 | qs "~6.3.0" 1361 | stringstream "~0.0.4" 1362 | tough-cookie "~2.3.0" 1363 | tunnel-agent "~0.4.1" 1364 | uuid "^3.0.0" 1365 | 1366 | rimraf@2, rimraf@~2.5.1, rimraf@~2.5.4: 1367 | version "2.5.4" 1368 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 1369 | dependencies: 1370 | glob "^7.0.5" 1371 | 1372 | semver@~5.3.0: 1373 | version "5.3.0" 1374 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 1375 | 1376 | set-blocking@~2.0.0: 1377 | version "2.0.0" 1378 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1379 | 1380 | set-immediate-shim@^1.0.1: 1381 | version "1.0.1" 1382 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1383 | 1384 | signal-exit@^3.0.0: 1385 | version "3.0.2" 1386 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1387 | 1388 | slash@^1.0.0: 1389 | version "1.0.0" 1390 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1391 | 1392 | sntp@1.x.x: 1393 | version "1.0.9" 1394 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1395 | dependencies: 1396 | hoek "2.x.x" 1397 | 1398 | source-map-support@^0.4.2: 1399 | version "0.4.11" 1400 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.11.tgz#647f939978b38535909530885303daf23279f322" 1401 | dependencies: 1402 | source-map "^0.5.3" 1403 | 1404 | source-map@^0.5.0, source-map@^0.5.3: 1405 | version "0.5.6" 1406 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 1407 | 1408 | sshpk@^1.7.0: 1409 | version "1.10.2" 1410 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.2.tgz#d5a804ce22695515638e798dbe23273de070a5fa" 1411 | dependencies: 1412 | asn1 "~0.2.3" 1413 | assert-plus "^1.0.0" 1414 | dashdash "^1.12.0" 1415 | getpass "^0.1.1" 1416 | optionalDependencies: 1417 | bcrypt-pbkdf "^1.0.0" 1418 | ecc-jsbn "~0.1.1" 1419 | jodid25519 "^1.0.0" 1420 | jsbn "~0.1.0" 1421 | tweetnacl "~0.14.0" 1422 | 1423 | string-width@^1.0.1: 1424 | version "1.0.2" 1425 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1426 | dependencies: 1427 | code-point-at "^1.0.0" 1428 | is-fullwidth-code-point "^1.0.0" 1429 | strip-ansi "^3.0.0" 1430 | 1431 | string_decoder@~0.10.x: 1432 | version "0.10.31" 1433 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1434 | 1435 | stringstream@~0.0.4: 1436 | version "0.0.5" 1437 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1438 | 1439 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1440 | version "3.0.1" 1441 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1442 | dependencies: 1443 | ansi-regex "^2.0.0" 1444 | 1445 | strip-json-comments@~1.0.4: 1446 | version "1.0.4" 1447 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 1448 | 1449 | supports-color@^0.2.0: 1450 | version "0.2.0" 1451 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a" 1452 | 1453 | supports-color@^2.0.0: 1454 | version "2.0.0" 1455 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1456 | 1457 | tar-pack@~3.3.0: 1458 | version "3.3.0" 1459 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 1460 | dependencies: 1461 | debug "~2.2.0" 1462 | fstream "~1.0.10" 1463 | fstream-ignore "~1.0.5" 1464 | once "~1.3.3" 1465 | readable-stream "~2.1.4" 1466 | rimraf "~2.5.1" 1467 | tar "~2.2.1" 1468 | uid-number "~0.0.6" 1469 | 1470 | tar@~2.2.1: 1471 | version "2.2.1" 1472 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1473 | dependencies: 1474 | block-stream "*" 1475 | fstream "^1.0.2" 1476 | inherits "2" 1477 | 1478 | to-fast-properties@^1.0.1: 1479 | version "1.0.2" 1480 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 1481 | 1482 | tough-cookie@~2.3.0: 1483 | version "2.3.2" 1484 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1485 | dependencies: 1486 | punycode "^1.4.1" 1487 | 1488 | tunnel-agent@~0.4.1: 1489 | version "0.4.3" 1490 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 1491 | 1492 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1493 | version "0.14.5" 1494 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1495 | 1496 | uid-number@~0.0.6: 1497 | version "0.0.6" 1498 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1499 | 1500 | user-home@^1.1.1: 1501 | version "1.1.1" 1502 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 1503 | 1504 | util-deprecate@~1.0.1: 1505 | version "1.0.2" 1506 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1507 | 1508 | uuid@^3.0.0: 1509 | version "3.0.1" 1510 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 1511 | 1512 | v8flags@^2.0.10: 1513 | version "2.0.11" 1514 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 1515 | dependencies: 1516 | user-home "^1.1.1" 1517 | 1518 | verror@1.3.6: 1519 | version "1.3.6" 1520 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 1521 | dependencies: 1522 | extsprintf "1.0.2" 1523 | 1524 | vue@^2.5.2: 1525 | version "2.5.2" 1526 | resolved "https://registry.yarnpkg.com/vue/-/vue-2.5.2.tgz#fd367a87bae7535e47f9dc5c9ec3b496e5feb5a4" 1527 | 1528 | wide-align@^1.1.0: 1529 | version "1.1.0" 1530 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 1531 | dependencies: 1532 | string-width "^1.0.1" 1533 | 1534 | wrappy@1: 1535 | version "1.0.2" 1536 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1537 | 1538 | xtend@^4.0.0: 1539 | version "4.0.1" 1540 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1541 | --------------------------------------------------------------------------------