├── .babelrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── UPGRADE.md ├── index.js ├── package.json ├── src ├── filter.js ├── index.d.ts ├── index.js └── stream.js ├── test ├── index.js └── mocha.opts └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["transform-object-rest-spread"], 3 | "presets": [ 4 | ["env", { 5 | "targets": { 6 | "node": "6" 7 | } 8 | }] 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | examples 3 | .DS_Store 4 | dump.rdb 5 | *.log 6 | lib/ 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | examples 3 | npm-debug.log 4 | dump.rdb 5 | src/ 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: required 2 | language: node_js 3 | node_js: 4 | - "10" 5 | - "9" 6 | - "8" 7 | branches: 8 | only: 9 | - master 10 | services: 11 | - mongodb 12 | before_script: 13 | - echo "replication:" | sudo tee -a /etc/mongod.conf 14 | - |- 15 | echo " replSetName: \"rs0\"" | sudo tee -a /etc/mongod.conf 16 | - sudo service mongod restart 17 | - travis_retry npm install 18 | - |- 19 | mongo --eval 'rs.initiate({_id:"rs0", members: [{"_id":1, "host":"localhost:27017"}]})' 20 | - mongo --eval 'rs.status()' 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # mongo-oplog 2 | 3 | [![Build Status](https://img.shields.io/travis/cayasso/mongo-oplog/master.svg)](https://travis-ci.org/cayasso/mongo-oplog) 4 | [![NPM version](https://img.shields.io/npm/v/mongo-oplog.svg)](https://www.npmjs.com/package/mongo-oplog) 5 | [![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/sindresorhus/xo) 6 | 7 | Listening to MongoDB live changes using oplog. 8 | 9 | ## Features 10 | 11 | * Support start and stop tailing the MongoDB `oplog` at any time. 12 | * Support filtering `oplog` events by `namespaces` (database and collections). 13 | * Built on top of the native NodeJS [MongoDB driver](https://github.com/mongodb/node-mongodb-native/). 14 | * First class `Promise` support which enable the use of `async` and `await`. 15 | * The package has a very small footprint and requires just a few dependencies including `mongodb`, `debug` and `eventemitter3`. 16 | * Uses `eventemitter3` for high performance event emitting. 17 | * Strict and readable code enforced with [xo](https://github.com/sindresorhus/xo) 18 | * Unit tested with `mocha` and built with `babel` for backward compatibility with older versions of NodeJS like `v6.x` and `v7.x`. 19 | 20 | ## IMPORTANT! Major update version 2.0.x 21 | 22 | 2.0.x is a major rewrite taking advantage of `es6` and adding support for `promises` and `async/await`. Callbacks are still supported for backward compatibility. 23 | This version has minimum **API** changes, but these changes might affect your code, so please take a look at the upgrading guide before installing. 24 | 25 | [Check the upgrading guide here](https://github.com/cayasso/mongo-oplog/blob/master/UPGRADE.md) 26 | 27 | [Go here for the old 1.x readme](https://github.com/cayasso/mongo-oplog/tree/1.x) 28 | 29 | [Go here for the old 0.x readme](https://github.com/cayasso/mongo-oplog/tree/0.x) 30 | 31 | ## Installation 32 | 33 | ``` bash 34 | $ npm install mongo-oplog 35 | ``` 36 | 37 | ## Configure MongoDB with replica set 38 | 39 | You need to configure your MongoDB instance (local instance) to have access to the [oplog](https://docs.mongodb.com/manual/core/replica-set-oplog/), here are some quick steps on how to do so: 40 | 41 | 1. Shutdown your existing mongo instance if its running. 42 | 43 | 2. Restart the instance. Use the `--replSet` option to specify the name of the replica set. 44 | 45 | ``` bash 46 | $ sudo mongod --replSet rs0 47 | ``` 48 | 49 | 3. Connect to the mongo instance by executing `mongo` in your terminal: 50 | 51 | ```bash 52 | $ mongo 53 | ``` 54 | 55 | 4. In the mongo shell run `rs.initiate()` to initiate the new replica set: 56 | 57 | ```bash 58 | > rs.initiate() 59 | ``` 60 | 61 | Once it is initiated then you are ready to start using `mongo-oplog`. 62 | 63 | And [here is the official MongoDB documentation](https://docs.mongodb.com/manual/tutorial/convert-standalone-to-replica-set/) if you need additional help on MongoDB replica set. 64 | 65 | ## Usage 66 | 67 | ``` javascript 68 | import MongoOplog from 'mongo-oplog' 69 | const oplog = MongoOplog('mongodb://127.0.0.1:27017/local', { ns: 'test.posts' }) 70 | 71 | oplog.tail(); 72 | 73 | oplog.on('op', data => { 74 | console.log(data); 75 | }); 76 | 77 | oplog.on('insert', doc => { 78 | console.log(doc); 79 | }); 80 | 81 | oplog.on('update', doc => { 82 | console.log(doc); 83 | }); 84 | 85 | oplog.on('delete', doc => { 86 | console.log(doc.o._id); 87 | }); 88 | 89 | oplog.on('error', error => { 90 | console.log(error); 91 | }); 92 | 93 | oplog.on('end', () => { 94 | console.log('Stream ended'); 95 | }); 96 | 97 | oplog.stop(() => { 98 | console.log('server stopped'); 99 | }); 100 | ``` 101 | 102 | ## API 103 | 104 | ### MongoOplog(uri, [options]) 105 | 106 | * `uri`: Valid MongoDB uri or a MongoDB server instance. 107 | * `options` MongoDB connection options. 108 | 109 | ### oplog.tail([fn]) 110 | 111 | Start tailing. 112 | This method support both `Promise` and `callback`. 113 | 114 | ```javascript 115 | oplog.tail().then(() => { 116 | console.log('tailing started') 117 | }).catch(err => console.error(err)) 118 | 119 | // or with async/await 120 | async function tail() { 121 | try { 122 | await oplog.tail() 123 | console.log('tailing started') 124 | } catch (err) { 125 | console.log(err) 126 | } 127 | } 128 | ``` 129 | 130 | ### oplog.stop([fn]) 131 | 132 | Stop tailing and disconnect from server. 133 | This method support both `Promise` and `callback`. 134 | 135 | ```javascript 136 | oplog.stop().then(() => { 137 | console.log('tailing stopped') 138 | }).catch(err => console.error(err)) 139 | 140 | // or with async/await 141 | async function stop() { 142 | try { 143 | await oplog.stop() 144 | console.log('tailing stopped') 145 | } catch (err) { 146 | console.log(err) 147 | } 148 | } 149 | ``` 150 | 151 | ### oplog.destroy([fn]) 152 | 153 | Destroy the `mongo-oplog` object by stop tailing and disconnecting from server. 154 | This method support both `Promise` and `callback`. 155 | 156 | ```javascript 157 | oplog.destroy.then(() => { 158 | console.log('destroyed') 159 | }).catch(err => console.error(err)) 160 | 161 | // or with async/await 162 | async function destroy() { 163 | try { 164 | await oplog.destroy() 165 | console.log('destroyed') 166 | } catch (err) { 167 | console.log(err) 168 | } 169 | } 170 | ``` 171 | 172 | ### oplog.ignore 173 | 174 | Pause and resume oplog events. 175 | 176 | ```javascript 177 | oplog.ignore = true; // to pause 178 | oplog.ignore = false // to resume 179 | ``` 180 | 181 | ### oplog.filter(ns) 182 | 183 | Create and return a filter object. 184 | 185 | ```javascript 186 | const filter = oplog.filter('*.posts') 187 | filter.on('op', fn) 188 | oplog.tail() 189 | ``` 190 | 191 | ### filter.destroy() 192 | 193 | Destroy filter object. 194 | 195 | ```javascript 196 | filter.destroy() 197 | ``` 198 | 199 | ### filter.ignore 200 | 201 | Pause and resume filter events. 202 | 203 | ```javascript 204 | filter.ignore = true; // to pause 205 | filter.ignore = false // to resume 206 | ``` 207 | 208 | ### events 209 | 210 | Events supported by `oplog` and `filter`; 211 | 212 | * `op`: All bellow operations (oplog/filter). 213 | * `insert`: Document insert (oplog/filter). 214 | * `update`: Document update (oplog/filter). 215 | * `delete`: Document delete (oplog/filter). 216 | * `end`: Cursor stream ended (oplog). 217 | * `error`: Error (oplog). 218 | 219 | ## Run tests 220 | 221 | Configure MongoDB for active oplog, once this is done then you can run the test: 222 | 223 | ``` bash 224 | $ npm install 225 | $ npm run test 226 | ``` 227 | 228 | ## License 229 | 230 | (The MIT License) 231 | 232 | Copyright (c) 2015 Jonathan Brumley <cayasso@gmail.com> 233 | 234 | Permission is hereby granted, free of charge, to any person obtaining 235 | a copy of this software and associated documentation files (the 236 | 'Software'), to deal in the Software without restriction, including 237 | without limitation the rights to use, copy, modify, merge, publish, 238 | distribute, sublicense, and/or sell copies of the Software, and to 239 | permit persons to whom the Software is furnished to do so, subject to 240 | the following conditions: 241 | 242 | The above copyright notice and this permission notice shall be 243 | included in all copies or substantial portions of the Software. 244 | 245 | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, 246 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 247 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 248 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 249 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 250 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 251 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 252 | -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- 1 | # Upgrading from 1.x to 2.x 2 | 3 | Passing `database` as option to the constructor is no longer supported, for this please use the MongoDB connection url. 4 | 5 | ```js 6 | // instead of 7 | const options = { 8 | database: 'local' 9 | }; 10 | 11 | const oplog = MongoOplog('mongodb://mydomain.com:27017', options); 12 | 13 | // use like this 14 | const oplog = MongoOplog('mongodb://mydomain.com:27017/local'); 15 | ``` 16 | The `tail` method no longer return the `oplog` instance instead it returns a `Promise`. 17 | 18 | ```js 19 | // instead of 20 | const oplog = MongoOplog(conn.oplog, { ns: 'test.posts' }).tail() 21 | oplog.on('op', fn) 22 | 23 | // use this 24 | const oplog = MongoOplog(conn.oplog, { ns: 'test.posts' }) 25 | oplog.tail() 26 | oplog.on('op', fn) 27 | ``` 28 | 29 | The `tail`, `stop`, `destroy` methods now return a more convenient `Promise` instance instead of the `oplog` object. 30 | 31 | ```js 32 | oplog.tail().then(stream => { 33 | console.log('tailing') 34 | }).catch(err => console.log(err)) 35 | 36 | oplog.stop().then(() => { 37 | console.log('tailing stopped') 38 | }).catch(err => console.log(err)) 39 | 40 | oplog.destroy().then(() => { 41 | console.log('oplog connection destroyed') 42 | }).catch(err => console.log(err)) 43 | ``` 44 | 45 | Please note that callbacks are still supported for now, in the feature this can change and we might drop `callback` support in favor of only `promise`s. 46 | 47 | # Upgrading from 0.x to 1.x 48 | 49 | The constructor does no longer support `new`, just call the constructor as a regular function. 50 | 51 | ```js 52 | // instead of 53 | var oplog = new MongoOplog(uri); 54 | 55 | // use this 56 | var oplog = MongoOplog(uri); 57 | ``` 58 | The constructor does no longer support 3 arguments (`uri`, `ns`, `options`) but only two (`uri`, `options`). 59 | 60 | ```js 61 | // instead of 62 | var options = { 63 | database: 'local' 64 | }; 65 | 66 | var oplog = MongoOplog(uri, 'test.posts', options); 67 | 68 | // use like this 69 | var options = { 70 | ns: 'test.posts', 71 | database: 'local' 72 | }; 73 | 74 | var oplog = MongoOplog(uri, options); 75 | ``` 76 | Use `stop` or `destroy`, the first will stop and destroy the tailing cursor and the second will destroy cursor and database connection disconnecting from server. 77 | 78 | ```js 79 | oplog.destroy(function(){ 80 | console.log('destroyed'); 81 | }); 82 | ``` 83 | 84 | Use the `ignore` flag to pause and resume oplog events. 85 | 86 | ```js 87 | oplog.ignore = true; // to pause 88 | oplog.ignore = false // to resume 89 | ``` 90 | 91 | `oplog.filter` no longer has a `ns` method, you need to pass the namespace when invoking the filter method. 92 | 93 | 94 | ```js 95 | // instead of 96 | oplog.filter() 97 | .ns('*.posts') 98 | .on('op', function(doc){ 99 | console.log(doc); 100 | }); 101 | 102 | // use this 103 | oplog.filter('*.posts') 104 | .on('op', function(doc){ 105 | console.log(doc); 106 | }); 107 | ``` 108 | 109 | Filter object now has a `destroy` method. 110 | 111 | ```js 112 | filter.destroy(function(){ 113 | console.log('destroyed'); 114 | }); 115 | ``` 116 | 117 | Filters also support the `ignore` flag to pause and resume filter events. 118 | 119 | ```js 120 | filter.ignore = true; // to pause 121 | filter.ignore = false; // to resume 122 | ``` 123 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib') 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mongo-oplog", 3 | "version": "2.1.4", 4 | "description": "Watch mongodb oplog in a simple way", 5 | "author": "Jonathan Brumley ", 6 | "homepage": "https://github.com/cayasso/mongo-oplog", 7 | "main": "./index.js", 8 | "types": "./lib/index.d.ts", 9 | "scripts": { 10 | "test": "xo && mocha", 11 | "build": "npm run clean && ./node_modules/.bin/babel src -d lib && cp src/index.d.ts lib/", 12 | "prepare": "npm run build", 13 | "clean": "rm -rf lib/" 14 | }, 15 | "repository": { 16 | "type": "git", 17 | "url": "git://github.com/cayasso/mongo-oplog.git" 18 | }, 19 | "keywords": [ "data", "mongo", "mongodb", "watcher", "live", "oplog", "cursor" ], 20 | "license": "MIT", 21 | "dependencies": { 22 | "debug": "^3.1.0", 23 | "eventemitter3": "^2.0.3", 24 | "mongodb": "~2.2.x" 25 | }, 26 | "devDependencies": { 27 | "babel-cli": "^6.26.0", 28 | "babel-plugin-transform-object-rest-spread": "^6.26.0", 29 | "babel-preset-env": "^1.6.1", 30 | "eslint-config-prettier": "^2.8.0", 31 | "mocha": "^4.0.1", 32 | "pre-commit": "1.2.2", 33 | "should": "^13.1.3", 34 | "xo": "^0.18.2" 35 | }, 36 | "pre-commit": [ "test" ], 37 | "xo": { 38 | "extends": [ "prettier" ], 39 | "ignores": [ "test/**" ], 40 | "rules": { 41 | "object-curly-spacing": 0, 42 | "no-unused-expressions": 0, 43 | "no-negated-condition": 0, 44 | "new-cap": 0 45 | } 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /src/filter.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const Emitter = require('eventemitter3') 4 | const dbg = require('debug') 5 | 6 | const events = { 7 | i: 'insert', 8 | u: 'update', 9 | d: 'delete' 10 | } 11 | 12 | function regex(pattern) { 13 | pattern = pattern || '*' 14 | pattern = pattern.replace(/[*]/g, '(.*?)') 15 | return new RegExp(`^${pattern}$`, 'i') 16 | } 17 | 18 | module.exports = (ns, oplog) => { 19 | const debug = dbg('mongo-oplog:filter') 20 | const filter = new Emitter() 21 | const re = regex(ns) 22 | 23 | debug('initializing filter with re %s', ns) 24 | 25 | function onop(doc) { 26 | if (!re.test(doc.ns) || filter.ignore) return 27 | debug('incoming data %j', doc) 28 | filter.emit('op', doc) 29 | if (events[doc.op]) { 30 | filter.emit(events[doc.op], doc) 31 | } 32 | } 33 | 34 | function destroy() { 35 | debug('removing filter bindings') 36 | oplog.removeListener('op', onop) 37 | filter.removeAllListeners() 38 | } 39 | 40 | oplog.on('op', onop) 41 | 42 | return Object.assign(filter, { destroy }) 43 | } 44 | 45 | module.exports.regex = regex 46 | -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- 1 | // Type definitions for [cayasso/mongo-oplog] 2 | // Project: [https://github.com/cayasso/mongo-oplog] 3 | declare type MongoOplogOpEvent = 'delete' | 'insert' | 'op' | 'update'; 4 | declare type MongoOplogStatusEvent = 'connected' | 'destroy' | 'end' | 'error' | 'tail'; 5 | declare type MongoOplogEvents = MongoOplogOpEvent | MongoOplogStatusEvent; 6 | 7 | declare interface MongoOplogFiltered { 8 | on(evt: MongoOplogOpEvent, cb: (data: any) => void); 9 | once(evt: MongoOplogOpEvent, cb: (data: any) => void); 10 | addEventListener(evt: MongoOplogOpEvent, cb: Function): void; 11 | removeEventListener(evt: MongoOplogOpEvent, cb: Function): void; 12 | removeAllListeners(evt: MongoOplogOpEvent); 13 | destroy(): void; 14 | } 15 | 16 | interface MongoOplog { 17 | on(evt: MongoOplogEvents, cb: (data: any) => void); 18 | once(evt: MongoOplogEvents, cb: (data: any) => void); 19 | addEventListener(evt: MongoOplogEvents, cb: Function): void; 20 | removeEventListener(evt: MongoOplogEvents, cb: Function): void; 21 | removeAllListeners(evt: MongoOplogEvents); 22 | 23 | filter(): MongoOplogFiltered; 24 | filter(ns: string): MongoOplogFiltered; 25 | tail(): Promise; 26 | tail(cb: Function): void; 27 | stop(): Promise; 28 | stop(cb: Function): void; 29 | destroy(): Promise; 30 | destroy(cb: Function): void; 31 | } 32 | 33 | declare module 'mongo-oplog' { 34 | interface Db { collection: any; } 35 | interface Options { 36 | ns?: string; 37 | since?: number; 38 | coll?: string; 39 | } 40 | interface OptionsExt extends Options { 41 | [key: string]: any; 42 | } 43 | interface MongoOplogStatic { 44 | (): MongoOplog; 45 | (uri: string): MongoOplog; 46 | (uri: string, options: OptionsExt): MongoOplog; 47 | (db: T): MongoOplog; 48 | (db: T, options: Options): MongoOplog; 49 | } 50 | let mod: MongoOplogStatic; 51 | export = mod; 52 | } 53 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const Emitter = require('eventemitter3') 4 | const { MongoClient } = require('mongodb') 5 | const createDebug = require('debug') 6 | const createFilter = require('./filter') 7 | const createStream = require('./stream') 8 | 9 | const MONGO_URI = 'mongodb://127.0.0.1:27017/local' 10 | const debug = createDebug('mongo-oplog') 11 | 12 | const events = { 13 | i: 'insert', 14 | u: 'update', 15 | d: 'delete' 16 | } 17 | 18 | // Add callback support to promise 19 | const toCb = fn => cb => { 20 | try { 21 | const val = fn(cb) 22 | if (!cb) return val 23 | else if (val && typeof val.then === 'function') { 24 | return val.then(val => cb(null, val)).catch(cb) 25 | } 26 | cb(null, val) 27 | } catch (err) { 28 | cb(err) 29 | } 30 | } 31 | 32 | module.exports = (uri, options = {}) => { 33 | let db 34 | let stream 35 | let connected = false 36 | const { ns, since, coll, ...opts } = options 37 | const oplog = new Emitter() 38 | 39 | let ts = since || 0 40 | uri = uri || MONGO_URI 41 | 42 | if (typeof uri !== 'string') { 43 | if (uri && uri.collection) { 44 | db = uri 45 | connected = true 46 | } else { 47 | throw new Error('Invalid mongo db.') 48 | } 49 | } 50 | 51 | async function connect() { 52 | if (connected) return db 53 | db = await MongoClient.connect(uri, opts) 54 | connected = true 55 | } 56 | 57 | async function tail() { 58 | try { 59 | debug('Connected to oplog database') 60 | await connect() 61 | stream = await createStream({ ns, coll, ts, db }) 62 | stream.on('end', onend) 63 | stream.on('data', ondata) 64 | stream.on('error', onerror) 65 | return stream 66 | } catch (err) { 67 | onerror(err) 68 | } 69 | } 70 | 71 | function filter(ns) { 72 | return createFilter(ns, oplog) 73 | } 74 | 75 | async function stop() { 76 | if (stream) stream.destroy() 77 | debug('streaming stopped') 78 | return oplog 79 | } 80 | 81 | async function destroy() { 82 | await stop() 83 | if (!connected) return oplog 84 | await db.close(true) 85 | connected = false 86 | return oplog 87 | } 88 | 89 | function ondata(doc) { 90 | if (oplog.ignore) return oplog 91 | debug('incoming data %j', doc) 92 | ts = doc.ts 93 | oplog.emit('op', doc) 94 | oplog.emit(events[doc.op], doc) 95 | return oplog 96 | } 97 | 98 | function onend() { 99 | debug('stream ended') 100 | oplog.emit('end') 101 | return oplog 102 | } 103 | 104 | function onerror(err) { 105 | if (/cursor (killed or )?timed out/.test(err.message)) { 106 | debug('cursor timeout - re-tailing %j', err) 107 | tail() 108 | } else { 109 | debug('oplog error %j', err) 110 | oplog.emit('error', err) 111 | } 112 | } 113 | 114 | return Object.assign(oplog, { 115 | db, 116 | filter, 117 | tail: toCb(tail), 118 | stop: toCb(stop), 119 | destroy: toCb(destroy) 120 | }) 121 | } 122 | 123 | module.exports.events = events 124 | module.exports.default = module.exports 125 | -------------------------------------------------------------------------------- /src/stream.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const { Timestamp } = require('mongodb') 4 | const { regex } = require('./filter') 5 | 6 | module.exports = async ({ db, ns, ts, coll }) => { 7 | if (!db) throw new Error('Mongo db is missing.') 8 | 9 | const query = {} 10 | 11 | coll = db.collection(coll || 'oplog.rs') 12 | 13 | async function time() { 14 | if (ts) return (typeof ts !== 'number') ? ts : Timestamp(0, ts) 15 | 16 | const doc = await coll 17 | .find({}, { ts: 1 }) 18 | .sort({ $natural: -1 }) 19 | .limit(1) 20 | .nextObject() 21 | 22 | return doc ? doc.ts : Timestamp(0, (Date.now() / 1000 | 0)) 23 | } 24 | 25 | if (ns) query.ns = { $regex: regex(ns) } 26 | query.ts = { $gt: await time() } 27 | 28 | return (await coll.find(query, { 29 | tailable: true, 30 | awaitData: true, 31 | oplogReplay: true, 32 | noCursorTimeout: true, 33 | numberOfRetries: Number.MAX_VALUE 34 | })).stream() 35 | } 36 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const should = require('should') 4 | const { MongoClient } = require('mongodb') 5 | const MongoOplog = require('../src/index') 6 | 7 | const conn = { 8 | mongo: 'mongodb://127.0.0.1:27017/optest', 9 | oplog: 'mongodb://127.0.0.1:27017/local', 10 | error: 'mongodb://127.0.0.1:8888/error' 11 | } 12 | 13 | let db 14 | let opdb 15 | let oplog 16 | 17 | describe('mongo-oplog', function () { 18 | before(function (done) { 19 | MongoClient.connect(conn.mongo, function (err, database) { 20 | if (err) return done(err) 21 | db = database 22 | done() 23 | }) 24 | }) 25 | 26 | it('should be a function', function () { 27 | should(MongoOplog).be.a.Function 28 | }) 29 | 30 | it('should have required methods', function (done) { 31 | oplog = MongoOplog(opdb) 32 | should(oplog.tail).be.a.Function 33 | should(oplog.stop).be.a.Function 34 | should(oplog.filter).be.a.Function 35 | should(oplog.destroy).be.a.Function 36 | done() 37 | }) 38 | 39 | it('should accept mongodb object as connection', function (done) { 40 | MongoClient.connect(conn.oplog, function (err, db) { 41 | if (err) return done(err) 42 | oplog = MongoOplog(db) 43 | should(oplog.db).eql(db) 44 | db.dropDatabase(function () { 45 | db.close(done) 46 | }) 47 | }) 48 | }) 49 | 50 | it('should emit `op` event', function (done) { 51 | const coll = db.collection('a') 52 | oplog = MongoOplog(conn.oplog, { ns: 'optest.a' }) 53 | oplog.on('op', function (doc) { 54 | should(doc.op).be.eql('i') 55 | should(doc.o.n).be.eql('JB') 56 | should(doc.o.c).be.eql(1) 57 | done() 58 | }) 59 | oplog.tail(function (err) { 60 | if (err) return done(err) 61 | coll.insert({ n: 'JB', c: 1 }, function (err) { 62 | if (err) return done(err) 63 | }) 64 | }) 65 | }) 66 | 67 | it('should emit `insert` event', function (done) { 68 | const coll = db.collection('b') 69 | oplog = MongoOplog(conn.oplog, { ns: 'optest.b' }) 70 | oplog.on('insert', function (doc) { 71 | should(doc.op).be.eql('i') 72 | should(doc.o.n).be.eql('JBL') 73 | should(doc.o.c).be.eql(1) 74 | done() 75 | }) 76 | oplog.tail(function (err) { 77 | if (err) return done(err) 78 | coll.insert({ n: 'JBL', c: 1 }, function (err) { 79 | if (err) return done(err) 80 | }) 81 | }) 82 | }) 83 | 84 | it('should emit `update` event', function (done) { 85 | const coll = db.collection('c') 86 | oplog = MongoOplog(conn.oplog, { ns: 'optest.c' }) 87 | oplog.on('update', function (doc) { 88 | should(doc.op).be.eql('u') 89 | should(doc.o.$set.n).be.eql('US') 90 | should(doc.o.$set.c).be.eql(7) 91 | done() 92 | }) 93 | oplog.tail(function (err) { 94 | if (err) return done(err) 95 | coll.insert({ n: 'CR', c: 3 }, function (err, doc) { 96 | if (err) return done(err) 97 | coll.update({_id: {$exists: true}, n: 'CR', c: 3 }, { $set: { n: 'US', c: 7 } }, function (err) { 98 | if (err) return done(err) 99 | }) 100 | }) 101 | }) 102 | }) 103 | 104 | it('should emit `delete` event', function (done) { 105 | this.timeout(0) 106 | const coll = db.collection('d') 107 | oplog = MongoOplog(conn.oplog, { ns: 'optest.d' }) 108 | oplog.tail(function (err) { 109 | if (err) return done(err) 110 | coll.insert({ n: 'PM', c: 4 }, function (err, doc) { 111 | if (err) return done(err) 112 | var id = (doc.ops || doc)[0]._id 113 | oplog.on('delete', function (doc) { 114 | should(doc.op).be.eql('d') 115 | should(doc.o._id).be.eql(id) 116 | done() 117 | }) 118 | coll.remove({_id: {$exists: true}, n: 'PM', c: 4 }, function (err) { 119 | if (err) return done(err) 120 | }) 121 | }) 122 | }) 123 | }) 124 | 125 | it('should emit cursor `end` event', function (done) { 126 | oplog = MongoOplog(conn.oplog) 127 | oplog.tail(function (err, stream) { 128 | if (err) return done(err) 129 | oplog.once('end', () => { 130 | done() 131 | }) 132 | stream.emit('end') 133 | 134 | }) 135 | }) 136 | 137 | it('should emit `error` event', function (done) { 138 | oplog = MongoOplog(conn.error) 139 | oplog.tail() 140 | oplog.on('error', function (err) { 141 | should(err).be.an.Error 142 | done() 143 | }) 144 | }) 145 | 146 | it('should filter by collection', function (done) { 147 | const e1 = db.collection('e1') 148 | const e2 = db.collection('e2') 149 | oplog = MongoOplog(conn.oplog) 150 | 151 | const filter = oplog.filter('*.e1') 152 | 153 | filter.on('op', function(doc) { 154 | should(doc.o.n).be.eql('L1') 155 | done() 156 | }) 157 | 158 | oplog.tail(function (err) { 159 | if (err) return done(err) 160 | e1.insert({ n: 'L1' }, function (err) { 161 | if (err) return done(err) 162 | }) 163 | e2.insert({ n: 'L1' }, function (err) { 164 | if (err) return done(err) 165 | }) 166 | }) 167 | }) 168 | 169 | it('should filter by the exact namespace', function(done){ 170 | const cs = db.collection('cs') 171 | const css = db.collection('css') 172 | oplog = MongoOplog(conn.oplog) 173 | const filter = oplog.filter('optest.cs') 174 | 175 | filter.on('op', function(doc) { 176 | if ('L1' !== doc.o.n) done('should not throw') 177 | else done() 178 | }) 179 | 180 | oplog.tail(function (err) { 181 | if (err) return done(err) 182 | css.insert({ n: 'L2' }, function(err) { 183 | if (err) return done(err) 184 | cs.insert({ n: 'L1' }, function(err) { 185 | if (err) return done(err) 186 | }) 187 | }) 188 | }) 189 | }) 190 | 191 | it('should filter by namespace in constructor', function (done) { 192 | const f1 = db.collection('f1') 193 | const f2 = db.collection('f2') 194 | oplog = MongoOplog(conn.oplog, { ns: '*.f1' }) 195 | oplog.on('op', function (doc) { 196 | should(doc.o.n).be.eql('L2') 197 | done() 198 | }) 199 | oplog.tail(function (err) { 200 | if (err) return done(err) 201 | f1.insert({ n: 'L2' }, function (err) { 202 | if (err) return done(err) 203 | }) 204 | f2.insert({ n: 'L2' }, function (err) { 205 | if (err) return done(err) 206 | }) 207 | }) 208 | }) 209 | 210 | it('should destroy filter', function (done) { 211 | const coll = db.collection('g') 212 | oplog = MongoOplog(conn.oplog) 213 | const filter = oplog.filter('*.g') 214 | filter.on('op', function(doc) { 215 | filter.destroy() 216 | done() 217 | }) 218 | oplog.tail(function (err) { 219 | if (err) return done(err) 220 | coll.insert({ n: 'CR' }, function (err) { 221 | if (err) return done(err) 222 | }) 223 | coll.insert({ n: 'CR' }, function (err) { 224 | if (err) return done(err) 225 | }) 226 | }) 227 | }) 228 | 229 | it('should stop tailing', function (done) { 230 | const coll = db.collection('h') 231 | oplog = MongoOplog(conn.oplog, { ns: '*.h' }) 232 | oplog.on('op', function (doc) { 233 | oplog.stop() 234 | done() 235 | }) 236 | oplog.tail(function (err){ 237 | if (err) return done(err) 238 | coll.insert({ n: 'CR' }, function (err) { 239 | if (err) return done(err) 240 | }) 241 | coll.insert({ n: 'CR' }, function (err) { 242 | if (err) return done(err) 243 | }) 244 | }) 245 | }) 246 | 247 | it('should destroy oplog', function (done) { 248 | const coll = db.collection('i') 249 | oplog = MongoOplog(conn.oplog) 250 | oplog.on('op', function (doc) { 251 | oplog.destroy(done) 252 | }) 253 | oplog.tail(function (err){ 254 | if (err) return done(err) 255 | coll.insert({ n: 'CR' }, function (err) { 256 | if (err) return done(err) 257 | }) 258 | coll.insert({ n: 'CR' }, function (err) { 259 | if (err) return done(err) 260 | }) 261 | }) 262 | }) 263 | 264 | it('should ignore oplog op events', function (done) { 265 | const coll = db.collection('j') 266 | oplog = MongoOplog(conn.oplog, { ns: '*.j' }) 267 | oplog.on('op', function (doc) { 268 | oplog.ignore = true 269 | done() 270 | }) 271 | oplog.tail(function (err){ 272 | if (err) return done(err) 273 | coll.insert({ n: 'CR' }, function (err) { 274 | if (err) return done(err) 275 | }) 276 | coll.insert({ n: 'CR' }, function (err) { 277 | if (err) return done(err) 278 | }) 279 | }) 280 | }) 281 | 282 | it('should ignore filter op events', function (done) { 283 | const coll = db.collection('k') 284 | oplog = MongoOplog(conn.oplog) 285 | const filter = oplog.filter('*.k') 286 | 287 | filter.on('op', function(doc) { 288 | filter.ignore = true 289 | done() 290 | }) 291 | 292 | oplog.tail(function (err) { 293 | if (err) return done(err) 294 | coll.insert({ n: 'CR' }, function (err) { 295 | if (err) return done(err) 296 | }) 297 | coll.insert({ n: 'CR' }, function (err) { 298 | if (err) return done(err) 299 | }) 300 | }) 301 | }) 302 | 303 | it('should stop tailing', function (done) { 304 | const coll = db.collection('h') 305 | oplog = MongoOplog(conn.oplog, { ns: '*.h' }) 306 | oplog.on('op', function (doc) { 307 | oplog.stop() 308 | done() 309 | }) 310 | oplog.tail(function (err){ 311 | if (err) return done(err) 312 | coll.insert({ n: 'CR' }, function (err) { 313 | if (err) return done(err) 314 | }) 315 | coll.insert({ n: 'CR' }, function (err) { 316 | if (err) return done(err) 317 | }) 318 | }) 319 | }) 320 | 321 | it('should start from last ts when re-tailing', function (done) { 322 | this.timeout(0) 323 | let c = 0 324 | const v = {} 325 | const coll = db.collection('i') 326 | oplog = MongoOplog(conn.oplog, { ns: 'optest.i' }) 327 | oplog.on('op', function (doc) { 328 | v[doc.o.c] = 1 329 | should(Object.keys(v).length).be.equal(++c) 330 | if (6 === c) done() 331 | else if (c > 6) done('Not valid') 332 | }) 333 | 334 | oplog.tail(function() { 335 | coll.insert({ c: 1 }) 336 | coll.insert({ c: 2 }) 337 | coll.insert({ c: 3 }) 338 | setTimeout(function () { 339 | oplog.stop(function() { 340 | coll.insert({ c: 4 }) 341 | coll.insert({ c: 5 }) 342 | coll.insert({ c: 6 }) 343 | oplog.tail(function() { 344 | setTimeout(function () { 345 | oplog.stop(function() { 346 | oplog.tail() 347 | }) 348 | }, 500) 349 | }) 350 | }) 351 | }, 500) 352 | }) 353 | }) 354 | 355 | it('should start re-tailing on timeout', function (done) { 356 | this.timeout(0) 357 | let c = 0 358 | const v = {} 359 | const coll = db.collection('n') 360 | const oplog = MongoOplog(conn.oplog, { ns: 'optest.n' }) 361 | const values = {} 362 | const valueSize = 0 363 | oplog.on('op', function (doc) { 364 | v[doc.o.c] = 1 365 | should(Object.keys(v).length).be.equal(++c) 366 | if (6 === c) { 367 | setTimeout(function () { 368 | oplog.destroy(done) 369 | }, 100) 370 | } else if (c > 6) done('Not valid') 371 | }) 372 | oplog.tail(function(err, stream) { 373 | coll.insert({ c: 1 }) 374 | coll.insert({ c: 2 }) 375 | coll.insert({ c: 3 }) 376 | 377 | // Mimic a timeout error 378 | setTimeout(function() { 379 | stream.emit('error', { 380 | message: 'cursor killed or timed out', 381 | stack: {} 382 | }) 383 | stream.close() 384 | }, 500) 385 | stream.on('error', function () { 386 | setTimeout(function() { 387 | coll.insert({ c: 4 }) 388 | coll.insert({ c: 5 }) 389 | coll.insert({ c: 6 }) 390 | }, 500) 391 | }) 392 | }) 393 | }) 394 | 395 | it('should not throw if `destroy` called before connecting', function (done) { 396 | oplog = MongoOplog() 397 | done() 398 | }) 399 | 400 | afterEach(function (done) { 401 | if (oplog) oplog.destroy(done) 402 | else setTimeout(done, 10) 403 | }) 404 | 405 | after(function (done) { 406 | db.dropDatabase(function () { 407 | db.close(done) 408 | }) 409 | }) 410 | 411 | }) 412 | -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --require babel-core/register 2 | --reporter spec --require should --recursive test 3 | -------------------------------------------------------------------------------- /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-jsx@^3.0.0: 10 | version "3.0.1" 11 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 12 | dependencies: 13 | acorn "^3.0.4" 14 | 15 | acorn@^3.0.4: 16 | version "3.3.0" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 18 | 19 | acorn@^5.2.1: 20 | version "5.2.1" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.2.1.tgz#317ac7821826c22c702d66189ab8359675f135d7" 22 | 23 | ajv-keywords@^1.0.0: 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 | ansi-align@^2.0.0: 35 | version "2.0.0" 36 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 37 | dependencies: 38 | string-width "^2.0.0" 39 | 40 | ansi-escapes@^1.1.0: 41 | version "1.4.0" 42 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 43 | 44 | ansi-escapes@^2.0.0: 45 | version "2.0.0" 46 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" 47 | 48 | ansi-regex@^2.0.0: 49 | version "2.1.1" 50 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 51 | 52 | ansi-regex@^3.0.0: 53 | version "3.0.0" 54 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 55 | 56 | ansi-styles@^2.2.1: 57 | version "2.2.1" 58 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 59 | 60 | ansi-styles@^3.1.0: 61 | version "3.2.0" 62 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 63 | dependencies: 64 | color-convert "^1.9.0" 65 | 66 | anymatch@^1.3.0: 67 | version "1.3.2" 68 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 69 | dependencies: 70 | micromatch "^2.1.5" 71 | normalize-path "^2.0.0" 72 | 73 | aproba@^1.0.3: 74 | version "1.2.0" 75 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 76 | 77 | are-we-there-yet@~1.1.2: 78 | version "1.1.4" 79 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 80 | dependencies: 81 | delegates "^1.0.0" 82 | readable-stream "^2.0.6" 83 | 84 | argparse@^1.0.7: 85 | version "1.0.9" 86 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 87 | dependencies: 88 | sprintf-js "~1.0.2" 89 | 90 | arr-diff@^2.0.0: 91 | version "2.0.0" 92 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 93 | dependencies: 94 | arr-flatten "^1.0.1" 95 | 96 | arr-flatten@^1.0.1: 97 | version "1.1.0" 98 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 99 | 100 | array-differ@^1.0.0: 101 | version "1.0.0" 102 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 103 | 104 | array-find-index@^1.0.1: 105 | version "1.0.2" 106 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 107 | 108 | array-union@^1.0.1: 109 | version "1.0.2" 110 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 111 | dependencies: 112 | array-uniq "^1.0.1" 113 | 114 | array-uniq@^1.0.1: 115 | version "1.0.3" 116 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 117 | 118 | array-unique@^0.2.1: 119 | version "0.2.1" 120 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 121 | 122 | arrify@^1.0.0, arrify@^1.0.1: 123 | version "1.0.1" 124 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 125 | 126 | asn1@~0.2.3: 127 | version "0.2.3" 128 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 129 | 130 | assert-plus@1.0.0, assert-plus@^1.0.0: 131 | version "1.0.0" 132 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 133 | 134 | assert-plus@^0.2.0: 135 | version "0.2.0" 136 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 137 | 138 | async-each@^1.0.0: 139 | version "1.0.1" 140 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 141 | 142 | asynckit@^0.4.0: 143 | version "0.4.0" 144 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 145 | 146 | aws-sign2@~0.6.0: 147 | version "0.6.0" 148 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 149 | 150 | aws4@^1.2.1: 151 | version "1.6.0" 152 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 153 | 154 | babel-cli@^6.26.0: 155 | version "6.26.0" 156 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 157 | dependencies: 158 | babel-core "^6.26.0" 159 | babel-polyfill "^6.26.0" 160 | babel-register "^6.26.0" 161 | babel-runtime "^6.26.0" 162 | commander "^2.11.0" 163 | convert-source-map "^1.5.0" 164 | fs-readdir-recursive "^1.0.0" 165 | glob "^7.1.2" 166 | lodash "^4.17.4" 167 | output-file-sync "^1.1.2" 168 | path-is-absolute "^1.0.1" 169 | slash "^1.0.0" 170 | source-map "^0.5.6" 171 | v8flags "^2.1.1" 172 | optionalDependencies: 173 | chokidar "^1.6.1" 174 | 175 | babel-code-frame@^6.16.0, babel-code-frame@^6.26.0: 176 | version "6.26.0" 177 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 178 | dependencies: 179 | chalk "^1.1.3" 180 | esutils "^2.0.2" 181 | js-tokens "^3.0.2" 182 | 183 | babel-core@^6.26.0: 184 | version "6.26.0" 185 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 186 | dependencies: 187 | babel-code-frame "^6.26.0" 188 | babel-generator "^6.26.0" 189 | babel-helpers "^6.24.1" 190 | babel-messages "^6.23.0" 191 | babel-register "^6.26.0" 192 | babel-runtime "^6.26.0" 193 | babel-template "^6.26.0" 194 | babel-traverse "^6.26.0" 195 | babel-types "^6.26.0" 196 | babylon "^6.18.0" 197 | convert-source-map "^1.5.0" 198 | debug "^2.6.8" 199 | json5 "^0.5.1" 200 | lodash "^4.17.4" 201 | minimatch "^3.0.4" 202 | path-is-absolute "^1.0.1" 203 | private "^0.1.7" 204 | slash "^1.0.0" 205 | source-map "^0.5.6" 206 | 207 | babel-generator@^6.26.0: 208 | version "6.26.0" 209 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 210 | dependencies: 211 | babel-messages "^6.23.0" 212 | babel-runtime "^6.26.0" 213 | babel-types "^6.26.0" 214 | detect-indent "^4.0.0" 215 | jsesc "^1.3.0" 216 | lodash "^4.17.4" 217 | source-map "^0.5.6" 218 | trim-right "^1.0.1" 219 | 220 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 221 | version "6.24.1" 222 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 223 | dependencies: 224 | babel-helper-explode-assignable-expression "^6.24.1" 225 | babel-runtime "^6.22.0" 226 | babel-types "^6.24.1" 227 | 228 | babel-helper-call-delegate@^6.24.1: 229 | version "6.24.1" 230 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 231 | dependencies: 232 | babel-helper-hoist-variables "^6.24.1" 233 | babel-runtime "^6.22.0" 234 | babel-traverse "^6.24.1" 235 | babel-types "^6.24.1" 236 | 237 | babel-helper-define-map@^6.24.1: 238 | version "6.26.0" 239 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 240 | dependencies: 241 | babel-helper-function-name "^6.24.1" 242 | babel-runtime "^6.26.0" 243 | babel-types "^6.26.0" 244 | lodash "^4.17.4" 245 | 246 | babel-helper-explode-assignable-expression@^6.24.1: 247 | version "6.24.1" 248 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 249 | dependencies: 250 | babel-runtime "^6.22.0" 251 | babel-traverse "^6.24.1" 252 | babel-types "^6.24.1" 253 | 254 | babel-helper-function-name@^6.24.1: 255 | version "6.24.1" 256 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 257 | dependencies: 258 | babel-helper-get-function-arity "^6.24.1" 259 | babel-runtime "^6.22.0" 260 | babel-template "^6.24.1" 261 | babel-traverse "^6.24.1" 262 | babel-types "^6.24.1" 263 | 264 | babel-helper-get-function-arity@^6.24.1: 265 | version "6.24.1" 266 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 267 | dependencies: 268 | babel-runtime "^6.22.0" 269 | babel-types "^6.24.1" 270 | 271 | babel-helper-hoist-variables@^6.24.1: 272 | version "6.24.1" 273 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 274 | dependencies: 275 | babel-runtime "^6.22.0" 276 | babel-types "^6.24.1" 277 | 278 | babel-helper-optimise-call-expression@^6.24.1: 279 | version "6.24.1" 280 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 281 | dependencies: 282 | babel-runtime "^6.22.0" 283 | babel-types "^6.24.1" 284 | 285 | babel-helper-regex@^6.24.1: 286 | version "6.26.0" 287 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 288 | dependencies: 289 | babel-runtime "^6.26.0" 290 | babel-types "^6.26.0" 291 | lodash "^4.17.4" 292 | 293 | babel-helper-remap-async-to-generator@^6.24.1: 294 | version "6.24.1" 295 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 296 | dependencies: 297 | babel-helper-function-name "^6.24.1" 298 | babel-runtime "^6.22.0" 299 | babel-template "^6.24.1" 300 | babel-traverse "^6.24.1" 301 | babel-types "^6.24.1" 302 | 303 | babel-helper-replace-supers@^6.24.1: 304 | version "6.24.1" 305 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 306 | dependencies: 307 | babel-helper-optimise-call-expression "^6.24.1" 308 | babel-messages "^6.23.0" 309 | babel-runtime "^6.22.0" 310 | babel-template "^6.24.1" 311 | babel-traverse "^6.24.1" 312 | babel-types "^6.24.1" 313 | 314 | babel-helpers@^6.24.1: 315 | version "6.24.1" 316 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 317 | dependencies: 318 | babel-runtime "^6.22.0" 319 | babel-template "^6.24.1" 320 | 321 | babel-messages@^6.23.0: 322 | version "6.23.0" 323 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 324 | dependencies: 325 | babel-runtime "^6.22.0" 326 | 327 | babel-plugin-check-es2015-constants@^6.22.0: 328 | version "6.22.0" 329 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 330 | dependencies: 331 | babel-runtime "^6.22.0" 332 | 333 | babel-plugin-syntax-async-functions@^6.8.0: 334 | version "6.13.0" 335 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 336 | 337 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 338 | version "6.13.0" 339 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 340 | 341 | babel-plugin-syntax-object-rest-spread@^6.8.0: 342 | version "6.13.0" 343 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 344 | 345 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 346 | version "6.22.0" 347 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 348 | 349 | babel-plugin-transform-async-to-generator@^6.22.0: 350 | version "6.24.1" 351 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 352 | dependencies: 353 | babel-helper-remap-async-to-generator "^6.24.1" 354 | babel-plugin-syntax-async-functions "^6.8.0" 355 | babel-runtime "^6.22.0" 356 | 357 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 358 | version "6.22.0" 359 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 360 | dependencies: 361 | babel-runtime "^6.22.0" 362 | 363 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 364 | version "6.22.0" 365 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 366 | dependencies: 367 | babel-runtime "^6.22.0" 368 | 369 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 370 | version "6.26.0" 371 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 372 | dependencies: 373 | babel-runtime "^6.26.0" 374 | babel-template "^6.26.0" 375 | babel-traverse "^6.26.0" 376 | babel-types "^6.26.0" 377 | lodash "^4.17.4" 378 | 379 | babel-plugin-transform-es2015-classes@^6.23.0: 380 | version "6.24.1" 381 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 382 | dependencies: 383 | babel-helper-define-map "^6.24.1" 384 | babel-helper-function-name "^6.24.1" 385 | babel-helper-optimise-call-expression "^6.24.1" 386 | babel-helper-replace-supers "^6.24.1" 387 | babel-messages "^6.23.0" 388 | babel-runtime "^6.22.0" 389 | babel-template "^6.24.1" 390 | babel-traverse "^6.24.1" 391 | babel-types "^6.24.1" 392 | 393 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 394 | version "6.24.1" 395 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 396 | dependencies: 397 | babel-runtime "^6.22.0" 398 | babel-template "^6.24.1" 399 | 400 | babel-plugin-transform-es2015-destructuring@^6.23.0: 401 | version "6.23.0" 402 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 403 | dependencies: 404 | babel-runtime "^6.22.0" 405 | 406 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 407 | version "6.24.1" 408 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 409 | dependencies: 410 | babel-runtime "^6.22.0" 411 | babel-types "^6.24.1" 412 | 413 | babel-plugin-transform-es2015-for-of@^6.23.0: 414 | version "6.23.0" 415 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 416 | dependencies: 417 | babel-runtime "^6.22.0" 418 | 419 | babel-plugin-transform-es2015-function-name@^6.22.0: 420 | version "6.24.1" 421 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 422 | dependencies: 423 | babel-helper-function-name "^6.24.1" 424 | babel-runtime "^6.22.0" 425 | babel-types "^6.24.1" 426 | 427 | babel-plugin-transform-es2015-literals@^6.22.0: 428 | version "6.22.0" 429 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 430 | dependencies: 431 | babel-runtime "^6.22.0" 432 | 433 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 434 | version "6.24.1" 435 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 436 | dependencies: 437 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 438 | babel-runtime "^6.22.0" 439 | babel-template "^6.24.1" 440 | 441 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 442 | version "6.26.0" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 444 | dependencies: 445 | babel-plugin-transform-strict-mode "^6.24.1" 446 | babel-runtime "^6.26.0" 447 | babel-template "^6.26.0" 448 | babel-types "^6.26.0" 449 | 450 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 451 | version "6.24.1" 452 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 453 | dependencies: 454 | babel-helper-hoist-variables "^6.24.1" 455 | babel-runtime "^6.22.0" 456 | babel-template "^6.24.1" 457 | 458 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 459 | version "6.24.1" 460 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 461 | dependencies: 462 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 463 | babel-runtime "^6.22.0" 464 | babel-template "^6.24.1" 465 | 466 | babel-plugin-transform-es2015-object-super@^6.22.0: 467 | version "6.24.1" 468 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 469 | dependencies: 470 | babel-helper-replace-supers "^6.24.1" 471 | babel-runtime "^6.22.0" 472 | 473 | babel-plugin-transform-es2015-parameters@^6.23.0: 474 | version "6.24.1" 475 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 476 | dependencies: 477 | babel-helper-call-delegate "^6.24.1" 478 | babel-helper-get-function-arity "^6.24.1" 479 | babel-runtime "^6.22.0" 480 | babel-template "^6.24.1" 481 | babel-traverse "^6.24.1" 482 | babel-types "^6.24.1" 483 | 484 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 485 | version "6.24.1" 486 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 487 | dependencies: 488 | babel-runtime "^6.22.0" 489 | babel-types "^6.24.1" 490 | 491 | babel-plugin-transform-es2015-spread@^6.22.0: 492 | version "6.22.0" 493 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 494 | dependencies: 495 | babel-runtime "^6.22.0" 496 | 497 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 498 | version "6.24.1" 499 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 500 | dependencies: 501 | babel-helper-regex "^6.24.1" 502 | babel-runtime "^6.22.0" 503 | babel-types "^6.24.1" 504 | 505 | babel-plugin-transform-es2015-template-literals@^6.22.0: 506 | version "6.22.0" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 508 | dependencies: 509 | babel-runtime "^6.22.0" 510 | 511 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 512 | version "6.23.0" 513 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 514 | dependencies: 515 | babel-runtime "^6.22.0" 516 | 517 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 518 | version "6.24.1" 519 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 520 | dependencies: 521 | babel-helper-regex "^6.24.1" 522 | babel-runtime "^6.22.0" 523 | regexpu-core "^2.0.0" 524 | 525 | babel-plugin-transform-exponentiation-operator@^6.22.0: 526 | version "6.24.1" 527 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 528 | dependencies: 529 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 530 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 531 | babel-runtime "^6.22.0" 532 | 533 | babel-plugin-transform-object-rest-spread@^6.26.0: 534 | version "6.26.0" 535 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 536 | dependencies: 537 | babel-plugin-syntax-object-rest-spread "^6.8.0" 538 | babel-runtime "^6.26.0" 539 | 540 | babel-plugin-transform-regenerator@^6.22.0: 541 | version "6.26.0" 542 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 543 | dependencies: 544 | regenerator-transform "^0.10.0" 545 | 546 | babel-plugin-transform-strict-mode@^6.24.1: 547 | version "6.24.1" 548 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 549 | dependencies: 550 | babel-runtime "^6.22.0" 551 | babel-types "^6.24.1" 552 | 553 | babel-polyfill@^6.26.0: 554 | version "6.26.0" 555 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 556 | dependencies: 557 | babel-runtime "^6.26.0" 558 | core-js "^2.5.0" 559 | regenerator-runtime "^0.10.5" 560 | 561 | babel-preset-env@^1.6.1: 562 | version "1.6.1" 563 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 564 | dependencies: 565 | babel-plugin-check-es2015-constants "^6.22.0" 566 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 567 | babel-plugin-transform-async-to-generator "^6.22.0" 568 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 569 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 570 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 571 | babel-plugin-transform-es2015-classes "^6.23.0" 572 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 573 | babel-plugin-transform-es2015-destructuring "^6.23.0" 574 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 575 | babel-plugin-transform-es2015-for-of "^6.23.0" 576 | babel-plugin-transform-es2015-function-name "^6.22.0" 577 | babel-plugin-transform-es2015-literals "^6.22.0" 578 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 579 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 580 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 581 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 582 | babel-plugin-transform-es2015-object-super "^6.22.0" 583 | babel-plugin-transform-es2015-parameters "^6.23.0" 584 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 585 | babel-plugin-transform-es2015-spread "^6.22.0" 586 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 587 | babel-plugin-transform-es2015-template-literals "^6.22.0" 588 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 589 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 590 | babel-plugin-transform-exponentiation-operator "^6.22.0" 591 | babel-plugin-transform-regenerator "^6.22.0" 592 | browserslist "^2.1.2" 593 | invariant "^2.2.2" 594 | semver "^5.3.0" 595 | 596 | babel-register@^6.26.0: 597 | version "6.26.0" 598 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 599 | dependencies: 600 | babel-core "^6.26.0" 601 | babel-runtime "^6.26.0" 602 | core-js "^2.5.0" 603 | home-or-tmp "^2.0.0" 604 | lodash "^4.17.4" 605 | mkdirp "^0.5.1" 606 | source-map-support "^0.4.15" 607 | 608 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 609 | version "6.26.0" 610 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 611 | dependencies: 612 | core-js "^2.4.0" 613 | regenerator-runtime "^0.11.0" 614 | 615 | babel-template@^6.24.1, babel-template@^6.26.0: 616 | version "6.26.0" 617 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 618 | dependencies: 619 | babel-runtime "^6.26.0" 620 | babel-traverse "^6.26.0" 621 | babel-types "^6.26.0" 622 | babylon "^6.18.0" 623 | lodash "^4.17.4" 624 | 625 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 626 | version "6.26.0" 627 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 628 | dependencies: 629 | babel-code-frame "^6.26.0" 630 | babel-messages "^6.23.0" 631 | babel-runtime "^6.26.0" 632 | babel-types "^6.26.0" 633 | babylon "^6.18.0" 634 | debug "^2.6.8" 635 | globals "^9.18.0" 636 | invariant "^2.2.2" 637 | lodash "^4.17.4" 638 | 639 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 640 | version "6.26.0" 641 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 642 | dependencies: 643 | babel-runtime "^6.26.0" 644 | esutils "^2.0.2" 645 | lodash "^4.17.4" 646 | to-fast-properties "^1.0.3" 647 | 648 | babylon@^6.18.0: 649 | version "6.18.0" 650 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 651 | 652 | balanced-match@^1.0.0: 653 | version "1.0.0" 654 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 655 | 656 | bcrypt-pbkdf@^1.0.0: 657 | version "1.0.1" 658 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 659 | dependencies: 660 | tweetnacl "^0.14.3" 661 | 662 | binary-extensions@^1.0.0: 663 | version "1.11.0" 664 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 665 | 666 | block-stream@*: 667 | version "0.0.9" 668 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 669 | dependencies: 670 | inherits "~2.0.0" 671 | 672 | boom@2.x.x: 673 | version "2.10.1" 674 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 675 | dependencies: 676 | hoek "2.x.x" 677 | 678 | boxen@^1.2.1: 679 | version "1.2.2" 680 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.2.2.tgz#3f1d4032c30ffea9d4b02c322eaf2ea741dcbce5" 681 | dependencies: 682 | ansi-align "^2.0.0" 683 | camelcase "^4.0.0" 684 | chalk "^2.0.1" 685 | cli-boxes "^1.0.0" 686 | string-width "^2.0.0" 687 | term-size "^1.2.0" 688 | widest-line "^1.0.0" 689 | 690 | brace-expansion@^1.1.7: 691 | version "1.1.8" 692 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 693 | dependencies: 694 | balanced-match "^1.0.0" 695 | concat-map "0.0.1" 696 | 697 | braces@^1.8.2: 698 | version "1.8.5" 699 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 700 | dependencies: 701 | expand-range "^1.8.1" 702 | preserve "^0.2.0" 703 | repeat-element "^1.1.2" 704 | 705 | browser-stdout@1.3.0: 706 | version "1.3.0" 707 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 708 | 709 | browserslist@^2.1.2: 710 | version "2.9.0" 711 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.9.0.tgz#706aca15c53be15610f466e348cbfa0c00a6a379" 712 | dependencies: 713 | caniuse-lite "^1.0.30000760" 714 | electron-to-chromium "^1.3.27" 715 | 716 | bson@~1.0.4: 717 | version "1.0.4" 718 | resolved "https://registry.yarnpkg.com/bson/-/bson-1.0.4.tgz#93c10d39eaa5b58415cbc4052f3e53e562b0b72c" 719 | 720 | buf-compare@^1.0.0: 721 | version "1.0.1" 722 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" 723 | 724 | buffer-shims@~1.0.0: 725 | version "1.0.0" 726 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 727 | 728 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 729 | version "1.1.1" 730 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 731 | 732 | caller-path@^0.1.0: 733 | version "0.1.0" 734 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 735 | dependencies: 736 | callsites "^0.2.0" 737 | 738 | callsites@^0.2.0: 739 | version "0.2.0" 740 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 741 | 742 | camelcase-keys@^2.0.0: 743 | version "2.1.0" 744 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 745 | dependencies: 746 | camelcase "^2.0.0" 747 | map-obj "^1.0.0" 748 | 749 | camelcase@^2.0.0: 750 | version "2.1.1" 751 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 752 | 753 | camelcase@^4.0.0: 754 | version "4.1.0" 755 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 756 | 757 | caniuse-lite@^1.0.30000760: 758 | version "1.0.30000769" 759 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000769.tgz#d68c5aa0772ea3eac6c97d42e239c9b4d3261b93" 760 | 761 | capture-stack-trace@^1.0.0: 762 | version "1.0.0" 763 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 764 | 765 | caseless@~0.12.0: 766 | version "0.12.0" 767 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 768 | 769 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 770 | version "1.1.3" 771 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 772 | dependencies: 773 | ansi-styles "^2.2.1" 774 | escape-string-regexp "^1.0.2" 775 | has-ansi "^2.0.0" 776 | strip-ansi "^3.0.0" 777 | supports-color "^2.0.0" 778 | 779 | chalk@^2.0.1, chalk@^2.1.0: 780 | version "2.3.0" 781 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 782 | dependencies: 783 | ansi-styles "^3.1.0" 784 | escape-string-regexp "^1.0.5" 785 | supports-color "^4.0.0" 786 | 787 | chokidar@^1.6.1: 788 | version "1.7.0" 789 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 790 | dependencies: 791 | anymatch "^1.3.0" 792 | async-each "^1.0.0" 793 | glob-parent "^2.0.0" 794 | inherits "^2.0.1" 795 | is-binary-path "^1.0.0" 796 | is-glob "^2.0.0" 797 | path-is-absolute "^1.0.0" 798 | readdirp "^2.0.0" 799 | optionalDependencies: 800 | fsevents "^1.0.0" 801 | 802 | circular-json@^0.3.1: 803 | version "0.3.3" 804 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 805 | 806 | cli-boxes@^1.0.0: 807 | version "1.0.0" 808 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 809 | 810 | cli-cursor@^1.0.1: 811 | version "1.0.2" 812 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 813 | dependencies: 814 | restore-cursor "^1.0.1" 815 | 816 | cli-width@^2.0.0: 817 | version "2.2.0" 818 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 819 | 820 | co@^4.6.0: 821 | version "4.6.0" 822 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 823 | 824 | code-point-at@^1.0.0: 825 | version "1.1.0" 826 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 827 | 828 | color-convert@^1.9.0: 829 | version "1.9.1" 830 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 831 | dependencies: 832 | color-name "^1.1.1" 833 | 834 | color-name@^1.1.1: 835 | version "1.1.3" 836 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 837 | 838 | combined-stream@^1.0.5, combined-stream@~1.0.5: 839 | version "1.0.5" 840 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 841 | dependencies: 842 | delayed-stream "~1.0.0" 843 | 844 | commander@2.11.0, commander@^2.11.0: 845 | version "2.11.0" 846 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 847 | 848 | concat-map@0.0.1: 849 | version "0.0.1" 850 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 851 | 852 | concat-stream@^1.4.7, concat-stream@^1.5.2: 853 | version "1.6.0" 854 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 855 | dependencies: 856 | inherits "^2.0.3" 857 | readable-stream "^2.2.2" 858 | typedarray "^0.0.6" 859 | 860 | configstore@^3.0.0: 861 | version "3.1.1" 862 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90" 863 | dependencies: 864 | dot-prop "^4.1.0" 865 | graceful-fs "^4.1.2" 866 | make-dir "^1.0.0" 867 | unique-string "^1.0.0" 868 | write-file-atomic "^2.0.0" 869 | xdg-basedir "^3.0.0" 870 | 871 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 872 | version "1.1.0" 873 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 874 | 875 | contains-path@^0.1.0: 876 | version "0.1.0" 877 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 878 | 879 | convert-source-map@^1.5.0: 880 | version "1.5.0" 881 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 882 | 883 | core-assert@^0.2.0: 884 | version "0.2.1" 885 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" 886 | dependencies: 887 | buf-compare "^1.0.0" 888 | is-error "^2.2.0" 889 | 890 | core-js@^2.0.0, core-js@^2.4.0, core-js@^2.5.0: 891 | version "2.5.1" 892 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 893 | 894 | core-util-is@1.0.2, core-util-is@~1.0.0: 895 | version "1.0.2" 896 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 897 | 898 | create-error-class@^3.0.0: 899 | version "3.0.2" 900 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 901 | dependencies: 902 | capture-stack-trace "^1.0.0" 903 | 904 | cross-spawn@^4.0.0: 905 | version "4.0.2" 906 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 907 | dependencies: 908 | lru-cache "^4.0.1" 909 | which "^1.2.9" 910 | 911 | cross-spawn@^5.0.1: 912 | version "5.1.0" 913 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 914 | dependencies: 915 | lru-cache "^4.0.1" 916 | shebang-command "^1.2.0" 917 | which "^1.2.9" 918 | 919 | cryptiles@2.x.x: 920 | version "2.0.5" 921 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 922 | dependencies: 923 | boom "2.x.x" 924 | 925 | crypto-random-string@^1.0.0: 926 | version "1.0.0" 927 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 928 | 929 | currently-unhandled@^0.4.1: 930 | version "0.4.1" 931 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 932 | dependencies: 933 | array-find-index "^1.0.1" 934 | 935 | d@1: 936 | version "1.0.0" 937 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 938 | dependencies: 939 | es5-ext "^0.10.9" 940 | 941 | dashdash@^1.12.0: 942 | version "1.14.1" 943 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 944 | dependencies: 945 | assert-plus "^1.0.0" 946 | 947 | debug@3.1.0, debug@^3.1.0: 948 | version "3.1.0" 949 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 950 | dependencies: 951 | ms "2.0.0" 952 | 953 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.8: 954 | version "2.6.9" 955 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 956 | dependencies: 957 | ms "2.0.0" 958 | 959 | decamelize@^1.1.2: 960 | version "1.2.0" 961 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 962 | 963 | deep-assign@^1.0.0: 964 | version "1.0.0" 965 | resolved "https://registry.yarnpkg.com/deep-assign/-/deep-assign-1.0.0.tgz#b092743be8427dc621ea0067cdec7e70dd19f37b" 966 | dependencies: 967 | is-obj "^1.0.0" 968 | 969 | deep-extend@~0.4.0: 970 | version "0.4.2" 971 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 972 | 973 | deep-is@~0.1.3: 974 | version "0.1.3" 975 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 976 | 977 | deep-strict-equal@^0.2.0: 978 | version "0.2.0" 979 | resolved "https://registry.yarnpkg.com/deep-strict-equal/-/deep-strict-equal-0.2.0.tgz#4a078147a8ab57f6a0d4f5547243cd22f44eb4e4" 980 | dependencies: 981 | core-assert "^0.2.0" 982 | 983 | del@^2.0.2: 984 | version "2.2.2" 985 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 986 | dependencies: 987 | globby "^5.0.0" 988 | is-path-cwd "^1.0.0" 989 | is-path-in-cwd "^1.0.0" 990 | object-assign "^4.0.1" 991 | pify "^2.0.0" 992 | pinkie-promise "^2.0.0" 993 | rimraf "^2.2.8" 994 | 995 | delayed-stream@~1.0.0: 996 | version "1.0.0" 997 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 998 | 999 | delegates@^1.0.0: 1000 | version "1.0.0" 1001 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1002 | 1003 | detect-indent@^4.0.0: 1004 | version "4.0.0" 1005 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1006 | dependencies: 1007 | repeating "^2.0.0" 1008 | 1009 | detect-indent@^5.0.0: 1010 | version "5.0.0" 1011 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" 1012 | 1013 | detect-libc@^1.0.2: 1014 | version "1.0.2" 1015 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.2.tgz#71ad5d204bf17a6a6ca8f450c61454066ef461e1" 1016 | 1017 | diff@3.3.1: 1018 | version "3.3.1" 1019 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" 1020 | 1021 | doctrine@1.5.0: 1022 | version "1.5.0" 1023 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1024 | dependencies: 1025 | esutils "^2.0.2" 1026 | isarray "^1.0.0" 1027 | 1028 | doctrine@^2.0.0: 1029 | version "2.0.0" 1030 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1031 | dependencies: 1032 | esutils "^2.0.2" 1033 | isarray "^1.0.0" 1034 | 1035 | dot-prop@^4.1.0: 1036 | version "4.2.0" 1037 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 1038 | dependencies: 1039 | is-obj "^1.0.0" 1040 | 1041 | duplexer3@^0.1.4: 1042 | version "0.1.4" 1043 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1044 | 1045 | ecc-jsbn@~0.1.1: 1046 | version "0.1.1" 1047 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1048 | dependencies: 1049 | jsbn "~0.1.0" 1050 | 1051 | electron-to-chromium@^1.3.27: 1052 | version "1.3.27" 1053 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.27.tgz#78ecb8a399066187bb374eede35d9c70565a803d" 1054 | 1055 | enhance-visitors@^1.0.0: 1056 | version "1.0.0" 1057 | resolved "https://registry.yarnpkg.com/enhance-visitors/-/enhance-visitors-1.0.0.tgz#aa945d05da465672a1ebd38fee2ed3da8518e95a" 1058 | dependencies: 1059 | lodash "^4.13.1" 1060 | 1061 | error-ex@^1.2.0: 1062 | version "1.3.1" 1063 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1064 | dependencies: 1065 | is-arrayish "^0.2.1" 1066 | 1067 | es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: 1068 | version "0.10.35" 1069 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.35.tgz#18ee858ce6a3c45c7d79e91c15fcca9ec568494f" 1070 | dependencies: 1071 | es6-iterator "~2.0.1" 1072 | es6-symbol "~3.1.1" 1073 | 1074 | es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1075 | version "2.0.3" 1076 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 1077 | dependencies: 1078 | d "1" 1079 | es5-ext "^0.10.35" 1080 | es6-symbol "^3.1.1" 1081 | 1082 | es6-map@^0.1.3: 1083 | version "0.1.5" 1084 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1085 | dependencies: 1086 | d "1" 1087 | es5-ext "~0.10.14" 1088 | es6-iterator "~2.0.1" 1089 | es6-set "~0.1.5" 1090 | es6-symbol "~3.1.1" 1091 | event-emitter "~0.3.5" 1092 | 1093 | es6-promise@3.2.1: 1094 | version "3.2.1" 1095 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.2.1.tgz#ec56233868032909207170c39448e24449dd1fc4" 1096 | 1097 | es6-set@~0.1.5: 1098 | version "0.1.5" 1099 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1100 | dependencies: 1101 | d "1" 1102 | es5-ext "~0.10.14" 1103 | es6-iterator "~2.0.1" 1104 | es6-symbol "3.1.1" 1105 | event-emitter "~0.3.5" 1106 | 1107 | es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: 1108 | version "3.1.1" 1109 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1110 | dependencies: 1111 | d "1" 1112 | es5-ext "~0.10.14" 1113 | 1114 | es6-weak-map@^2.0.1: 1115 | version "2.0.2" 1116 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1117 | dependencies: 1118 | d "1" 1119 | es5-ext "^0.10.14" 1120 | es6-iterator "^2.0.1" 1121 | es6-symbol "^3.1.1" 1122 | 1123 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1124 | version "1.0.5" 1125 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1126 | 1127 | escope@^3.6.0: 1128 | version "3.6.0" 1129 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1130 | dependencies: 1131 | es6-map "^0.1.3" 1132 | es6-weak-map "^2.0.1" 1133 | esrecurse "^4.1.0" 1134 | estraverse "^4.1.1" 1135 | 1136 | eslint-config-prettier@^2.8.0: 1137 | version "2.8.0" 1138 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.8.0.tgz#929861a11de0249677686eba908118175d1a26bc" 1139 | dependencies: 1140 | get-stdin "^5.0.1" 1141 | 1142 | eslint-config-xo@^0.18.0: 1143 | version "0.18.2" 1144 | resolved "https://registry.yarnpkg.com/eslint-config-xo/-/eslint-config-xo-0.18.2.tgz#0a157120875619929e735ffd6b185c41e8a187af" 1145 | 1146 | eslint-formatter-pretty@^1.0.0: 1147 | version "1.3.0" 1148 | resolved "https://registry.yarnpkg.com/eslint-formatter-pretty/-/eslint-formatter-pretty-1.3.0.tgz#985d9e41c1f8475f4a090c5dbd2dfcf2821d607e" 1149 | dependencies: 1150 | ansi-escapes "^2.0.0" 1151 | chalk "^2.1.0" 1152 | log-symbols "^2.0.0" 1153 | plur "^2.1.2" 1154 | string-width "^2.0.0" 1155 | 1156 | eslint-import-resolver-node@^0.3.1: 1157 | version "0.3.1" 1158 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc" 1159 | dependencies: 1160 | debug "^2.6.8" 1161 | resolve "^1.2.0" 1162 | 1163 | eslint-module-utils@^2.1.1: 1164 | version "2.1.1" 1165 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 1166 | dependencies: 1167 | debug "^2.6.8" 1168 | pkg-dir "^1.0.0" 1169 | 1170 | eslint-plugin-ava@^4.2.0: 1171 | version "4.2.2" 1172 | resolved "https://registry.yarnpkg.com/eslint-plugin-ava/-/eslint-plugin-ava-4.2.2.tgz#0a20395ddf6d7452f4f9d6fd1a90f0bf4a5fc4d5" 1173 | dependencies: 1174 | arrify "^1.0.1" 1175 | deep-strict-equal "^0.2.0" 1176 | enhance-visitors "^1.0.0" 1177 | espree "^3.1.3" 1178 | espurify "^1.5.0" 1179 | import-modules "^1.1.0" 1180 | multimatch "^2.1.0" 1181 | pkg-up "^2.0.0" 1182 | 1183 | eslint-plugin-import@^2.0.0: 1184 | version "2.8.0" 1185 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz#fa1b6ef31fcb3c501c09859c1b86f1fc5b986894" 1186 | dependencies: 1187 | builtin-modules "^1.1.1" 1188 | contains-path "^0.1.0" 1189 | debug "^2.6.8" 1190 | doctrine "1.5.0" 1191 | eslint-import-resolver-node "^0.3.1" 1192 | eslint-module-utils "^2.1.1" 1193 | has "^1.0.1" 1194 | lodash.cond "^4.3.0" 1195 | minimatch "^3.0.3" 1196 | read-pkg-up "^2.0.0" 1197 | 1198 | eslint-plugin-no-use-extend-native@^0.3.2: 1199 | version "0.3.12" 1200 | resolved "https://registry.yarnpkg.com/eslint-plugin-no-use-extend-native/-/eslint-plugin-no-use-extend-native-0.3.12.tgz#3ad9a00c2df23b5d7f7f6be91550985a4ab701ea" 1201 | dependencies: 1202 | is-get-set-prop "^1.0.0" 1203 | is-js-type "^2.0.0" 1204 | is-obj-prop "^1.0.0" 1205 | is-proto-prop "^1.0.0" 1206 | 1207 | eslint-plugin-promise@^3.4.0: 1208 | version "3.6.0" 1209 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.6.0.tgz#54b7658c8f454813dc2a870aff8152ec4969ba75" 1210 | 1211 | eslint-plugin-unicorn@^2.1.0: 1212 | version "2.1.2" 1213 | resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-2.1.2.tgz#99dffe9f4773b04bc39356a7febd64dd700274bc" 1214 | dependencies: 1215 | import-modules "^1.1.0" 1216 | lodash.camelcase "^4.1.1" 1217 | lodash.kebabcase "^4.0.1" 1218 | lodash.snakecase "^4.0.1" 1219 | lodash.upperfirst "^4.2.0" 1220 | 1221 | eslint@^3.18.0: 1222 | version "3.19.0" 1223 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 1224 | dependencies: 1225 | babel-code-frame "^6.16.0" 1226 | chalk "^1.1.3" 1227 | concat-stream "^1.5.2" 1228 | debug "^2.1.1" 1229 | doctrine "^2.0.0" 1230 | escope "^3.6.0" 1231 | espree "^3.4.0" 1232 | esquery "^1.0.0" 1233 | estraverse "^4.2.0" 1234 | esutils "^2.0.2" 1235 | file-entry-cache "^2.0.0" 1236 | glob "^7.0.3" 1237 | globals "^9.14.0" 1238 | ignore "^3.2.0" 1239 | imurmurhash "^0.1.4" 1240 | inquirer "^0.12.0" 1241 | is-my-json-valid "^2.10.0" 1242 | is-resolvable "^1.0.0" 1243 | js-yaml "^3.5.1" 1244 | json-stable-stringify "^1.0.0" 1245 | levn "^0.3.0" 1246 | lodash "^4.0.0" 1247 | mkdirp "^0.5.0" 1248 | natural-compare "^1.4.0" 1249 | optionator "^0.8.2" 1250 | path-is-inside "^1.0.1" 1251 | pluralize "^1.2.1" 1252 | progress "^1.1.8" 1253 | require-uncached "^1.0.2" 1254 | shelljs "^0.7.5" 1255 | strip-bom "^3.0.0" 1256 | strip-json-comments "~2.0.1" 1257 | table "^3.7.8" 1258 | text-table "~0.2.0" 1259 | user-home "^2.0.0" 1260 | 1261 | espree@^3.1.3, espree@^3.4.0: 1262 | version "3.5.2" 1263 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.2.tgz#756ada8b979e9dcfcdb30aad8d1a9304a905e1ca" 1264 | dependencies: 1265 | acorn "^5.2.1" 1266 | acorn-jsx "^3.0.0" 1267 | 1268 | esprima@^4.0.0: 1269 | version "4.0.0" 1270 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1271 | 1272 | espurify@^1.5.0: 1273 | version "1.7.0" 1274 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" 1275 | dependencies: 1276 | core-js "^2.0.0" 1277 | 1278 | esquery@^1.0.0: 1279 | version "1.0.0" 1280 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1281 | dependencies: 1282 | estraverse "^4.0.0" 1283 | 1284 | esrecurse@^4.1.0: 1285 | version "4.2.0" 1286 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1287 | dependencies: 1288 | estraverse "^4.1.0" 1289 | object-assign "^4.0.1" 1290 | 1291 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1292 | version "4.2.0" 1293 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1294 | 1295 | esutils@^2.0.2: 1296 | version "2.0.2" 1297 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1298 | 1299 | event-emitter@~0.3.5: 1300 | version "0.3.5" 1301 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1302 | dependencies: 1303 | d "1" 1304 | es5-ext "~0.10.14" 1305 | 1306 | eventemitter3@^2.0.3: 1307 | version "2.0.3" 1308 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-2.0.3.tgz#b5e1079b59fb5e1ba2771c0a993be060a58c99ba" 1309 | 1310 | execa@^0.5.0: 1311 | version "0.5.1" 1312 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.1.tgz#de3fb85cb8d6e91c85bcbceb164581785cb57b36" 1313 | dependencies: 1314 | cross-spawn "^4.0.0" 1315 | get-stream "^2.2.0" 1316 | is-stream "^1.1.0" 1317 | npm-run-path "^2.0.0" 1318 | p-finally "^1.0.0" 1319 | signal-exit "^3.0.0" 1320 | strip-eof "^1.0.0" 1321 | 1322 | execa@^0.7.0: 1323 | version "0.7.0" 1324 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1325 | dependencies: 1326 | cross-spawn "^5.0.1" 1327 | get-stream "^3.0.0" 1328 | is-stream "^1.1.0" 1329 | npm-run-path "^2.0.0" 1330 | p-finally "^1.0.0" 1331 | signal-exit "^3.0.0" 1332 | strip-eof "^1.0.0" 1333 | 1334 | exit-hook@^1.0.0: 1335 | version "1.1.1" 1336 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1337 | 1338 | expand-brackets@^0.1.4: 1339 | version "0.1.5" 1340 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1341 | dependencies: 1342 | is-posix-bracket "^0.1.0" 1343 | 1344 | expand-range@^1.8.1: 1345 | version "1.8.2" 1346 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1347 | dependencies: 1348 | fill-range "^2.1.0" 1349 | 1350 | extend@~3.0.0: 1351 | version "3.0.1" 1352 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1353 | 1354 | extglob@^0.3.1: 1355 | version "0.3.2" 1356 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1357 | dependencies: 1358 | is-extglob "^1.0.0" 1359 | 1360 | extsprintf@1.3.0, extsprintf@^1.2.0: 1361 | version "1.3.0" 1362 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1363 | 1364 | fast-levenshtein@~2.0.4: 1365 | version "2.0.6" 1366 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1367 | 1368 | figures@^1.3.5: 1369 | version "1.7.0" 1370 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1371 | dependencies: 1372 | escape-string-regexp "^1.0.5" 1373 | object-assign "^4.1.0" 1374 | 1375 | file-entry-cache@^2.0.0: 1376 | version "2.0.0" 1377 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1378 | dependencies: 1379 | flat-cache "^1.2.1" 1380 | object-assign "^4.0.1" 1381 | 1382 | filename-regex@^2.0.0: 1383 | version "2.0.1" 1384 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1385 | 1386 | fill-range@^2.1.0: 1387 | version "2.2.3" 1388 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1389 | dependencies: 1390 | is-number "^2.1.0" 1391 | isobject "^2.0.0" 1392 | randomatic "^1.1.3" 1393 | repeat-element "^1.1.2" 1394 | repeat-string "^1.5.2" 1395 | 1396 | find-up@^1.0.0: 1397 | version "1.1.2" 1398 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1399 | dependencies: 1400 | path-exists "^2.0.0" 1401 | pinkie-promise "^2.0.0" 1402 | 1403 | find-up@^2.0.0, find-up@^2.1.0: 1404 | version "2.1.0" 1405 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1406 | dependencies: 1407 | locate-path "^2.0.0" 1408 | 1409 | flat-cache@^1.2.1: 1410 | version "1.3.0" 1411 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1412 | dependencies: 1413 | circular-json "^0.3.1" 1414 | del "^2.0.2" 1415 | graceful-fs "^4.1.2" 1416 | write "^0.2.1" 1417 | 1418 | for-in@^1.0.1: 1419 | version "1.0.2" 1420 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1421 | 1422 | for-own@^0.1.4: 1423 | version "0.1.5" 1424 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1425 | dependencies: 1426 | for-in "^1.0.1" 1427 | 1428 | forever-agent@~0.6.1: 1429 | version "0.6.1" 1430 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1431 | 1432 | form-data@~2.1.1: 1433 | version "2.1.4" 1434 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1435 | dependencies: 1436 | asynckit "^0.4.0" 1437 | combined-stream "^1.0.5" 1438 | mime-types "^2.1.12" 1439 | 1440 | fs-readdir-recursive@^1.0.0: 1441 | version "1.1.0" 1442 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1443 | 1444 | fs.realpath@^1.0.0: 1445 | version "1.0.0" 1446 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1447 | 1448 | fsevents@^1.0.0: 1449 | version "1.1.3" 1450 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1451 | dependencies: 1452 | nan "^2.3.0" 1453 | node-pre-gyp "^0.6.39" 1454 | 1455 | fstream-ignore@^1.0.5: 1456 | version "1.0.5" 1457 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1458 | dependencies: 1459 | fstream "^1.0.0" 1460 | inherits "2" 1461 | minimatch "^3.0.0" 1462 | 1463 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1464 | version "1.0.11" 1465 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1466 | dependencies: 1467 | graceful-fs "^4.1.2" 1468 | inherits "~2.0.0" 1469 | mkdirp ">=0.5 0" 1470 | rimraf "2" 1471 | 1472 | function-bind@^1.0.2: 1473 | version "1.1.1" 1474 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1475 | 1476 | gauge@~2.7.3: 1477 | version "2.7.4" 1478 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1479 | dependencies: 1480 | aproba "^1.0.3" 1481 | console-control-strings "^1.0.0" 1482 | has-unicode "^2.0.0" 1483 | object-assign "^4.1.0" 1484 | signal-exit "^3.0.0" 1485 | string-width "^1.0.1" 1486 | strip-ansi "^3.0.1" 1487 | wide-align "^1.1.0" 1488 | 1489 | generate-function@^2.0.0: 1490 | version "2.0.0" 1491 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1492 | 1493 | generate-object-property@^1.1.0: 1494 | version "1.2.0" 1495 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1496 | dependencies: 1497 | is-property "^1.0.0" 1498 | 1499 | get-set-props@^0.1.0: 1500 | version "0.1.0" 1501 | resolved "https://registry.yarnpkg.com/get-set-props/-/get-set-props-0.1.0.tgz#998475c178445686d0b32246da5df8dbcfbe8ea3" 1502 | 1503 | get-stdin@^4.0.1: 1504 | version "4.0.1" 1505 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1506 | 1507 | get-stdin@^5.0.0, get-stdin@^5.0.1: 1508 | version "5.0.1" 1509 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1510 | 1511 | get-stream@^2.2.0: 1512 | version "2.3.1" 1513 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" 1514 | dependencies: 1515 | object-assign "^4.0.1" 1516 | pinkie-promise "^2.0.0" 1517 | 1518 | get-stream@^3.0.0: 1519 | version "3.0.0" 1520 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1521 | 1522 | getpass@^0.1.1: 1523 | version "0.1.7" 1524 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1525 | dependencies: 1526 | assert-plus "^1.0.0" 1527 | 1528 | glob-base@^0.3.0: 1529 | version "0.3.0" 1530 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1531 | dependencies: 1532 | glob-parent "^2.0.0" 1533 | is-glob "^2.0.0" 1534 | 1535 | glob-parent@^2.0.0: 1536 | version "2.0.0" 1537 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1538 | dependencies: 1539 | is-glob "^2.0.0" 1540 | 1541 | glob@7.1.2, glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.2: 1542 | version "7.1.2" 1543 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1544 | dependencies: 1545 | fs.realpath "^1.0.0" 1546 | inflight "^1.0.4" 1547 | inherits "2" 1548 | minimatch "^3.0.4" 1549 | once "^1.3.0" 1550 | path-is-absolute "^1.0.0" 1551 | 1552 | global-dirs@^0.1.0: 1553 | version "0.1.1" 1554 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" 1555 | dependencies: 1556 | ini "^1.3.4" 1557 | 1558 | globals@^9.14.0, globals@^9.18.0: 1559 | version "9.18.0" 1560 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1561 | 1562 | globby@^5.0.0: 1563 | version "5.0.0" 1564 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1565 | dependencies: 1566 | array-union "^1.0.1" 1567 | arrify "^1.0.0" 1568 | glob "^7.0.3" 1569 | object-assign "^4.0.1" 1570 | pify "^2.0.0" 1571 | pinkie-promise "^2.0.0" 1572 | 1573 | globby@^6.0.0: 1574 | version "6.1.0" 1575 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 1576 | dependencies: 1577 | array-union "^1.0.1" 1578 | glob "^7.0.3" 1579 | object-assign "^4.0.1" 1580 | pify "^2.0.0" 1581 | pinkie-promise "^2.0.0" 1582 | 1583 | got@^6.7.1: 1584 | version "6.7.1" 1585 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1586 | dependencies: 1587 | create-error-class "^3.0.0" 1588 | duplexer3 "^0.1.4" 1589 | get-stream "^3.0.0" 1590 | is-redirect "^1.0.0" 1591 | is-retry-allowed "^1.0.0" 1592 | is-stream "^1.0.0" 1593 | lowercase-keys "^1.0.0" 1594 | safe-buffer "^5.0.1" 1595 | timed-out "^4.0.0" 1596 | unzip-response "^2.0.1" 1597 | url-parse-lax "^1.0.0" 1598 | 1599 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1600 | version "4.1.11" 1601 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1602 | 1603 | growl@1.10.3: 1604 | version "1.10.3" 1605 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.3.tgz#1926ba90cf3edfe2adb4927f5880bc22c66c790f" 1606 | 1607 | har-schema@^1.0.5: 1608 | version "1.0.5" 1609 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1610 | 1611 | har-validator@~4.2.1: 1612 | version "4.2.1" 1613 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1614 | dependencies: 1615 | ajv "^4.9.1" 1616 | har-schema "^1.0.5" 1617 | 1618 | has-ansi@^2.0.0: 1619 | version "2.0.0" 1620 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1621 | dependencies: 1622 | ansi-regex "^2.0.0" 1623 | 1624 | has-flag@^2.0.0: 1625 | version "2.0.0" 1626 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1627 | 1628 | has-unicode@^2.0.0: 1629 | version "2.0.1" 1630 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1631 | 1632 | has@^1.0.1: 1633 | version "1.0.1" 1634 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1635 | dependencies: 1636 | function-bind "^1.0.2" 1637 | 1638 | hawk@3.1.3, hawk@~3.1.3: 1639 | version "3.1.3" 1640 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1641 | dependencies: 1642 | boom "2.x.x" 1643 | cryptiles "2.x.x" 1644 | hoek "2.x.x" 1645 | sntp "1.x.x" 1646 | 1647 | he@1.1.1: 1648 | version "1.1.1" 1649 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1650 | 1651 | hoek@2.x.x: 1652 | version "2.16.3" 1653 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1654 | 1655 | home-or-tmp@^2.0.0: 1656 | version "2.0.0" 1657 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1658 | dependencies: 1659 | os-homedir "^1.0.0" 1660 | os-tmpdir "^1.0.1" 1661 | 1662 | hosted-git-info@^2.1.4: 1663 | version "2.5.0" 1664 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1665 | 1666 | http-signature@~1.1.0: 1667 | version "1.1.1" 1668 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1669 | dependencies: 1670 | assert-plus "^0.2.0" 1671 | jsprim "^1.2.2" 1672 | sshpk "^1.7.0" 1673 | 1674 | ignore@^3.2.0, ignore@^3.2.6: 1675 | version "3.3.7" 1676 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 1677 | 1678 | import-lazy@^2.1.0: 1679 | version "2.1.0" 1680 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 1681 | 1682 | import-modules@^1.1.0: 1683 | version "1.1.0" 1684 | resolved "https://registry.yarnpkg.com/import-modules/-/import-modules-1.1.0.tgz#748db79c5cc42bb9701efab424f894e72600e9dc" 1685 | 1686 | imurmurhash@^0.1.4: 1687 | version "0.1.4" 1688 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1689 | 1690 | indent-string@^2.1.0: 1691 | version "2.1.0" 1692 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1693 | dependencies: 1694 | repeating "^2.0.0" 1695 | 1696 | inflight@^1.0.4: 1697 | version "1.0.6" 1698 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1699 | dependencies: 1700 | once "^1.3.0" 1701 | wrappy "1" 1702 | 1703 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1704 | version "2.0.3" 1705 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1706 | 1707 | ini@^1.3.4, ini@~1.3.0: 1708 | version "1.3.5" 1709 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1710 | 1711 | inquirer@^0.12.0: 1712 | version "0.12.0" 1713 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1714 | dependencies: 1715 | ansi-escapes "^1.1.0" 1716 | ansi-regex "^2.0.0" 1717 | chalk "^1.0.0" 1718 | cli-cursor "^1.0.1" 1719 | cli-width "^2.0.0" 1720 | figures "^1.3.5" 1721 | lodash "^4.3.0" 1722 | readline2 "^1.0.1" 1723 | run-async "^0.1.0" 1724 | rx-lite "^3.1.2" 1725 | string-width "^1.0.1" 1726 | strip-ansi "^3.0.0" 1727 | through "^2.3.6" 1728 | 1729 | interpret@^1.0.0: 1730 | version "1.0.4" 1731 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.4.tgz#820cdd588b868ffb191a809506d6c9c8f212b1b0" 1732 | 1733 | invariant@^2.2.2: 1734 | version "2.2.2" 1735 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1736 | dependencies: 1737 | loose-envify "^1.0.0" 1738 | 1739 | irregular-plurals@^1.0.0: 1740 | version "1.4.0" 1741 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.4.0.tgz#2ca9b033651111855412f16be5d77c62a458a766" 1742 | 1743 | is-arrayish@^0.2.1: 1744 | version "0.2.1" 1745 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1746 | 1747 | is-binary-path@^1.0.0: 1748 | version "1.0.1" 1749 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1750 | dependencies: 1751 | binary-extensions "^1.0.0" 1752 | 1753 | is-buffer@^1.1.5: 1754 | version "1.1.6" 1755 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1756 | 1757 | is-builtin-module@^1.0.0: 1758 | version "1.0.0" 1759 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1760 | dependencies: 1761 | builtin-modules "^1.0.0" 1762 | 1763 | is-dotfile@^1.0.0: 1764 | version "1.0.3" 1765 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1766 | 1767 | is-equal-shallow@^0.1.3: 1768 | version "0.1.3" 1769 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1770 | dependencies: 1771 | is-primitive "^2.0.0" 1772 | 1773 | is-error@^2.2.0: 1774 | version "2.2.1" 1775 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" 1776 | 1777 | is-extendable@^0.1.1: 1778 | version "0.1.1" 1779 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1780 | 1781 | is-extglob@^1.0.0: 1782 | version "1.0.0" 1783 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1784 | 1785 | is-finite@^1.0.0: 1786 | version "1.0.2" 1787 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1788 | dependencies: 1789 | number-is-nan "^1.0.0" 1790 | 1791 | is-fullwidth-code-point@^1.0.0: 1792 | version "1.0.0" 1793 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1794 | dependencies: 1795 | number-is-nan "^1.0.0" 1796 | 1797 | is-fullwidth-code-point@^2.0.0: 1798 | version "2.0.0" 1799 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1800 | 1801 | is-get-set-prop@^1.0.0: 1802 | version "1.0.0" 1803 | resolved "https://registry.yarnpkg.com/is-get-set-prop/-/is-get-set-prop-1.0.0.tgz#2731877e4d78a6a69edcce6bb9d68b0779e76312" 1804 | dependencies: 1805 | get-set-props "^0.1.0" 1806 | lowercase-keys "^1.0.0" 1807 | 1808 | is-glob@^2.0.0, is-glob@^2.0.1: 1809 | version "2.0.1" 1810 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1811 | dependencies: 1812 | is-extglob "^1.0.0" 1813 | 1814 | is-installed-globally@^0.1.0: 1815 | version "0.1.0" 1816 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 1817 | dependencies: 1818 | global-dirs "^0.1.0" 1819 | is-path-inside "^1.0.0" 1820 | 1821 | is-js-type@^2.0.0: 1822 | version "2.0.0" 1823 | resolved "https://registry.yarnpkg.com/is-js-type/-/is-js-type-2.0.0.tgz#73617006d659b4eb4729bba747d28782df0f7e22" 1824 | dependencies: 1825 | js-types "^1.0.0" 1826 | 1827 | is-my-json-valid@^2.10.0: 1828 | version "2.16.1" 1829 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.1.tgz#5a846777e2c2620d1e69104e5d3a03b1f6088f11" 1830 | dependencies: 1831 | generate-function "^2.0.0" 1832 | generate-object-property "^1.1.0" 1833 | jsonpointer "^4.0.0" 1834 | xtend "^4.0.0" 1835 | 1836 | is-npm@^1.0.0: 1837 | version "1.0.0" 1838 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1839 | 1840 | is-number@^2.1.0: 1841 | version "2.1.0" 1842 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1843 | dependencies: 1844 | kind-of "^3.0.2" 1845 | 1846 | is-number@^3.0.0: 1847 | version "3.0.0" 1848 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1849 | dependencies: 1850 | kind-of "^3.0.2" 1851 | 1852 | is-obj-prop@^1.0.0: 1853 | version "1.0.0" 1854 | resolved "https://registry.yarnpkg.com/is-obj-prop/-/is-obj-prop-1.0.0.tgz#b34de79c450b8d7c73ab2cdf67dc875adb85f80e" 1855 | dependencies: 1856 | lowercase-keys "^1.0.0" 1857 | obj-props "^1.0.0" 1858 | 1859 | is-obj@^1.0.0: 1860 | version "1.0.1" 1861 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1862 | 1863 | is-path-cwd@^1.0.0: 1864 | version "1.0.0" 1865 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1866 | 1867 | is-path-in-cwd@^1.0.0: 1868 | version "1.0.0" 1869 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1870 | dependencies: 1871 | is-path-inside "^1.0.0" 1872 | 1873 | is-path-inside@^1.0.0: 1874 | version "1.0.0" 1875 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1876 | dependencies: 1877 | path-is-inside "^1.0.1" 1878 | 1879 | is-plain-obj@^1.0.0: 1880 | version "1.1.0" 1881 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1882 | 1883 | is-posix-bracket@^0.1.0: 1884 | version "0.1.1" 1885 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1886 | 1887 | is-primitive@^2.0.0: 1888 | version "2.0.0" 1889 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1890 | 1891 | is-property@^1.0.0: 1892 | version "1.0.2" 1893 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1894 | 1895 | is-proto-prop@^1.0.0: 1896 | version "1.0.0" 1897 | resolved "https://registry.yarnpkg.com/is-proto-prop/-/is-proto-prop-1.0.0.tgz#b3951f95c089924fb5d4fcda6542ab3e83e2b220" 1898 | dependencies: 1899 | lowercase-keys "^1.0.0" 1900 | proto-props "^0.2.0" 1901 | 1902 | is-redirect@^1.0.0: 1903 | version "1.0.0" 1904 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1905 | 1906 | is-resolvable@^1.0.0: 1907 | version "1.0.0" 1908 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1909 | dependencies: 1910 | tryit "^1.0.1" 1911 | 1912 | is-retry-allowed@^1.0.0: 1913 | version "1.1.0" 1914 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 1915 | 1916 | is-stream@^1.0.0, is-stream@^1.1.0: 1917 | version "1.1.0" 1918 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1919 | 1920 | is-typedarray@~1.0.0: 1921 | version "1.0.0" 1922 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1923 | 1924 | is-utf8@^0.2.0: 1925 | version "0.2.1" 1926 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1927 | 1928 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1929 | version "1.0.0" 1930 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1931 | 1932 | isexe@^2.0.0: 1933 | version "2.0.0" 1934 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1935 | 1936 | isobject@^2.0.0: 1937 | version "2.1.0" 1938 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1939 | dependencies: 1940 | isarray "1.0.0" 1941 | 1942 | isstream@~0.1.2: 1943 | version "0.1.2" 1944 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1945 | 1946 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1947 | version "3.0.2" 1948 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1949 | 1950 | js-types@^1.0.0: 1951 | version "1.0.0" 1952 | resolved "https://registry.yarnpkg.com/js-types/-/js-types-1.0.0.tgz#d242e6494ed572ad3c92809fc8bed7f7687cbf03" 1953 | 1954 | js-yaml@^3.5.1: 1955 | version "3.10.0" 1956 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1957 | dependencies: 1958 | argparse "^1.0.7" 1959 | esprima "^4.0.0" 1960 | 1961 | jsbn@~0.1.0: 1962 | version "0.1.1" 1963 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1964 | 1965 | jsesc@^1.3.0: 1966 | version "1.3.0" 1967 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1968 | 1969 | jsesc@~0.5.0: 1970 | version "0.5.0" 1971 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1972 | 1973 | json-schema@0.2.3: 1974 | version "0.2.3" 1975 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1976 | 1977 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 1978 | version "1.0.1" 1979 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1980 | dependencies: 1981 | jsonify "~0.0.0" 1982 | 1983 | json-stringify-safe@~5.0.1: 1984 | version "5.0.1" 1985 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1986 | 1987 | json5@^0.5.1: 1988 | version "0.5.1" 1989 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1990 | 1991 | jsonify@~0.0.0: 1992 | version "0.0.0" 1993 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1994 | 1995 | jsonpointer@^4.0.0: 1996 | version "4.0.1" 1997 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1998 | 1999 | jsprim@^1.2.2: 2000 | version "1.4.1" 2001 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2002 | dependencies: 2003 | assert-plus "1.0.0" 2004 | extsprintf "1.3.0" 2005 | json-schema "0.2.3" 2006 | verror "1.10.0" 2007 | 2008 | kind-of@^3.0.2: 2009 | version "3.2.2" 2010 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2011 | dependencies: 2012 | is-buffer "^1.1.5" 2013 | 2014 | kind-of@^4.0.0: 2015 | version "4.0.0" 2016 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2017 | dependencies: 2018 | is-buffer "^1.1.5" 2019 | 2020 | latest-version@^3.0.0: 2021 | version "3.1.0" 2022 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 2023 | dependencies: 2024 | package-json "^4.0.0" 2025 | 2026 | levn@^0.3.0, levn@~0.3.0: 2027 | version "0.3.0" 2028 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2029 | dependencies: 2030 | prelude-ls "~1.1.2" 2031 | type-check "~0.3.2" 2032 | 2033 | load-json-file@^1.0.0: 2034 | version "1.1.0" 2035 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2036 | dependencies: 2037 | graceful-fs "^4.1.2" 2038 | parse-json "^2.2.0" 2039 | pify "^2.0.0" 2040 | pinkie-promise "^2.0.0" 2041 | strip-bom "^2.0.0" 2042 | 2043 | load-json-file@^2.0.0: 2044 | version "2.0.0" 2045 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2046 | dependencies: 2047 | graceful-fs "^4.1.2" 2048 | parse-json "^2.2.0" 2049 | pify "^2.0.0" 2050 | strip-bom "^3.0.0" 2051 | 2052 | locate-path@^2.0.0: 2053 | version "2.0.0" 2054 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2055 | dependencies: 2056 | p-locate "^2.0.0" 2057 | path-exists "^3.0.0" 2058 | 2059 | lodash.camelcase@^4.1.1: 2060 | version "4.3.0" 2061 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 2062 | 2063 | lodash.cond@^4.3.0: 2064 | version "4.5.2" 2065 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2066 | 2067 | lodash.isequal@^4.4.0: 2068 | version "4.5.0" 2069 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 2070 | 2071 | lodash.kebabcase@^4.0.1: 2072 | version "4.1.1" 2073 | resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" 2074 | 2075 | lodash.snakecase@^4.0.1: 2076 | version "4.1.1" 2077 | resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" 2078 | 2079 | lodash.upperfirst@^4.2.0: 2080 | version "4.3.1" 2081 | resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" 2082 | 2083 | lodash@^4.0.0, lodash@^4.13.1, lodash@^4.17.4, lodash@^4.3.0: 2084 | version "4.17.4" 2085 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2086 | 2087 | log-symbols@^2.0.0: 2088 | version "2.1.0" 2089 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.1.0.tgz#f35fa60e278832b538dc4dddcbb478a45d3e3be6" 2090 | dependencies: 2091 | chalk "^2.0.1" 2092 | 2093 | loose-envify@^1.0.0: 2094 | version "1.3.1" 2095 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2096 | dependencies: 2097 | js-tokens "^3.0.0" 2098 | 2099 | loud-rejection@^1.0.0: 2100 | version "1.6.0" 2101 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2102 | dependencies: 2103 | currently-unhandled "^0.4.1" 2104 | signal-exit "^3.0.0" 2105 | 2106 | lowercase-keys@^1.0.0: 2107 | version "1.0.0" 2108 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2109 | 2110 | lru-cache@^4.0.1: 2111 | version "4.1.1" 2112 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2113 | dependencies: 2114 | pseudomap "^1.0.2" 2115 | yallist "^2.1.2" 2116 | 2117 | make-dir@^1.0.0: 2118 | version "1.1.0" 2119 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.1.0.tgz#19b4369fe48c116f53c2af95ad102c0e39e85d51" 2120 | dependencies: 2121 | pify "^3.0.0" 2122 | 2123 | map-obj@^1.0.0, map-obj@^1.0.1: 2124 | version "1.0.1" 2125 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2126 | 2127 | meow@^3.4.2: 2128 | version "3.7.0" 2129 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2130 | dependencies: 2131 | camelcase-keys "^2.0.0" 2132 | decamelize "^1.1.2" 2133 | loud-rejection "^1.0.0" 2134 | map-obj "^1.0.1" 2135 | minimist "^1.1.3" 2136 | normalize-package-data "^2.3.4" 2137 | object-assign "^4.0.1" 2138 | read-pkg-up "^1.0.1" 2139 | redent "^1.0.0" 2140 | trim-newlines "^1.0.0" 2141 | 2142 | micromatch@^2.1.5: 2143 | version "2.3.11" 2144 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2145 | dependencies: 2146 | arr-diff "^2.0.0" 2147 | array-unique "^0.2.1" 2148 | braces "^1.8.2" 2149 | expand-brackets "^0.1.4" 2150 | extglob "^0.3.1" 2151 | filename-regex "^2.0.0" 2152 | is-extglob "^1.0.0" 2153 | is-glob "^2.0.1" 2154 | kind-of "^3.0.2" 2155 | normalize-path "^2.0.1" 2156 | object.omit "^2.0.0" 2157 | parse-glob "^3.0.4" 2158 | regex-cache "^0.4.2" 2159 | 2160 | mime-db@~1.30.0: 2161 | version "1.30.0" 2162 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2163 | 2164 | mime-types@^2.1.12, mime-types@~2.1.7: 2165 | version "2.1.17" 2166 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2167 | dependencies: 2168 | mime-db "~1.30.0" 2169 | 2170 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2171 | version "3.0.4" 2172 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2173 | dependencies: 2174 | brace-expansion "^1.1.7" 2175 | 2176 | minimist@0.0.8: 2177 | version "0.0.8" 2178 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2179 | 2180 | minimist@^1.1.3, minimist@^1.2.0: 2181 | version "1.2.0" 2182 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2183 | 2184 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 2185 | version "0.5.1" 2186 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2187 | dependencies: 2188 | minimist "0.0.8" 2189 | 2190 | mocha@^4.0.1: 2191 | version "4.0.1" 2192 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-4.0.1.tgz#0aee5a95cf69a4618820f5e51fa31717117daf1b" 2193 | dependencies: 2194 | browser-stdout "1.3.0" 2195 | commander "2.11.0" 2196 | debug "3.1.0" 2197 | diff "3.3.1" 2198 | escape-string-regexp "1.0.5" 2199 | glob "7.1.2" 2200 | growl "1.10.3" 2201 | he "1.1.1" 2202 | mkdirp "0.5.1" 2203 | supports-color "4.4.0" 2204 | 2205 | mongodb-core@2.1.17: 2206 | version "2.1.17" 2207 | resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-2.1.17.tgz#a418b337a14a14990fb510b923dee6a813173df8" 2208 | dependencies: 2209 | bson "~1.0.4" 2210 | require_optional "~1.0.0" 2211 | 2212 | mongodb@~2.2.x: 2213 | version "2.2.33" 2214 | resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-2.2.33.tgz#b537c471d34a6651b48f36fdbf29750340e08b50" 2215 | dependencies: 2216 | es6-promise "3.2.1" 2217 | mongodb-core "2.1.17" 2218 | readable-stream "2.2.7" 2219 | 2220 | ms@2.0.0: 2221 | version "2.0.0" 2222 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2223 | 2224 | multimatch@^2.1.0: 2225 | version "2.1.0" 2226 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 2227 | dependencies: 2228 | array-differ "^1.0.0" 2229 | array-union "^1.0.1" 2230 | arrify "^1.0.0" 2231 | minimatch "^3.0.0" 2232 | 2233 | mute-stream@0.0.5: 2234 | version "0.0.5" 2235 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2236 | 2237 | nan@^2.3.0: 2238 | version "2.8.0" 2239 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 2240 | 2241 | natural-compare@^1.4.0: 2242 | version "1.4.0" 2243 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2244 | 2245 | node-pre-gyp@^0.6.39: 2246 | version "0.6.39" 2247 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2248 | dependencies: 2249 | detect-libc "^1.0.2" 2250 | hawk "3.1.3" 2251 | mkdirp "^0.5.1" 2252 | nopt "^4.0.1" 2253 | npmlog "^4.0.2" 2254 | rc "^1.1.7" 2255 | request "2.81.0" 2256 | rimraf "^2.6.1" 2257 | semver "^5.3.0" 2258 | tar "^2.2.1" 2259 | tar-pack "^3.4.0" 2260 | 2261 | nopt@^4.0.1: 2262 | version "4.0.1" 2263 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2264 | dependencies: 2265 | abbrev "1" 2266 | osenv "^0.1.4" 2267 | 2268 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 2269 | version "2.4.0" 2270 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2271 | dependencies: 2272 | hosted-git-info "^2.1.4" 2273 | is-builtin-module "^1.0.0" 2274 | semver "2 || 3 || 4 || 5" 2275 | validate-npm-package-license "^3.0.1" 2276 | 2277 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2278 | version "2.1.1" 2279 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2280 | dependencies: 2281 | remove-trailing-separator "^1.0.1" 2282 | 2283 | npm-run-path@^2.0.0: 2284 | version "2.0.2" 2285 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2286 | dependencies: 2287 | path-key "^2.0.0" 2288 | 2289 | npmlog@^4.0.2: 2290 | version "4.1.2" 2291 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2292 | dependencies: 2293 | are-we-there-yet "~1.1.2" 2294 | console-control-strings "~1.1.0" 2295 | gauge "~2.7.3" 2296 | set-blocking "~2.0.0" 2297 | 2298 | number-is-nan@^1.0.0: 2299 | version "1.0.1" 2300 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2301 | 2302 | oauth-sign@~0.8.1: 2303 | version "0.8.2" 2304 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2305 | 2306 | obj-props@^1.0.0: 2307 | version "1.1.0" 2308 | resolved "https://registry.yarnpkg.com/obj-props/-/obj-props-1.1.0.tgz#626313faa442befd4a44e9a02c3cb6bde937b511" 2309 | 2310 | object-assign@^4.0.1, object-assign@^4.1.0: 2311 | version "4.1.1" 2312 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2313 | 2314 | object.omit@^2.0.0: 2315 | version "2.0.1" 2316 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2317 | dependencies: 2318 | for-own "^0.1.4" 2319 | is-extendable "^0.1.1" 2320 | 2321 | once@^1.3.0, once@^1.3.3: 2322 | version "1.4.0" 2323 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2324 | dependencies: 2325 | wrappy "1" 2326 | 2327 | onetime@^1.0.0: 2328 | version "1.1.0" 2329 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2330 | 2331 | optionator@^0.8.2: 2332 | version "0.8.2" 2333 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2334 | dependencies: 2335 | deep-is "~0.1.3" 2336 | fast-levenshtein "~2.0.4" 2337 | levn "~0.3.0" 2338 | prelude-ls "~1.1.2" 2339 | type-check "~0.3.2" 2340 | wordwrap "~1.0.0" 2341 | 2342 | os-homedir@^1.0.0: 2343 | version "1.0.2" 2344 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2345 | 2346 | os-shim@^0.1.2: 2347 | version "0.1.3" 2348 | resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 2349 | 2350 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2351 | version "1.0.2" 2352 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2353 | 2354 | osenv@^0.1.4: 2355 | version "0.1.4" 2356 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2357 | dependencies: 2358 | os-homedir "^1.0.0" 2359 | os-tmpdir "^1.0.0" 2360 | 2361 | output-file-sync@^1.1.2: 2362 | version "1.1.2" 2363 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2364 | dependencies: 2365 | graceful-fs "^4.1.4" 2366 | mkdirp "^0.5.1" 2367 | object-assign "^4.1.0" 2368 | 2369 | p-finally@^1.0.0: 2370 | version "1.0.0" 2371 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2372 | 2373 | p-limit@^1.1.0: 2374 | version "1.1.0" 2375 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2376 | 2377 | p-locate@^2.0.0: 2378 | version "2.0.0" 2379 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2380 | dependencies: 2381 | p-limit "^1.1.0" 2382 | 2383 | package-json@^4.0.0: 2384 | version "4.0.1" 2385 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 2386 | dependencies: 2387 | got "^6.7.1" 2388 | registry-auth-token "^3.0.1" 2389 | registry-url "^3.0.3" 2390 | semver "^5.1.0" 2391 | 2392 | parse-glob@^3.0.4: 2393 | version "3.0.4" 2394 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2395 | dependencies: 2396 | glob-base "^0.3.0" 2397 | is-dotfile "^1.0.0" 2398 | is-extglob "^1.0.0" 2399 | is-glob "^2.0.0" 2400 | 2401 | parse-json@^2.2.0: 2402 | version "2.2.0" 2403 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2404 | dependencies: 2405 | error-ex "^1.2.0" 2406 | 2407 | path-exists@^2.0.0: 2408 | version "2.1.0" 2409 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2410 | dependencies: 2411 | pinkie-promise "^2.0.0" 2412 | 2413 | path-exists@^3.0.0: 2414 | version "3.0.0" 2415 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2416 | 2417 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2418 | version "1.0.1" 2419 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2420 | 2421 | path-is-inside@^1.0.1: 2422 | version "1.0.2" 2423 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2424 | 2425 | path-key@^2.0.0: 2426 | version "2.0.1" 2427 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2428 | 2429 | path-parse@^1.0.5: 2430 | version "1.0.5" 2431 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2432 | 2433 | path-type@^1.0.0: 2434 | version "1.1.0" 2435 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2436 | dependencies: 2437 | graceful-fs "^4.1.2" 2438 | pify "^2.0.0" 2439 | pinkie-promise "^2.0.0" 2440 | 2441 | path-type@^2.0.0: 2442 | version "2.0.0" 2443 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2444 | dependencies: 2445 | pify "^2.0.0" 2446 | 2447 | performance-now@^0.2.0: 2448 | version "0.2.0" 2449 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2450 | 2451 | pify@^2.0.0: 2452 | version "2.3.0" 2453 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2454 | 2455 | pify@^3.0.0: 2456 | version "3.0.0" 2457 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2458 | 2459 | pinkie-promise@^2.0.0: 2460 | version "2.0.1" 2461 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2462 | dependencies: 2463 | pinkie "^2.0.0" 2464 | 2465 | pinkie@^2.0.0: 2466 | version "2.0.4" 2467 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2468 | 2469 | pkg-conf@^2.0.0: 2470 | version "2.0.0" 2471 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279" 2472 | dependencies: 2473 | find-up "^2.0.0" 2474 | load-json-file "^2.0.0" 2475 | 2476 | pkg-dir@^1.0.0: 2477 | version "1.0.0" 2478 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2479 | dependencies: 2480 | find-up "^1.0.0" 2481 | 2482 | pkg-up@^2.0.0: 2483 | version "2.0.0" 2484 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f" 2485 | dependencies: 2486 | find-up "^2.1.0" 2487 | 2488 | plur@^2.1.2: 2489 | version "2.1.2" 2490 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 2491 | dependencies: 2492 | irregular-plurals "^1.0.0" 2493 | 2494 | pluralize@^1.2.1: 2495 | version "1.2.1" 2496 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2497 | 2498 | pre-commit@1.2.2: 2499 | version "1.2.2" 2500 | resolved "https://registry.yarnpkg.com/pre-commit/-/pre-commit-1.2.2.tgz#dbcee0ee9de7235e57f79c56d7ce94641a69eec6" 2501 | dependencies: 2502 | cross-spawn "^5.0.1" 2503 | spawn-sync "^1.0.15" 2504 | which "1.2.x" 2505 | 2506 | prelude-ls@~1.1.2: 2507 | version "1.1.2" 2508 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2509 | 2510 | prepend-http@^1.0.1: 2511 | version "1.0.4" 2512 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2513 | 2514 | preserve@^0.2.0: 2515 | version "0.2.0" 2516 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2517 | 2518 | private@^0.1.6, private@^0.1.7: 2519 | version "0.1.8" 2520 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2521 | 2522 | process-nextick-args@~1.0.6: 2523 | version "1.0.7" 2524 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2525 | 2526 | progress@^1.1.8: 2527 | version "1.1.8" 2528 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2529 | 2530 | proto-props@^0.2.0: 2531 | version "0.2.1" 2532 | resolved "https://registry.yarnpkg.com/proto-props/-/proto-props-0.2.1.tgz#5e01dc2675a0de9abfa76e799dfa334d6f483f4b" 2533 | 2534 | pseudomap@^1.0.2: 2535 | version "1.0.2" 2536 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2537 | 2538 | punycode@^1.4.1: 2539 | version "1.4.1" 2540 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2541 | 2542 | qs@~6.4.0: 2543 | version "6.4.0" 2544 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2545 | 2546 | randomatic@^1.1.3: 2547 | version "1.1.7" 2548 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2549 | dependencies: 2550 | is-number "^3.0.0" 2551 | kind-of "^4.0.0" 2552 | 2553 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 2554 | version "1.2.2" 2555 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 2556 | dependencies: 2557 | deep-extend "~0.4.0" 2558 | ini "~1.3.0" 2559 | minimist "^1.2.0" 2560 | strip-json-comments "~2.0.1" 2561 | 2562 | read-pkg-up@^1.0.1: 2563 | version "1.0.1" 2564 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2565 | dependencies: 2566 | find-up "^1.0.0" 2567 | read-pkg "^1.0.0" 2568 | 2569 | read-pkg-up@^2.0.0: 2570 | version "2.0.0" 2571 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2572 | dependencies: 2573 | find-up "^2.0.0" 2574 | read-pkg "^2.0.0" 2575 | 2576 | read-pkg@^1.0.0: 2577 | version "1.1.0" 2578 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2579 | dependencies: 2580 | load-json-file "^1.0.0" 2581 | normalize-package-data "^2.3.2" 2582 | path-type "^1.0.0" 2583 | 2584 | read-pkg@^2.0.0: 2585 | version "2.0.0" 2586 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2587 | dependencies: 2588 | load-json-file "^2.0.0" 2589 | normalize-package-data "^2.3.2" 2590 | path-type "^2.0.0" 2591 | 2592 | readable-stream@2.2.7: 2593 | version "2.2.7" 2594 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.7.tgz#07057acbe2467b22042d36f98c5ad507054e95b1" 2595 | dependencies: 2596 | buffer-shims "~1.0.0" 2597 | core-util-is "~1.0.0" 2598 | inherits "~2.0.1" 2599 | isarray "~1.0.0" 2600 | process-nextick-args "~1.0.6" 2601 | string_decoder "~1.0.0" 2602 | util-deprecate "~1.0.1" 2603 | 2604 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 2605 | version "2.3.3" 2606 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2607 | dependencies: 2608 | core-util-is "~1.0.0" 2609 | inherits "~2.0.3" 2610 | isarray "~1.0.0" 2611 | process-nextick-args "~1.0.6" 2612 | safe-buffer "~5.1.1" 2613 | string_decoder "~1.0.3" 2614 | util-deprecate "~1.0.1" 2615 | 2616 | readdirp@^2.0.0: 2617 | version "2.1.0" 2618 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2619 | dependencies: 2620 | graceful-fs "^4.1.2" 2621 | minimatch "^3.0.2" 2622 | readable-stream "^2.0.2" 2623 | set-immediate-shim "^1.0.1" 2624 | 2625 | readline2@^1.0.1: 2626 | version "1.0.1" 2627 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2628 | dependencies: 2629 | code-point-at "^1.0.0" 2630 | is-fullwidth-code-point "^1.0.0" 2631 | mute-stream "0.0.5" 2632 | 2633 | rechoir@^0.6.2: 2634 | version "0.6.2" 2635 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2636 | dependencies: 2637 | resolve "^1.1.6" 2638 | 2639 | redent@^1.0.0: 2640 | version "1.0.0" 2641 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 2642 | dependencies: 2643 | indent-string "^2.1.0" 2644 | strip-indent "^1.0.1" 2645 | 2646 | regenerate@^1.2.1: 2647 | version "1.3.3" 2648 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2649 | 2650 | regenerator-runtime@^0.10.5: 2651 | version "0.10.5" 2652 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2653 | 2654 | regenerator-runtime@^0.11.0: 2655 | version "0.11.0" 2656 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 2657 | 2658 | regenerator-transform@^0.10.0: 2659 | version "0.10.1" 2660 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2661 | dependencies: 2662 | babel-runtime "^6.18.0" 2663 | babel-types "^6.19.0" 2664 | private "^0.1.6" 2665 | 2666 | regex-cache@^0.4.2: 2667 | version "0.4.4" 2668 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2669 | dependencies: 2670 | is-equal-shallow "^0.1.3" 2671 | 2672 | regexpu-core@^2.0.0: 2673 | version "2.0.0" 2674 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2675 | dependencies: 2676 | regenerate "^1.2.1" 2677 | regjsgen "^0.2.0" 2678 | regjsparser "^0.1.4" 2679 | 2680 | registry-auth-token@^3.0.1: 2681 | version "3.3.1" 2682 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" 2683 | dependencies: 2684 | rc "^1.1.6" 2685 | safe-buffer "^5.0.1" 2686 | 2687 | registry-url@^3.0.3: 2688 | version "3.1.0" 2689 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2690 | dependencies: 2691 | rc "^1.0.1" 2692 | 2693 | regjsgen@^0.2.0: 2694 | version "0.2.0" 2695 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2696 | 2697 | regjsparser@^0.1.4: 2698 | version "0.1.5" 2699 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2700 | dependencies: 2701 | jsesc "~0.5.0" 2702 | 2703 | remove-trailing-separator@^1.0.1: 2704 | version "1.1.0" 2705 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2706 | 2707 | repeat-element@^1.1.2: 2708 | version "1.1.2" 2709 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2710 | 2711 | repeat-string@^1.5.2: 2712 | version "1.6.1" 2713 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2714 | 2715 | repeating@^2.0.0: 2716 | version "2.0.1" 2717 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2718 | dependencies: 2719 | is-finite "^1.0.0" 2720 | 2721 | request@2.81.0: 2722 | version "2.81.0" 2723 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2724 | dependencies: 2725 | aws-sign2 "~0.6.0" 2726 | aws4 "^1.2.1" 2727 | caseless "~0.12.0" 2728 | combined-stream "~1.0.5" 2729 | extend "~3.0.0" 2730 | forever-agent "~0.6.1" 2731 | form-data "~2.1.1" 2732 | har-validator "~4.2.1" 2733 | hawk "~3.1.3" 2734 | http-signature "~1.1.0" 2735 | is-typedarray "~1.0.0" 2736 | isstream "~0.1.2" 2737 | json-stringify-safe "~5.0.1" 2738 | mime-types "~2.1.7" 2739 | oauth-sign "~0.8.1" 2740 | performance-now "^0.2.0" 2741 | qs "~6.4.0" 2742 | safe-buffer "^5.0.1" 2743 | stringstream "~0.0.4" 2744 | tough-cookie "~2.3.0" 2745 | tunnel-agent "^0.6.0" 2746 | uuid "^3.0.0" 2747 | 2748 | require-uncached@^1.0.2: 2749 | version "1.0.3" 2750 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2751 | dependencies: 2752 | caller-path "^0.1.0" 2753 | resolve-from "^1.0.0" 2754 | 2755 | require_optional@~1.0.0: 2756 | version "1.0.1" 2757 | resolved "https://registry.yarnpkg.com/require_optional/-/require_optional-1.0.1.tgz#4cf35a4247f64ca3df8c2ef208cc494b1ca8fc2e" 2758 | dependencies: 2759 | resolve-from "^2.0.0" 2760 | semver "^5.1.0" 2761 | 2762 | resolve-cwd@^1.0.0: 2763 | version "1.0.0" 2764 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f" 2765 | dependencies: 2766 | resolve-from "^2.0.0" 2767 | 2768 | resolve-from@^1.0.0: 2769 | version "1.0.1" 2770 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2771 | 2772 | resolve-from@^2.0.0: 2773 | version "2.0.0" 2774 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 2775 | 2776 | resolve@^1.1.6, resolve@^1.2.0: 2777 | version "1.5.0" 2778 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 2779 | dependencies: 2780 | path-parse "^1.0.5" 2781 | 2782 | restore-cursor@^1.0.1: 2783 | version "1.0.1" 2784 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2785 | dependencies: 2786 | exit-hook "^1.0.0" 2787 | onetime "^1.0.0" 2788 | 2789 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 2790 | version "2.6.2" 2791 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2792 | dependencies: 2793 | glob "^7.0.5" 2794 | 2795 | run-async@^0.1.0: 2796 | version "0.1.0" 2797 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 2798 | dependencies: 2799 | once "^1.3.0" 2800 | 2801 | rx-lite@^3.1.2: 2802 | version "3.1.2" 2803 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 2804 | 2805 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2806 | version "5.1.1" 2807 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2808 | 2809 | semver-diff@^2.0.0: 2810 | version "2.1.0" 2811 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 2812 | dependencies: 2813 | semver "^5.0.3" 2814 | 2815 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: 2816 | version "5.4.1" 2817 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2818 | 2819 | set-blocking@~2.0.0: 2820 | version "2.0.0" 2821 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2822 | 2823 | set-immediate-shim@^1.0.1: 2824 | version "1.0.1" 2825 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2826 | 2827 | shebang-command@^1.2.0: 2828 | version "1.2.0" 2829 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2830 | dependencies: 2831 | shebang-regex "^1.0.0" 2832 | 2833 | shebang-regex@^1.0.0: 2834 | version "1.0.0" 2835 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2836 | 2837 | shelljs@^0.7.5: 2838 | version "0.7.8" 2839 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" 2840 | dependencies: 2841 | glob "^7.0.0" 2842 | interpret "^1.0.0" 2843 | rechoir "^0.6.2" 2844 | 2845 | should-equal@^2.0.0: 2846 | version "2.0.0" 2847 | resolved "https://registry.yarnpkg.com/should-equal/-/should-equal-2.0.0.tgz#6072cf83047360867e68e98b09d71143d04ee0c3" 2848 | dependencies: 2849 | should-type "^1.4.0" 2850 | 2851 | should-format@^3.0.3: 2852 | version "3.0.3" 2853 | resolved "https://registry.yarnpkg.com/should-format/-/should-format-3.0.3.tgz#9bfc8f74fa39205c53d38c34d717303e277124f1" 2854 | dependencies: 2855 | should-type "^1.3.0" 2856 | should-type-adaptors "^1.0.1" 2857 | 2858 | should-type-adaptors@^1.0.1: 2859 | version "1.0.1" 2860 | resolved "https://registry.yarnpkg.com/should-type-adaptors/-/should-type-adaptors-1.0.1.tgz#efe5553cdf68cff66e5c5f51b712dc351c77beaa" 2861 | dependencies: 2862 | should-type "^1.3.0" 2863 | should-util "^1.0.0" 2864 | 2865 | should-type@^1.3.0, should-type@^1.4.0: 2866 | version "1.4.0" 2867 | resolved "https://registry.yarnpkg.com/should-type/-/should-type-1.4.0.tgz#0756d8ce846dfd09843a6947719dfa0d4cff5cf3" 2868 | 2869 | should-util@^1.0.0: 2870 | version "1.0.0" 2871 | resolved "https://registry.yarnpkg.com/should-util/-/should-util-1.0.0.tgz#c98cda374aa6b190df8ba87c9889c2b4db620063" 2872 | 2873 | should@^13.1.3: 2874 | version "13.1.3" 2875 | resolved "https://registry.yarnpkg.com/should/-/should-13.1.3.tgz#a089bdf7979392a8272a712c8b63acbaafb7948f" 2876 | dependencies: 2877 | should-equal "^2.0.0" 2878 | should-format "^3.0.3" 2879 | should-type "^1.4.0" 2880 | should-type-adaptors "^1.0.1" 2881 | should-util "^1.0.0" 2882 | 2883 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2884 | version "3.0.2" 2885 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2886 | 2887 | slash@^1.0.0: 2888 | version "1.0.0" 2889 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2890 | 2891 | slice-ansi@0.0.4: 2892 | version "0.0.4" 2893 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2894 | 2895 | sntp@1.x.x: 2896 | version "1.0.9" 2897 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2898 | dependencies: 2899 | hoek "2.x.x" 2900 | 2901 | sort-keys@^1.1.2: 2902 | version "1.1.2" 2903 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 2904 | dependencies: 2905 | is-plain-obj "^1.0.0" 2906 | 2907 | sort-keys@^2.0.0: 2908 | version "2.0.0" 2909 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" 2910 | dependencies: 2911 | is-plain-obj "^1.0.0" 2912 | 2913 | source-map-support@^0.4.15: 2914 | version "0.4.18" 2915 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2916 | dependencies: 2917 | source-map "^0.5.6" 2918 | 2919 | source-map@^0.5.6: 2920 | version "0.5.7" 2921 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2922 | 2923 | spawn-sync@^1.0.15: 2924 | version "1.0.15" 2925 | resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476" 2926 | dependencies: 2927 | concat-stream "^1.4.7" 2928 | os-shim "^0.1.2" 2929 | 2930 | spdx-correct@~1.0.0: 2931 | version "1.0.2" 2932 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2933 | dependencies: 2934 | spdx-license-ids "^1.0.2" 2935 | 2936 | spdx-expression-parse@~1.0.0: 2937 | version "1.0.4" 2938 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2939 | 2940 | spdx-license-ids@^1.0.2: 2941 | version "1.2.2" 2942 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2943 | 2944 | sprintf-js@~1.0.2: 2945 | version "1.0.3" 2946 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2947 | 2948 | sshpk@^1.7.0: 2949 | version "1.13.1" 2950 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2951 | dependencies: 2952 | asn1 "~0.2.3" 2953 | assert-plus "^1.0.0" 2954 | dashdash "^1.12.0" 2955 | getpass "^0.1.1" 2956 | optionalDependencies: 2957 | bcrypt-pbkdf "^1.0.0" 2958 | ecc-jsbn "~0.1.1" 2959 | jsbn "~0.1.0" 2960 | tweetnacl "~0.14.0" 2961 | 2962 | string-width@^1.0.1, string-width@^1.0.2: 2963 | version "1.0.2" 2964 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2965 | dependencies: 2966 | code-point-at "^1.0.0" 2967 | is-fullwidth-code-point "^1.0.0" 2968 | strip-ansi "^3.0.0" 2969 | 2970 | string-width@^2.0.0: 2971 | version "2.1.1" 2972 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2973 | dependencies: 2974 | is-fullwidth-code-point "^2.0.0" 2975 | strip-ansi "^4.0.0" 2976 | 2977 | string_decoder@~1.0.0, string_decoder@~1.0.3: 2978 | version "1.0.3" 2979 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2980 | dependencies: 2981 | safe-buffer "~5.1.0" 2982 | 2983 | stringstream@~0.0.4: 2984 | version "0.0.5" 2985 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2986 | 2987 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2988 | version "3.0.1" 2989 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2990 | dependencies: 2991 | ansi-regex "^2.0.0" 2992 | 2993 | strip-ansi@^4.0.0: 2994 | version "4.0.0" 2995 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2996 | dependencies: 2997 | ansi-regex "^3.0.0" 2998 | 2999 | strip-bom@^2.0.0: 3000 | version "2.0.0" 3001 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3002 | dependencies: 3003 | is-utf8 "^0.2.0" 3004 | 3005 | strip-bom@^3.0.0: 3006 | version "3.0.0" 3007 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3008 | 3009 | strip-eof@^1.0.0: 3010 | version "1.0.0" 3011 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3012 | 3013 | strip-indent@^1.0.1: 3014 | version "1.0.1" 3015 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 3016 | dependencies: 3017 | get-stdin "^4.0.1" 3018 | 3019 | strip-json-comments@~2.0.1: 3020 | version "2.0.1" 3021 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3022 | 3023 | supports-color@4.4.0: 3024 | version "4.4.0" 3025 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 3026 | dependencies: 3027 | has-flag "^2.0.0" 3028 | 3029 | supports-color@^2.0.0: 3030 | version "2.0.0" 3031 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3032 | 3033 | supports-color@^4.0.0: 3034 | version "4.5.0" 3035 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 3036 | dependencies: 3037 | has-flag "^2.0.0" 3038 | 3039 | table@^3.7.8: 3040 | version "3.8.3" 3041 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3042 | dependencies: 3043 | ajv "^4.7.0" 3044 | ajv-keywords "^1.0.0" 3045 | chalk "^1.1.1" 3046 | lodash "^4.0.0" 3047 | slice-ansi "0.0.4" 3048 | string-width "^2.0.0" 3049 | 3050 | tar-pack@^3.4.0: 3051 | version "3.4.1" 3052 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 3053 | dependencies: 3054 | debug "^2.2.0" 3055 | fstream "^1.0.10" 3056 | fstream-ignore "^1.0.5" 3057 | once "^1.3.3" 3058 | readable-stream "^2.1.4" 3059 | rimraf "^2.5.1" 3060 | tar "^2.2.1" 3061 | uid-number "^0.0.6" 3062 | 3063 | tar@^2.2.1: 3064 | version "2.2.1" 3065 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3066 | dependencies: 3067 | block-stream "*" 3068 | fstream "^1.0.2" 3069 | inherits "2" 3070 | 3071 | term-size@^1.2.0: 3072 | version "1.2.0" 3073 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 3074 | dependencies: 3075 | execa "^0.7.0" 3076 | 3077 | text-table@~0.2.0: 3078 | version "0.2.0" 3079 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3080 | 3081 | the-argv@^1.0.0: 3082 | version "1.0.0" 3083 | resolved "https://registry.yarnpkg.com/the-argv/-/the-argv-1.0.0.tgz#0084705005730dd84db755253c931ae398db9522" 3084 | 3085 | through@^2.3.6: 3086 | version "2.3.8" 3087 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3088 | 3089 | timed-out@^4.0.0: 3090 | version "4.0.1" 3091 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 3092 | 3093 | to-fast-properties@^1.0.3: 3094 | version "1.0.3" 3095 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3096 | 3097 | tough-cookie@~2.3.0: 3098 | version "2.3.3" 3099 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 3100 | dependencies: 3101 | punycode "^1.4.1" 3102 | 3103 | trim-newlines@^1.0.0: 3104 | version "1.0.0" 3105 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 3106 | 3107 | trim-right@^1.0.1: 3108 | version "1.0.1" 3109 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3110 | 3111 | tryit@^1.0.1: 3112 | version "1.0.3" 3113 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3114 | 3115 | tunnel-agent@^0.6.0: 3116 | version "0.6.0" 3117 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3118 | dependencies: 3119 | safe-buffer "^5.0.1" 3120 | 3121 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3122 | version "0.14.5" 3123 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3124 | 3125 | type-check@~0.3.2: 3126 | version "0.3.2" 3127 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3128 | dependencies: 3129 | prelude-ls "~1.1.2" 3130 | 3131 | typedarray@^0.0.6: 3132 | version "0.0.6" 3133 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3134 | 3135 | uid-number@^0.0.6: 3136 | version "0.0.6" 3137 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3138 | 3139 | unique-string@^1.0.0: 3140 | version "1.0.0" 3141 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 3142 | dependencies: 3143 | crypto-random-string "^1.0.0" 3144 | 3145 | unzip-response@^2.0.1: 3146 | version "2.0.1" 3147 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 3148 | 3149 | update-notifier@^2.1.0: 3150 | version "2.3.0" 3151 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.3.0.tgz#4e8827a6bb915140ab093559d7014e3ebb837451" 3152 | dependencies: 3153 | boxen "^1.2.1" 3154 | chalk "^2.0.1" 3155 | configstore "^3.0.0" 3156 | import-lazy "^2.1.0" 3157 | is-installed-globally "^0.1.0" 3158 | is-npm "^1.0.0" 3159 | latest-version "^3.0.0" 3160 | semver-diff "^2.0.0" 3161 | xdg-basedir "^3.0.0" 3162 | 3163 | url-parse-lax@^1.0.0: 3164 | version "1.0.0" 3165 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3166 | dependencies: 3167 | prepend-http "^1.0.1" 3168 | 3169 | user-home@^1.1.1: 3170 | version "1.1.1" 3171 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3172 | 3173 | user-home@^2.0.0: 3174 | version "2.0.0" 3175 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3176 | dependencies: 3177 | os-homedir "^1.0.0" 3178 | 3179 | util-deprecate@~1.0.1: 3180 | version "1.0.2" 3181 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3182 | 3183 | uuid@^3.0.0: 3184 | version "3.1.0" 3185 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 3186 | 3187 | v8flags@^2.1.1: 3188 | version "2.1.1" 3189 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3190 | dependencies: 3191 | user-home "^1.1.1" 3192 | 3193 | validate-npm-package-license@^3.0.1: 3194 | version "3.0.1" 3195 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3196 | dependencies: 3197 | spdx-correct "~1.0.0" 3198 | spdx-expression-parse "~1.0.0" 3199 | 3200 | verror@1.10.0: 3201 | version "1.10.0" 3202 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3203 | dependencies: 3204 | assert-plus "^1.0.0" 3205 | core-util-is "1.0.2" 3206 | extsprintf "^1.2.0" 3207 | 3208 | which@1.2.x: 3209 | version "1.2.14" 3210 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3211 | dependencies: 3212 | isexe "^2.0.0" 3213 | 3214 | which@^1.2.9: 3215 | version "1.3.0" 3216 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3217 | dependencies: 3218 | isexe "^2.0.0" 3219 | 3220 | wide-align@^1.1.0: 3221 | version "1.1.2" 3222 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3223 | dependencies: 3224 | string-width "^1.0.2" 3225 | 3226 | widest-line@^1.0.0: 3227 | version "1.0.0" 3228 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 3229 | dependencies: 3230 | string-width "^1.0.1" 3231 | 3232 | wordwrap@~1.0.0: 3233 | version "1.0.0" 3234 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3235 | 3236 | wrappy@1: 3237 | version "1.0.2" 3238 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3239 | 3240 | write-file-atomic@^2.0.0: 3241 | version "2.3.0" 3242 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3243 | dependencies: 3244 | graceful-fs "^4.1.11" 3245 | imurmurhash "^0.1.4" 3246 | signal-exit "^3.0.2" 3247 | 3248 | write-json-file@^2.0.0: 3249 | version "2.3.0" 3250 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.3.0.tgz#2b64c8a33004d54b8698c76d585a77ceb61da32f" 3251 | dependencies: 3252 | detect-indent "^5.0.0" 3253 | graceful-fs "^4.1.2" 3254 | make-dir "^1.0.0" 3255 | pify "^3.0.0" 3256 | sort-keys "^2.0.0" 3257 | write-file-atomic "^2.0.0" 3258 | 3259 | write-pkg@^2.0.0: 3260 | version "2.1.0" 3261 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-2.1.0.tgz#353aa44c39c48c21440f5c08ce6abd46141c9c08" 3262 | dependencies: 3263 | sort-keys "^1.1.2" 3264 | write-json-file "^2.0.0" 3265 | 3266 | write@^0.2.1: 3267 | version "0.2.1" 3268 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3269 | dependencies: 3270 | mkdirp "^0.5.1" 3271 | 3272 | xdg-basedir@^3.0.0: 3273 | version "3.0.0" 3274 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 3275 | 3276 | xo-init@^0.5.0: 3277 | version "0.5.0" 3278 | resolved "https://registry.yarnpkg.com/xo-init/-/xo-init-0.5.0.tgz#8e28dec79676cc5e042fde5fd8f710e2646b0e36" 3279 | dependencies: 3280 | arrify "^1.0.0" 3281 | execa "^0.5.0" 3282 | minimist "^1.1.3" 3283 | path-exists "^3.0.0" 3284 | read-pkg-up "^2.0.0" 3285 | the-argv "^1.0.0" 3286 | write-pkg "^2.0.0" 3287 | 3288 | xo@^0.18.2: 3289 | version "0.18.2" 3290 | resolved "https://registry.yarnpkg.com/xo/-/xo-0.18.2.tgz#92a42eb02a4fb149dfea5518021914f5aac84ff0" 3291 | dependencies: 3292 | arrify "^1.0.0" 3293 | debug "^2.2.0" 3294 | deep-assign "^1.0.0" 3295 | eslint "^3.18.0" 3296 | eslint-config-xo "^0.18.0" 3297 | eslint-formatter-pretty "^1.0.0" 3298 | eslint-plugin-ava "^4.2.0" 3299 | eslint-plugin-import "^2.0.0" 3300 | eslint-plugin-no-use-extend-native "^0.3.2" 3301 | eslint-plugin-promise "^3.4.0" 3302 | eslint-plugin-unicorn "^2.1.0" 3303 | get-stdin "^5.0.0" 3304 | globby "^6.0.0" 3305 | has-flag "^2.0.0" 3306 | ignore "^3.2.6" 3307 | lodash.isequal "^4.4.0" 3308 | meow "^3.4.2" 3309 | multimatch "^2.1.0" 3310 | path-exists "^3.0.0" 3311 | pkg-conf "^2.0.0" 3312 | resolve-cwd "^1.0.0" 3313 | resolve-from "^2.0.0" 3314 | slash "^1.0.0" 3315 | update-notifier "^2.1.0" 3316 | xo-init "^0.5.0" 3317 | 3318 | xtend@^4.0.0: 3319 | version "4.0.1" 3320 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3321 | 3322 | yallist@^2.1.2: 3323 | version "2.1.2" 3324 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3325 | --------------------------------------------------------------------------------