├── .babelrc ├── .gitignore ├── LICENCE.md ├── README.md ├── dist └── index.js ├── package.json ├── src ├── index.js └── utils │ └── index.js ├── test └── index.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["es2015", { 4 | "modules": false 5 | }] 6 | ], 7 | "plugins": [ 8 | ["transform-object-rest-spread", { 9 | "useBuiltIns": true 10 | }] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Sadi Qevani 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. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Vue Pouch DB 2 | 3 | ![Vue Pouch DB](http://i.imgur.com/rFwZVhr.png) 4 | 5 | --- 6 | 7 | Vue Pouch DB is a VueJS Plugin that binds PouchDB with Vue and keeps 8 | a synchronised state with the database. Has support for Mango queries 9 | which are processed locally within the VuePouchDB state. 10 | 11 | #### Install 12 | 13 | Install from NPM: 14 | 15 | ``` 16 | npm install vue-pouch-db --save 17 | ``` 18 | 19 | ## Usage 20 | 21 | Import the Library and Install it into the Vue Instance 22 | 23 | ```javascript 24 | // Import the Library 25 | import VuePouchDB from 'vue-pouch-db'; 26 | 27 | // VuePouchDB Instance 28 | Vue.use(VuePouchDB); 29 | ``` 30 | 31 | ## Vue Pouch DB Bucket 32 | 33 | The bucket is a global config object (schema), that you can set 34 | configurations globally or per database. 35 | 36 | Currently the following keys are plugin specific, these keys have 37 | specific functionality in the Bucket Config Object: 38 | 39 | * config 40 | * plugins 41 | * actions 42 | 43 | --- 44 | 45 | ```javascript 46 | // Bucket - Vue Pouch DB Config Object 47 | // This is a general and fast overview 48 | // How to define bucket initially in the instance 49 | const bucket = new VuePouchDB.Bucket({ 50 | // Main config Object. This is the top level 51 | // config object. Where global config 52 | // are shared with each database. 53 | config: { 54 | // Remote Server 55 | remote: "COUCHDB SERVER", 56 | 57 | // Is DB Remote Only?, default: false 58 | remoteOnly: false, 59 | 60 | // db.allDocs({options}) 61 | allDocs: { 62 | include_docs: true 63 | }, 64 | 65 | // new Pouch({options}) 66 | options: { 67 | ajax: { 68 | cache: true 69 | } 70 | }, 71 | 72 | // Pouch.sync({option}) for every Instance 73 | sync: { 74 | since: 0, 75 | live: true, 76 | retry: true 77 | }, 78 | 79 | // db.changes({option}) 80 | changes: { 81 | since: 'now', 82 | live: true, 83 | include_docs: true 84 | }, 85 | 86 | // Global onChange events 87 | // for each database. 88 | // The functions here are passed to each DB 89 | // db.changes().on(() => {}) 90 | onChanges(change) { 91 | console.log("Change: ", change); 92 | }, 93 | onPaused(error) { 94 | console.log("Paused", error); 95 | }, 96 | onActive() { 97 | console.log("Active"); 98 | }, 99 | onDenied(error) { 100 | console.log("Denied", error); 101 | }, 102 | onComplete() { 103 | console.log("Completed"); 104 | }, 105 | onError(error) { 106 | console.log("Error", error); 107 | }, 108 | cancel(cancel) { 109 | // 'cancel' var is a function to be called 110 | // when something bad happens. It will 111 | // Cancel the watch event on CouchDB 112 | } 113 | }, 114 | 115 | // List of PouchDB plugins 116 | plugins: [ 117 | require('pouchdb-plugin') 118 | ], 119 | 120 | // Actions are shared across the 121 | // bucket instance. 122 | // Think of them as helper methods to bundle 123 | // several sets of commands into a single method. 124 | // Can be accessed through this.$bucket.[method name] 125 | actions: { 126 | addDoc(arg) { 127 | // this is $bucket instance 128 | this.db('projects').({ 129 | _id: 'document_id' 130 | data: {} 131 | }, function () {}); 132 | } 133 | } 134 | 135 | // Databases 136 | // You can define / instanciate 137 | // a per database config file. 138 | // this will put the database into the internal 139 | // state and also, you can define custom "options" 140 | // for the database Instance (on: new PouchDB(options)) 141 | _users: { 142 | // Is remote only ? 143 | // The _users database lives only 144 | // in the server, so its only remote 145 | remoteOnly: true 146 | }, 147 | 148 | // 'projects' key -> Database Name, ex: couchdb.com/projects 149 | projects: { 150 | // PouchDB.sync Options 151 | sync: { 152 | push: { 153 | // config for push 154 | }, 155 | pull: { 156 | filter: 'projects/by_user', 157 | query_params: { "name": "sadi" } 158 | } 159 | } 160 | 161 | } 162 | }); 163 | 164 | // Vue Application Startup 165 | const app = new Vue({ 166 | // Include the Bucket Instance 167 | // into the root Vue application 168 | bucket, 169 | methods: { 170 | // Simple example how to delete a 171 | // document in CouchDB through VuePouchDB 172 | // Keep in mind, that the state is synced 173 | // and when the request is sent to couchdb 174 | // the state will update the object and 175 | // add the property _deleted: true 176 | remove({ _id, _rev }) { 177 | this.$bucket.db('projects').put({ 178 | _id, _rev, 179 | _deleted: true 180 | }); 181 | } 182 | } 183 | }); 184 | ``` 185 | 186 | **For more information regarding the configuration objects, please check 187 | [PouchDB API](https://pouchdb.com/api.html)** 188 | 189 | ## API 190 | 191 | #### this.$bucket 192 | 193 | ###### Example 194 | ```javascript 195 | Vue.component({ 196 | created: { 197 | // Access the internal VuePouchDB state 198 | // the internal state is reactive, and any mingling 199 | // with the state may break the plugin. As it wont 200 | // be able to track changes. 201 | this.$bucket.state; 202 | 203 | // Programmatic way to instantiate a database 204 | // This is the same as setting up dbsetup object 205 | // into the vue component. 206 | this.$bucket.db(dbname, options); 207 | 208 | // Close a database, and remove all its watchers 209 | // and events related to it. 210 | // Internally it will close the DB, delete the internal 211 | // state (not the indexDB database locally) 212 | // remove all the change watchers. 213 | this.$bucket.closedb(dbname); 214 | } 215 | }); 216 | ``` 217 | ----- 218 | 219 | #### this.dbsetup 220 | 221 | `Vue({ dbsetup: {} })` is a shorthand method to instantiate a database within 222 | a component, or to have it referenced internally, without the need to 223 | call a method or predefine it in the Bucket config object. 224 | 225 | ###### Example 226 | ```javascript 227 | Vue.component({ 228 | dbsetup: { 229 | // the database name 230 | // both keys can take a function 231 | // that is bound to the component 232 | // instance 233 | name: "dbname", 234 | // the config object 235 | // When a database is created the "options" 236 | // key is taken from the context and applied 237 | // to the database. 238 | // Note: does not work for already instantiated 239 | // databases. 240 | options: {} 241 | } 242 | }); 243 | ``` 244 | ----- 245 | 246 | #### mapQueries({}) 247 | 248 | mapQueries is a functionality built on top of VuePouchDB, which 249 | takes the database state and filters it. 250 | 251 | **It mainly works with Mango queries, and uses _*[sift](https://github.com/crcn/sift.js)*_ library 252 | to do the querying of the documents.** 253 | 254 | ###### Example 255 | ```javascript 256 | 257 | // Import mapQueries method 258 | import { mapQueries } from 'vue-pouch-db'; 259 | 260 | // Inside a Vue component 261 | Vue.component({ 262 | template: `
{{ this.docs }}, {{ this.files }}
`, 263 | data: function { 264 | return { 265 | dbname: 'projects' 266 | }; 267 | }, 268 | dbsetup: { 269 | name: function () { 270 | // 'this' is bound to the component 271 | // internal state 272 | return { 273 | this.dbname; 274 | }; 275 | }, 276 | options: function () { 277 | return {}; 278 | } 279 | }, 280 | computed: { 281 | ...mapQueries({ 282 | docs: { 283 | type: 'anode' 284 | }, 285 | files: function () { 286 | return { 287 | file: { 288 | $in: ['file'] 289 | } 290 | }; 291 | } 292 | }) 293 | }, 294 | methods: { 295 | addDocs: function (_id, data) { 296 | // You can modify the state 297 | // internally by assigning data 298 | // to the internal computed properties 299 | // and it will update the database automatically 300 | // Can be an object or an Array of items you 301 | // would like to update. 302 | this.docs = { 303 | _id: _id, 304 | type: 'anode', 305 | data: data 306 | }; 307 | } 308 | } 309 | }); 310 | ``` 311 | 312 | ----- 313 | 314 | MIT License 315 | 316 | Copyright (c) 2017 Sadi Qevani 317 | 318 | Permission is hereby granted, free of charge, to any person obtaining a copy 319 | of this software and associated documentation files (the "Software"), to deal 320 | in the Software without restriction, including without limitation the rights 321 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 322 | copies of the Software, and to permit persons to whom the Software is 323 | furnished to do so, subject to the following conditions: 324 | 325 | The above copyright notice and this permission notice shall be included in all 326 | copies or substantial portions of the Software. 327 | 328 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 329 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 330 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 331 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 332 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 333 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 334 | SOFTWARE. 335 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-pouch-db", 3 | "version": "2.0.2", 4 | "description": "Vue Pouch DB is a VueJS Plugin that binds PouchDB with Vue and keeps a synchronised state with the database. Has support for Mango queries which are processed locally within the VuePouchDB state. Edit", 5 | "repository": "https://github.com/QurateInc/vue-pouch-db", 6 | "author": "Sadi Qevani", 7 | "license": "MIT", 8 | "main": "dist/index.js", 9 | "scripts": { 10 | "test": "mocha", 11 | "dev": "cross-env NODE_ENV=development webpack --progress --hide-modules --watch", 12 | "build": "cross-env NODE_ENV=production webpack --progress --hide-modules" 13 | }, 14 | "keywords": [ 15 | "vue", 16 | "pouchdb", 17 | "couchdb", 18 | "pouch", 19 | "couch", 20 | "vue-couchdb", 21 | "vue-couch-db", 22 | "vue-couchdb", 23 | "vue-couch-db", 24 | "vue-pouch", 25 | "vue-pouch-db", 26 | "offline", 27 | "offline-first", 28 | "pwa", 29 | "reactive" 30 | ], 31 | "dependencies": { 32 | "lodash.debounce": "^4.0.8", 33 | "lodash.merge": "^4.6.0", 34 | "pouchdb-browser": "^6.1.1", 35 | "sift": "^3.2.7" 36 | }, 37 | "devDependencies": { 38 | "assert": "^1.4.1", 39 | "babel-core": "^6.0.0", 40 | "babel-loader": "^6.0.0", 41 | "babel-plugin-transform-object-rest-spread": "^6.20.2", 42 | "babel-preset-es2015": "^6.0.0", 43 | "cross-env": "^3.2.4", 44 | "mocha": "^3.2.0", 45 | "vue": "^2.2.4", 46 | "webpack": "^2.2.0" 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Importing 3 | */ 4 | import PouchDB from 'pouchdb-browser'; 5 | 6 | /** 7 | * Utilities 8 | */ 9 | import merge from 'lodash.merge'; 10 | import { 11 | noop, 12 | binarySearch, 13 | expand, 14 | mapQueries 15 | } from './utils'; 16 | 17 | /** 18 | * Internal Global Vue reference 19 | */ 20 | let Vue; 21 | 22 | /** 23 | * Bucket Class 24 | */ 25 | class Bucket { 26 | 27 | /** 28 | * Creating internal state for Bucket 29 | * @param schema 30 | */ 31 | constructor(schema = {}) { 32 | 33 | // Ignore Schema Keys 34 | const ignoredKeys = [ 35 | 'config', 36 | 'plugins', 37 | 'actions' 38 | ]; 39 | 40 | // Internal Config reference 41 | this._config = schema.config; 42 | 43 | // Internal State 44 | this._dbs = {}; 45 | this._watch = {}; 46 | this._state = {}; 47 | 48 | // Throw Error if Global Config not defined 49 | if (!schema.config) throw new Error('[VuePouchDB]: Global Config is not declared in the upper level!'); 50 | 51 | // Referencing Actions to the $bucket 52 | if (schema.actions) merge(this, schema.actions); 53 | 54 | // Init PouchDB plugins 55 | if (Array.isArray(schema.plugins) && (schema.plugins.length > 0)) { 56 | for (let i = 0; i < schema.plugins.length; i += 1) { 57 | PouchDB.plugin(schema.plugins[i]); 58 | } 59 | } 60 | 61 | // Initializing DBs that are declared in the schema{} 62 | Object.keys(schema).forEach((dbname) => { 63 | // If is ignored Key, skip! 64 | if (ignoredKeys.indexOf(dbname) !== -1) return null; 65 | // Initialize the DB 66 | return this._initDB(dbname, merge( 67 | {}, 68 | schema.config, 69 | schema[dbname] 70 | )); 71 | }); 72 | } 73 | 74 | // Delete Object from _state 75 | _deleted(dbname, docID) { 76 | const index = binarySearch(this._state[dbname], docID); 77 | const doc = this._state[dbname][index]; 78 | 79 | // Delete 80 | if (doc && doc._id === docID) { 81 | this._state[dbname].splice(index, 1); 82 | } 83 | } 84 | 85 | // Update or insert state in object 86 | _upsert(dbname, newDoc) { 87 | const index = binarySearch(this._state[dbname], newDoc._id); 88 | const doc = this._state[dbname][index]; 89 | 90 | // Update 91 | if (doc && doc._id === newDoc._id) { 92 | // Make Reactive 93 | Vue.set(this._state[dbname], index, newDoc); 94 | } else { 95 | // Insert an Empty object to reserve the index 96 | this._state[dbname].splice(index, 0, {}); 97 | // Set the reactive data 98 | Vue.set(this._state[dbname], index, newDoc); 99 | } 100 | } 101 | 102 | /** 103 | * Relax, and send the request to CouchDB 104 | * @param options 105 | * @private 106 | */ 107 | _relax(options) { 108 | return fetch(`${this._config.remote}/${options.url}`, 109 | merge({ 110 | credentials: 'include', 111 | headers: { 'Content-Type': 'application/json' } 112 | }, options, { body: JSON.stringify(options.body) } 113 | )).then(response => response.json()); 114 | } 115 | 116 | /** 117 | * Init Database 118 | * @param dbname 119 | * @param config 120 | * @returns {*} 121 | * @private 122 | */ 123 | _initDB(dbname, config = {}) { 124 | // If DB Exists return it 125 | if (this._dbs[dbname]) { 126 | return this._dbs[dbname]; 127 | } 128 | 129 | // Init only remote 130 | if (config.remoteOnly) { 131 | this._dbs[dbname] = new PouchDB( 132 | `${config.remote}/${dbname}`, 133 | config.options 134 | ); 135 | return this._dbs[dbname]; 136 | } 137 | 138 | // Init DB 139 | this._dbs[dbname] = new PouchDB(dbname, config.options); 140 | 141 | // Populate state with data 142 | this._dbs[dbname].allDocs(config.allDocs).then((data) => { 143 | return Vue.set(this._state, dbname, data.rows.map((row) => row.doc)); 144 | }); 145 | 146 | // Sync DB 147 | PouchDB.sync( 148 | dbname, 149 | `${config.remote}/${dbname}`, 150 | config.sync 151 | ); 152 | 153 | // Start detecting changes 154 | this._initChanges(dbname, config); 155 | 156 | // Return instance 157 | return this._dbs[dbname]; 158 | } 159 | 160 | _initChanges(dbname, config) { 161 | // Detect Changes and update the _state tree 162 | const dbChanges = this._dbs[dbname].changes(config.changes).on('change', (change) => { 163 | if (change.deleted) { 164 | this._deleted(dbname, change.id); 165 | } else { 166 | this._upsert(dbname, change.doc); 167 | } 168 | return config.onChanges && config.onChanges(change); 169 | }).on('complete', (complete) => { 170 | if (complete.results) { 171 | complete.results.forEach((change) => { 172 | if (change.deleted) { 173 | this._deleted(dbname, change.id); 174 | } else { 175 | this._upsert(dbname, change.doc); 176 | } 177 | }); 178 | } 179 | return config.onComplete && config.onComplete(complete); 180 | }).on('error', config.onError || noop) 181 | .on('paused', config.onPaused || noop) 182 | .on('active', config.onActive || noop) 183 | .on('denied', config.onDenied || noop); 184 | 185 | // Calling the Cancel function 186 | config.cancel && config.cancel(dbChanges.cancel); 187 | 188 | // Set Max Listeners 189 | dbChanges.setMaxListeners(1000); 190 | 191 | // Reference all Subscriptions 192 | this._watch[dbname] = dbChanges; 193 | 194 | // Returning the Watch 195 | return this._watch[dbname]; 196 | } 197 | 198 | /** 199 | * Reference internal state 200 | */ 201 | get state() { 202 | return this._state; 203 | } 204 | 205 | /** 206 | * Don't let the state be overwritten from outside 207 | */ 208 | set state(value) { 209 | console.error( 210 | `[VuePouchDB]: Do not replace the entire state! 211 | VuePouchDB takes care of the updates internally, 212 | change the DB instead!` 213 | ); 214 | return undefined; 215 | } 216 | 217 | /** 218 | * DB Accessor 219 | * @param dbname 220 | * @param config 221 | * @returns {*} 222 | */ 223 | db(dbname, config = {}) { 224 | return this._initDB(dbname, merge({}, this._config, config)); 225 | } 226 | 227 | /** 228 | * Closing the DB and removing all the change watchers and state. 229 | * @param dbname 230 | * @returns {Promise} 231 | */ 232 | closedb(dbname) { 233 | // If db does not exist, skip. 234 | if (!this._dbs[dbname]) return null; 235 | // If the DB is already closed, simply skip. 236 | if (this._dbs[dbname]._closed) return null; 237 | // Close the DB and return Promise 238 | return new Promise((resolve, reject) => { 239 | // Closing the DB 240 | this._dbs[dbname].close().then((response) => { 241 | // Canceling the Change Event 242 | this._watch[dbname].cancel(); 243 | // Deleting internal db reference 244 | delete this._dbs[dbname]; 245 | // Removing the State of the DB 246 | Vue.delete(this._state, dbname); 247 | // Deleting internal watch reference 248 | delete this._watch[dbname]; 249 | // Resolving Promise 250 | return resolve(response); 251 | }).catch(reject); 252 | }); 253 | } 254 | } 255 | 256 | /** 257 | * Exporting public utility functions 258 | */ 259 | export { 260 | mapQueries 261 | }; 262 | 263 | /** 264 | * Exporting 265 | **/ 266 | export default { 267 | // Bucket Class 268 | Bucket, 269 | 270 | // Install Plugin 271 | install($Vue) { 272 | 273 | // Checking if Vue is Installed 274 | if (Vue) throw new Error('[VuePouchDB] already installed. Vue.use(VuePouchDB) should be called only once.'); 275 | 276 | // Making Vue globally available 277 | Vue = $Vue; 278 | 279 | // Get Util Functions 280 | const { defineReactive } = Vue.util; 281 | 282 | // Check Version Number 283 | const version = Number(Vue.version.split('.')[0]); 284 | 285 | /** 286 | * Setup the internal $dbsetup object 287 | * @param dbsetup 288 | */ 289 | function $dbsetup() { 290 | // If dbsetup does not exist, terminate! 291 | if (!this.$options.dbsetup) return null; 292 | // Getting DB Setup 293 | const { dbsetup } = this.$options; 294 | // Compile the Object and assign it to the instance 295 | return merge(this, { 296 | $dbsetup: Object.keys(dbsetup).reduce((db, prop) => merge(db, { 297 | [prop]: expand(dbsetup[prop] || {}, this) 298 | }), {}) 299 | }); 300 | } 301 | 302 | /** 303 | * Vuex init hook, injected into each instances init hooks list. 304 | */ 305 | function bucketInit () { 306 | // Getting Options 307 | const options = this.$options; 308 | // Bucket injection 309 | if (options.bucket) { 310 | // Getting the core $bucket 311 | this.$bucket = options.bucket; 312 | // Define Reactive state 313 | defineReactive(this.$bucket, '_state', options.bucket._state); 314 | } else if (options.parent && options.parent.$bucket) { 315 | // Getting parent bucket 316 | this.$bucket = options.parent.$bucket; 317 | } 318 | } 319 | 320 | /** 321 | * Based on dbsetup object, configure the Database 322 | */ 323 | function dbCreated() { 324 | // Compiling this.$options.dbsetup to have local component variables 325 | $dbsetup.call(this); 326 | // If dbsetup does not exist, terminate! 327 | if (!this.$dbsetup) return null; 328 | // Setting up the database 329 | return this.$bucket.db(this.$dbsetup.name, this.$dbsetup.options); 330 | } 331 | 332 | /** 333 | * Close DB connections when component gets Destroyed 334 | */ 335 | function dbDestroy() { 336 | // If dbsetup does not exist, terminate! 337 | if (!this.$dbsetup) return null; 338 | // Closing the DB Connection on component destroy 339 | return this.$bucket.closedb(this.$dbsetup.name); 340 | } 341 | 342 | // Check Version 343 | if (version >= 2) { 344 | const usesInit = Vue.config._lifecycleHooks.indexOf('init') > -1; 345 | Vue.mixin(usesInit ? { 346 | init: bucketInit, 347 | created: dbCreated, 348 | beforeDestroy: dbDestroy 349 | } : { 350 | beforeCreate: bucketInit, 351 | created: dbCreated, 352 | activated: dbCreated, 353 | deactivated: dbDestroy, 354 | beforeDestroy: dbDestroy 355 | }); 356 | } else { 357 | // override init and inject VuePouchDB init procedure 358 | // for 1.x backwards compatibility. 359 | const _init = Vue.prototype._init; 360 | // Initializing the bucket 361 | Vue.prototype._init = function VueInit(options = {}) { 362 | options.init = options.init 363 | ? [bucketInit].concat(options.init) 364 | : bucketInit; 365 | _init.call(this, options); 366 | }; 367 | } 368 | } 369 | }; 370 | 371 | /** 372 | * Making PouchDB Available for Debugging 373 | */ 374 | if (process.env.NODE_ENV !== 'production') { 375 | window.PouchDB = PouchDB; 376 | } 377 | -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Importing 3 | */ 4 | import sift from 'sift'; 5 | import debounce from 'lodash.debounce'; 6 | import merge from 'lodash.merge'; 7 | 8 | /** 9 | * Noop Function 10 | */ 11 | export const noop = () => {}; 12 | 13 | /** 14 | * Executes a function based on context, and returns the value 15 | */ 16 | export const expand = (fn, context = null) => { 17 | return typeof fn === 'function' ? fn.call(context) : fn; 18 | }; 19 | 20 | /** 21 | * Maps Databases to an Object list 22 | * @param queries 23 | * @returns {*} 24 | */ 25 | export const mapQueries = function mapQueries(queries) { 26 | return Object.keys(queries).reduce((db, name) => { 27 | return merge(db, { 28 | [name]: { 29 | // Return the filtered results of the anodes 30 | get: function getterComputedQueries() { 31 | // If dbsetup does not exist, throw Error! 32 | if (!this.$dbsetup) throw new Error('[VuePouchDB] dbsetup does not exist!'); 33 | // Setting up the Queries 34 | // TODO: memoize/cache this function 35 | return (this.$bucket.state[this.$dbsetup.name] || []).filter( 36 | sift(expand(queries[name], this) || {}) 37 | ); 38 | }, 39 | // When setting wait 500ms before executing the function 40 | // also multiple calls to the set, wont cause any major issue 41 | set: debounce(function setterComputedQueries(value) { 42 | // If dbsetup does not exist, throw Error! 43 | if (!this.$dbsetup) throw new Error('[VuePouchDB] dbsetup does not exist!'); 44 | // Adding the Data to the Database 45 | return this.$bucket 46 | .db(this.$dbsetup.name) 47 | // TODO: Check if the Value is an Array 48 | // and then make sure the final value is an array 49 | // maybe adding some prop checking 50 | // or some other checking would be good! 51 | .bulkDocs(((Array.isArray(value)) ? value : [value])) 52 | .catch((err) => { throw new Error(`[VuePouchDB] ${err}`); }); 53 | }, 500) 54 | } 55 | }); 56 | }, {}); 57 | }; 58 | 59 | /** 60 | * Binary Search for Arrays 61 | */ 62 | export const binarySearch = (arr, docId) => { 63 | let low = 0; 64 | let high = arr.length; 65 | let mid; 66 | // Traverse 67 | while (low < high) { 68 | mid = (low + high) >>> 1; 69 | arr[mid]._id < docId ? low = mid + 1 : high = mid; 70 | } 71 | return low; 72 | }; 73 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Assert Library 3 | */ 4 | var assert = require('assert'); 5 | var Vue = require("../node_modules/vue/dist/vue.common"); 6 | var VuePouchDB = require("../dist/index").default; 7 | 8 | /** 9 | * Plugins 10 | */ 11 | Vue.use(VuePouchDB); 12 | 13 | console.log(VuePouchDB); 14 | 15 | // Bucket Config / Startup Object 16 | const bucket = new VuePouchDB.Bucket({ 17 | config: { 18 | // Remote Server 19 | remote: "COUCHDB SERVER", 20 | 21 | // Is DB Remote Only?, default: false 22 | remoteOnly: false, 23 | 24 | // db.allDocs({options}) 25 | allDocs: { 26 | include_docs: true 27 | }, 28 | 29 | // new Pouch({options}) 30 | options: { 31 | ajax: { 32 | cache: true 33 | } 34 | }, 35 | 36 | // Pouch.sync({option}) for every Instance 37 | sync: { 38 | since: 0, 39 | live: true, 40 | retry: true 41 | }, 42 | 43 | // db.changes({option}) 44 | changes: { 45 | since: 'now', 46 | live: true, 47 | include_docs: true 48 | }, 49 | 50 | // db.changes().on(() => {}) 51 | onChanges(change) { 52 | console.log("Change: ", change); 53 | }, 54 | onPaused(error) { 55 | console.log("Paused", error); 56 | }, 57 | onActive() { 58 | console.log("Active"); 59 | }, 60 | onDenied(error) { 61 | console.log("Denied", error); 62 | }, 63 | onComplete() { 64 | console.log("Completed"); 65 | }, 66 | onError(error) { 67 | console.log("Error", error); 68 | }, 69 | cancel(cancel) { 70 | // Something bad Happens, cancel this! 71 | } 72 | }, 73 | 74 | // Plugins 75 | plugins: [], 76 | 77 | // Databases 78 | _users: { 79 | // Is remote only ? 80 | remoteOnly: true 81 | }, 82 | 83 | // Projects 84 | projects: { 85 | // PouchDB.sync Options 86 | sync: { 87 | pull: { 88 | filter: 'projects/by_user', 89 | query_params: { "name": "sadiqevani" } 90 | } 91 | } 92 | 93 | } 94 | }); 95 | 96 | // Vue Application Startup 97 | const app = new Vue({ 98 | bucket, 99 | methods: { 100 | remove({ _id, _rev }) { 101 | this.$bucket.db('projects').put({ 102 | _id, _rev, 103 | _deleted: true 104 | }); 105 | } 106 | }, 107 | computed: { 108 | projects() { 109 | return this.$bucket.state.projects; 110 | } 111 | } 112 | }); 113 | 114 | /** 115 | * Tests 116 | */ 117 | describe('Vue Pouch DB', function() { 118 | 119 | describe('#Vue.use(VuePouchDB)', function() { 120 | 121 | it("should be defined", function () { 122 | assert(Vue); 123 | assert(VuePouchDB); 124 | assert(app); 125 | }); 126 | 127 | }); 128 | }); 129 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Importing 3 | */ 4 | let path = require('path'); 5 | let webpack = require('webpack'); 6 | 7 | /** 8 | * Build 9 | */ 10 | module.exports = { 11 | entry: { 12 | index: './src/index.js' 13 | }, 14 | output: { 15 | path: path.resolve('dist'), 16 | filename: '[name].js', 17 | library: "vue-pouch-db", 18 | libraryTarget: 'umd', 19 | umdNamedDefine: true 20 | }, 21 | module: { 22 | rules: [{ 23 | loader: 'babel-loader', 24 | test: /\.js$/, 25 | exclude: /node_modules/ 26 | }] 27 | }, 28 | plugins: [ 29 | new webpack.DefinePlugin({ 30 | 'process.env': { NODE_ENV: JSON.stringify(process.env.NODE_ENV) } 31 | }) 32 | ], 33 | devtool: 'eval-source-map' 34 | }; 35 | 36 | if (process.env.NODE_ENV === 'production') { 37 | // Source Maps 38 | module.exports.devtool = 'source-map'; 39 | // http://vue-loader.vuejs.org/en/workflow/production.html 40 | module.exports.plugins = (module.exports.plugins || []).concat([ 41 | new webpack.optimize.UglifyJsPlugin({ 42 | compress: { warnings: false } 43 | }), 44 | new webpack.LoaderOptionsPlugin({ 45 | minimize: true 46 | }) 47 | ]) 48 | } 49 | -------------------------------------------------------------------------------- /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.1.1" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 8 | 9 | acorn-dynamic-import@^2.0.0: 10 | version "2.0.2" 11 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 12 | dependencies: 13 | acorn "^4.0.3" 14 | 15 | acorn@^4.0.3: 16 | version "4.0.13" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 18 | 19 | acorn@^5.0.0: 20 | version "5.2.1" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.2.1.tgz#317ac7821826c22c702d66189ab8359675f135d7" 22 | 23 | ajv-keywords@^1.1.1: 24 | version "1.5.1" 25 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 26 | 27 | ajv@^4.7.0, ajv@^4.9.1: 28 | version "4.11.8" 29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 30 | dependencies: 31 | co "^4.6.0" 32 | json-stable-stringify "^1.0.1" 33 | 34 | align-text@^0.1.1, align-text@^0.1.3: 35 | version "0.1.4" 36 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 37 | dependencies: 38 | kind-of "^3.0.2" 39 | longest "^1.0.1" 40 | repeat-string "^1.5.2" 41 | 42 | ansi-regex@^2.0.0: 43 | version "2.1.1" 44 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 45 | 46 | ansi-styles@^2.2.1: 47 | version "2.2.1" 48 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 49 | 50 | anymatch@^1.3.0: 51 | version "1.3.2" 52 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 53 | dependencies: 54 | micromatch "^2.1.5" 55 | normalize-path "^2.0.0" 56 | 57 | aproba@^1.0.3: 58 | version "1.2.0" 59 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 60 | 61 | are-we-there-yet@~1.1.2: 62 | version "1.1.4" 63 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 64 | dependencies: 65 | delegates "^1.0.0" 66 | readable-stream "^2.0.6" 67 | 68 | argsarray@0.0.1: 69 | version "0.0.1" 70 | resolved "https://registry.yarnpkg.com/argsarray/-/argsarray-0.0.1.tgz#6e7207b4ecdb39b0af88303fa5ae22bda8df61cb" 71 | 72 | arr-diff@^2.0.0: 73 | version "2.0.0" 74 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 75 | dependencies: 76 | arr-flatten "^1.0.1" 77 | 78 | arr-flatten@^1.0.1: 79 | version "1.1.0" 80 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 81 | 82 | array-unique@^0.2.1: 83 | version "0.2.1" 84 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 85 | 86 | asn1.js@^4.0.0: 87 | version "4.9.2" 88 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.2.tgz#8117ef4f7ed87cd8f89044b5bff97ac243a16c9a" 89 | dependencies: 90 | bn.js "^4.0.0" 91 | inherits "^2.0.1" 92 | minimalistic-assert "^1.0.0" 93 | 94 | asn1@~0.2.3: 95 | version "0.2.3" 96 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 97 | 98 | assert-plus@1.0.0, assert-plus@^1.0.0: 99 | version "1.0.0" 100 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 101 | 102 | assert-plus@^0.2.0: 103 | version "0.2.0" 104 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 105 | 106 | assert@^1.1.1, assert@^1.4.1: 107 | version "1.4.1" 108 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 109 | dependencies: 110 | util "0.10.3" 111 | 112 | async-each@^1.0.0: 113 | version "1.0.1" 114 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 115 | 116 | async@^2.1.2: 117 | version "2.6.0" 118 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 119 | dependencies: 120 | lodash "^4.14.0" 121 | 122 | asynckit@^0.4.0: 123 | version "0.4.0" 124 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 125 | 126 | aws-sign2@~0.6.0: 127 | version "0.6.0" 128 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 129 | 130 | aws4@^1.2.1: 131 | version "1.6.0" 132 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 133 | 134 | babel-code-frame@^6.26.0: 135 | version "6.26.0" 136 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 137 | dependencies: 138 | chalk "^1.1.3" 139 | esutils "^2.0.2" 140 | js-tokens "^3.0.2" 141 | 142 | babel-core@^6.0.0, babel-core@^6.26.0: 143 | version "6.26.0" 144 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 145 | dependencies: 146 | babel-code-frame "^6.26.0" 147 | babel-generator "^6.26.0" 148 | babel-helpers "^6.24.1" 149 | babel-messages "^6.23.0" 150 | babel-register "^6.26.0" 151 | babel-runtime "^6.26.0" 152 | babel-template "^6.26.0" 153 | babel-traverse "^6.26.0" 154 | babel-types "^6.26.0" 155 | babylon "^6.18.0" 156 | convert-source-map "^1.5.0" 157 | debug "^2.6.8" 158 | json5 "^0.5.1" 159 | lodash "^4.17.4" 160 | minimatch "^3.0.4" 161 | path-is-absolute "^1.0.1" 162 | private "^0.1.7" 163 | slash "^1.0.0" 164 | source-map "^0.5.6" 165 | 166 | babel-generator@^6.26.0: 167 | version "6.26.0" 168 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 169 | dependencies: 170 | babel-messages "^6.23.0" 171 | babel-runtime "^6.26.0" 172 | babel-types "^6.26.0" 173 | detect-indent "^4.0.0" 174 | jsesc "^1.3.0" 175 | lodash "^4.17.4" 176 | source-map "^0.5.6" 177 | trim-right "^1.0.1" 178 | 179 | babel-helper-call-delegate@^6.24.1: 180 | version "6.24.1" 181 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 182 | dependencies: 183 | babel-helper-hoist-variables "^6.24.1" 184 | babel-runtime "^6.22.0" 185 | babel-traverse "^6.24.1" 186 | babel-types "^6.24.1" 187 | 188 | babel-helper-define-map@^6.24.1: 189 | version "6.26.0" 190 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 191 | dependencies: 192 | babel-helper-function-name "^6.24.1" 193 | babel-runtime "^6.26.0" 194 | babel-types "^6.26.0" 195 | lodash "^4.17.4" 196 | 197 | babel-helper-function-name@^6.24.1: 198 | version "6.24.1" 199 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 200 | dependencies: 201 | babel-helper-get-function-arity "^6.24.1" 202 | babel-runtime "^6.22.0" 203 | babel-template "^6.24.1" 204 | babel-traverse "^6.24.1" 205 | babel-types "^6.24.1" 206 | 207 | babel-helper-get-function-arity@^6.24.1: 208 | version "6.24.1" 209 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 210 | dependencies: 211 | babel-runtime "^6.22.0" 212 | babel-types "^6.24.1" 213 | 214 | babel-helper-hoist-variables@^6.24.1: 215 | version "6.24.1" 216 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 217 | dependencies: 218 | babel-runtime "^6.22.0" 219 | babel-types "^6.24.1" 220 | 221 | babel-helper-optimise-call-expression@^6.24.1: 222 | version "6.24.1" 223 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 224 | dependencies: 225 | babel-runtime "^6.22.0" 226 | babel-types "^6.24.1" 227 | 228 | babel-helper-regex@^6.24.1: 229 | version "6.26.0" 230 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 231 | dependencies: 232 | babel-runtime "^6.26.0" 233 | babel-types "^6.26.0" 234 | lodash "^4.17.4" 235 | 236 | babel-helper-replace-supers@^6.24.1: 237 | version "6.24.1" 238 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 239 | dependencies: 240 | babel-helper-optimise-call-expression "^6.24.1" 241 | babel-messages "^6.23.0" 242 | babel-runtime "^6.22.0" 243 | babel-template "^6.24.1" 244 | babel-traverse "^6.24.1" 245 | babel-types "^6.24.1" 246 | 247 | babel-helpers@^6.24.1: 248 | version "6.24.1" 249 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 250 | dependencies: 251 | babel-runtime "^6.22.0" 252 | babel-template "^6.24.1" 253 | 254 | babel-loader@^6.0.0: 255 | version "6.4.1" 256 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.4.1.tgz#0b34112d5b0748a8dcdbf51acf6f9bd42d50b8ca" 257 | dependencies: 258 | find-cache-dir "^0.1.1" 259 | loader-utils "^0.2.16" 260 | mkdirp "^0.5.1" 261 | object-assign "^4.0.1" 262 | 263 | babel-messages@^6.23.0: 264 | version "6.23.0" 265 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 266 | dependencies: 267 | babel-runtime "^6.22.0" 268 | 269 | babel-plugin-check-es2015-constants@^6.22.0: 270 | version "6.22.0" 271 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 272 | dependencies: 273 | babel-runtime "^6.22.0" 274 | 275 | babel-plugin-syntax-object-rest-spread@^6.8.0: 276 | version "6.13.0" 277 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 278 | 279 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 280 | version "6.22.0" 281 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 282 | dependencies: 283 | babel-runtime "^6.22.0" 284 | 285 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 286 | version "6.22.0" 287 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 288 | dependencies: 289 | babel-runtime "^6.22.0" 290 | 291 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 292 | version "6.26.0" 293 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 294 | dependencies: 295 | babel-runtime "^6.26.0" 296 | babel-template "^6.26.0" 297 | babel-traverse "^6.26.0" 298 | babel-types "^6.26.0" 299 | lodash "^4.17.4" 300 | 301 | babel-plugin-transform-es2015-classes@^6.24.1: 302 | version "6.24.1" 303 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 304 | dependencies: 305 | babel-helper-define-map "^6.24.1" 306 | babel-helper-function-name "^6.24.1" 307 | babel-helper-optimise-call-expression "^6.24.1" 308 | babel-helper-replace-supers "^6.24.1" 309 | babel-messages "^6.23.0" 310 | babel-runtime "^6.22.0" 311 | babel-template "^6.24.1" 312 | babel-traverse "^6.24.1" 313 | babel-types "^6.24.1" 314 | 315 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 316 | version "6.24.1" 317 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 318 | dependencies: 319 | babel-runtime "^6.22.0" 320 | babel-template "^6.24.1" 321 | 322 | babel-plugin-transform-es2015-destructuring@^6.22.0: 323 | version "6.23.0" 324 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 325 | dependencies: 326 | babel-runtime "^6.22.0" 327 | 328 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 329 | version "6.24.1" 330 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 331 | dependencies: 332 | babel-runtime "^6.22.0" 333 | babel-types "^6.24.1" 334 | 335 | babel-plugin-transform-es2015-for-of@^6.22.0: 336 | version "6.23.0" 337 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 338 | dependencies: 339 | babel-runtime "^6.22.0" 340 | 341 | babel-plugin-transform-es2015-function-name@^6.24.1: 342 | version "6.24.1" 343 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 344 | dependencies: 345 | babel-helper-function-name "^6.24.1" 346 | babel-runtime "^6.22.0" 347 | babel-types "^6.24.1" 348 | 349 | babel-plugin-transform-es2015-literals@^6.22.0: 350 | version "6.22.0" 351 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 352 | dependencies: 353 | babel-runtime "^6.22.0" 354 | 355 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 356 | version "6.24.1" 357 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 358 | dependencies: 359 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 360 | babel-runtime "^6.22.0" 361 | babel-template "^6.24.1" 362 | 363 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 364 | version "6.26.0" 365 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 366 | dependencies: 367 | babel-plugin-transform-strict-mode "^6.24.1" 368 | babel-runtime "^6.26.0" 369 | babel-template "^6.26.0" 370 | babel-types "^6.26.0" 371 | 372 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 373 | version "6.24.1" 374 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 375 | dependencies: 376 | babel-helper-hoist-variables "^6.24.1" 377 | babel-runtime "^6.22.0" 378 | babel-template "^6.24.1" 379 | 380 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 381 | version "6.24.1" 382 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 383 | dependencies: 384 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 385 | babel-runtime "^6.22.0" 386 | babel-template "^6.24.1" 387 | 388 | babel-plugin-transform-es2015-object-super@^6.24.1: 389 | version "6.24.1" 390 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 391 | dependencies: 392 | babel-helper-replace-supers "^6.24.1" 393 | babel-runtime "^6.22.0" 394 | 395 | babel-plugin-transform-es2015-parameters@^6.24.1: 396 | version "6.24.1" 397 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 398 | dependencies: 399 | babel-helper-call-delegate "^6.24.1" 400 | babel-helper-get-function-arity "^6.24.1" 401 | babel-runtime "^6.22.0" 402 | babel-template "^6.24.1" 403 | babel-traverse "^6.24.1" 404 | babel-types "^6.24.1" 405 | 406 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 407 | version "6.24.1" 408 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 409 | dependencies: 410 | babel-runtime "^6.22.0" 411 | babel-types "^6.24.1" 412 | 413 | babel-plugin-transform-es2015-spread@^6.22.0: 414 | version "6.22.0" 415 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 416 | dependencies: 417 | babel-runtime "^6.22.0" 418 | 419 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 420 | version "6.24.1" 421 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 422 | dependencies: 423 | babel-helper-regex "^6.24.1" 424 | babel-runtime "^6.22.0" 425 | babel-types "^6.24.1" 426 | 427 | babel-plugin-transform-es2015-template-literals@^6.22.0: 428 | version "6.22.0" 429 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 430 | dependencies: 431 | babel-runtime "^6.22.0" 432 | 433 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 434 | version "6.23.0" 435 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 436 | dependencies: 437 | babel-runtime "^6.22.0" 438 | 439 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 440 | version "6.24.1" 441 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 442 | dependencies: 443 | babel-helper-regex "^6.24.1" 444 | babel-runtime "^6.22.0" 445 | regexpu-core "^2.0.0" 446 | 447 | babel-plugin-transform-object-rest-spread@^6.20.2: 448 | version "6.26.0" 449 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 450 | dependencies: 451 | babel-plugin-syntax-object-rest-spread "^6.8.0" 452 | babel-runtime "^6.26.0" 453 | 454 | babel-plugin-transform-regenerator@^6.24.1: 455 | version "6.26.0" 456 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 457 | dependencies: 458 | regenerator-transform "^0.10.0" 459 | 460 | babel-plugin-transform-strict-mode@^6.24.1: 461 | version "6.24.1" 462 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 463 | dependencies: 464 | babel-runtime "^6.22.0" 465 | babel-types "^6.24.1" 466 | 467 | babel-preset-es2015@^6.0.0: 468 | version "6.24.1" 469 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 470 | dependencies: 471 | babel-plugin-check-es2015-constants "^6.22.0" 472 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 473 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 474 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 475 | babel-plugin-transform-es2015-classes "^6.24.1" 476 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 477 | babel-plugin-transform-es2015-destructuring "^6.22.0" 478 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 479 | babel-plugin-transform-es2015-for-of "^6.22.0" 480 | babel-plugin-transform-es2015-function-name "^6.24.1" 481 | babel-plugin-transform-es2015-literals "^6.22.0" 482 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 483 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 484 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 485 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 486 | babel-plugin-transform-es2015-object-super "^6.24.1" 487 | babel-plugin-transform-es2015-parameters "^6.24.1" 488 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 489 | babel-plugin-transform-es2015-spread "^6.22.0" 490 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 491 | babel-plugin-transform-es2015-template-literals "^6.22.0" 492 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 493 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 494 | babel-plugin-transform-regenerator "^6.24.1" 495 | 496 | babel-register@^6.26.0: 497 | version "6.26.0" 498 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 499 | dependencies: 500 | babel-core "^6.26.0" 501 | babel-runtime "^6.26.0" 502 | core-js "^2.5.0" 503 | home-or-tmp "^2.0.0" 504 | lodash "^4.17.4" 505 | mkdirp "^0.5.1" 506 | source-map-support "^0.4.15" 507 | 508 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 509 | version "6.26.0" 510 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 511 | dependencies: 512 | core-js "^2.4.0" 513 | regenerator-runtime "^0.11.0" 514 | 515 | babel-template@^6.24.1, babel-template@^6.26.0: 516 | version "6.26.0" 517 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 518 | dependencies: 519 | babel-runtime "^6.26.0" 520 | babel-traverse "^6.26.0" 521 | babel-types "^6.26.0" 522 | babylon "^6.18.0" 523 | lodash "^4.17.4" 524 | 525 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 526 | version "6.26.0" 527 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 528 | dependencies: 529 | babel-code-frame "^6.26.0" 530 | babel-messages "^6.23.0" 531 | babel-runtime "^6.26.0" 532 | babel-types "^6.26.0" 533 | babylon "^6.18.0" 534 | debug "^2.6.8" 535 | globals "^9.18.0" 536 | invariant "^2.2.2" 537 | lodash "^4.17.4" 538 | 539 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 540 | version "6.26.0" 541 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 542 | dependencies: 543 | babel-runtime "^6.26.0" 544 | esutils "^2.0.2" 545 | lodash "^4.17.4" 546 | to-fast-properties "^1.0.3" 547 | 548 | babylon@^6.18.0: 549 | version "6.18.0" 550 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 551 | 552 | balanced-match@^1.0.0: 553 | version "1.0.0" 554 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 555 | 556 | base64-js@^1.0.2: 557 | version "1.2.1" 558 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" 559 | 560 | bcrypt-pbkdf@^1.0.0: 561 | version "1.0.1" 562 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 563 | dependencies: 564 | tweetnacl "^0.14.3" 565 | 566 | big.js@^3.1.3: 567 | version "3.2.0" 568 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" 569 | 570 | binary-extensions@^1.0.0: 571 | version "1.10.0" 572 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" 573 | 574 | block-stream@*: 575 | version "0.0.9" 576 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 577 | dependencies: 578 | inherits "~2.0.0" 579 | 580 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 581 | version "4.11.8" 582 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 583 | 584 | boom@2.x.x: 585 | version "2.10.1" 586 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 587 | dependencies: 588 | hoek "2.x.x" 589 | 590 | brace-expansion@^1.1.7: 591 | version "1.1.8" 592 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 593 | dependencies: 594 | balanced-match "^1.0.0" 595 | concat-map "0.0.1" 596 | 597 | braces@^1.8.2: 598 | version "1.8.5" 599 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 600 | dependencies: 601 | expand-range "^1.8.1" 602 | preserve "^0.2.0" 603 | repeat-element "^1.1.2" 604 | 605 | brorand@^1.0.1: 606 | version "1.1.0" 607 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 608 | 609 | browser-stdout@1.3.0: 610 | version "1.3.0" 611 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 612 | 613 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 614 | version "1.1.1" 615 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f" 616 | dependencies: 617 | buffer-xor "^1.0.3" 618 | cipher-base "^1.0.0" 619 | create-hash "^1.1.0" 620 | evp_bytestokey "^1.0.3" 621 | inherits "^2.0.1" 622 | safe-buffer "^5.0.1" 623 | 624 | browserify-cipher@^1.0.0: 625 | version "1.0.0" 626 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 627 | dependencies: 628 | browserify-aes "^1.0.4" 629 | browserify-des "^1.0.0" 630 | evp_bytestokey "^1.0.0" 631 | 632 | browserify-des@^1.0.0: 633 | version "1.0.0" 634 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 635 | dependencies: 636 | cipher-base "^1.0.1" 637 | des.js "^1.0.0" 638 | inherits "^2.0.1" 639 | 640 | browserify-rsa@^4.0.0: 641 | version "4.0.1" 642 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 643 | dependencies: 644 | bn.js "^4.1.0" 645 | randombytes "^2.0.1" 646 | 647 | browserify-sign@^4.0.0: 648 | version "4.0.4" 649 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 650 | dependencies: 651 | bn.js "^4.1.1" 652 | browserify-rsa "^4.0.0" 653 | create-hash "^1.1.0" 654 | create-hmac "^1.1.2" 655 | elliptic "^6.0.0" 656 | inherits "^2.0.1" 657 | parse-asn1 "^5.0.0" 658 | 659 | browserify-zlib@^0.1.4: 660 | version "0.1.4" 661 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 662 | dependencies: 663 | pako "~0.2.0" 664 | 665 | buffer-xor@^1.0.3: 666 | version "1.0.3" 667 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 668 | 669 | buffer@^4.3.0: 670 | version "4.9.1" 671 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 672 | dependencies: 673 | base64-js "^1.0.2" 674 | ieee754 "^1.1.4" 675 | isarray "^1.0.0" 676 | 677 | builtin-modules@^1.0.0: 678 | version "1.1.1" 679 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 680 | 681 | builtin-status-codes@^3.0.0: 682 | version "3.0.0" 683 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 684 | 685 | camelcase@^1.0.2: 686 | version "1.2.1" 687 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 688 | 689 | camelcase@^3.0.0: 690 | version "3.0.0" 691 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 692 | 693 | caseless@~0.12.0: 694 | version "0.12.0" 695 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 696 | 697 | center-align@^0.1.1: 698 | version "0.1.3" 699 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 700 | dependencies: 701 | align-text "^0.1.3" 702 | lazy-cache "^1.0.3" 703 | 704 | chalk@^1.1.3: 705 | version "1.1.3" 706 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 707 | dependencies: 708 | ansi-styles "^2.2.1" 709 | escape-string-regexp "^1.0.2" 710 | has-ansi "^2.0.0" 711 | strip-ansi "^3.0.0" 712 | supports-color "^2.0.0" 713 | 714 | chokidar@^1.7.0: 715 | version "1.7.0" 716 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 717 | dependencies: 718 | anymatch "^1.3.0" 719 | async-each "^1.0.0" 720 | glob-parent "^2.0.0" 721 | inherits "^2.0.1" 722 | is-binary-path "^1.0.0" 723 | is-glob "^2.0.0" 724 | path-is-absolute "^1.0.0" 725 | readdirp "^2.0.0" 726 | optionalDependencies: 727 | fsevents "^1.0.0" 728 | 729 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 730 | version "1.0.4" 731 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 732 | dependencies: 733 | inherits "^2.0.1" 734 | safe-buffer "^5.0.1" 735 | 736 | cliui@^2.1.0: 737 | version "2.1.0" 738 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 739 | dependencies: 740 | center-align "^0.1.1" 741 | right-align "^0.1.1" 742 | wordwrap "0.0.2" 743 | 744 | cliui@^3.2.0: 745 | version "3.2.0" 746 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 747 | dependencies: 748 | string-width "^1.0.1" 749 | strip-ansi "^3.0.1" 750 | wrap-ansi "^2.0.0" 751 | 752 | co@^4.6.0: 753 | version "4.6.0" 754 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 755 | 756 | code-point-at@^1.0.0: 757 | version "1.1.0" 758 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 759 | 760 | combined-stream@^1.0.5, combined-stream@~1.0.5: 761 | version "1.0.5" 762 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 763 | dependencies: 764 | delayed-stream "~1.0.0" 765 | 766 | commander@2.9.0: 767 | version "2.9.0" 768 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 769 | dependencies: 770 | graceful-readlink ">= 1.0.0" 771 | 772 | commondir@^1.0.1: 773 | version "1.0.1" 774 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 775 | 776 | concat-map@0.0.1: 777 | version "0.0.1" 778 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 779 | 780 | console-browserify@^1.1.0: 781 | version "1.1.0" 782 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 783 | dependencies: 784 | date-now "^0.1.4" 785 | 786 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 787 | version "1.1.0" 788 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 789 | 790 | constants-browserify@^1.0.0: 791 | version "1.0.0" 792 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 793 | 794 | convert-source-map@^1.5.0: 795 | version "1.5.0" 796 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 797 | 798 | core-js@^2.4.0, core-js@^2.5.0: 799 | version "2.5.1" 800 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 801 | 802 | core-util-is@1.0.2, core-util-is@~1.0.0: 803 | version "1.0.2" 804 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 805 | 806 | create-ecdh@^4.0.0: 807 | version "4.0.0" 808 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 809 | dependencies: 810 | bn.js "^4.1.0" 811 | elliptic "^6.0.0" 812 | 813 | create-hash@^1.1.0, create-hash@^1.1.2: 814 | version "1.1.3" 815 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" 816 | dependencies: 817 | cipher-base "^1.0.1" 818 | inherits "^2.0.1" 819 | ripemd160 "^2.0.0" 820 | sha.js "^2.4.0" 821 | 822 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 823 | version "1.1.6" 824 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" 825 | dependencies: 826 | cipher-base "^1.0.3" 827 | create-hash "^1.1.0" 828 | inherits "^2.0.1" 829 | ripemd160 "^2.0.0" 830 | safe-buffer "^5.0.1" 831 | sha.js "^2.4.8" 832 | 833 | cross-env@^3.2.4: 834 | version "3.2.4" 835 | resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-3.2.4.tgz#9e0585f277864ed421ce756f81a980ff0d698aba" 836 | dependencies: 837 | cross-spawn "^5.1.0" 838 | is-windows "^1.0.0" 839 | 840 | cross-spawn@^5.1.0: 841 | version "5.1.0" 842 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 843 | dependencies: 844 | lru-cache "^4.0.1" 845 | shebang-command "^1.2.0" 846 | which "^1.2.9" 847 | 848 | cryptiles@2.x.x: 849 | version "2.0.5" 850 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 851 | dependencies: 852 | boom "2.x.x" 853 | 854 | crypto-browserify@^3.11.0: 855 | version "3.12.0" 856 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 857 | dependencies: 858 | browserify-cipher "^1.0.0" 859 | browserify-sign "^4.0.0" 860 | create-ecdh "^4.0.0" 861 | create-hash "^1.1.0" 862 | create-hmac "^1.1.0" 863 | diffie-hellman "^5.0.0" 864 | inherits "^2.0.1" 865 | pbkdf2 "^3.0.3" 866 | public-encrypt "^4.0.0" 867 | randombytes "^2.0.0" 868 | randomfill "^1.0.3" 869 | 870 | dashdash@^1.12.0: 871 | version "1.14.1" 872 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 873 | dependencies: 874 | assert-plus "^1.0.0" 875 | 876 | date-now@^0.1.4: 877 | version "0.1.4" 878 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 879 | 880 | debug@2.6.4: 881 | version "2.6.4" 882 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.4.tgz#7586a9b3c39741c0282ae33445c4e8ac74734fe0" 883 | dependencies: 884 | ms "0.7.3" 885 | 886 | debug@2.6.8: 887 | version "2.6.8" 888 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 889 | dependencies: 890 | ms "2.0.0" 891 | 892 | debug@^2.2.0, debug@^2.6.8: 893 | version "2.6.9" 894 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 895 | dependencies: 896 | ms "2.0.0" 897 | 898 | decamelize@^1.0.0, decamelize@^1.1.1: 899 | version "1.2.0" 900 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 901 | 902 | deep-extend@~0.4.0: 903 | version "0.4.2" 904 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 905 | 906 | delayed-stream@~1.0.0: 907 | version "1.0.0" 908 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 909 | 910 | delegates@^1.0.0: 911 | version "1.0.0" 912 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 913 | 914 | des.js@^1.0.0: 915 | version "1.0.0" 916 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 917 | dependencies: 918 | inherits "^2.0.1" 919 | minimalistic-assert "^1.0.0" 920 | 921 | detect-indent@^4.0.0: 922 | version "4.0.0" 923 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 924 | dependencies: 925 | repeating "^2.0.0" 926 | 927 | detect-libc@^1.0.2: 928 | version "1.0.2" 929 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.2.tgz#71ad5d204bf17a6a6ca8f450c61454066ef461e1" 930 | 931 | diff@3.2.0: 932 | version "3.2.0" 933 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 934 | 935 | diffie-hellman@^5.0.0: 936 | version "5.0.2" 937 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 938 | dependencies: 939 | bn.js "^4.1.0" 940 | miller-rabin "^4.0.0" 941 | randombytes "^2.0.0" 942 | 943 | domain-browser@^1.1.1: 944 | version "1.1.7" 945 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 946 | 947 | ecc-jsbn@~0.1.1: 948 | version "0.1.1" 949 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 950 | dependencies: 951 | jsbn "~0.1.0" 952 | 953 | elliptic@^6.0.0: 954 | version "6.4.0" 955 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 956 | dependencies: 957 | bn.js "^4.4.0" 958 | brorand "^1.0.1" 959 | hash.js "^1.0.0" 960 | hmac-drbg "^1.0.0" 961 | inherits "^2.0.1" 962 | minimalistic-assert "^1.0.0" 963 | minimalistic-crypto-utils "^1.0.0" 964 | 965 | emojis-list@^2.0.0: 966 | version "2.1.0" 967 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 968 | 969 | enhanced-resolve@^3.3.0: 970 | version "3.4.1" 971 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" 972 | dependencies: 973 | graceful-fs "^4.1.2" 974 | memory-fs "^0.4.0" 975 | object-assign "^4.0.1" 976 | tapable "^0.2.7" 977 | 978 | errno@^0.1.3: 979 | version "0.1.4" 980 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 981 | dependencies: 982 | prr "~0.0.0" 983 | 984 | error-ex@^1.2.0: 985 | version "1.3.1" 986 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 987 | dependencies: 988 | is-arrayish "^0.2.1" 989 | 990 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2: 991 | version "1.0.5" 992 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 993 | 994 | esutils@^2.0.2: 995 | version "2.0.2" 996 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 997 | 998 | events@^1.0.0: 999 | version "1.1.1" 1000 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1001 | 1002 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 1003 | version "1.0.3" 1004 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 1005 | dependencies: 1006 | md5.js "^1.3.4" 1007 | safe-buffer "^5.1.1" 1008 | 1009 | expand-brackets@^0.1.4: 1010 | version "0.1.5" 1011 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1012 | dependencies: 1013 | is-posix-bracket "^0.1.0" 1014 | 1015 | expand-range@^1.8.1: 1016 | version "1.8.2" 1017 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1018 | dependencies: 1019 | fill-range "^2.1.0" 1020 | 1021 | extend@~3.0.0: 1022 | version "3.0.1" 1023 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1024 | 1025 | extglob@^0.3.1: 1026 | version "0.3.2" 1027 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1028 | dependencies: 1029 | is-extglob "^1.0.0" 1030 | 1031 | extsprintf@1.3.0, extsprintf@^1.2.0: 1032 | version "1.3.0" 1033 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1034 | 1035 | filename-regex@^2.0.0: 1036 | version "2.0.1" 1037 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1038 | 1039 | fill-range@^2.1.0: 1040 | version "2.2.3" 1041 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1042 | dependencies: 1043 | is-number "^2.1.0" 1044 | isobject "^2.0.0" 1045 | randomatic "^1.1.3" 1046 | repeat-element "^1.1.2" 1047 | repeat-string "^1.5.2" 1048 | 1049 | find-cache-dir@^0.1.1: 1050 | version "0.1.1" 1051 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1052 | dependencies: 1053 | commondir "^1.0.1" 1054 | mkdirp "^0.5.1" 1055 | pkg-dir "^1.0.0" 1056 | 1057 | find-up@^1.0.0: 1058 | version "1.1.2" 1059 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1060 | dependencies: 1061 | path-exists "^2.0.0" 1062 | pinkie-promise "^2.0.0" 1063 | 1064 | for-in@^1.0.1: 1065 | version "1.0.2" 1066 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1067 | 1068 | for-own@^0.1.4: 1069 | version "0.1.5" 1070 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1071 | dependencies: 1072 | for-in "^1.0.1" 1073 | 1074 | forever-agent@~0.6.1: 1075 | version "0.6.1" 1076 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1077 | 1078 | form-data@~2.1.1: 1079 | version "2.1.4" 1080 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1081 | dependencies: 1082 | asynckit "^0.4.0" 1083 | combined-stream "^1.0.5" 1084 | mime-types "^2.1.12" 1085 | 1086 | fs.realpath@^1.0.0: 1087 | version "1.0.0" 1088 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1089 | 1090 | fsevents@^1.0.0: 1091 | version "1.1.2" 1092 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1093 | dependencies: 1094 | nan "^2.3.0" 1095 | node-pre-gyp "^0.6.36" 1096 | 1097 | fstream-ignore@^1.0.5: 1098 | version "1.0.5" 1099 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1100 | dependencies: 1101 | fstream "^1.0.0" 1102 | inherits "2" 1103 | minimatch "^3.0.0" 1104 | 1105 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1106 | version "1.0.11" 1107 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1108 | dependencies: 1109 | graceful-fs "^4.1.2" 1110 | inherits "~2.0.0" 1111 | mkdirp ">=0.5 0" 1112 | rimraf "2" 1113 | 1114 | gauge@~2.7.3: 1115 | version "2.7.4" 1116 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1117 | dependencies: 1118 | aproba "^1.0.3" 1119 | console-control-strings "^1.0.0" 1120 | has-unicode "^2.0.0" 1121 | object-assign "^4.1.0" 1122 | signal-exit "^3.0.0" 1123 | string-width "^1.0.1" 1124 | strip-ansi "^3.0.1" 1125 | wide-align "^1.1.0" 1126 | 1127 | get-caller-file@^1.0.1: 1128 | version "1.0.2" 1129 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1130 | 1131 | getpass@^0.1.1: 1132 | version "0.1.7" 1133 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1134 | dependencies: 1135 | assert-plus "^1.0.0" 1136 | 1137 | glob-base@^0.3.0: 1138 | version "0.3.0" 1139 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1140 | dependencies: 1141 | glob-parent "^2.0.0" 1142 | is-glob "^2.0.0" 1143 | 1144 | glob-parent@^2.0.0: 1145 | version "2.0.0" 1146 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1147 | dependencies: 1148 | is-glob "^2.0.0" 1149 | 1150 | glob@7.1.1: 1151 | version "7.1.1" 1152 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1153 | dependencies: 1154 | fs.realpath "^1.0.0" 1155 | inflight "^1.0.4" 1156 | inherits "2" 1157 | minimatch "^3.0.2" 1158 | once "^1.3.0" 1159 | path-is-absolute "^1.0.0" 1160 | 1161 | glob@^7.0.5: 1162 | version "7.1.2" 1163 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1164 | dependencies: 1165 | fs.realpath "^1.0.0" 1166 | inflight "^1.0.4" 1167 | inherits "2" 1168 | minimatch "^3.0.4" 1169 | once "^1.3.0" 1170 | path-is-absolute "^1.0.0" 1171 | 1172 | globals@^9.18.0: 1173 | version "9.18.0" 1174 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1175 | 1176 | graceful-fs@^4.1.2: 1177 | version "4.1.11" 1178 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1179 | 1180 | "graceful-readlink@>= 1.0.0": 1181 | version "1.0.1" 1182 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1183 | 1184 | growl@1.9.2: 1185 | version "1.9.2" 1186 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1187 | 1188 | har-schema@^1.0.5: 1189 | version "1.0.5" 1190 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1191 | 1192 | har-validator@~4.2.1: 1193 | version "4.2.1" 1194 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1195 | dependencies: 1196 | ajv "^4.9.1" 1197 | har-schema "^1.0.5" 1198 | 1199 | has-ansi@^2.0.0: 1200 | version "2.0.0" 1201 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1202 | dependencies: 1203 | ansi-regex "^2.0.0" 1204 | 1205 | has-flag@^1.0.0: 1206 | version "1.0.0" 1207 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1208 | 1209 | has-unicode@^2.0.0: 1210 | version "2.0.1" 1211 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1212 | 1213 | hash-base@^2.0.0: 1214 | version "2.0.2" 1215 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" 1216 | dependencies: 1217 | inherits "^2.0.1" 1218 | 1219 | hash-base@^3.0.0: 1220 | version "3.0.4" 1221 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 1222 | dependencies: 1223 | inherits "^2.0.1" 1224 | safe-buffer "^5.0.1" 1225 | 1226 | hash.js@^1.0.0, hash.js@^1.0.3: 1227 | version "1.1.3" 1228 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" 1229 | dependencies: 1230 | inherits "^2.0.3" 1231 | minimalistic-assert "^1.0.0" 1232 | 1233 | hawk@3.1.3, hawk@~3.1.3: 1234 | version "3.1.3" 1235 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1236 | dependencies: 1237 | boom "2.x.x" 1238 | cryptiles "2.x.x" 1239 | hoek "2.x.x" 1240 | sntp "1.x.x" 1241 | 1242 | he@1.1.1: 1243 | version "1.1.1" 1244 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1245 | 1246 | hmac-drbg@^1.0.0: 1247 | version "1.0.1" 1248 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1249 | dependencies: 1250 | hash.js "^1.0.3" 1251 | minimalistic-assert "^1.0.0" 1252 | minimalistic-crypto-utils "^1.0.1" 1253 | 1254 | hoek@2.x.x: 1255 | version "2.16.3" 1256 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1257 | 1258 | home-or-tmp@^2.0.0: 1259 | version "2.0.0" 1260 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1261 | dependencies: 1262 | os-homedir "^1.0.0" 1263 | os-tmpdir "^1.0.1" 1264 | 1265 | hosted-git-info@^2.1.4: 1266 | version "2.5.0" 1267 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1268 | 1269 | http-signature@~1.1.0: 1270 | version "1.1.1" 1271 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1272 | dependencies: 1273 | assert-plus "^0.2.0" 1274 | jsprim "^1.2.2" 1275 | sshpk "^1.7.0" 1276 | 1277 | https-browserify@0.0.1: 1278 | version "0.0.1" 1279 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 1280 | 1281 | ieee754@^1.1.4: 1282 | version "1.1.8" 1283 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1284 | 1285 | immediate@3.0.6, immediate@~3.0.5: 1286 | version "3.0.6" 1287 | resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b" 1288 | 1289 | indexof@0.0.1: 1290 | version "0.0.1" 1291 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1292 | 1293 | inflight@^1.0.4: 1294 | version "1.0.6" 1295 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1296 | dependencies: 1297 | once "^1.3.0" 1298 | wrappy "1" 1299 | 1300 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1301 | version "2.0.3" 1302 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1303 | 1304 | inherits@2.0.1: 1305 | version "2.0.1" 1306 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1307 | 1308 | ini@~1.3.0: 1309 | version "1.3.4" 1310 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1311 | 1312 | interpret@^1.0.0: 1313 | version "1.0.4" 1314 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.4.tgz#820cdd588b868ffb191a809506d6c9c8f212b1b0" 1315 | 1316 | invariant@^2.2.2: 1317 | version "2.2.2" 1318 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1319 | dependencies: 1320 | loose-envify "^1.0.0" 1321 | 1322 | invert-kv@^1.0.0: 1323 | version "1.0.0" 1324 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1325 | 1326 | is-arrayish@^0.2.1: 1327 | version "0.2.1" 1328 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1329 | 1330 | is-binary-path@^1.0.0: 1331 | version "1.0.1" 1332 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1333 | dependencies: 1334 | binary-extensions "^1.0.0" 1335 | 1336 | is-buffer@^1.1.5: 1337 | version "1.1.6" 1338 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1339 | 1340 | is-builtin-module@^1.0.0: 1341 | version "1.0.0" 1342 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1343 | dependencies: 1344 | builtin-modules "^1.0.0" 1345 | 1346 | is-dotfile@^1.0.0: 1347 | version "1.0.3" 1348 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1349 | 1350 | is-equal-shallow@^0.1.3: 1351 | version "0.1.3" 1352 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1353 | dependencies: 1354 | is-primitive "^2.0.0" 1355 | 1356 | is-extendable@^0.1.1: 1357 | version "0.1.1" 1358 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1359 | 1360 | is-extglob@^1.0.0: 1361 | version "1.0.0" 1362 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1363 | 1364 | is-finite@^1.0.0: 1365 | version "1.0.2" 1366 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1367 | dependencies: 1368 | number-is-nan "^1.0.0" 1369 | 1370 | is-fullwidth-code-point@^1.0.0: 1371 | version "1.0.0" 1372 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1373 | dependencies: 1374 | number-is-nan "^1.0.0" 1375 | 1376 | is-glob@^2.0.0, is-glob@^2.0.1: 1377 | version "2.0.1" 1378 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1379 | dependencies: 1380 | is-extglob "^1.0.0" 1381 | 1382 | is-number@^2.1.0: 1383 | version "2.1.0" 1384 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1385 | dependencies: 1386 | kind-of "^3.0.2" 1387 | 1388 | is-number@^3.0.0: 1389 | version "3.0.0" 1390 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1391 | dependencies: 1392 | kind-of "^3.0.2" 1393 | 1394 | is-posix-bracket@^0.1.0: 1395 | version "0.1.1" 1396 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1397 | 1398 | is-primitive@^2.0.0: 1399 | version "2.0.0" 1400 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1401 | 1402 | is-typedarray@~1.0.0: 1403 | version "1.0.0" 1404 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1405 | 1406 | is-utf8@^0.2.0: 1407 | version "0.2.1" 1408 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1409 | 1410 | is-windows@^1.0.0: 1411 | version "1.0.1" 1412 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.1.tgz#310db70f742d259a16a369202b51af84233310d9" 1413 | 1414 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1415 | version "1.0.0" 1416 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1417 | 1418 | isexe@^2.0.0: 1419 | version "2.0.0" 1420 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1421 | 1422 | isobject@^2.0.0: 1423 | version "2.1.0" 1424 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1425 | dependencies: 1426 | isarray "1.0.0" 1427 | 1428 | isstream@~0.1.2: 1429 | version "0.1.2" 1430 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1431 | 1432 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1433 | version "3.0.2" 1434 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1435 | 1436 | jsbn@~0.1.0: 1437 | version "0.1.1" 1438 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1439 | 1440 | jsesc@^1.3.0: 1441 | version "1.3.0" 1442 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1443 | 1444 | jsesc@~0.5.0: 1445 | version "0.5.0" 1446 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1447 | 1448 | json-loader@^0.5.4: 1449 | version "0.5.7" 1450 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" 1451 | 1452 | json-schema@0.2.3: 1453 | version "0.2.3" 1454 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1455 | 1456 | json-stable-stringify@^1.0.1: 1457 | version "1.0.1" 1458 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1459 | dependencies: 1460 | jsonify "~0.0.0" 1461 | 1462 | json-stringify-safe@~5.0.1: 1463 | version "5.0.1" 1464 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1465 | 1466 | json3@3.3.2: 1467 | version "3.3.2" 1468 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1469 | 1470 | json5@^0.5.0, json5@^0.5.1: 1471 | version "0.5.1" 1472 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1473 | 1474 | jsonify@~0.0.0: 1475 | version "0.0.0" 1476 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1477 | 1478 | jsprim@^1.2.2: 1479 | version "1.4.1" 1480 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1481 | dependencies: 1482 | assert-plus "1.0.0" 1483 | extsprintf "1.3.0" 1484 | json-schema "0.2.3" 1485 | verror "1.10.0" 1486 | 1487 | kind-of@^3.0.2: 1488 | version "3.2.2" 1489 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1490 | dependencies: 1491 | is-buffer "^1.1.5" 1492 | 1493 | kind-of@^4.0.0: 1494 | version "4.0.0" 1495 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1496 | dependencies: 1497 | is-buffer "^1.1.5" 1498 | 1499 | lazy-cache@^1.0.3: 1500 | version "1.0.4" 1501 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1502 | 1503 | lcid@^1.0.0: 1504 | version "1.0.0" 1505 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1506 | dependencies: 1507 | invert-kv "^1.0.0" 1508 | 1509 | lie@3.1.1: 1510 | version "3.1.1" 1511 | resolved "https://registry.yarnpkg.com/lie/-/lie-3.1.1.tgz#9a436b2cc7746ca59de7a41fa469b3efb76bd87e" 1512 | dependencies: 1513 | immediate "~3.0.5" 1514 | 1515 | load-json-file@^1.0.0: 1516 | version "1.1.0" 1517 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1518 | dependencies: 1519 | graceful-fs "^4.1.2" 1520 | parse-json "^2.2.0" 1521 | pify "^2.0.0" 1522 | pinkie-promise "^2.0.0" 1523 | strip-bom "^2.0.0" 1524 | 1525 | loader-runner@^2.3.0: 1526 | version "2.3.0" 1527 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 1528 | 1529 | loader-utils@^0.2.16: 1530 | version "0.2.17" 1531 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" 1532 | dependencies: 1533 | big.js "^3.1.3" 1534 | emojis-list "^2.0.0" 1535 | json5 "^0.5.0" 1536 | object-assign "^4.0.1" 1537 | 1538 | lodash._baseassign@^3.0.0: 1539 | version "3.2.0" 1540 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1541 | dependencies: 1542 | lodash._basecopy "^3.0.0" 1543 | lodash.keys "^3.0.0" 1544 | 1545 | lodash._basecopy@^3.0.0: 1546 | version "3.0.1" 1547 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1548 | 1549 | lodash._basecreate@^3.0.0: 1550 | version "3.0.3" 1551 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 1552 | 1553 | lodash._getnative@^3.0.0: 1554 | version "3.9.1" 1555 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1556 | 1557 | lodash._isiterateecall@^3.0.0: 1558 | version "3.0.9" 1559 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1560 | 1561 | lodash.create@3.1.1: 1562 | version "3.1.1" 1563 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 1564 | dependencies: 1565 | lodash._baseassign "^3.0.0" 1566 | lodash._basecreate "^3.0.0" 1567 | lodash._isiterateecall "^3.0.0" 1568 | 1569 | lodash.debounce@^4.0.8: 1570 | version "4.0.8" 1571 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 1572 | 1573 | lodash.isarguments@^3.0.0: 1574 | version "3.1.0" 1575 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1576 | 1577 | lodash.isarray@^3.0.0: 1578 | version "3.0.4" 1579 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1580 | 1581 | lodash.keys@^3.0.0: 1582 | version "3.1.2" 1583 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1584 | dependencies: 1585 | lodash._getnative "^3.0.0" 1586 | lodash.isarguments "^3.0.0" 1587 | lodash.isarray "^3.0.0" 1588 | 1589 | lodash.merge@^4.6.0: 1590 | version "4.6.0" 1591 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 1592 | 1593 | lodash@^4.14.0, lodash@^4.17.4: 1594 | version "4.17.4" 1595 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1596 | 1597 | longest@^1.0.1: 1598 | version "1.0.1" 1599 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1600 | 1601 | loose-envify@^1.0.0: 1602 | version "1.3.1" 1603 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1604 | dependencies: 1605 | js-tokens "^3.0.0" 1606 | 1607 | lru-cache@^4.0.1: 1608 | version "4.1.1" 1609 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1610 | dependencies: 1611 | pseudomap "^1.0.2" 1612 | yallist "^2.1.2" 1613 | 1614 | md5.js@^1.3.4: 1615 | version "1.3.4" 1616 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" 1617 | dependencies: 1618 | hash-base "^3.0.0" 1619 | inherits "^2.0.1" 1620 | 1621 | memory-fs@^0.4.0, memory-fs@~0.4.1: 1622 | version "0.4.1" 1623 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 1624 | dependencies: 1625 | errno "^0.1.3" 1626 | readable-stream "^2.0.1" 1627 | 1628 | micromatch@^2.1.5: 1629 | version "2.3.11" 1630 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1631 | dependencies: 1632 | arr-diff "^2.0.0" 1633 | array-unique "^0.2.1" 1634 | braces "^1.8.2" 1635 | expand-brackets "^0.1.4" 1636 | extglob "^0.3.1" 1637 | filename-regex "^2.0.0" 1638 | is-extglob "^1.0.0" 1639 | is-glob "^2.0.1" 1640 | kind-of "^3.0.2" 1641 | normalize-path "^2.0.1" 1642 | object.omit "^2.0.0" 1643 | parse-glob "^3.0.4" 1644 | regex-cache "^0.4.2" 1645 | 1646 | miller-rabin@^4.0.0: 1647 | version "4.0.1" 1648 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 1649 | dependencies: 1650 | bn.js "^4.0.0" 1651 | brorand "^1.0.1" 1652 | 1653 | mime-db@~1.30.0: 1654 | version "1.30.0" 1655 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1656 | 1657 | mime-types@^2.1.12, mime-types@~2.1.7: 1658 | version "2.1.17" 1659 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1660 | dependencies: 1661 | mime-db "~1.30.0" 1662 | 1663 | minimalistic-assert@^1.0.0: 1664 | version "1.0.0" 1665 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 1666 | 1667 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 1668 | version "1.0.1" 1669 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 1670 | 1671 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1672 | version "3.0.4" 1673 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1674 | dependencies: 1675 | brace-expansion "^1.1.7" 1676 | 1677 | minimist@0.0.8: 1678 | version "0.0.8" 1679 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1680 | 1681 | minimist@^1.2.0: 1682 | version "1.2.0" 1683 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1684 | 1685 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0: 1686 | version "0.5.1" 1687 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1688 | dependencies: 1689 | minimist "0.0.8" 1690 | 1691 | mocha@^3.2.0: 1692 | version "3.5.3" 1693 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.5.3.tgz#1e0480fe36d2da5858d1eb6acc38418b26eaa20d" 1694 | dependencies: 1695 | browser-stdout "1.3.0" 1696 | commander "2.9.0" 1697 | debug "2.6.8" 1698 | diff "3.2.0" 1699 | escape-string-regexp "1.0.5" 1700 | glob "7.1.1" 1701 | growl "1.9.2" 1702 | he "1.1.1" 1703 | json3 "3.3.2" 1704 | lodash.create "3.1.1" 1705 | mkdirp "0.5.1" 1706 | supports-color "3.1.2" 1707 | 1708 | ms@0.7.3: 1709 | version "0.7.3" 1710 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 1711 | 1712 | ms@2.0.0: 1713 | version "2.0.0" 1714 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1715 | 1716 | nan@^2.3.0: 1717 | version "2.7.0" 1718 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 1719 | 1720 | node-libs-browser@^2.0.0: 1721 | version "2.0.0" 1722 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646" 1723 | dependencies: 1724 | assert "^1.1.1" 1725 | browserify-zlib "^0.1.4" 1726 | buffer "^4.3.0" 1727 | console-browserify "^1.1.0" 1728 | constants-browserify "^1.0.0" 1729 | crypto-browserify "^3.11.0" 1730 | domain-browser "^1.1.1" 1731 | events "^1.0.0" 1732 | https-browserify "0.0.1" 1733 | os-browserify "^0.2.0" 1734 | path-browserify "0.0.0" 1735 | process "^0.11.0" 1736 | punycode "^1.2.4" 1737 | querystring-es3 "^0.2.0" 1738 | readable-stream "^2.0.5" 1739 | stream-browserify "^2.0.1" 1740 | stream-http "^2.3.1" 1741 | string_decoder "^0.10.25" 1742 | timers-browserify "^2.0.2" 1743 | tty-browserify "0.0.0" 1744 | url "^0.11.0" 1745 | util "^0.10.3" 1746 | vm-browserify "0.0.4" 1747 | 1748 | node-pre-gyp@^0.6.36: 1749 | version "0.6.39" 1750 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 1751 | dependencies: 1752 | detect-libc "^1.0.2" 1753 | hawk "3.1.3" 1754 | mkdirp "^0.5.1" 1755 | nopt "^4.0.1" 1756 | npmlog "^4.0.2" 1757 | rc "^1.1.7" 1758 | request "2.81.0" 1759 | rimraf "^2.6.1" 1760 | semver "^5.3.0" 1761 | tar "^2.2.1" 1762 | tar-pack "^3.4.0" 1763 | 1764 | nopt@^4.0.1: 1765 | version "4.0.1" 1766 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1767 | dependencies: 1768 | abbrev "1" 1769 | osenv "^0.1.4" 1770 | 1771 | normalize-package-data@^2.3.2: 1772 | version "2.4.0" 1773 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1774 | dependencies: 1775 | hosted-git-info "^2.1.4" 1776 | is-builtin-module "^1.0.0" 1777 | semver "2 || 3 || 4 || 5" 1778 | validate-npm-package-license "^3.0.1" 1779 | 1780 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1781 | version "2.1.1" 1782 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1783 | dependencies: 1784 | remove-trailing-separator "^1.0.1" 1785 | 1786 | npmlog@^4.0.2: 1787 | version "4.1.2" 1788 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1789 | dependencies: 1790 | are-we-there-yet "~1.1.2" 1791 | console-control-strings "~1.1.0" 1792 | gauge "~2.7.3" 1793 | set-blocking "~2.0.0" 1794 | 1795 | number-is-nan@^1.0.0: 1796 | version "1.0.1" 1797 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1798 | 1799 | oauth-sign@~0.8.1: 1800 | version "0.8.2" 1801 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1802 | 1803 | object-assign@^4.0.1, object-assign@^4.1.0: 1804 | version "4.1.1" 1805 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1806 | 1807 | object.omit@^2.0.0: 1808 | version "2.0.1" 1809 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1810 | dependencies: 1811 | for-own "^0.1.4" 1812 | is-extendable "^0.1.1" 1813 | 1814 | once@^1.3.0, once@^1.3.3: 1815 | version "1.4.0" 1816 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1817 | dependencies: 1818 | wrappy "1" 1819 | 1820 | os-browserify@^0.2.0: 1821 | version "0.2.1" 1822 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 1823 | 1824 | os-homedir@^1.0.0: 1825 | version "1.0.2" 1826 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1827 | 1828 | os-locale@^1.4.0: 1829 | version "1.4.0" 1830 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1831 | dependencies: 1832 | lcid "^1.0.0" 1833 | 1834 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1835 | version "1.0.2" 1836 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1837 | 1838 | osenv@^0.1.4: 1839 | version "0.1.4" 1840 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1841 | dependencies: 1842 | os-homedir "^1.0.0" 1843 | os-tmpdir "^1.0.0" 1844 | 1845 | pako@~0.2.0: 1846 | version "0.2.9" 1847 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 1848 | 1849 | parse-asn1@^5.0.0: 1850 | version "5.1.0" 1851 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 1852 | dependencies: 1853 | asn1.js "^4.0.0" 1854 | browserify-aes "^1.0.0" 1855 | create-hash "^1.1.0" 1856 | evp_bytestokey "^1.0.0" 1857 | pbkdf2 "^3.0.3" 1858 | 1859 | parse-glob@^3.0.4: 1860 | version "3.0.4" 1861 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1862 | dependencies: 1863 | glob-base "^0.3.0" 1864 | is-dotfile "^1.0.0" 1865 | is-extglob "^1.0.0" 1866 | is-glob "^2.0.0" 1867 | 1868 | parse-json@^2.2.0: 1869 | version "2.2.0" 1870 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1871 | dependencies: 1872 | error-ex "^1.2.0" 1873 | 1874 | path-browserify@0.0.0: 1875 | version "0.0.0" 1876 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 1877 | 1878 | path-exists@^2.0.0: 1879 | version "2.1.0" 1880 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1881 | dependencies: 1882 | pinkie-promise "^2.0.0" 1883 | 1884 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1885 | version "1.0.1" 1886 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1887 | 1888 | path-type@^1.0.0: 1889 | version "1.1.0" 1890 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1891 | dependencies: 1892 | graceful-fs "^4.1.2" 1893 | pify "^2.0.0" 1894 | pinkie-promise "^2.0.0" 1895 | 1896 | pbkdf2@^3.0.3: 1897 | version "3.0.14" 1898 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" 1899 | dependencies: 1900 | create-hash "^1.1.2" 1901 | create-hmac "^1.1.4" 1902 | ripemd160 "^2.0.1" 1903 | safe-buffer "^5.0.1" 1904 | sha.js "^2.4.8" 1905 | 1906 | performance-now@^0.2.0: 1907 | version "0.2.0" 1908 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1909 | 1910 | pify@^2.0.0: 1911 | version "2.3.0" 1912 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1913 | 1914 | pinkie-promise@^2.0.0: 1915 | version "2.0.1" 1916 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1917 | dependencies: 1918 | pinkie "^2.0.0" 1919 | 1920 | pinkie@^2.0.0: 1921 | version "2.0.4" 1922 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1923 | 1924 | pkg-dir@^1.0.0: 1925 | version "1.0.0" 1926 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 1927 | dependencies: 1928 | find-up "^1.0.0" 1929 | 1930 | pouchdb-browser@^6.1.1: 1931 | version "6.3.4" 1932 | resolved "https://registry.yarnpkg.com/pouchdb-browser/-/pouchdb-browser-6.3.4.tgz#f3d40494d159931b7f96fb9afda8911c47cb9faf" 1933 | dependencies: 1934 | argsarray "0.0.1" 1935 | debug "2.6.4" 1936 | immediate "3.0.6" 1937 | inherits "2.0.3" 1938 | lie "3.1.1" 1939 | spark-md5 "3.0.0" 1940 | uuid "^3.1.0" 1941 | vuvuzela "1.0.3" 1942 | 1943 | preserve@^0.2.0: 1944 | version "0.2.0" 1945 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1946 | 1947 | private@^0.1.6, private@^0.1.7: 1948 | version "0.1.8" 1949 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 1950 | 1951 | process-nextick-args@~1.0.6: 1952 | version "1.0.7" 1953 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1954 | 1955 | process@^0.11.0: 1956 | version "0.11.10" 1957 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 1958 | 1959 | prr@~0.0.0: 1960 | version "0.0.0" 1961 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 1962 | 1963 | pseudomap@^1.0.2: 1964 | version "1.0.2" 1965 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1966 | 1967 | public-encrypt@^4.0.0: 1968 | version "4.0.0" 1969 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 1970 | dependencies: 1971 | bn.js "^4.1.0" 1972 | browserify-rsa "^4.0.0" 1973 | create-hash "^1.1.0" 1974 | parse-asn1 "^5.0.0" 1975 | randombytes "^2.0.1" 1976 | 1977 | punycode@1.3.2: 1978 | version "1.3.2" 1979 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 1980 | 1981 | punycode@^1.2.4, punycode@^1.4.1: 1982 | version "1.4.1" 1983 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1984 | 1985 | qs@~6.4.0: 1986 | version "6.4.0" 1987 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1988 | 1989 | querystring-es3@^0.2.0: 1990 | version "0.2.1" 1991 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 1992 | 1993 | querystring@0.2.0: 1994 | version "0.2.0" 1995 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 1996 | 1997 | randomatic@^1.1.3: 1998 | version "1.1.7" 1999 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2000 | dependencies: 2001 | is-number "^3.0.0" 2002 | kind-of "^4.0.0" 2003 | 2004 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: 2005 | version "2.0.5" 2006 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79" 2007 | dependencies: 2008 | safe-buffer "^5.1.0" 2009 | 2010 | randomfill@^1.0.3: 2011 | version "1.0.3" 2012 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.3.tgz#b96b7df587f01dd91726c418f30553b1418e3d62" 2013 | dependencies: 2014 | randombytes "^2.0.5" 2015 | safe-buffer "^5.1.0" 2016 | 2017 | rc@^1.1.7: 2018 | version "1.2.2" 2019 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 2020 | dependencies: 2021 | deep-extend "~0.4.0" 2022 | ini "~1.3.0" 2023 | minimist "^1.2.0" 2024 | strip-json-comments "~2.0.1" 2025 | 2026 | read-pkg-up@^1.0.1: 2027 | version "1.0.1" 2028 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2029 | dependencies: 2030 | find-up "^1.0.0" 2031 | read-pkg "^1.0.0" 2032 | 2033 | read-pkg@^1.0.0: 2034 | version "1.1.0" 2035 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2036 | dependencies: 2037 | load-json-file "^1.0.0" 2038 | normalize-package-data "^2.3.2" 2039 | path-type "^1.0.0" 2040 | 2041 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.6: 2042 | version "2.3.3" 2043 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2044 | dependencies: 2045 | core-util-is "~1.0.0" 2046 | inherits "~2.0.3" 2047 | isarray "~1.0.0" 2048 | process-nextick-args "~1.0.6" 2049 | safe-buffer "~5.1.1" 2050 | string_decoder "~1.0.3" 2051 | util-deprecate "~1.0.1" 2052 | 2053 | readdirp@^2.0.0: 2054 | version "2.1.0" 2055 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2056 | dependencies: 2057 | graceful-fs "^4.1.2" 2058 | minimatch "^3.0.2" 2059 | readable-stream "^2.0.2" 2060 | set-immediate-shim "^1.0.1" 2061 | 2062 | regenerate@^1.2.1: 2063 | version "1.3.3" 2064 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2065 | 2066 | regenerator-runtime@^0.11.0: 2067 | version "0.11.0" 2068 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 2069 | 2070 | regenerator-transform@^0.10.0: 2071 | version "0.10.1" 2072 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2073 | dependencies: 2074 | babel-runtime "^6.18.0" 2075 | babel-types "^6.19.0" 2076 | private "^0.1.6" 2077 | 2078 | regex-cache@^0.4.2: 2079 | version "0.4.4" 2080 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2081 | dependencies: 2082 | is-equal-shallow "^0.1.3" 2083 | 2084 | regexpu-core@^2.0.0: 2085 | version "2.0.0" 2086 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2087 | dependencies: 2088 | regenerate "^1.2.1" 2089 | regjsgen "^0.2.0" 2090 | regjsparser "^0.1.4" 2091 | 2092 | regjsgen@^0.2.0: 2093 | version "0.2.0" 2094 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2095 | 2096 | regjsparser@^0.1.4: 2097 | version "0.1.5" 2098 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2099 | dependencies: 2100 | jsesc "~0.5.0" 2101 | 2102 | remove-trailing-separator@^1.0.1: 2103 | version "1.1.0" 2104 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2105 | 2106 | repeat-element@^1.1.2: 2107 | version "1.1.2" 2108 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2109 | 2110 | repeat-string@^1.5.2: 2111 | version "1.6.1" 2112 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2113 | 2114 | repeating@^2.0.0: 2115 | version "2.0.1" 2116 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2117 | dependencies: 2118 | is-finite "^1.0.0" 2119 | 2120 | request@2.81.0: 2121 | version "2.81.0" 2122 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2123 | dependencies: 2124 | aws-sign2 "~0.6.0" 2125 | aws4 "^1.2.1" 2126 | caseless "~0.12.0" 2127 | combined-stream "~1.0.5" 2128 | extend "~3.0.0" 2129 | forever-agent "~0.6.1" 2130 | form-data "~2.1.1" 2131 | har-validator "~4.2.1" 2132 | hawk "~3.1.3" 2133 | http-signature "~1.1.0" 2134 | is-typedarray "~1.0.0" 2135 | isstream "~0.1.2" 2136 | json-stringify-safe "~5.0.1" 2137 | mime-types "~2.1.7" 2138 | oauth-sign "~0.8.1" 2139 | performance-now "^0.2.0" 2140 | qs "~6.4.0" 2141 | safe-buffer "^5.0.1" 2142 | stringstream "~0.0.4" 2143 | tough-cookie "~2.3.0" 2144 | tunnel-agent "^0.6.0" 2145 | uuid "^3.0.0" 2146 | 2147 | require-directory@^2.1.1: 2148 | version "2.1.1" 2149 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2150 | 2151 | require-main-filename@^1.0.1: 2152 | version "1.0.1" 2153 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2154 | 2155 | right-align@^0.1.1: 2156 | version "0.1.3" 2157 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2158 | dependencies: 2159 | align-text "^0.1.1" 2160 | 2161 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 2162 | version "2.6.2" 2163 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2164 | dependencies: 2165 | glob "^7.0.5" 2166 | 2167 | ripemd160@^2.0.0, ripemd160@^2.0.1: 2168 | version "2.0.1" 2169 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" 2170 | dependencies: 2171 | hash-base "^2.0.0" 2172 | inherits "^2.0.1" 2173 | 2174 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2175 | version "5.1.1" 2176 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2177 | 2178 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2179 | version "5.4.1" 2180 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2181 | 2182 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2183 | version "2.0.0" 2184 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2185 | 2186 | set-immediate-shim@^1.0.1: 2187 | version "1.0.1" 2188 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2189 | 2190 | setimmediate@^1.0.4: 2191 | version "1.0.5" 2192 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2193 | 2194 | sha.js@^2.4.0, sha.js@^2.4.8: 2195 | version "2.4.9" 2196 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d" 2197 | dependencies: 2198 | inherits "^2.0.1" 2199 | safe-buffer "^5.0.1" 2200 | 2201 | shebang-command@^1.2.0: 2202 | version "1.2.0" 2203 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2204 | dependencies: 2205 | shebang-regex "^1.0.0" 2206 | 2207 | shebang-regex@^1.0.0: 2208 | version "1.0.0" 2209 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2210 | 2211 | sift@^3.2.7: 2212 | version "3.3.12" 2213 | resolved "https://registry.yarnpkg.com/sift/-/sift-3.3.12.tgz#4f5cdf16af3db32afa04ab25297b0e20ad98294a" 2214 | 2215 | signal-exit@^3.0.0: 2216 | version "3.0.2" 2217 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2218 | 2219 | slash@^1.0.0: 2220 | version "1.0.0" 2221 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2222 | 2223 | sntp@1.x.x: 2224 | version "1.0.9" 2225 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2226 | dependencies: 2227 | hoek "2.x.x" 2228 | 2229 | source-list-map@^2.0.0: 2230 | version "2.0.0" 2231 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" 2232 | 2233 | source-map-support@^0.4.15: 2234 | version "0.4.18" 2235 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2236 | dependencies: 2237 | source-map "^0.5.6" 2238 | 2239 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 2240 | version "0.5.7" 2241 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2242 | 2243 | source-map@~0.6.1: 2244 | version "0.6.1" 2245 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2246 | 2247 | spark-md5@3.0.0: 2248 | version "3.0.0" 2249 | resolved "https://registry.yarnpkg.com/spark-md5/-/spark-md5-3.0.0.tgz#3722227c54e2faf24b1dc6d933cc144e6f71bfef" 2250 | 2251 | spdx-correct@~1.0.0: 2252 | version "1.0.2" 2253 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2254 | dependencies: 2255 | spdx-license-ids "^1.0.2" 2256 | 2257 | spdx-expression-parse@~1.0.0: 2258 | version "1.0.4" 2259 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2260 | 2261 | spdx-license-ids@^1.0.2: 2262 | version "1.2.2" 2263 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2264 | 2265 | sshpk@^1.7.0: 2266 | version "1.13.1" 2267 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2268 | dependencies: 2269 | asn1 "~0.2.3" 2270 | assert-plus "^1.0.0" 2271 | dashdash "^1.12.0" 2272 | getpass "^0.1.1" 2273 | optionalDependencies: 2274 | bcrypt-pbkdf "^1.0.0" 2275 | ecc-jsbn "~0.1.1" 2276 | jsbn "~0.1.0" 2277 | tweetnacl "~0.14.0" 2278 | 2279 | stream-browserify@^2.0.1: 2280 | version "2.0.1" 2281 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 2282 | dependencies: 2283 | inherits "~2.0.1" 2284 | readable-stream "^2.0.2" 2285 | 2286 | stream-http@^2.3.1: 2287 | version "2.7.2" 2288 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" 2289 | dependencies: 2290 | builtin-status-codes "^3.0.0" 2291 | inherits "^2.0.1" 2292 | readable-stream "^2.2.6" 2293 | to-arraybuffer "^1.0.0" 2294 | xtend "^4.0.0" 2295 | 2296 | string-width@^1.0.1, string-width@^1.0.2: 2297 | version "1.0.2" 2298 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2299 | dependencies: 2300 | code-point-at "^1.0.0" 2301 | is-fullwidth-code-point "^1.0.0" 2302 | strip-ansi "^3.0.0" 2303 | 2304 | string_decoder@^0.10.25: 2305 | version "0.10.31" 2306 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2307 | 2308 | string_decoder@~1.0.3: 2309 | version "1.0.3" 2310 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2311 | dependencies: 2312 | safe-buffer "~5.1.0" 2313 | 2314 | stringstream@~0.0.4: 2315 | version "0.0.5" 2316 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2317 | 2318 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2319 | version "3.0.1" 2320 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2321 | dependencies: 2322 | ansi-regex "^2.0.0" 2323 | 2324 | strip-bom@^2.0.0: 2325 | version "2.0.0" 2326 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2327 | dependencies: 2328 | is-utf8 "^0.2.0" 2329 | 2330 | strip-json-comments@~2.0.1: 2331 | version "2.0.1" 2332 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2333 | 2334 | supports-color@3.1.2: 2335 | version "3.1.2" 2336 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 2337 | dependencies: 2338 | has-flag "^1.0.0" 2339 | 2340 | supports-color@^2.0.0: 2341 | version "2.0.0" 2342 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2343 | 2344 | supports-color@^3.1.0: 2345 | version "3.2.3" 2346 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2347 | dependencies: 2348 | has-flag "^1.0.0" 2349 | 2350 | tapable@^0.2.7, tapable@~0.2.5: 2351 | version "0.2.8" 2352 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" 2353 | 2354 | tar-pack@^3.4.0: 2355 | version "3.4.1" 2356 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2357 | dependencies: 2358 | debug "^2.2.0" 2359 | fstream "^1.0.10" 2360 | fstream-ignore "^1.0.5" 2361 | once "^1.3.3" 2362 | readable-stream "^2.1.4" 2363 | rimraf "^2.5.1" 2364 | tar "^2.2.1" 2365 | uid-number "^0.0.6" 2366 | 2367 | tar@^2.2.1: 2368 | version "2.2.1" 2369 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2370 | dependencies: 2371 | block-stream "*" 2372 | fstream "^1.0.2" 2373 | inherits "2" 2374 | 2375 | timers-browserify@^2.0.2: 2376 | version "2.0.4" 2377 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6" 2378 | dependencies: 2379 | setimmediate "^1.0.4" 2380 | 2381 | to-arraybuffer@^1.0.0: 2382 | version "1.0.1" 2383 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 2384 | 2385 | to-fast-properties@^1.0.3: 2386 | version "1.0.3" 2387 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2388 | 2389 | tough-cookie@~2.3.0: 2390 | version "2.3.3" 2391 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2392 | dependencies: 2393 | punycode "^1.4.1" 2394 | 2395 | trim-right@^1.0.1: 2396 | version "1.0.1" 2397 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2398 | 2399 | tty-browserify@0.0.0: 2400 | version "0.0.0" 2401 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 2402 | 2403 | tunnel-agent@^0.6.0: 2404 | version "0.6.0" 2405 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2406 | dependencies: 2407 | safe-buffer "^5.0.1" 2408 | 2409 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2410 | version "0.14.5" 2411 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2412 | 2413 | uglify-js@^2.8.27: 2414 | version "2.8.29" 2415 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2416 | dependencies: 2417 | source-map "~0.5.1" 2418 | yargs "~3.10.0" 2419 | optionalDependencies: 2420 | uglify-to-browserify "~1.0.0" 2421 | 2422 | uglify-to-browserify@~1.0.0: 2423 | version "1.0.2" 2424 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2425 | 2426 | uid-number@^0.0.6: 2427 | version "0.0.6" 2428 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2429 | 2430 | url@^0.11.0: 2431 | version "0.11.0" 2432 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 2433 | dependencies: 2434 | punycode "1.3.2" 2435 | querystring "0.2.0" 2436 | 2437 | util-deprecate@~1.0.1: 2438 | version "1.0.2" 2439 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2440 | 2441 | util@0.10.3, util@^0.10.3: 2442 | version "0.10.3" 2443 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 2444 | dependencies: 2445 | inherits "2.0.1" 2446 | 2447 | uuid@^3.0.0, uuid@^3.1.0: 2448 | version "3.1.0" 2449 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2450 | 2451 | validate-npm-package-license@^3.0.1: 2452 | version "3.0.1" 2453 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2454 | dependencies: 2455 | spdx-correct "~1.0.0" 2456 | spdx-expression-parse "~1.0.0" 2457 | 2458 | verror@1.10.0: 2459 | version "1.10.0" 2460 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2461 | dependencies: 2462 | assert-plus "^1.0.0" 2463 | core-util-is "1.0.2" 2464 | extsprintf "^1.2.0" 2465 | 2466 | vm-browserify@0.0.4: 2467 | version "0.0.4" 2468 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 2469 | dependencies: 2470 | indexof "0.0.1" 2471 | 2472 | vue@^2.2.4: 2473 | version "2.5.3" 2474 | resolved "https://registry.yarnpkg.com/vue/-/vue-2.5.3.tgz#e1a3b1f49b6e93e574ce040b95cbc873912fecc1" 2475 | 2476 | vuvuzela@1.0.3: 2477 | version "1.0.3" 2478 | resolved "https://registry.yarnpkg.com/vuvuzela/-/vuvuzela-1.0.3.tgz#3be145e58271c73ca55279dd851f12a682114b0b" 2479 | 2480 | watchpack@^1.3.1: 2481 | version "1.4.0" 2482 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac" 2483 | dependencies: 2484 | async "^2.1.2" 2485 | chokidar "^1.7.0" 2486 | graceful-fs "^4.1.2" 2487 | 2488 | webpack-sources@^1.0.1: 2489 | version "1.0.2" 2490 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.0.2.tgz#d0148ec083b3b5ccef1035a6b3ec16442983b27a" 2491 | dependencies: 2492 | source-list-map "^2.0.0" 2493 | source-map "~0.6.1" 2494 | 2495 | webpack@^2.2.0: 2496 | version "2.7.0" 2497 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.7.0.tgz#b2a1226804373ffd3d03ea9c6bd525067034f6b1" 2498 | dependencies: 2499 | acorn "^5.0.0" 2500 | acorn-dynamic-import "^2.0.0" 2501 | ajv "^4.7.0" 2502 | ajv-keywords "^1.1.1" 2503 | async "^2.1.2" 2504 | enhanced-resolve "^3.3.0" 2505 | interpret "^1.0.0" 2506 | json-loader "^0.5.4" 2507 | json5 "^0.5.1" 2508 | loader-runner "^2.3.0" 2509 | loader-utils "^0.2.16" 2510 | memory-fs "~0.4.1" 2511 | mkdirp "~0.5.0" 2512 | node-libs-browser "^2.0.0" 2513 | source-map "^0.5.3" 2514 | supports-color "^3.1.0" 2515 | tapable "~0.2.5" 2516 | uglify-js "^2.8.27" 2517 | watchpack "^1.3.1" 2518 | webpack-sources "^1.0.1" 2519 | yargs "^6.0.0" 2520 | 2521 | which-module@^1.0.0: 2522 | version "1.0.0" 2523 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2524 | 2525 | which@^1.2.9: 2526 | version "1.3.0" 2527 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2528 | dependencies: 2529 | isexe "^2.0.0" 2530 | 2531 | wide-align@^1.1.0: 2532 | version "1.1.2" 2533 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2534 | dependencies: 2535 | string-width "^1.0.2" 2536 | 2537 | window-size@0.1.0: 2538 | version "0.1.0" 2539 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2540 | 2541 | wordwrap@0.0.2: 2542 | version "0.0.2" 2543 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2544 | 2545 | wrap-ansi@^2.0.0: 2546 | version "2.1.0" 2547 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2548 | dependencies: 2549 | string-width "^1.0.1" 2550 | strip-ansi "^3.0.1" 2551 | 2552 | wrappy@1: 2553 | version "1.0.2" 2554 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2555 | 2556 | xtend@^4.0.0: 2557 | version "4.0.1" 2558 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2559 | 2560 | y18n@^3.2.1: 2561 | version "3.2.1" 2562 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2563 | 2564 | yallist@^2.1.2: 2565 | version "2.1.2" 2566 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2567 | 2568 | yargs-parser@^4.2.0: 2569 | version "4.2.1" 2570 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 2571 | dependencies: 2572 | camelcase "^3.0.0" 2573 | 2574 | yargs@^6.0.0: 2575 | version "6.6.0" 2576 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 2577 | dependencies: 2578 | camelcase "^3.0.0" 2579 | cliui "^3.2.0" 2580 | decamelize "^1.1.1" 2581 | get-caller-file "^1.0.1" 2582 | os-locale "^1.4.0" 2583 | read-pkg-up "^1.0.1" 2584 | require-directory "^2.1.1" 2585 | require-main-filename "^1.0.1" 2586 | set-blocking "^2.0.0" 2587 | string-width "^1.0.2" 2588 | which-module "^1.0.0" 2589 | y18n "^3.2.1" 2590 | yargs-parser "^4.2.0" 2591 | 2592 | yargs@~3.10.0: 2593 | version "3.10.0" 2594 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2595 | dependencies: 2596 | camelcase "^1.0.2" 2597 | cliui "^2.1.0" 2598 | decamelize "^1.0.0" 2599 | window-size "0.1.0" 2600 | --------------------------------------------------------------------------------