├── .babelrc ├── .editorconfig ├── .eslintrc.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── mocha.opts ├── package.json ├── src ├── Adapter │ ├── browser.js │ ├── index.js │ └── spec.js ├── browser.js ├── index.js └── spec.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"], 3 | "plugins": ["transform-runtime"] 4 | } 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | # global file settings 4 | [*] 5 | end_of_line = lf 6 | insert_final_newline = true 7 | charset = utf-8 8 | indent_style = space 9 | indent_size = 2 10 | trim_trailing_whitespace = true 11 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- 1 | env: 2 | commonjs: true 3 | browser: true 4 | node: true 5 | es6: true 6 | 7 | parser: babel-eslint 8 | parserOptions: 9 | sourceType: module 10 | 11 | extends: 12 | - eslint:recommended 13 | - llama 14 | - prettier 15 | 16 | rules: 17 | require-jsdoc: off 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | .DS_Store 3 | dist/ 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | dist/**/*spec.js 3 | .babelrc 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 8 5 | - 7 6 | - 6 7 | 8 | script: 9 | - npm run test 10 | - npm run lint 11 | 12 | deploy: 13 | provider: npm 14 | email: Jesse_Gibson@me.com 15 | skip_cleanup: true 16 | api_key: 17 | secure: m+IVQoQmwo0fc807kcE4HxNnUWGvUNshSJM0+VySiRuDGhenoQ68phBzXKLlPmCGxbai+geQ+PkZXcp45oJ/W8s/zalDY+O0TTZddGIJGGpnxEf+fHnvbUe6IN/dCt4YMBV1+DDshU9i4MnCVbhy5niWsqerCyy/NSxpXwjp4cMyF7BkJwIu9JNr+enT+mJruuX9IYbHPEzQEm5+rMPRn7FFG/GXKxonoQIR0ZWxppa9JO9TkIJohi6wdj1ZK56fMio19NynHMumtgCokakoHHIUU7NtEV3DbWrMZ5JIL3SQjB7shminBjhQHUFgk8QbnpfnNK5MaO/v6xn8GcBeII+E55P/zl1wCfhKtqwrarnN/KgoteA2KtC3LwUSTCO+rLDUv1NzB9Fp6cEV1TD/8EjNJBVvRmTGr3ezDITADU2bICCDpPmnKY0RIDr+bPX6F/CHCCgq+t5KnJa0I89R2lvnvSZxF5vS2Kuq6kXdiW5sXmMd/0SWuI7FzIGp5tU0DKmu7B87Esan1BHivejPfiQbnXkzXEWHllXM1fuJ531dP0rjpwO0Xpe6wdeDkyLR4A9/YLOJHNb/SLq2/gAPQHwSWhGiILKD8xfN5XaDmpiUCQ/z2dyqufi6FFs5Q1R3UtTkbag4F2IaxAmw3TMYp7+hm1OWf1fZkiubai6lSAY= 18 | on: 19 | branch: master 20 | tags: true 21 | repo: PsychoLlama/gun-level 22 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## v6.0.2 4 | ### Fixed 5 | - Compatibility with gun v0.8 (see PR #39 & issue #38). 6 | 7 | ## v6.0.0 8 | ### Changed 9 | - Updated for gun v0.8 (thanks @sjones6!). The default export of `gun-level` is now `gun` v0.8 which has many breaking changes. 10 | 11 | ## v5.0.0 12 | ### Changed 13 | - Gun's plugin system has changed a bunch between 0.3 and 0.4.
14 | `gun-level` v0.5 drops support for 0.3 in favor of gun's [new version](https://github.com/amark/gun/tree/0.5). 15 | 16 | ## v4.0.1 17 | ### Fixed 18 | - Plugin system compatibility improvements (thanks swhgoon!). 19 | - React Native babel configuration conflicts resolved. 20 | 21 | ## v4.0.0 22 | ### Added: 23 | - `changelog` file. 24 | 25 | ### Removed: 26 | - Every configuration option previously available. Now, only `level` is accepted, and it must be set to a `levelup` compatible instance. **Please note this is a breaking change**. 27 | - `levelup`/`leveldown` dependencies, allowing better windows and browser compatibility. 28 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # gun-level 2 | 3 | [![Travis](https://img.shields.io/travis/PsychoLlama/gun-level/master.svg?style=flat-square)](https://travis-ci.org/PsychoLlama/gun-level/branches) 4 | [![npm](https://img.shields.io/npm/dt/gun-level.svg?style=flat-square)](https://www.npmjs.com/package/gun-level) 5 | [![Gitter](https://img.shields.io/gitter/room/amark/gun.svg?style=flat-square)](https://gitter.im/amark/gun) 6 | 7 | LevelDB is awesome. It's awesomer with gun. 8 | 9 | # `indexedDB` NOW SUPPORTED IN MAIN GUN REPO - THIS REPO NO LONGER MAINTAINED 10 | 11 | The [main GUN repo](https://github.com/amark/gun) now has `lib/rindexed` that can be used [like so](https://github.com/amark/gun/blob/master/test/tmp/indexedDB.html), now built on the RAD storage engine for GUN. 12 | 13 | If you still need NodeJS LevelDB bindings, consider writing a RAD adapter, or use this project - please contribute and maintain it for others, as it is now deprecated. 14 | 15 | ## Overview 16 | [GunDB](http://gun.js.org) is a graph database engine with real-time sync and offline-editing. Although gun comes with storage and sync out of the box, it's design is pluggable, so you can still use your favorite storage backend or transport layer by using an adapter. 17 | 18 | LevelDB operates on a similar paradigm. It ships with an interface called [`LevelUP`](https://github.com/Level/levelup) that gives all the methods you'd expect from a storage engine (like `get`, `put`, `batch`, etc.) and forwards those to a lower-level database (it uses [`LevelDOWN`](https://github.com/Level/leveldown) by default). 19 | 20 | Arguably the most valuable aspect of level is it's **ecosystem**. There are tons are plugins, backends, dashboards, and utilities made specifically for level. It's kinda like a database buffet. 21 | 22 | Here, check out [their list of modules!](https://github.com/Level/levelup/wiki/Modules) 23 | 24 | > If you're feeling stressed, don't worry. LevelDB comes out of the box as a quite capable database, and if you don't want to dabble with plugins and configs, there's no need. 25 | 26 | So what happens when you combine Level with GunDB? You get the power and control of level right alongside the ease of gun. 27 | 28 | That's what this library does. 29 | 30 | ## Usage 31 | 32 | To get started, you'll first need to install `gun-level`. 33 | 34 | > If you're unfamiliar with `npm`, you can get started [here](https://docs.npmjs.com/getting-started/what-is-npm) 35 | 36 | ```sh 37 | $ npm install --save gun-level gun 38 | ``` 39 | 40 | Now require them from your node project. 41 | 42 | ```javascript 43 | // Import the `Gun` library 44 | const Gun = require('gun') 45 | 46 | // Imported for side effects, adds level adapters. 47 | // MUST be required after Gun to work 48 | require('gun-level') 49 | ``` 50 | 51 | Once they're imported you can create a new Gun database: 52 | 53 | ```javascript 54 | const gun = new Gun({ 55 | // We'll put options here in a moment. 56 | }) 57 | ``` 58 | 59 | Sweet, you're set up! However, `gun-level` won't do anything unless you pass it a levelDB instance through the `Gun` constructor. For that, you'll need to download the Node `levelup` package. 60 | 61 | > There are some differences between `levelup` v1 and v2 so be sure to note which version you're using. 62 | 63 | ### `levelup` v1 64 | 65 | ```sh 66 | $ npm install --save levelup leveldown 67 | ``` 68 | 69 | > If you get a build error at this step, replace all examples of `leveldown` with `jsondown`. 70 | 71 | ```javascript 72 | // Import the two libraries 73 | const levelup = require('levelup') 74 | const leveldown = require('leveldown') 75 | 76 | // Create a new level instance which saves 77 | // to the `data/` folder. 78 | const levelDB = levelup('data', { 79 | db: leveldown, 80 | }) 81 | ``` 82 | 83 | ### `levelup` >v2 84 | 85 | > Note that Levelup v2 only supports Node >6. 86 | 87 | ```sh 88 | $ npm install --save levelup leveldown encoding-down 89 | ``` 90 | 91 | ```javascript 92 | // Import the required libraries 93 | const levelup = require('levelup') 94 | const encode = require('encoding-down') 95 | const leveldown = require('leveldown') 96 | 97 | // Create a new level instance which saves 98 | // to the `data/` folder. 99 | const levelDB = levelup( 100 | encode( 101 | leveldown('data'), 102 | { valueEncoding: 'json' } 103 | ) 104 | ) 105 | ``` 106 | 107 | ### Instantiating Gun with Level 108 | 109 | Now we can pass our new levelDB instance to the `Gun` constructor. 110 | 111 | ```javascript 112 | const Gun = require('gun') 113 | require('gun-level') 114 | 115 | // ... instantiate LevelDB per above 116 | 117 | // Pass LevelDB instance into Gun 118 | const gun = new Gun({ 119 | level: levelDB 120 | }) 121 | ``` 122 | 123 | Done! Now your `gun` database will store it's graph in your Level DB! 124 | 125 | Let's try a few things... 126 | 127 | ```javascript 128 | const bob = gun.get('bob').put({ name: 'Bob' }) 129 | const dave = gun.get('dave').put({ name: 'Dave' }) 130 | 131 | // Write a fun circular reference. 132 | bob.get('friend').put(dave) 133 | dave.get('friend').put(bob) 134 | 135 | // Print the data! 136 | bob.get('friend').val(friend => { 137 | console.log(friend.name) // Dave 138 | }); 139 | 140 | // Now with a circular reference 141 | bob.get('friend').get('friend').val(friend => { 142 | console.log(friend.name) // Bob 143 | }); 144 | ``` 145 | 146 | That's pretty much all there is to the `gun-level` API. If you're unfamiliar with gun's API, [here's a good reference](https://github.com/amark/gun/wiki/API-%28v0.3.x%29). 147 | 148 | ## Advanced Levelry 149 | You've seen the basics, but it's not enough. You crave more power. 150 | 151 | To exchange backends with level, like Riak, Mongo, IndexedDB, etc., you can find the official list of storage backends [here](https://github.com/Level/levelup/wiki/Modules#storage-back-ends). Usually it's just a matter of passing the module as the `db` option to `levelup`. 152 | 153 | Here's an example with MongoDB using `mongodown`: 154 | 155 | ```javascript 156 | const levelup = require('levelup') 157 | const mongoDown = require('mongodown') 158 | 159 | // Initialize Level 160 | const levelDB = levelup('localhost:27017/YOUR_COLLECTION_NAME', { 161 | db: mongoDown, 162 | }) 163 | 164 | // Initialize Gun 165 | const gun = new Gun({ 166 | level: levelDB, 167 | file: false, 168 | }) 169 | ``` 170 | 171 | Here's another example with IndexedDB using `level-js`: 172 | 173 | ```javascript 174 | const levelup = require('levelup') 175 | const leveldown = require('level-js') 176 | const encode = require('encoding-down') 177 | 178 | // Initialize Level 179 | const levelDB = levelup(encode(leveldown('my-big-db'), { valueEncoding: 'json' })) 180 | 181 | // Initialize Gun 182 | const gun = Gun({ 183 | level: levelDB, 184 | localStorage: false, 185 | }) 186 | ``` 187 | 188 | Even if you're content with the default levelDB setup, I really recommend you scan [this list of plugins](https://github.com/Level/levelup/wiki/Modules). It's inspiring what the community has built. 189 | 190 | > `gun-level` will try to read and write values as json. If you're having trouble getting a plugin to work, or keep seeing `"[object Object]"`, make sure it's using the `json` value encoding. 191 | 192 | ## Getting Support 193 | If you're running into problems, feel free to either post an issue on [GitHub](https://github.com/PsychoLlama/gun-level/issues) or chat with us humans in the [Gitter](http://gitter.im/amark/gun/) channel. 194 | 195 | ## Installing from Source 196 | Clone the repo and install the dependencies: 197 | 198 | ```sh 199 | $ git clone https://github.com/PsychoLlama/gun-level.git 200 | $ cd gun-level 201 | $ npm install 202 | ``` 203 | 204 | **Running Tests** 205 | ```sh 206 | # In directory `gun-level` 207 | $ npm test 208 | ``` 209 | 210 | **Building** 211 | ```sh 212 | $ npm run build 213 | # Compiles to folder `dist/` 214 | ``` 215 | 216 | ## Contributors 217 | - Project owner @PsychoLlama 218 | - Code contributor @swhgoon 219 | - The friendly @greenkeeperio-bot 220 | 221 | Sponsored by the fabulous people at [GunDB](http://gun.js.org/). 222 | -------------------------------------------------------------------------------- /mocha.opts: -------------------------------------------------------------------------------- 1 | --recursive 2 | --reporter dot 3 | --check-leaks 4 | --compilers js:babel-register 5 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gun-level", 3 | "version": "6.0.2", 4 | "description": "levelDB persistence layer for gun", 5 | "main": "dist/index.js", 6 | "browser": "dist/browser.js", 7 | "scripts": { 8 | "prettier": "prettier --single-quote --trailing-comma all", 9 | "test": "mocha src/ --opts ./mocha.opts", 10 | "lint": "eslint src/", 11 | "build": "babel src/ -d dist/", 12 | "prepublish": "npm run build", 13 | "precommit": "lint-staged" 14 | }, 15 | "keywords": [ 16 | "gun", 17 | "gundb", 18 | "leveldb", 19 | "level", 20 | "driver" 21 | ], 22 | "repository": { 23 | "type": "git", 24 | "url": "git+https://github.com/PsychoLlama/gun-level.git" 25 | }, 26 | "author": "Jesse Gibson", 27 | "license": "MIT", 28 | "dependencies": { 29 | "babel-runtime": "^6.23.0" 30 | }, 31 | "lint-staged": { 32 | "*.js": [ 33 | "npm run prettier -- --write", 34 | "git add" 35 | ] 36 | }, 37 | "devDependencies": { 38 | "babel-cli": "^6.24.1", 39 | "babel-eslint": "^7.2.3", 40 | "babel-plugin-transform-runtime": "^6.23.0", 41 | "babel-preset-es2015": "^6.24.1", 42 | "babel-register": "^6.24.1", 43 | "encoding-down": "^2.3.4", 44 | "eslint": "^4.3.0", 45 | "eslint-config-llama": "^3.0.0", 46 | "eslint-config-prettier": "^2.3.0", 47 | "expect": "^1.20.2", 48 | "gun": "^0.9.7", 49 | "husky": "^0.14.3", 50 | "levelup": "^2.0.0", 51 | "lint-staged": "^4.0.2", 52 | "memdown": "^1.2.0", 53 | "mocha": "^3.4.2", 54 | "prettier": "^1.5.3" 55 | }, 56 | "peerDependencies": { 57 | "gun": "^0.9.7" 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /src/Adapter/browser.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable id-length*/ 2 | import Gun from 'gun'; 3 | const writing = Symbol('In-process writes'); 4 | const notFound = /(NotFound|not found|not find)/i; 5 | const options = { 6 | valueEncoding: 'json', 7 | }; 8 | 9 | // Gun merge algorithm, authored by Mark Nadal. 10 | const union = (vertex, node, opt) => { 11 | if (!node || !node._) { 12 | return; 13 | } 14 | vertex = vertex || Gun.state.to(node); 15 | if (!vertex || !vertex._) { 16 | return; 17 | } 18 | opt = Gun.num.is(opt) ? { machine: opt } : { machine: Gun.state() }; 19 | opt.union = Gun.obj.copy(vertex); 20 | if ( 21 | !Gun.node.is(node, function(val, key) { 22 | const HAM = Gun.HAM( 23 | opt.machine, 24 | Gun.state.is(node, key), 25 | Gun.state.is(vertex, key, true), 26 | val, 27 | vertex[key], 28 | ); 29 | if (!HAM.incoming) { 30 | return; 31 | } 32 | Gun.state.to(node, key, opt.union); 33 | }) 34 | ) { 35 | return; 36 | } 37 | 38 | return opt.union; // eslint-disable-line 39 | }; 40 | 41 | /** 42 | * Read/write hooks for Gun. 43 | * 44 | * @private 45 | * @param {LevelUP} level - A LevelUP interface. 46 | * @class 47 | */ 48 | export default class Adapter { 49 | static from(level, context) { 50 | return new Adapter(level, context); 51 | } 52 | 53 | constructor(level, ctx) { 54 | // Save a reference to level and the gun instance 55 | this.level = level; 56 | this.ctx = ctx; 57 | 58 | // Preserve the `this` context for read/write calls. 59 | this.read = this.read.bind(this); 60 | this.write = this.write.bind(this); 61 | 62 | // In-process writes. 63 | level[writing] = level[writing] || {}; 64 | } 65 | 66 | /** 67 | * Read a key from LevelDB. 68 | * 69 | * @param {Object} context - A gun request context. 70 | * @returns {undefined} 71 | */ 72 | read(context) { 73 | const { get } = context; 74 | const { level } = this; 75 | const { '#': key } = get; 76 | const value = level[writing][key]; 77 | if (value) { 78 | return this.afterRead(context, null, value); 79 | } 80 | 81 | // Read from level. 82 | return level.get(key, options, (err, result) => { 83 | // Error handling. 84 | if (err) { 85 | if (notFound.test(err.message)) { 86 | // Tell gun nothing was found. 87 | this.afterRead(context, null); 88 | return; 89 | } 90 | 91 | this.afterRead(context, err); 92 | return; 93 | } 94 | 95 | // Pass gun the result. 96 | this.afterRead(context, null, result); 97 | }); 98 | } 99 | 100 | /** 101 | * Return data to Gun 102 | * 103 | * @param {Object} context - A gun request context. 104 | * @param {Error|null} err - An Error object, if any 105 | * @param {Object|null|undefined} data - The node retrieved, if found 106 | * @returns {undefined} 107 | */ 108 | afterRead(context, err, data) { 109 | this.ctx.on('in', { 110 | '@': context['#'], 111 | put: Gun.graph.node(data), 112 | err, 113 | }); 114 | } 115 | 116 | /** 117 | * Write a every node in a graph to level. 118 | * 119 | * @param {Object} context - A gun write context. 120 | * @returns {undefined} 121 | */ 122 | write(context) { 123 | const self = this; 124 | const { level } = this; 125 | const { put: graph } = context; 126 | 127 | // Create a new batch write. 128 | const batch = level.batch(); 129 | 130 | const keys = Object.keys(graph); 131 | let merged = 0; 132 | 133 | /** 134 | * Report errors and clear out the in-process write cache. 135 | * 136 | * @param {Error} [err] - An error given by level. 137 | * @returns {undefined} 138 | */ 139 | function writeHandler(err = null) { 140 | // Remove the in-process writes. 141 | keys.forEach(key => { 142 | delete level[writing][key]; 143 | }); 144 | 145 | // Report whether it succeeded. 146 | self.ctx.on('in', { 147 | '@': context['#'], 148 | ok: !err, 149 | err, 150 | }); 151 | } 152 | 153 | /** 154 | * Determine whether a write should happen and invoke it, 155 | * passing the handler. 156 | * 157 | * @param {Number} counted - The number of keys merged. 158 | * @returns {undefined} 159 | */ 160 | function writeWhenReady(counted) { 161 | // Wait until we've checked all the nodes before 162 | // submitting the batch. 163 | if (counted < keys.length) { 164 | return; 165 | } 166 | 167 | // Write all the nodes to level. 168 | batch.write(writeHandler); 169 | } 170 | 171 | // Each node in the graph... 172 | keys.forEach(uid => { 173 | let node = graph[uid]; 174 | const value = level[writing][uid]; 175 | 176 | // Check to see if it's in the process of writing. 177 | if (value) { 178 | node = union(node, value); 179 | merged += 1; 180 | batch.put(uid, node, options); 181 | 182 | writeWhenReady(merged); 183 | return; 184 | } 185 | 186 | level[writing][uid] = node; 187 | 188 | // Check to see if it exists. 189 | level.get(uid, options, (error, result) => { 190 | // If we already have data... 191 | if (!error) { 192 | // Merge with the write. 193 | node = union(node, result); 194 | } 195 | 196 | // Add the node to our write batch. 197 | batch.put(uid, node, options); 198 | 199 | writeWhenReady((merged += 1)); 200 | }); 201 | }); 202 | } 203 | } 204 | -------------------------------------------------------------------------------- /src/Adapter/index.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable id-length*/ 2 | import Gun from 'gun/gun'; 3 | const writing = Symbol('In-process writes'); 4 | const notFound = /(NotFound|not found|not find)/i; 5 | const options = { 6 | valueEncoding: 'json', 7 | }; 8 | 9 | // Gun merge algorithm, authored by Mark Nadal. 10 | const union = (vertex, node, opt) => { 11 | if (!node || !node._) { 12 | return; 13 | } 14 | vertex = vertex || Gun.state.to(node); 15 | if (!vertex || !vertex._) { 16 | return; 17 | } 18 | opt = Gun.num.is(opt) ? { machine: opt } : { machine: Gun.state() }; 19 | opt.union = Gun.obj.copy(vertex); 20 | if ( 21 | !Gun.node.is(node, function(val, key) { 22 | const HAM = Gun.HAM( 23 | opt.machine, 24 | Gun.state.is(node, key), 25 | Gun.state.is(vertex, key, true), 26 | val, 27 | vertex[key], 28 | ); 29 | if (!HAM.incoming) { 30 | return; 31 | } 32 | Gun.state.to(node, key, opt.union); 33 | }) 34 | ) { 35 | return; 36 | } 37 | 38 | return opt.union; // eslint-disable-line 39 | }; 40 | 41 | /** 42 | * Read/write hooks for Gun. 43 | * 44 | * @private 45 | * @param {LevelUP} level - A LevelUP interface. 46 | * @class 47 | */ 48 | export default class Adapter { 49 | static from(level, context) { 50 | return new Adapter(level, context); 51 | } 52 | 53 | constructor(level, ctx) { 54 | // Save a reference to level and the gun instance 55 | this.level = level; 56 | this.ctx = ctx; 57 | 58 | // Preserve the `this` context for read/write calls. 59 | this.read = this.read.bind(this); 60 | this.write = this.write.bind(this); 61 | 62 | // In-process writes. 63 | level[writing] = level[writing] || {}; 64 | } 65 | 66 | /** 67 | * Read a key from LevelDB. 68 | * 69 | * @param {Object} context - A gun request context. 70 | * @returns {undefined} 71 | */ 72 | read(context) { 73 | const { get } = context; 74 | const { level } = this; 75 | const { '#': key } = get; 76 | const value = level[writing][key]; 77 | if (value) { 78 | return this.afterRead(context, null, value); 79 | } 80 | 81 | // tell gun nothing was found if no key available 82 | // - probably wrong somewhere else if it tries to read w/o key 83 | // - TODO: possibly warn? 84 | // - atm. prefer server not to go down + little time 85 | if (!key) return this.afterRead(context, null); 86 | 87 | // Read from level. 88 | return level.get(key, options, (err, result) => { 89 | // Error handling. 90 | if (err) { 91 | if (notFound.test(err.message)) { 92 | // Tell gun nothing was found. 93 | this.afterRead(context, null); 94 | return; 95 | } 96 | 97 | this.afterRead(context, err); 98 | return; 99 | } 100 | 101 | // Pass gun the result. 102 | this.afterRead(context, null, result); 103 | }); 104 | } 105 | 106 | /** 107 | * Return data to Gun 108 | * 109 | * @param {Object} context - A gun request context. 110 | * @param {Error|null} err - An Error object, if any 111 | * @param {Object|null|undefined} data - The node retrieved, if found 112 | * @returns {undefined} 113 | */ 114 | afterRead(context, err, data) { 115 | this.ctx.on('in', { 116 | '@': context['#'], 117 | put: Gun.graph.node(data), 118 | err, 119 | }); 120 | } 121 | 122 | /** 123 | * Write a every node in a graph to level. 124 | * 125 | * @param {Object} context - A gun write context. 126 | * @returns {undefined} 127 | */ 128 | write(context) { 129 | const self = this; 130 | const { level } = this; 131 | const { put: graph } = context; 132 | 133 | // Create a new batch write. 134 | const batch = level.batch(); 135 | 136 | const keys = Object.keys(graph); 137 | let merged = 0; 138 | 139 | /** 140 | * Report errors and clear out the in-process write cache. 141 | * 142 | * @param {Error} [err] - An error given by level. 143 | * @returns {undefined} 144 | */ 145 | function writeHandler(err = null) { 146 | // Remove the in-process writes. 147 | keys.forEach(key => { 148 | delete level[writing][key]; 149 | }); 150 | 151 | // Report whether it succeeded. 152 | self.ctx.on('in', { 153 | '@': context['#'], 154 | ok: !err, 155 | err, 156 | }); 157 | } 158 | 159 | /** 160 | * Determine whether a write should happen and invoke it, 161 | * passing the handler. 162 | * 163 | * @param {Number} counted - The number of keys merged. 164 | * @returns {undefined} 165 | */ 166 | function writeWhenReady(counted) { 167 | // Wait until we've checked all the nodes before 168 | // submitting the batch. 169 | if (counted < keys.length) { 170 | return; 171 | } 172 | 173 | // Write all the nodes to level. 174 | batch.write(writeHandler); 175 | } 176 | 177 | // Each node in the graph... 178 | keys.forEach(uid => { 179 | let node = graph[uid]; 180 | const value = level[writing][uid]; 181 | 182 | // Check to see if it's in the process of writing. 183 | if (value) { 184 | node = union(node, value); 185 | merged += 1; 186 | batch.put(uid, node, options); 187 | 188 | writeWhenReady(merged); 189 | return; 190 | } 191 | 192 | level[writing][uid] = node; 193 | 194 | // Check to see if it exists. 195 | level.get(uid, options, (error, result) => { 196 | // If we already have data... 197 | if (!error) { 198 | // Merge with the write. 199 | node = union(node, result); 200 | } 201 | 202 | // Add the node to our write batch. 203 | batch.put(uid, node, options); 204 | 205 | writeWhenReady((merged += 1)); 206 | }); 207 | }); 208 | } 209 | } 210 | -------------------------------------------------------------------------------- /src/Adapter/spec.js: -------------------------------------------------------------------------------- 1 | /* eslint-env mocha */ 2 | /* eslint-disable require-jsdoc, id-length */ 3 | import expect, { spyOn } from 'expect'; 4 | import Adapter from './'; 5 | import levelup from 'levelup'; 6 | import memdown from 'memdown'; 7 | import encode from 'encoding-down'; 8 | import Gun from 'gun/gun'; 9 | 10 | const node = obj => Gun.node.ify(obj, Gun.state.map()); 11 | 12 | describe('An adapter', function() { 13 | this.timeout(100); 14 | 15 | let adapter, lex, gun, ctx; 16 | const level = levelup(encode(memdown('test'), { valueEncoding: 'json' })); 17 | const context = new Gun({ level }); 18 | 19 | beforeEach(() => { 20 | adapter = new Adapter(level, context); 21 | const key = Gun.text.random(); 22 | lex = { '#': key }; 23 | gun = context; 24 | }); 25 | 26 | describe('read', () => { 27 | beforeEach(() => { 28 | ctx = { 29 | '#': Gun.text.random(), 30 | get: lex, 31 | gun, 32 | }; 33 | }); 34 | 35 | const read = spyOn(level, 'get'); 36 | afterEach(() => read.reset()); 37 | after(() => read.restore()); 38 | 39 | it('should call `level.get`', () => { 40 | adapter.read(ctx); 41 | 42 | expect(read).toHaveBeenCalled(); 43 | }); 44 | 45 | it('should use the `#` property as the key', () => { 46 | adapter.read(ctx); 47 | 48 | const uid = read.calls[0].arguments[0]; 49 | expect(uid).toBe(lex['#']); 50 | }); 51 | 52 | it('should always use json encoding', () => { 53 | adapter.read(ctx); 54 | const [, options] = read.calls[0].arguments; 55 | expect(options.valueEncoding).toBe('json'); 56 | }); 57 | 58 | it('should respond when it finds data', done => { 59 | const value = node({ value: true }); 60 | 61 | adapter.ctx.on('put', result => { 62 | expect(result['@']).toBe(ctx['#']); 63 | expect(result.put).toEqual(Gun.graph.node(value)); 64 | done(); 65 | }); 66 | 67 | // Setup a Level response. 68 | read.andCall((key, opt, cb) => cb(null, value)); 69 | 70 | // Initialize read request 71 | adapter.read(ctx); 72 | }); 73 | 74 | it('should not error out on NotFound results', () => { 75 | // Spy on the after read method 76 | const afterRead = spyOn(adapter, 'afterRead'); 77 | 78 | // Fake a not-found response. 79 | read.andCall((key, opt, cb) => { 80 | const err = new Error('Key not found'); 81 | cb(err); 82 | }); 83 | 84 | // Initialize fake read request 85 | adapter.read(ctx); 86 | 87 | // Assertions 88 | expect(afterRead).toHaveBeenCalled(); 89 | const [requestConect, error] = afterRead.calls[0].arguments; 90 | expect(requestConect).toContain({ 91 | '#': ctx['#'], 92 | }); 93 | expect(error).toBe(null); 94 | 95 | // Reset state 96 | afterRead.reset(); 97 | afterRead.restore(); 98 | }); 99 | 100 | it('should pass the error on unrecognized errors', () => { 101 | // Spy on the after read method 102 | const afterRead = spyOn(adapter, 'afterRead'); 103 | 104 | // Setup test 105 | const error = new Error('Part of the test'); 106 | read.andCall((key, options, cb) => cb(error)); 107 | 108 | // Run test 109 | adapter.read(ctx); 110 | 111 | // Assertions 112 | expect(afterRead).toHaveBeenCalled(); 113 | const [, returnedErr] = afterRead.calls[0].arguments; 114 | expect(returnedErr).toBe(error); 115 | 116 | // Reset state 117 | afterRead.reset(); 118 | afterRead.restore(); 119 | }); 120 | }); 121 | 122 | describe('write', () => { 123 | let graph, write; 124 | 125 | before(() => { 126 | graph = { 127 | potato: Gun.node.ify({ 128 | hello: 'world', 129 | }), 130 | }; 131 | write = spyOn(level, 'batch').andCallThrough(); 132 | ctx.put = graph; 133 | }); 134 | 135 | afterEach(() => write.reset()); 136 | 137 | after(() => write.restore()); 138 | 139 | it('should create a level batch write', () => { 140 | adapter.write(ctx); 141 | 142 | expect(write).toHaveBeenCalled(); 143 | }); 144 | }); 145 | }); 146 | -------------------------------------------------------------------------------- /src/browser.js: -------------------------------------------------------------------------------- 1 | import Adapter from './Adapter/browser'; 2 | import Gun from 'gun'; 3 | 4 | Gun.on('opt', function(context) { 5 | // Pass to subsequent opt handlers 6 | this.to.next(context); 7 | 8 | const { level } = context.opt; 9 | 10 | // Filter out instances without the level option. 11 | if (!(level instanceof Object)) { 12 | return; 13 | } 14 | 15 | const adapter = Adapter.from(level, context); 16 | 17 | // Allows other plugins to respond concurrently. 18 | const pluginInterop = middleware => 19 | function(ctx) { 20 | this.to.next(ctx); 21 | 22 | return middleware(ctx); 23 | }; 24 | 25 | // Register the driver. 26 | context.on('get', pluginInterop(adapter.read)); 27 | context.on('put', pluginInterop(adapter.write)); 28 | }); 29 | 30 | module.exports = Gun; 31 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import Adapter from './Adapter'; 2 | import Gun from 'gun/gun'; 3 | 4 | Gun.on('opt', function(context) { 5 | // Pass to subsequent opt handlers 6 | this.to.next(context); 7 | 8 | const { level } = context.opt; 9 | 10 | // Filter out instances without the level option. 11 | if (!(level instanceof Object)) { 12 | return; 13 | } 14 | 15 | const adapter = Adapter.from(level, context); 16 | 17 | // Allows other plugins to respond concurrently. 18 | const pluginInterop = middleware => 19 | function(ctx) { 20 | this.to.next(ctx); 21 | 22 | return middleware(ctx); 23 | }; 24 | 25 | // Register the driver. 26 | context.on('get', pluginInterop(adapter.read)); 27 | context.on('put', pluginInterop(adapter.write)); 28 | }); 29 | 30 | module.exports = Gun; 31 | -------------------------------------------------------------------------------- /src/spec.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable require-jsdoc, id-length */ 2 | import { describe, it, beforeEach } from 'mocha'; 3 | import expect from 'expect'; 4 | import memdown from 'memdown'; 5 | import levelup from 'levelup'; 6 | import encode from 'encoding-down'; 7 | import Gun from 'gun/gun'; 8 | import './index'; 9 | 10 | let gun, level, key; 11 | 12 | /** 13 | * Refresh the level instance, effectively clearing out 14 | * any data stored in memory 15 | * 16 | * @returns {undefined} 17 | */ 18 | const makeLevel = () => { 19 | level = levelup(encode(memdown('test'), { valueEncoding: 'json' })); 20 | }; 21 | 22 | /** 23 | * Make a new instance of Gun but do not refresh the level instance 24 | * 25 | * This means that any part of the Graph stored in Gun is wiped 26 | * out but that it is still in level (as long as makeLevel isn't also called) 27 | * 28 | * @returns {Gun} A gun instance 29 | */ 30 | const makeGun = () => { 31 | gun = Gun({ level }); 32 | return gun; 33 | }; 34 | 35 | /** 36 | * Integration tests between Level, Gun, and Gun-Level adapter 37 | */ 38 | describe('Gun using level', function() { 39 | this.timeout(2000); 40 | 41 | beforeEach(() => { 42 | key = Math.random().toString(36).slice(2); 43 | 44 | // Refresh level and Gun's state 45 | makeLevel(); 46 | makeGun(); 47 | }); 48 | 49 | it('should report not found data', done => { 50 | gun.get('no such key').val(notFound => { 51 | expect(notFound).toBe(undefined); 52 | done(); 53 | }); 54 | }); 55 | 56 | it('should successfully write data', done => { 57 | gun.get(key).put({ success: true }, ctx => { 58 | expect(ctx.err).toBeFalsy(); 59 | done(); 60 | }); 61 | }); 62 | 63 | it('should be able to read existing data', done => { 64 | gun.get(key).put({ success: true }); 65 | makeGun().get(key).val(data => { 66 | expect(data).toContain({ success: true }); 67 | done(); 68 | }); 69 | }); 70 | 71 | it('should merge with existing data', done => { 72 | const g = makeGun(); 73 | 74 | // write initial data 75 | g.get(key).put({ data: true }, res1 => { 76 | if (res1.err) { 77 | throw res1.err; 78 | } 79 | 80 | // add to it 81 | g.get(key).put({ success: true }, res2 => { 82 | if (res2.err) { 83 | throw res2.err; 84 | } 85 | 86 | // verify data merge 87 | makeGun().get(key).val(value => { 88 | expect(value).toContain({ success: true, data: true }); 89 | done(); 90 | }); 91 | }); 92 | }); 93 | }); 94 | 95 | it('should resolve circular references', done => { 96 | const bob = gun.get('bob').put({ name: 'Bob' }); 97 | const dave = gun.get('dave').put({ name: 'Dave' }); 98 | 99 | bob.get('friend').put(dave); 100 | dave.get('friend').put(bob); 101 | 102 | bob.get('friend').get('friend').val(value => { 103 | expect(value.name).toBe('Bob'); 104 | done(); 105 | }); 106 | }); 107 | 108 | it('should handle sets', done => { 109 | const g = makeGun(); 110 | const profiles = g.get('profiles'); 111 | const bob = g.get('bob').put({ name: 'Bob' }); 112 | const dave = g.get('dave').put({ name: 'Dave' }); 113 | 114 | profiles.set(bob).set(dave); 115 | 116 | let count = 0; 117 | makeGun().get('profiles').map().on(profile => { 118 | // Check nodes for proper form 119 | if (profile.name === 'Bob') { 120 | expect(profile).toContain({ name: 'Bob' }); 121 | } else if (profile.name === 'Dave') { 122 | expect(profile).toContain({ name: 'Dave' }); 123 | } 124 | 125 | // ensure all profiles are found before completing 126 | count += 1; 127 | if (count === 2) { 128 | done(); 129 | } 130 | }); 131 | }); 132 | }); 133 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.0.9" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 8 | 9 | abstract-leveldown@2.4.1: 10 | version "2.4.1" 11 | resolved "https://registry.yarnpkg.com/abstract-leveldown/-/abstract-leveldown-2.4.1.tgz#b3bfedb884eb693a12775f0c55e9f0a420ccee64" 12 | dependencies: 13 | xtend "~4.0.0" 14 | 15 | abstract-leveldown@^2.7.1, abstract-leveldown@~2.7.0: 16 | version "2.7.2" 17 | resolved "https://registry.yarnpkg.com/abstract-leveldown/-/abstract-leveldown-2.7.2.tgz#87a44d7ebebc341d59665204834c8b7e0932cc93" 18 | dependencies: 19 | xtend "~4.0.0" 20 | 21 | acorn-jsx@^3.0.0: 22 | version "3.0.1" 23 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 24 | dependencies: 25 | acorn "^3.0.4" 26 | 27 | acorn@^3.0.4: 28 | version "3.3.0" 29 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 30 | 31 | acorn@^5.0.1: 32 | version "5.1.1" 33 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.1.tgz#53fe161111f912ab999ee887a90a0bc52822fd75" 34 | 35 | ajv-keywords@^1.0.0: 36 | version "1.2.0" 37 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.2.0.tgz#676c4f087bfe1e8b12dca6fda2f3c74f417b099c" 38 | 39 | ajv@^4.7.0: 40 | version "4.10.0" 41 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.10.0.tgz#7ae6169180eb199192a8b9a19fd0f47fc9ac8764" 42 | dependencies: 43 | co "^4.6.0" 44 | json-stable-stringify "^1.0.1" 45 | 46 | ajv@^5.2.0: 47 | version "5.2.2" 48 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.2.tgz#47c68d69e86f5d953103b0074a9430dc63da5e39" 49 | dependencies: 50 | co "^4.6.0" 51 | fast-deep-equal "^1.0.0" 52 | json-schema-traverse "^0.3.0" 53 | json-stable-stringify "^1.0.1" 54 | 55 | ansi-escapes@^1.0.0: 56 | version "1.4.0" 57 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 58 | 59 | ansi-escapes@^2.0.0: 60 | version "2.0.0" 61 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" 62 | 63 | ansi-regex@^2.0.0: 64 | version "2.0.0" 65 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 66 | 67 | ansi-regex@^3.0.0: 68 | version "3.0.0" 69 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 70 | 71 | ansi-styles@^2.2.1: 72 | version "2.2.1" 73 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 74 | 75 | ansi-styles@^3.1.0: 76 | version "3.2.0" 77 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 78 | dependencies: 79 | color-convert "^1.9.0" 80 | 81 | anymatch@^1.3.0: 82 | version "1.3.0" 83 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 84 | dependencies: 85 | arrify "^1.0.0" 86 | micromatch "^2.1.5" 87 | 88 | app-root-path@^2.0.0: 89 | version "2.0.1" 90 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" 91 | 92 | aproba@^1.0.3: 93 | version "1.0.4" 94 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 95 | 96 | are-we-there-yet@~1.1.2: 97 | version "1.1.2" 98 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 99 | dependencies: 100 | delegates "^1.0.0" 101 | readable-stream "^2.0.0 || ^1.1.13" 102 | 103 | argparse@^1.0.7: 104 | version "1.0.9" 105 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 106 | dependencies: 107 | sprintf-js "~1.0.2" 108 | 109 | arr-diff@^2.0.0: 110 | version "2.0.0" 111 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 112 | dependencies: 113 | arr-flatten "^1.0.1" 114 | 115 | arr-flatten@^1.0.1: 116 | version "1.0.1" 117 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 118 | 119 | array-union@^1.0.1: 120 | version "1.0.2" 121 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 122 | dependencies: 123 | array-uniq "^1.0.1" 124 | 125 | array-uniq@^1.0.1: 126 | version "1.0.3" 127 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 128 | 129 | array-unique@^0.2.1: 130 | version "0.2.1" 131 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 132 | 133 | arrify@^1.0.0: 134 | version "1.0.1" 135 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 136 | 137 | asn1@~0.2.3: 138 | version "0.2.3" 139 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 140 | 141 | assert-plus@^0.2.0: 142 | version "0.2.0" 143 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 144 | 145 | assert-plus@^1.0.0: 146 | version "1.0.0" 147 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 148 | 149 | async-each@^1.0.0: 150 | version "1.0.1" 151 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 152 | 153 | asynckit@^0.4.0: 154 | version "0.4.0" 155 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 156 | 157 | aws-sdk@>=2.86.0: 158 | version "2.141.0" 159 | resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.141.0.tgz#3d96a5970fd9f540ceabcc1d4baeb33b71583aa7" 160 | dependencies: 161 | buffer "4.9.1" 162 | crypto-browserify "1.0.9" 163 | events "^1.1.1" 164 | jmespath "0.15.0" 165 | querystring "0.2.0" 166 | sax "1.2.1" 167 | url "0.10.3" 168 | uuid "3.1.0" 169 | xml2js "0.4.17" 170 | xmlbuilder "4.2.1" 171 | 172 | aws-sign2@~0.6.0: 173 | version "0.6.0" 174 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 175 | 176 | aws4@^1.2.1: 177 | version "1.5.0" 178 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 179 | 180 | babel-cli@^6.24.1: 181 | version "6.24.1" 182 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" 183 | dependencies: 184 | babel-core "^6.24.1" 185 | babel-polyfill "^6.23.0" 186 | babel-register "^6.24.1" 187 | babel-runtime "^6.22.0" 188 | commander "^2.8.1" 189 | convert-source-map "^1.1.0" 190 | fs-readdir-recursive "^1.0.0" 191 | glob "^7.0.0" 192 | lodash "^4.2.0" 193 | output-file-sync "^1.1.0" 194 | path-is-absolute "^1.0.0" 195 | slash "^1.0.0" 196 | source-map "^0.5.0" 197 | v8flags "^2.0.10" 198 | optionalDependencies: 199 | chokidar "^1.6.1" 200 | 201 | babel-code-frame@^6.22.0: 202 | version "6.22.0" 203 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 204 | dependencies: 205 | chalk "^1.1.0" 206 | esutils "^2.0.2" 207 | js-tokens "^3.0.0" 208 | 209 | babel-core@^6.24.1: 210 | version "6.25.0" 211 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" 212 | dependencies: 213 | babel-code-frame "^6.22.0" 214 | babel-generator "^6.25.0" 215 | babel-helpers "^6.24.1" 216 | babel-messages "^6.23.0" 217 | babel-register "^6.24.1" 218 | babel-runtime "^6.22.0" 219 | babel-template "^6.25.0" 220 | babel-traverse "^6.25.0" 221 | babel-types "^6.25.0" 222 | babylon "^6.17.2" 223 | convert-source-map "^1.1.0" 224 | debug "^2.1.1" 225 | json5 "^0.5.0" 226 | lodash "^4.2.0" 227 | minimatch "^3.0.2" 228 | path-is-absolute "^1.0.0" 229 | private "^0.1.6" 230 | slash "^1.0.0" 231 | source-map "^0.5.0" 232 | 233 | babel-eslint@^7.2.3: 234 | version "7.2.3" 235 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827" 236 | dependencies: 237 | babel-code-frame "^6.22.0" 238 | babel-traverse "^6.23.1" 239 | babel-types "^6.23.0" 240 | babylon "^6.17.0" 241 | 242 | babel-generator@^6.25.0: 243 | version "6.25.0" 244 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" 245 | dependencies: 246 | babel-messages "^6.23.0" 247 | babel-runtime "^6.22.0" 248 | babel-types "^6.25.0" 249 | detect-indent "^4.0.0" 250 | jsesc "^1.3.0" 251 | lodash "^4.2.0" 252 | source-map "^0.5.0" 253 | trim-right "^1.0.1" 254 | 255 | babel-helper-call-delegate@^6.24.1: 256 | version "6.24.1" 257 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 258 | dependencies: 259 | babel-helper-hoist-variables "^6.24.1" 260 | babel-runtime "^6.22.0" 261 | babel-traverse "^6.24.1" 262 | babel-types "^6.24.1" 263 | 264 | babel-helper-define-map@^6.24.1: 265 | version "6.24.1" 266 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 267 | dependencies: 268 | babel-helper-function-name "^6.24.1" 269 | babel-runtime "^6.22.0" 270 | babel-types "^6.24.1" 271 | lodash "^4.2.0" 272 | 273 | babel-helper-function-name@^6.24.1: 274 | version "6.24.1" 275 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 276 | dependencies: 277 | babel-helper-get-function-arity "^6.24.1" 278 | babel-runtime "^6.22.0" 279 | babel-template "^6.24.1" 280 | babel-traverse "^6.24.1" 281 | babel-types "^6.24.1" 282 | 283 | babel-helper-get-function-arity@^6.24.1: 284 | version "6.24.1" 285 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 286 | dependencies: 287 | babel-runtime "^6.22.0" 288 | babel-types "^6.24.1" 289 | 290 | babel-helper-hoist-variables@^6.24.1: 291 | version "6.24.1" 292 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 293 | dependencies: 294 | babel-runtime "^6.22.0" 295 | babel-types "^6.24.1" 296 | 297 | babel-helper-optimise-call-expression@^6.24.1: 298 | version "6.24.1" 299 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 300 | dependencies: 301 | babel-runtime "^6.22.0" 302 | babel-types "^6.24.1" 303 | 304 | babel-helper-regex@^6.24.1: 305 | version "6.24.1" 306 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 307 | dependencies: 308 | babel-runtime "^6.22.0" 309 | babel-types "^6.24.1" 310 | lodash "^4.2.0" 311 | 312 | babel-helper-replace-supers@^6.24.1: 313 | version "6.24.1" 314 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 315 | dependencies: 316 | babel-helper-optimise-call-expression "^6.24.1" 317 | babel-messages "^6.23.0" 318 | babel-runtime "^6.22.0" 319 | babel-template "^6.24.1" 320 | babel-traverse "^6.24.1" 321 | babel-types "^6.24.1" 322 | 323 | babel-helpers@^6.24.1: 324 | version "6.24.1" 325 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 326 | dependencies: 327 | babel-runtime "^6.22.0" 328 | babel-template "^6.24.1" 329 | 330 | babel-messages@^6.23.0: 331 | version "6.23.0" 332 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 333 | dependencies: 334 | babel-runtime "^6.22.0" 335 | 336 | babel-plugin-check-es2015-constants@^6.22.0: 337 | version "6.22.0" 338 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 339 | dependencies: 340 | babel-runtime "^6.22.0" 341 | 342 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 343 | version "6.22.0" 344 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 345 | dependencies: 346 | babel-runtime "^6.22.0" 347 | 348 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 349 | version "6.22.0" 350 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 351 | dependencies: 352 | babel-runtime "^6.22.0" 353 | 354 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 355 | version "6.24.1" 356 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 357 | dependencies: 358 | babel-runtime "^6.22.0" 359 | babel-template "^6.24.1" 360 | babel-traverse "^6.24.1" 361 | babel-types "^6.24.1" 362 | lodash "^4.2.0" 363 | 364 | babel-plugin-transform-es2015-classes@^6.24.1: 365 | version "6.24.1" 366 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 367 | dependencies: 368 | babel-helper-define-map "^6.24.1" 369 | babel-helper-function-name "^6.24.1" 370 | babel-helper-optimise-call-expression "^6.24.1" 371 | babel-helper-replace-supers "^6.24.1" 372 | babel-messages "^6.23.0" 373 | babel-runtime "^6.22.0" 374 | babel-template "^6.24.1" 375 | babel-traverse "^6.24.1" 376 | babel-types "^6.24.1" 377 | 378 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 379 | version "6.24.1" 380 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 381 | dependencies: 382 | babel-runtime "^6.22.0" 383 | babel-template "^6.24.1" 384 | 385 | babel-plugin-transform-es2015-destructuring@^6.22.0: 386 | version "6.23.0" 387 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 388 | dependencies: 389 | babel-runtime "^6.22.0" 390 | 391 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 392 | version "6.24.1" 393 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 394 | dependencies: 395 | babel-runtime "^6.22.0" 396 | babel-types "^6.24.1" 397 | 398 | babel-plugin-transform-es2015-for-of@^6.22.0: 399 | version "6.23.0" 400 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 401 | dependencies: 402 | babel-runtime "^6.22.0" 403 | 404 | babel-plugin-transform-es2015-function-name@^6.24.1: 405 | version "6.24.1" 406 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 407 | dependencies: 408 | babel-helper-function-name "^6.24.1" 409 | babel-runtime "^6.22.0" 410 | babel-types "^6.24.1" 411 | 412 | babel-plugin-transform-es2015-literals@^6.22.0: 413 | version "6.22.0" 414 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 415 | dependencies: 416 | babel-runtime "^6.22.0" 417 | 418 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 419 | version "6.24.1" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 421 | dependencies: 422 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 423 | babel-runtime "^6.22.0" 424 | babel-template "^6.24.1" 425 | 426 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 427 | version "6.24.1" 428 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 429 | dependencies: 430 | babel-plugin-transform-strict-mode "^6.24.1" 431 | babel-runtime "^6.22.0" 432 | babel-template "^6.24.1" 433 | babel-types "^6.24.1" 434 | 435 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 436 | version "6.24.1" 437 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 438 | dependencies: 439 | babel-helper-hoist-variables "^6.24.1" 440 | babel-runtime "^6.22.0" 441 | babel-template "^6.24.1" 442 | 443 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 444 | version "6.24.1" 445 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 446 | dependencies: 447 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 448 | babel-runtime "^6.22.0" 449 | babel-template "^6.24.1" 450 | 451 | babel-plugin-transform-es2015-object-super@^6.24.1: 452 | version "6.24.1" 453 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 454 | dependencies: 455 | babel-helper-replace-supers "^6.24.1" 456 | babel-runtime "^6.22.0" 457 | 458 | babel-plugin-transform-es2015-parameters@^6.24.1: 459 | version "6.24.1" 460 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 461 | dependencies: 462 | babel-helper-call-delegate "^6.24.1" 463 | babel-helper-get-function-arity "^6.24.1" 464 | babel-runtime "^6.22.0" 465 | babel-template "^6.24.1" 466 | babel-traverse "^6.24.1" 467 | babel-types "^6.24.1" 468 | 469 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 470 | version "6.24.1" 471 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 472 | dependencies: 473 | babel-runtime "^6.22.0" 474 | babel-types "^6.24.1" 475 | 476 | babel-plugin-transform-es2015-spread@^6.22.0: 477 | version "6.22.0" 478 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 479 | dependencies: 480 | babel-runtime "^6.22.0" 481 | 482 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 483 | version "6.24.1" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 485 | dependencies: 486 | babel-helper-regex "^6.24.1" 487 | babel-runtime "^6.22.0" 488 | babel-types "^6.24.1" 489 | 490 | babel-plugin-transform-es2015-template-literals@^6.22.0: 491 | version "6.22.0" 492 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 493 | dependencies: 494 | babel-runtime "^6.22.0" 495 | 496 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 497 | version "6.23.0" 498 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 499 | dependencies: 500 | babel-runtime "^6.22.0" 501 | 502 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 503 | version "6.24.1" 504 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 505 | dependencies: 506 | babel-helper-regex "^6.24.1" 507 | babel-runtime "^6.22.0" 508 | regexpu-core "^2.0.0" 509 | 510 | babel-plugin-transform-regenerator@^6.24.1: 511 | version "6.24.1" 512 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 513 | dependencies: 514 | regenerator-transform "0.9.11" 515 | 516 | babel-plugin-transform-runtime@^6.23.0: 517 | version "6.23.0" 518 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee" 519 | dependencies: 520 | babel-runtime "^6.22.0" 521 | 522 | babel-plugin-transform-strict-mode@^6.24.1: 523 | version "6.24.1" 524 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 525 | dependencies: 526 | babel-runtime "^6.22.0" 527 | babel-types "^6.24.1" 528 | 529 | babel-polyfill@^6.23.0: 530 | version "6.23.0" 531 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 532 | dependencies: 533 | babel-runtime "^6.22.0" 534 | core-js "^2.4.0" 535 | regenerator-runtime "^0.10.0" 536 | 537 | babel-preset-es2015@^6.24.1: 538 | version "6.24.1" 539 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 540 | dependencies: 541 | babel-plugin-check-es2015-constants "^6.22.0" 542 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 543 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 544 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 545 | babel-plugin-transform-es2015-classes "^6.24.1" 546 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 547 | babel-plugin-transform-es2015-destructuring "^6.22.0" 548 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 549 | babel-plugin-transform-es2015-for-of "^6.22.0" 550 | babel-plugin-transform-es2015-function-name "^6.24.1" 551 | babel-plugin-transform-es2015-literals "^6.22.0" 552 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 553 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 554 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 555 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 556 | babel-plugin-transform-es2015-object-super "^6.24.1" 557 | babel-plugin-transform-es2015-parameters "^6.24.1" 558 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 559 | babel-plugin-transform-es2015-spread "^6.22.0" 560 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 561 | babel-plugin-transform-es2015-template-literals "^6.22.0" 562 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 563 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 564 | babel-plugin-transform-regenerator "^6.24.1" 565 | 566 | babel-register@^6.24.1: 567 | version "6.24.1" 568 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 569 | dependencies: 570 | babel-core "^6.24.1" 571 | babel-runtime "^6.22.0" 572 | core-js "^2.4.0" 573 | home-or-tmp "^2.0.0" 574 | lodash "^4.2.0" 575 | mkdirp "^0.5.1" 576 | source-map-support "^0.4.2" 577 | 578 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.23.0: 579 | version "6.23.0" 580 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 581 | dependencies: 582 | core-js "^2.4.0" 583 | regenerator-runtime "^0.10.0" 584 | 585 | babel-template@^6.24.1, babel-template@^6.25.0: 586 | version "6.25.0" 587 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" 588 | dependencies: 589 | babel-runtime "^6.22.0" 590 | babel-traverse "^6.25.0" 591 | babel-types "^6.25.0" 592 | babylon "^6.17.2" 593 | lodash "^4.2.0" 594 | 595 | babel-traverse@^6.23.1, babel-traverse@^6.24.1, babel-traverse@^6.25.0: 596 | version "6.25.0" 597 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" 598 | dependencies: 599 | babel-code-frame "^6.22.0" 600 | babel-messages "^6.23.0" 601 | babel-runtime "^6.22.0" 602 | babel-types "^6.25.0" 603 | babylon "^6.17.2" 604 | debug "^2.2.0" 605 | globals "^9.0.0" 606 | invariant "^2.2.0" 607 | lodash "^4.2.0" 608 | 609 | babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1, babel-types@^6.25.0: 610 | version "6.25.0" 611 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" 612 | dependencies: 613 | babel-runtime "^6.22.0" 614 | esutils "^2.0.2" 615 | lodash "^4.2.0" 616 | to-fast-properties "^1.0.1" 617 | 618 | babylon@^6.17.0, babylon@^6.17.2: 619 | version "6.17.4" 620 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 621 | 622 | balanced-match@^0.4.1: 623 | version "0.4.2" 624 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 625 | 626 | balanced-match@^1.0.0: 627 | version "1.0.0" 628 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 629 | 630 | base64-js@^1.0.2: 631 | version "1.2.0" 632 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 633 | 634 | bcrypt-pbkdf@^1.0.0: 635 | version "1.0.0" 636 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 637 | dependencies: 638 | tweetnacl "^0.14.3" 639 | 640 | binary-extensions@^1.0.0: 641 | version "1.8.0" 642 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 643 | 644 | block-stream@*: 645 | version "0.0.9" 646 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 647 | dependencies: 648 | inherits "~2.0.0" 649 | 650 | boom@2.x.x: 651 | version "2.10.1" 652 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 653 | dependencies: 654 | hoek "2.x.x" 655 | 656 | brace-expansion@^1.0.0: 657 | version "1.1.6" 658 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 659 | dependencies: 660 | balanced-match "^0.4.1" 661 | concat-map "0.0.1" 662 | 663 | brace-expansion@^1.1.7: 664 | version "1.1.8" 665 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 666 | dependencies: 667 | balanced-match "^1.0.0" 668 | concat-map "0.0.1" 669 | 670 | braces@^1.8.2: 671 | version "1.8.5" 672 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 673 | dependencies: 674 | expand-range "^1.8.1" 675 | preserve "^0.2.0" 676 | repeat-element "^1.1.2" 677 | 678 | browser-stdout@1.3.0: 679 | version "1.3.0" 680 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 681 | 682 | buffer-shims@^1.0.0: 683 | version "1.0.0" 684 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 685 | 686 | buffer@4.9.1: 687 | version "4.9.1" 688 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 689 | dependencies: 690 | base64-js "^1.0.2" 691 | ieee754 "^1.1.4" 692 | isarray "^1.0.0" 693 | 694 | caller-path@^0.1.0: 695 | version "0.1.0" 696 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 697 | dependencies: 698 | callsites "^0.2.0" 699 | 700 | callsites@^0.2.0: 701 | version "0.2.0" 702 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 703 | 704 | caseless@~0.11.0: 705 | version "0.11.0" 706 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 707 | 708 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 709 | version "1.1.3" 710 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 711 | dependencies: 712 | ansi-styles "^2.2.1" 713 | escape-string-regexp "^1.0.2" 714 | has-ansi "^2.0.0" 715 | strip-ansi "^3.0.0" 716 | supports-color "^2.0.0" 717 | 718 | chalk@^2.0.0: 719 | version "2.0.1" 720 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.0.1.tgz#dbec49436d2ae15f536114e76d14656cdbc0f44d" 721 | dependencies: 722 | ansi-styles "^3.1.0" 723 | escape-string-regexp "^1.0.5" 724 | supports-color "^4.0.0" 725 | 726 | chokidar@^1.6.1: 727 | version "1.7.0" 728 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 729 | dependencies: 730 | anymatch "^1.3.0" 731 | async-each "^1.0.0" 732 | glob-parent "^2.0.0" 733 | inherits "^2.0.1" 734 | is-binary-path "^1.0.0" 735 | is-glob "^2.0.0" 736 | path-is-absolute "^1.0.0" 737 | readdirp "^2.0.0" 738 | optionalDependencies: 739 | fsevents "^1.0.0" 740 | 741 | ci-info@^1.0.0: 742 | version "1.0.0" 743 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 744 | 745 | circular-json@^0.3.0: 746 | version "0.3.1" 747 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 748 | 749 | cli-cursor@^1.0.2: 750 | version "1.0.2" 751 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 752 | dependencies: 753 | restore-cursor "^1.0.1" 754 | 755 | cli-cursor@^2.1.0: 756 | version "2.1.0" 757 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 758 | dependencies: 759 | restore-cursor "^2.0.0" 760 | 761 | cli-spinners@^0.1.2: 762 | version "0.1.2" 763 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 764 | 765 | cli-truncate@^0.2.1: 766 | version "0.2.1" 767 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 768 | dependencies: 769 | slice-ansi "0.0.4" 770 | string-width "^1.0.1" 771 | 772 | cli-width@^2.0.0: 773 | version "2.1.0" 774 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 775 | 776 | co@^4.6.0: 777 | version "4.6.0" 778 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 779 | 780 | code-point-at@^1.0.0: 781 | version "1.1.0" 782 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 783 | 784 | color-convert@^1.9.0: 785 | version "1.9.0" 786 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 787 | dependencies: 788 | color-name "^1.1.1" 789 | 790 | color-name@^1.1.1: 791 | version "1.1.3" 792 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 793 | 794 | combined-stream@^1.0.5, combined-stream@~1.0.5: 795 | version "1.0.5" 796 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 797 | dependencies: 798 | delayed-stream "~1.0.0" 799 | 800 | commander@2.9.0, commander@^2.8.1, commander@^2.9.0: 801 | version "2.9.0" 802 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 803 | dependencies: 804 | graceful-readlink ">= 1.0.0" 805 | 806 | concat-map@0.0.1: 807 | version "0.0.1" 808 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 809 | 810 | concat-stream@^1.6.0: 811 | version "1.6.0" 812 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 813 | dependencies: 814 | inherits "^2.0.3" 815 | readable-stream "^2.2.2" 816 | typedarray "^0.0.6" 817 | 818 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 819 | version "1.1.0" 820 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 821 | 822 | convert-source-map@^1.1.0: 823 | version "1.3.0" 824 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 825 | 826 | core-js@^2.4.0: 827 | version "2.4.1" 828 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 829 | 830 | core-util-is@~1.0.0: 831 | version "1.0.2" 832 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 833 | 834 | cosmiconfig@^1.1.0: 835 | version "1.1.0" 836 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-1.1.0.tgz#0dea0f9804efdfb929fbb1b188e25553ea053d37" 837 | dependencies: 838 | graceful-fs "^4.1.2" 839 | js-yaml "^3.4.3" 840 | minimist "^1.2.0" 841 | object-assign "^4.0.1" 842 | os-homedir "^1.0.1" 843 | parse-json "^2.2.0" 844 | pinkie-promise "^2.0.0" 845 | require-from-string "^1.1.0" 846 | 847 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 848 | version "5.1.0" 849 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 850 | dependencies: 851 | lru-cache "^4.0.1" 852 | shebang-command "^1.2.0" 853 | which "^1.2.9" 854 | 855 | cryptiles@2.x.x: 856 | version "2.0.5" 857 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 858 | dependencies: 859 | boom "2.x.x" 860 | 861 | crypto-browserify@1.0.9: 862 | version "1.0.9" 863 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-1.0.9.tgz#cc5449685dfb85eb11c9828acc7cb87ab5bbfcc0" 864 | 865 | dashdash@^1.12.0: 866 | version "1.14.1" 867 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 868 | dependencies: 869 | assert-plus "^1.0.0" 870 | 871 | date-fns@^1.27.2: 872 | version "1.28.5" 873 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.28.5.tgz#257cfc45d322df45ef5658665967ee841cd73faf" 874 | 875 | debug@2.6.0: 876 | version "2.6.0" 877 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" 878 | dependencies: 879 | ms "0.7.2" 880 | 881 | debug@^2.1.1, debug@^2.6.8: 882 | version "2.6.8" 883 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 884 | dependencies: 885 | ms "2.0.0" 886 | 887 | debug@^2.2.0, debug@~2.2.0: 888 | version "2.2.0" 889 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 890 | dependencies: 891 | ms "0.7.1" 892 | 893 | deep-extend@~0.4.0: 894 | version "0.4.1" 895 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 896 | 897 | deep-is@~0.1.3: 898 | version "0.1.3" 899 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 900 | 901 | deferred-leveldown@~2.0.2: 902 | version "2.0.2" 903 | resolved "https://registry.yarnpkg.com/deferred-leveldown/-/deferred-leveldown-2.0.2.tgz#6d3dcb066d940f01392cf310c8029a8605e7eef7" 904 | dependencies: 905 | abstract-leveldown "~2.7.0" 906 | 907 | define-properties@^1.1.2, define-properties@~1.1.2: 908 | version "1.1.2" 909 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 910 | dependencies: 911 | foreach "^2.0.5" 912 | object-keys "^1.0.8" 913 | 914 | del@^2.0.2: 915 | version "2.2.2" 916 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 917 | dependencies: 918 | globby "^5.0.0" 919 | is-path-cwd "^1.0.0" 920 | is-path-in-cwd "^1.0.0" 921 | object-assign "^4.0.1" 922 | pify "^2.0.0" 923 | pinkie-promise "^2.0.0" 924 | rimraf "^2.2.8" 925 | 926 | delayed-stream@~1.0.0: 927 | version "1.0.0" 928 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 929 | 930 | delegates@^1.0.0: 931 | version "1.0.0" 932 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 933 | 934 | detect-indent@^4.0.0: 935 | version "4.0.0" 936 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 937 | dependencies: 938 | repeating "^2.0.0" 939 | 940 | diff@3.2.0: 941 | version "3.2.0" 942 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 943 | 944 | doctrine@^2.0.0: 945 | version "2.0.0" 946 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 947 | dependencies: 948 | esutils "^2.0.2" 949 | isarray "^1.0.0" 950 | 951 | ecc-jsbn@~0.1.1: 952 | version "0.1.1" 953 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 954 | dependencies: 955 | jsbn "~0.1.0" 956 | 957 | elegant-spinner@^1.0.1: 958 | version "1.0.1" 959 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 960 | 961 | encoding-down@^2.3.4: 962 | version "2.3.4" 963 | resolved "https://registry.yarnpkg.com/encoding-down/-/encoding-down-2.3.4.tgz#8ec27729aead0798144a2689fda89f303a93a5e3" 964 | dependencies: 965 | abstract-leveldown "^2.7.1" 966 | level-codec "^8.0.0" 967 | level-errors "^1.0.4" 968 | 969 | errno@~0.1.1: 970 | version "0.1.4" 971 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 972 | dependencies: 973 | prr "~0.0.0" 974 | 975 | error-ex@^1.2.0: 976 | version "1.3.1" 977 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 978 | dependencies: 979 | is-arrayish "^0.2.1" 980 | 981 | es-abstract@^1.6.1: 982 | version "1.6.1" 983 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.6.1.tgz#bb8a2064120abcf928a086ea3d9043114285ec99" 984 | dependencies: 985 | es-to-primitive "^1.1.1" 986 | function-bind "^1.1.0" 987 | is-callable "^1.1.3" 988 | is-regex "^1.0.3" 989 | 990 | es-to-primitive@^1.1.1: 991 | version "1.1.1" 992 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 993 | dependencies: 994 | is-callable "^1.1.1" 995 | is-date-object "^1.0.1" 996 | is-symbol "^1.0.1" 997 | 998 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 999 | version "1.0.5" 1000 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1001 | 1002 | eslint-config-llama@^3.0.0: 1003 | version "3.0.0" 1004 | resolved "https://registry.yarnpkg.com/eslint-config-llama/-/eslint-config-llama-3.0.0.tgz#0eb5b4a18c0b77505ecbc6cbb4f833f1576b7f1f" 1005 | 1006 | eslint-config-prettier@^2.3.0: 1007 | version "2.3.0" 1008 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.3.0.tgz#b75b1eabea0c8b97b34403647ee25db349b9d8a0" 1009 | dependencies: 1010 | get-stdin "^5.0.1" 1011 | 1012 | eslint-scope@^3.7.1: 1013 | version "3.7.1" 1014 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1015 | dependencies: 1016 | esrecurse "^4.1.0" 1017 | estraverse "^4.1.1" 1018 | 1019 | eslint@^4.3.0: 1020 | version "4.3.0" 1021 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.3.0.tgz#fcd7c96376bbf34c85ee67ed0012a299642b108f" 1022 | dependencies: 1023 | ajv "^5.2.0" 1024 | babel-code-frame "^6.22.0" 1025 | chalk "^1.1.3" 1026 | concat-stream "^1.6.0" 1027 | cross-spawn "^5.1.0" 1028 | debug "^2.6.8" 1029 | doctrine "^2.0.0" 1030 | eslint-scope "^3.7.1" 1031 | espree "^3.4.3" 1032 | esquery "^1.0.0" 1033 | estraverse "^4.2.0" 1034 | esutils "^2.0.2" 1035 | file-entry-cache "^2.0.0" 1036 | functional-red-black-tree "^1.0.1" 1037 | glob "^7.1.2" 1038 | globals "^9.17.0" 1039 | ignore "^3.3.3" 1040 | imurmurhash "^0.1.4" 1041 | inquirer "^3.0.6" 1042 | is-resolvable "^1.0.0" 1043 | js-yaml "^3.8.4" 1044 | json-stable-stringify "^1.0.1" 1045 | levn "^0.3.0" 1046 | lodash "^4.17.4" 1047 | minimatch "^3.0.2" 1048 | mkdirp "^0.5.1" 1049 | natural-compare "^1.4.0" 1050 | optionator "^0.8.2" 1051 | path-is-inside "^1.0.2" 1052 | pluralize "^4.0.0" 1053 | progress "^2.0.0" 1054 | require-uncached "^1.0.3" 1055 | semver "^5.3.0" 1056 | strip-json-comments "~2.0.1" 1057 | table "^4.0.1" 1058 | text-table "~0.2.0" 1059 | 1060 | espree@^3.4.3: 1061 | version "3.4.3" 1062 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" 1063 | dependencies: 1064 | acorn "^5.0.1" 1065 | acorn-jsx "^3.0.0" 1066 | 1067 | esprima@^2.6.0: 1068 | version "2.7.3" 1069 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1070 | 1071 | esprima@^4.0.0: 1072 | version "4.0.0" 1073 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1074 | 1075 | esquery@^1.0.0: 1076 | version "1.0.0" 1077 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1078 | dependencies: 1079 | estraverse "^4.0.0" 1080 | 1081 | esrecurse@^4.1.0: 1082 | version "4.1.0" 1083 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1084 | dependencies: 1085 | estraverse "~4.1.0" 1086 | object-assign "^4.0.1" 1087 | 1088 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1089 | version "4.2.0" 1090 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1091 | 1092 | estraverse@~4.1.0: 1093 | version "4.1.1" 1094 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1095 | 1096 | esutils@^2.0.2: 1097 | version "2.0.2" 1098 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1099 | 1100 | events@^1.1.1: 1101 | version "1.1.1" 1102 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1103 | 1104 | execa@^0.7.0: 1105 | version "0.7.0" 1106 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1107 | dependencies: 1108 | cross-spawn "^5.0.1" 1109 | get-stream "^3.0.0" 1110 | is-stream "^1.1.0" 1111 | npm-run-path "^2.0.0" 1112 | p-finally "^1.0.0" 1113 | signal-exit "^3.0.0" 1114 | strip-eof "^1.0.0" 1115 | 1116 | exit-hook@^1.0.0: 1117 | version "1.1.1" 1118 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1119 | 1120 | expand-brackets@^0.1.4: 1121 | version "0.1.5" 1122 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1123 | dependencies: 1124 | is-posix-bracket "^0.1.0" 1125 | 1126 | expand-range@^1.8.1: 1127 | version "1.8.2" 1128 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1129 | dependencies: 1130 | fill-range "^2.1.0" 1131 | 1132 | expect@^1.20.2: 1133 | version "1.20.2" 1134 | resolved "https://registry.yarnpkg.com/expect/-/expect-1.20.2.tgz#d458fe4c56004036bae3232416a3f6361f04f965" 1135 | dependencies: 1136 | define-properties "~1.1.2" 1137 | has "^1.0.1" 1138 | is-equal "^1.5.1" 1139 | is-regex "^1.0.3" 1140 | object-inspect "^1.1.0" 1141 | object-keys "^1.0.9" 1142 | tmatch "^2.0.1" 1143 | 1144 | extend@~3.0.0: 1145 | version "3.0.0" 1146 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1147 | 1148 | external-editor@^2.0.4: 1149 | version "2.0.4" 1150 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" 1151 | dependencies: 1152 | iconv-lite "^0.4.17" 1153 | jschardet "^1.4.2" 1154 | tmp "^0.0.31" 1155 | 1156 | extglob@^0.3.1: 1157 | version "0.3.2" 1158 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1159 | dependencies: 1160 | is-extglob "^1.0.0" 1161 | 1162 | extsprintf@1.0.2: 1163 | version "1.0.2" 1164 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1165 | 1166 | fast-deep-equal@^1.0.0: 1167 | version "1.0.0" 1168 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1169 | 1170 | fast-levenshtein@~2.0.4: 1171 | version "2.0.5" 1172 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2" 1173 | 1174 | figures@^1.7.0: 1175 | version "1.7.0" 1176 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1177 | dependencies: 1178 | escape-string-regexp "^1.0.5" 1179 | object-assign "^4.1.0" 1180 | 1181 | figures@^2.0.0: 1182 | version "2.0.0" 1183 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1184 | dependencies: 1185 | escape-string-regexp "^1.0.5" 1186 | 1187 | file-entry-cache@^2.0.0: 1188 | version "2.0.0" 1189 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1190 | dependencies: 1191 | flat-cache "^1.2.1" 1192 | object-assign "^4.0.1" 1193 | 1194 | filename-regex@^2.0.0: 1195 | version "2.0.0" 1196 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1197 | 1198 | fill-range@^2.1.0: 1199 | version "2.2.3" 1200 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1201 | dependencies: 1202 | is-number "^2.1.0" 1203 | isobject "^2.0.0" 1204 | randomatic "^1.1.3" 1205 | repeat-element "^1.1.2" 1206 | repeat-string "^1.5.2" 1207 | 1208 | flat-cache@^1.2.1: 1209 | version "1.2.1" 1210 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.1.tgz#6c837d6225a7de5659323740b36d5361f71691ff" 1211 | dependencies: 1212 | circular-json "^0.3.0" 1213 | del "^2.0.2" 1214 | graceful-fs "^4.1.2" 1215 | write "^0.2.1" 1216 | 1217 | for-in@^0.1.5: 1218 | version "0.1.6" 1219 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1220 | 1221 | for-own@^0.1.4: 1222 | version "0.1.4" 1223 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1224 | dependencies: 1225 | for-in "^0.1.5" 1226 | 1227 | foreach@^2.0.5: 1228 | version "2.0.5" 1229 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1230 | 1231 | forever-agent@~0.6.1: 1232 | version "0.6.1" 1233 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1234 | 1235 | form-data@~2.1.1: 1236 | version "2.1.2" 1237 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1238 | dependencies: 1239 | asynckit "^0.4.0" 1240 | combined-stream "^1.0.5" 1241 | mime-types "^2.1.12" 1242 | 1243 | fs-readdir-recursive@^1.0.0: 1244 | version "1.0.0" 1245 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1246 | 1247 | fs.realpath@^1.0.0: 1248 | version "1.0.0" 1249 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1250 | 1251 | fsevents@^1.0.0: 1252 | version "1.0.15" 1253 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.15.tgz#fa63f590f3c2ad91275e4972a6cea545fb0aae44" 1254 | dependencies: 1255 | nan "^2.3.0" 1256 | node-pre-gyp "^0.6.29" 1257 | 1258 | fstream-ignore@~1.0.5: 1259 | version "1.0.5" 1260 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1261 | dependencies: 1262 | fstream "^1.0.0" 1263 | inherits "2" 1264 | minimatch "^3.0.0" 1265 | 1266 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1267 | version "1.0.10" 1268 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1269 | dependencies: 1270 | graceful-fs "^4.1.2" 1271 | inherits "~2.0.0" 1272 | mkdirp ">=0.5 0" 1273 | rimraf "2" 1274 | 1275 | function-bind@^1.0.2, function-bind@^1.1.0: 1276 | version "1.1.0" 1277 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1278 | 1279 | functional-red-black-tree@^1.0.1: 1280 | version "1.0.1" 1281 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1282 | 1283 | gauge@~2.7.1: 1284 | version "2.7.2" 1285 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.2.tgz#15cecc31b02d05345a5d6b0e171cdb3ad2307774" 1286 | dependencies: 1287 | aproba "^1.0.3" 1288 | console-control-strings "^1.0.0" 1289 | has-unicode "^2.0.0" 1290 | object-assign "^4.1.0" 1291 | signal-exit "^3.0.0" 1292 | string-width "^1.0.1" 1293 | strip-ansi "^3.0.1" 1294 | supports-color "^0.2.0" 1295 | wide-align "^1.1.0" 1296 | 1297 | generate-function@^2.0.0: 1298 | version "2.0.0" 1299 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1300 | 1301 | generate-object-property@^1.1.0: 1302 | version "1.2.0" 1303 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1304 | dependencies: 1305 | is-property "^1.0.0" 1306 | 1307 | get-stdin@^5.0.1: 1308 | version "5.0.1" 1309 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1310 | 1311 | get-stream@^3.0.0: 1312 | version "3.0.0" 1313 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1314 | 1315 | getpass@^0.1.1: 1316 | version "0.1.6" 1317 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1318 | dependencies: 1319 | assert-plus "^1.0.0" 1320 | 1321 | glob-base@^0.3.0: 1322 | version "0.3.0" 1323 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1324 | dependencies: 1325 | glob-parent "^2.0.0" 1326 | is-glob "^2.0.0" 1327 | 1328 | glob-parent@^2.0.0: 1329 | version "2.0.0" 1330 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1331 | dependencies: 1332 | is-glob "^2.0.0" 1333 | 1334 | glob@7.1.1: 1335 | version "7.1.1" 1336 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1337 | dependencies: 1338 | fs.realpath "^1.0.0" 1339 | inflight "^1.0.4" 1340 | inherits "2" 1341 | minimatch "^3.0.2" 1342 | once "^1.3.0" 1343 | path-is-absolute "^1.0.0" 1344 | 1345 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 1346 | version "7.0.5" 1347 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.5.tgz#b4202a69099bbb4d292a7c1b95b6682b67ebdc95" 1348 | dependencies: 1349 | fs.realpath "^1.0.0" 1350 | inflight "^1.0.4" 1351 | inherits "2" 1352 | minimatch "^3.0.2" 1353 | once "^1.3.0" 1354 | path-is-absolute "^1.0.0" 1355 | 1356 | glob@^7.1.2: 1357 | version "7.1.2" 1358 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1359 | dependencies: 1360 | fs.realpath "^1.0.0" 1361 | inflight "^1.0.4" 1362 | inherits "2" 1363 | minimatch "^3.0.4" 1364 | once "^1.3.0" 1365 | path-is-absolute "^1.0.0" 1366 | 1367 | globals@^9.0.0: 1368 | version "9.14.0" 1369 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034" 1370 | 1371 | globals@^9.17.0: 1372 | version "9.18.0" 1373 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1374 | 1375 | globby@^5.0.0: 1376 | version "5.0.0" 1377 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1378 | dependencies: 1379 | array-union "^1.0.1" 1380 | arrify "^1.0.0" 1381 | glob "^7.0.3" 1382 | object-assign "^4.0.1" 1383 | pify "^2.0.0" 1384 | pinkie-promise "^2.0.0" 1385 | 1386 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1387 | version "4.1.11" 1388 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1389 | 1390 | "graceful-readlink@>= 1.0.0": 1391 | version "1.0.1" 1392 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1393 | 1394 | growl@1.9.2: 1395 | version "1.9.2" 1396 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1397 | 1398 | gun@^0.8: 1399 | version "0.8.8" 1400 | resolved "https://registry.yarnpkg.com/gun/-/gun-0.8.8.tgz#50d9fd31144f7ed1d02de866f0e50df51763c630" 1401 | dependencies: 1402 | aws-sdk ">=2.86.0" 1403 | ws "~>2.2.3" 1404 | 1405 | har-validator@~2.0.6: 1406 | version "2.0.6" 1407 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1408 | dependencies: 1409 | chalk "^1.1.1" 1410 | commander "^2.9.0" 1411 | is-my-json-valid "^2.12.4" 1412 | pinkie-promise "^2.0.0" 1413 | 1414 | has-ansi@^2.0.0: 1415 | version "2.0.0" 1416 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1417 | dependencies: 1418 | ansi-regex "^2.0.0" 1419 | 1420 | has-flag@^1.0.0: 1421 | version "1.0.0" 1422 | resolved "http://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1423 | 1424 | has-flag@^2.0.0: 1425 | version "2.0.0" 1426 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1427 | 1428 | has-unicode@^2.0.0: 1429 | version "2.0.1" 1430 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1431 | 1432 | has@^1.0.1: 1433 | version "1.0.1" 1434 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1435 | dependencies: 1436 | function-bind "^1.0.2" 1437 | 1438 | hawk@~3.1.3: 1439 | version "3.1.3" 1440 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1441 | dependencies: 1442 | boom "2.x.x" 1443 | cryptiles "2.x.x" 1444 | hoek "2.x.x" 1445 | sntp "1.x.x" 1446 | 1447 | hoek@2.x.x: 1448 | version "2.16.3" 1449 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1450 | 1451 | home-or-tmp@^2.0.0: 1452 | version "2.0.0" 1453 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1454 | dependencies: 1455 | os-homedir "^1.0.0" 1456 | os-tmpdir "^1.0.1" 1457 | 1458 | http-signature@~1.1.0: 1459 | version "1.1.1" 1460 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1461 | dependencies: 1462 | assert-plus "^0.2.0" 1463 | jsprim "^1.2.2" 1464 | sshpk "^1.7.0" 1465 | 1466 | husky@^0.14.3: 1467 | version "0.14.3" 1468 | resolved "https://registry.yarnpkg.com/husky/-/husky-0.14.3.tgz#c69ed74e2d2779769a17ba8399b54ce0b63c12c3" 1469 | dependencies: 1470 | is-ci "^1.0.10" 1471 | normalize-path "^1.0.0" 1472 | strip-indent "^2.0.0" 1473 | 1474 | iconv-lite@^0.4.17: 1475 | version "0.4.18" 1476 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2" 1477 | 1478 | ieee754@^1.1.4: 1479 | version "1.1.8" 1480 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1481 | 1482 | ignore@^3.3.3: 1483 | version "3.3.3" 1484 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 1485 | 1486 | immediate@^3.2.3: 1487 | version "3.2.3" 1488 | resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.2.3.tgz#d140fa8f614659bd6541233097ddaac25cdd991c" 1489 | 1490 | imurmurhash@^0.1.4: 1491 | version "0.1.4" 1492 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1493 | 1494 | indent-string@^2.1.0: 1495 | version "2.1.0" 1496 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1497 | dependencies: 1498 | repeating "^2.0.0" 1499 | 1500 | indent-string@^3.0.0: 1501 | version "3.2.0" 1502 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1503 | 1504 | inflight@^1.0.4: 1505 | version "1.0.6" 1506 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1507 | dependencies: 1508 | once "^1.3.0" 1509 | wrappy "1" 1510 | 1511 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1512 | version "2.0.3" 1513 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1514 | 1515 | ini@~1.3.0: 1516 | version "1.3.4" 1517 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1518 | 1519 | inquirer@^3.0.6: 1520 | version "3.2.1" 1521 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.2.1.tgz#06ceb0f540f45ca548c17d6840959878265fa175" 1522 | dependencies: 1523 | ansi-escapes "^2.0.0" 1524 | chalk "^2.0.0" 1525 | cli-cursor "^2.1.0" 1526 | cli-width "^2.0.0" 1527 | external-editor "^2.0.4" 1528 | figures "^2.0.0" 1529 | lodash "^4.3.0" 1530 | mute-stream "0.0.7" 1531 | run-async "^2.2.0" 1532 | rx-lite "^4.0.8" 1533 | rx-lite-aggregates "^4.0.8" 1534 | string-width "^2.1.0" 1535 | strip-ansi "^4.0.0" 1536 | through "^2.3.6" 1537 | 1538 | invariant@^2.2.0: 1539 | version "2.2.2" 1540 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1541 | dependencies: 1542 | loose-envify "^1.0.0" 1543 | 1544 | is-arrayish@^0.2.1: 1545 | version "0.2.1" 1546 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1547 | 1548 | is-arrow-function@^2.0.3: 1549 | version "2.0.3" 1550 | resolved "https://registry.yarnpkg.com/is-arrow-function/-/is-arrow-function-2.0.3.tgz#29be2c2d8d9450852b8bbafb635ba7b8d8e87ec2" 1551 | dependencies: 1552 | is-callable "^1.0.4" 1553 | 1554 | is-binary-path@^1.0.0: 1555 | version "1.0.1" 1556 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1557 | dependencies: 1558 | binary-extensions "^1.0.0" 1559 | 1560 | is-boolean-object@^1.0.0: 1561 | version "1.0.0" 1562 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.0.tgz#98f8b28030684219a95f375cfbd88ce3405dff93" 1563 | 1564 | is-buffer@^1.0.2: 1565 | version "1.1.4" 1566 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1567 | 1568 | is-callable@^1.0.4, is-callable@^1.1.1, is-callable@^1.1.3: 1569 | version "1.1.3" 1570 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1571 | 1572 | is-ci@^1.0.10: 1573 | version "1.0.10" 1574 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1575 | dependencies: 1576 | ci-info "^1.0.0" 1577 | 1578 | is-date-object@^1.0.1: 1579 | version "1.0.1" 1580 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1581 | 1582 | is-dotfile@^1.0.0: 1583 | version "1.0.2" 1584 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1585 | 1586 | is-equal-shallow@^0.1.3: 1587 | version "0.1.3" 1588 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1589 | dependencies: 1590 | is-primitive "^2.0.0" 1591 | 1592 | is-equal@^1.5.1: 1593 | version "1.5.3" 1594 | resolved "https://registry.yarnpkg.com/is-equal/-/is-equal-1.5.3.tgz#05b7fa3a1122cbc71c1ef41ce0142d5532013b29" 1595 | dependencies: 1596 | has "^1.0.1" 1597 | is-arrow-function "^2.0.3" 1598 | is-boolean-object "^1.0.0" 1599 | is-callable "^1.1.3" 1600 | is-date-object "^1.0.1" 1601 | is-generator-function "^1.0.3" 1602 | is-number-object "^1.0.3" 1603 | is-regex "^1.0.3" 1604 | is-string "^1.0.4" 1605 | is-symbol "^1.0.1" 1606 | object.entries "^1.0.3" 1607 | 1608 | is-extendable@^0.1.1: 1609 | version "0.1.1" 1610 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1611 | 1612 | is-extglob@^1.0.0: 1613 | version "1.0.0" 1614 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1615 | 1616 | is-finite@^1.0.0: 1617 | version "1.0.2" 1618 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1619 | dependencies: 1620 | number-is-nan "^1.0.0" 1621 | 1622 | is-fullwidth-code-point@^1.0.0: 1623 | version "1.0.0" 1624 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1625 | dependencies: 1626 | number-is-nan "^1.0.0" 1627 | 1628 | is-fullwidth-code-point@^2.0.0: 1629 | version "2.0.0" 1630 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1631 | 1632 | is-generator-function@^1.0.3: 1633 | version "1.0.3" 1634 | resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.3.tgz#d374ca57e807444fa2658be3728ed6b174b326b1" 1635 | 1636 | is-glob@^2.0.0, is-glob@^2.0.1: 1637 | version "2.0.1" 1638 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1639 | dependencies: 1640 | is-extglob "^1.0.0" 1641 | 1642 | is-my-json-valid@^2.12.4: 1643 | version "2.15.0" 1644 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 1645 | dependencies: 1646 | generate-function "^2.0.0" 1647 | generate-object-property "^1.1.0" 1648 | jsonpointer "^4.0.0" 1649 | xtend "^4.0.0" 1650 | 1651 | is-number-object@^1.0.3: 1652 | version "1.0.3" 1653 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.3.tgz#f265ab89a9f445034ef6aff15a8f00b00f551799" 1654 | 1655 | is-number@^2.0.2, is-number@^2.1.0: 1656 | version "2.1.0" 1657 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1658 | dependencies: 1659 | kind-of "^3.0.2" 1660 | 1661 | is-path-cwd@^1.0.0: 1662 | version "1.0.0" 1663 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1664 | 1665 | is-path-in-cwd@^1.0.0: 1666 | version "1.0.0" 1667 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1668 | dependencies: 1669 | is-path-inside "^1.0.0" 1670 | 1671 | is-path-inside@^1.0.0: 1672 | version "1.0.0" 1673 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1674 | dependencies: 1675 | path-is-inside "^1.0.1" 1676 | 1677 | is-posix-bracket@^0.1.0: 1678 | version "0.1.1" 1679 | resolved "http://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1680 | 1681 | is-primitive@^2.0.0: 1682 | version "2.0.0" 1683 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1684 | 1685 | is-promise@^2.1.0: 1686 | version "2.1.0" 1687 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1688 | 1689 | is-property@^1.0.0: 1690 | version "1.0.2" 1691 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1692 | 1693 | is-regex@^1.0.3: 1694 | version "1.0.3" 1695 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.3.tgz#0d55182bddf9f2fde278220aec3a75642c908637" 1696 | 1697 | is-resolvable@^1.0.0: 1698 | version "1.0.0" 1699 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1700 | dependencies: 1701 | tryit "^1.0.1" 1702 | 1703 | is-stream@^1.1.0: 1704 | version "1.1.0" 1705 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1706 | 1707 | is-string@^1.0.4: 1708 | version "1.0.4" 1709 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.4.tgz#cc3a9b69857d621e963725a24caeec873b826e64" 1710 | 1711 | is-symbol@^1.0.1: 1712 | version "1.0.1" 1713 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1714 | 1715 | is-typedarray@~1.0.0: 1716 | version "1.0.0" 1717 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1718 | 1719 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1720 | version "1.0.0" 1721 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1722 | 1723 | isexe@^2.0.0: 1724 | version "2.0.0" 1725 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1726 | 1727 | isobject@^2.0.0: 1728 | version "2.1.0" 1729 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1730 | dependencies: 1731 | isarray "1.0.0" 1732 | 1733 | isstream@~0.1.2: 1734 | version "0.1.2" 1735 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1736 | 1737 | jmespath@0.15.0: 1738 | version "0.15.0" 1739 | resolved "https://registry.yarnpkg.com/jmespath/-/jmespath-0.15.0.tgz#a3f222a9aae9f966f5d27c796510e28091764217" 1740 | 1741 | jodid25519@^1.0.0: 1742 | version "1.0.2" 1743 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1744 | dependencies: 1745 | jsbn "~0.1.0" 1746 | 1747 | js-tokens@^2.0.0: 1748 | version "2.0.0" 1749 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" 1750 | 1751 | js-tokens@^3.0.0: 1752 | version "3.0.2" 1753 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1754 | 1755 | js-yaml@^3.4.3: 1756 | version "3.7.0" 1757 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 1758 | dependencies: 1759 | argparse "^1.0.7" 1760 | esprima "^2.6.0" 1761 | 1762 | js-yaml@^3.8.4: 1763 | version "3.9.0" 1764 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.0.tgz#4ffbbf25c2ac963b8299dc74da7e3740de1c18ce" 1765 | dependencies: 1766 | argparse "^1.0.7" 1767 | esprima "^4.0.0" 1768 | 1769 | jsbn@~0.1.0: 1770 | version "0.1.0" 1771 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 1772 | 1773 | jschardet@^1.4.2: 1774 | version "1.5.0" 1775 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.0.tgz#a61f310306a5a71188e1b1acd08add3cfbb08b1e" 1776 | 1777 | jsesc@^1.3.0: 1778 | version "1.3.0" 1779 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1780 | 1781 | jsesc@~0.5.0: 1782 | version "0.5.0" 1783 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1784 | 1785 | json-schema-traverse@^0.3.0: 1786 | version "0.3.1" 1787 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1788 | 1789 | json-schema@0.2.3: 1790 | version "0.2.3" 1791 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1792 | 1793 | json-stable-stringify@^1.0.1: 1794 | version "1.0.1" 1795 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1796 | dependencies: 1797 | jsonify "~0.0.0" 1798 | 1799 | json-stringify-safe@~5.0.1: 1800 | version "5.0.1" 1801 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1802 | 1803 | json3@3.3.2: 1804 | version "3.3.2" 1805 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1806 | 1807 | json5@^0.5.0: 1808 | version "0.5.1" 1809 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1810 | 1811 | jsonify@~0.0.0: 1812 | version "0.0.0" 1813 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1814 | 1815 | jsonpointer@^4.0.0: 1816 | version "4.0.0" 1817 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5" 1818 | 1819 | jsprim@^1.2.2: 1820 | version "1.3.1" 1821 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 1822 | dependencies: 1823 | extsprintf "1.0.2" 1824 | json-schema "0.2.3" 1825 | verror "1.3.6" 1826 | 1827 | kind-of@^3.0.2: 1828 | version "3.1.0" 1829 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 1830 | dependencies: 1831 | is-buffer "^1.0.2" 1832 | 1833 | level-codec@^8.0.0: 1834 | version "8.0.0" 1835 | resolved "https://registry.yarnpkg.com/level-codec/-/level-codec-8.0.0.tgz#3a4a0de06dae20c2f5a57b3372c7651e67083e03" 1836 | 1837 | level-errors@^1.0.4, level-errors@~1.1.0: 1838 | version "1.1.1" 1839 | resolved "https://registry.yarnpkg.com/level-errors/-/level-errors-1.1.1.tgz#52fdc2dbbaf395cf767db843929a38b7015678d2" 1840 | dependencies: 1841 | errno "~0.1.1" 1842 | 1843 | level-iterator-stream@~2.0.0: 1844 | version "2.0.0" 1845 | resolved "https://registry.yarnpkg.com/level-iterator-stream/-/level-iterator-stream-2.0.0.tgz#e0fe4273a0322177c81bb87684016bb5b90a98b4" 1846 | dependencies: 1847 | inherits "^2.0.1" 1848 | readable-stream "^2.0.5" 1849 | xtend "^4.0.0" 1850 | 1851 | levelup@^2.0.0: 1852 | version "2.0.0" 1853 | resolved "https://registry.yarnpkg.com/levelup/-/levelup-2.0.0.tgz#6a7e2af8e4d63fa17313e922c6c8a5b81cec1d08" 1854 | dependencies: 1855 | deferred-leveldown "~2.0.2" 1856 | level-errors "~1.1.0" 1857 | level-iterator-stream "~2.0.0" 1858 | xtend "~4.0.0" 1859 | 1860 | levn@^0.3.0, levn@~0.3.0: 1861 | version "0.3.0" 1862 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1863 | dependencies: 1864 | prelude-ls "~1.1.2" 1865 | type-check "~0.3.2" 1866 | 1867 | lint-staged@^4.0.2: 1868 | version "4.0.2" 1869 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-4.0.2.tgz#8e83e11e9e1656c09b6117f6db0d55fd4960a1c0" 1870 | dependencies: 1871 | app-root-path "^2.0.0" 1872 | cosmiconfig "^1.1.0" 1873 | execa "^0.7.0" 1874 | listr "^0.12.0" 1875 | lodash.chunk "^4.2.0" 1876 | minimatch "^3.0.0" 1877 | npm-which "^3.0.1" 1878 | p-map "^1.1.1" 1879 | staged-git-files "0.0.4" 1880 | 1881 | listr-silent-renderer@^1.1.1: 1882 | version "1.1.1" 1883 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" 1884 | 1885 | listr-update-renderer@^0.2.0: 1886 | version "0.2.0" 1887 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.2.0.tgz#ca80e1779b4e70266807e8eed1ad6abe398550f9" 1888 | dependencies: 1889 | chalk "^1.1.3" 1890 | cli-truncate "^0.2.1" 1891 | elegant-spinner "^1.0.1" 1892 | figures "^1.7.0" 1893 | indent-string "^3.0.0" 1894 | log-symbols "^1.0.2" 1895 | log-update "^1.0.2" 1896 | strip-ansi "^3.0.1" 1897 | 1898 | listr-verbose-renderer@^0.4.0: 1899 | version "0.4.0" 1900 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.0.tgz#44dc01bb0c34a03c572154d4d08cde9b1dc5620f" 1901 | dependencies: 1902 | chalk "^1.1.3" 1903 | cli-cursor "^1.0.2" 1904 | date-fns "^1.27.2" 1905 | figures "^1.7.0" 1906 | 1907 | listr@^0.12.0: 1908 | version "0.12.0" 1909 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.12.0.tgz#6bce2c0f5603fa49580ea17cd6a00cc0e5fa451a" 1910 | dependencies: 1911 | chalk "^1.1.3" 1912 | cli-truncate "^0.2.1" 1913 | figures "^1.7.0" 1914 | indent-string "^2.1.0" 1915 | is-promise "^2.1.0" 1916 | is-stream "^1.1.0" 1917 | listr-silent-renderer "^1.1.1" 1918 | listr-update-renderer "^0.2.0" 1919 | listr-verbose-renderer "^0.4.0" 1920 | log-symbols "^1.0.2" 1921 | log-update "^1.0.2" 1922 | ora "^0.2.3" 1923 | p-map "^1.1.1" 1924 | rxjs "^5.0.0-beta.11" 1925 | stream-to-observable "^0.1.0" 1926 | strip-ansi "^3.0.1" 1927 | 1928 | lodash._baseassign@^3.0.0: 1929 | version "3.2.0" 1930 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1931 | dependencies: 1932 | lodash._basecopy "^3.0.0" 1933 | lodash.keys "^3.0.0" 1934 | 1935 | lodash._basecopy@^3.0.0: 1936 | version "3.0.1" 1937 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1938 | 1939 | lodash._basecreate@^3.0.0: 1940 | version "3.0.3" 1941 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 1942 | 1943 | lodash._getnative@^3.0.0: 1944 | version "3.9.1" 1945 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1946 | 1947 | lodash._isiterateecall@^3.0.0: 1948 | version "3.0.9" 1949 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1950 | 1951 | lodash.chunk@^4.2.0: 1952 | version "4.2.0" 1953 | resolved "https://registry.yarnpkg.com/lodash.chunk/-/lodash.chunk-4.2.0.tgz#66e5ce1f76ed27b4303d8c6512e8d1216e8106bc" 1954 | 1955 | lodash.create@3.1.1: 1956 | version "3.1.1" 1957 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 1958 | dependencies: 1959 | lodash._baseassign "^3.0.0" 1960 | lodash._basecreate "^3.0.0" 1961 | lodash._isiterateecall "^3.0.0" 1962 | 1963 | lodash.isarguments@^3.0.0: 1964 | version "3.1.0" 1965 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1966 | 1967 | lodash.isarray@^3.0.0: 1968 | version "3.0.4" 1969 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1970 | 1971 | lodash.keys@^3.0.0: 1972 | version "3.1.2" 1973 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1974 | dependencies: 1975 | lodash._getnative "^3.0.0" 1976 | lodash.isarguments "^3.0.0" 1977 | lodash.isarray "^3.0.0" 1978 | 1979 | lodash@^4.0.0, lodash@^4.2.0, lodash@^4.3.0: 1980 | version "4.17.2" 1981 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.2.tgz#34a3055babe04ce42467b607d700072c7ff6bf42" 1982 | 1983 | lodash@^4.17.4: 1984 | version "4.17.4" 1985 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1986 | 1987 | log-symbols@^1.0.2: 1988 | version "1.0.2" 1989 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 1990 | dependencies: 1991 | chalk "^1.0.0" 1992 | 1993 | log-update@^1.0.2: 1994 | version "1.0.2" 1995 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" 1996 | dependencies: 1997 | ansi-escapes "^1.0.0" 1998 | cli-cursor "^1.0.2" 1999 | 2000 | loose-envify@^1.0.0: 2001 | version "1.3.0" 2002 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8" 2003 | dependencies: 2004 | js-tokens "^2.0.0" 2005 | 2006 | lru-cache@^4.0.1: 2007 | version "4.1.1" 2008 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2009 | dependencies: 2010 | pseudomap "^1.0.2" 2011 | yallist "^2.1.2" 2012 | 2013 | ltgt@~2.1.3: 2014 | version "2.1.3" 2015 | resolved "https://registry.yarnpkg.com/ltgt/-/ltgt-2.1.3.tgz#10851a06d9964b971178441c23c9e52698eece34" 2016 | 2017 | memdown@^1.2.0: 2018 | version "1.2.4" 2019 | resolved "https://registry.yarnpkg.com/memdown/-/memdown-1.2.4.tgz#cd9a34aaf074d53445a271108eb4b8dd4ec0f27f" 2020 | dependencies: 2021 | abstract-leveldown "2.4.1" 2022 | functional-red-black-tree "^1.0.1" 2023 | immediate "^3.2.3" 2024 | inherits "~2.0.1" 2025 | ltgt "~2.1.3" 2026 | 2027 | micromatch@^2.1.5: 2028 | version "2.3.11" 2029 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2030 | dependencies: 2031 | arr-diff "^2.0.0" 2032 | array-unique "^0.2.1" 2033 | braces "^1.8.2" 2034 | expand-brackets "^0.1.4" 2035 | extglob "^0.3.1" 2036 | filename-regex "^2.0.0" 2037 | is-extglob "^1.0.0" 2038 | is-glob "^2.0.1" 2039 | kind-of "^3.0.2" 2040 | normalize-path "^2.0.1" 2041 | object.omit "^2.0.0" 2042 | parse-glob "^3.0.4" 2043 | regex-cache "^0.4.2" 2044 | 2045 | mime-db@~1.25.0: 2046 | version "1.25.0" 2047 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.25.0.tgz#c18dbd7c73a5dbf6f44a024dc0d165a1e7b1c392" 2048 | 2049 | mime-types@^2.1.12, mime-types@~2.1.7: 2050 | version "2.1.13" 2051 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.13.tgz#e07aaa9c6c6b9a7ca3012c69003ad25a39e92a88" 2052 | dependencies: 2053 | mime-db "~1.25.0" 2054 | 2055 | mimic-fn@^1.0.0: 2056 | version "1.1.0" 2057 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2058 | 2059 | minimatch@^3.0.0, minimatch@^3.0.2: 2060 | version "3.0.3" 2061 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2062 | dependencies: 2063 | brace-expansion "^1.0.0" 2064 | 2065 | minimatch@^3.0.4: 2066 | version "3.0.4" 2067 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2068 | dependencies: 2069 | brace-expansion "^1.1.7" 2070 | 2071 | minimist@0.0.8: 2072 | version "0.0.8" 2073 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2074 | 2075 | minimist@^1.2.0: 2076 | version "1.2.0" 2077 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2078 | 2079 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.1: 2080 | version "0.5.1" 2081 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2082 | dependencies: 2083 | minimist "0.0.8" 2084 | 2085 | mocha@^3.4.2: 2086 | version "3.4.2" 2087 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.4.2.tgz#d0ef4d332126dbf18d0d640c9b382dd48be97594" 2088 | dependencies: 2089 | browser-stdout "1.3.0" 2090 | commander "2.9.0" 2091 | debug "2.6.0" 2092 | diff "3.2.0" 2093 | escape-string-regexp "1.0.5" 2094 | glob "7.1.1" 2095 | growl "1.9.2" 2096 | json3 "3.3.2" 2097 | lodash.create "3.1.1" 2098 | mkdirp "0.5.1" 2099 | supports-color "3.1.2" 2100 | 2101 | ms@0.7.1: 2102 | version "0.7.1" 2103 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2104 | 2105 | ms@0.7.2: 2106 | version "0.7.2" 2107 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2108 | 2109 | ms@2.0.0: 2110 | version "2.0.0" 2111 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2112 | 2113 | mute-stream@0.0.7: 2114 | version "0.0.7" 2115 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2116 | 2117 | nan@^2.3.0: 2118 | version "2.4.0" 2119 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232" 2120 | 2121 | natural-compare@^1.4.0: 2122 | version "1.4.0" 2123 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2124 | 2125 | node-pre-gyp@^0.6.29: 2126 | version "0.6.32" 2127 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.32.tgz#fc452b376e7319b3d255f5f34853ef6fd8fe1fd5" 2128 | dependencies: 2129 | mkdirp "~0.5.1" 2130 | nopt "~3.0.6" 2131 | npmlog "^4.0.1" 2132 | rc "~1.1.6" 2133 | request "^2.79.0" 2134 | rimraf "~2.5.4" 2135 | semver "~5.3.0" 2136 | tar "~2.2.1" 2137 | tar-pack "~3.3.0" 2138 | 2139 | nopt@~3.0.6: 2140 | version "3.0.6" 2141 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2142 | dependencies: 2143 | abbrev "1" 2144 | 2145 | normalize-path@^1.0.0: 2146 | version "1.0.0" 2147 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" 2148 | 2149 | normalize-path@^2.0.1: 2150 | version "2.0.1" 2151 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2152 | 2153 | npm-path@^2.0.2: 2154 | version "2.0.3" 2155 | resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.3.tgz#15cff4e1c89a38da77f56f6055b24f975dfb2bbe" 2156 | dependencies: 2157 | which "^1.2.10" 2158 | 2159 | npm-run-path@^2.0.0: 2160 | version "2.0.2" 2161 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2162 | dependencies: 2163 | path-key "^2.0.0" 2164 | 2165 | npm-which@^3.0.1: 2166 | version "3.0.1" 2167 | resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" 2168 | dependencies: 2169 | commander "^2.9.0" 2170 | npm-path "^2.0.2" 2171 | which "^1.2.10" 2172 | 2173 | npmlog@^4.0.1: 2174 | version "4.0.2" 2175 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 2176 | dependencies: 2177 | are-we-there-yet "~1.1.2" 2178 | console-control-strings "~1.1.0" 2179 | gauge "~2.7.1" 2180 | set-blocking "~2.0.0" 2181 | 2182 | number-is-nan@^1.0.0: 2183 | version "1.0.1" 2184 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2185 | 2186 | oauth-sign@~0.8.1: 2187 | version "0.8.2" 2188 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2189 | 2190 | object-assign@^4.0.1, object-assign@^4.1.0: 2191 | version "4.1.0" 2192 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 2193 | 2194 | object-inspect@^1.1.0: 2195 | version "1.2.1" 2196 | resolved "http://registry.npmjs.org/object-inspect/-/object-inspect-1.2.1.tgz#3b62226eb8f6d441751c7d8f22a20ff80ac9dc3f" 2197 | 2198 | object-keys@^1.0.8, object-keys@^1.0.9: 2199 | version "1.0.11" 2200 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2201 | 2202 | object.entries@^1.0.3: 2203 | version "1.0.4" 2204 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.0.4.tgz#1bf9a4dd2288f5b33f3a993d257661f05d161a5f" 2205 | dependencies: 2206 | define-properties "^1.1.2" 2207 | es-abstract "^1.6.1" 2208 | function-bind "^1.1.0" 2209 | has "^1.0.1" 2210 | 2211 | object.omit@^2.0.0: 2212 | version "2.0.1" 2213 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2214 | dependencies: 2215 | for-own "^0.1.4" 2216 | is-extendable "^0.1.1" 2217 | 2218 | once@^1.3.0: 2219 | version "1.4.0" 2220 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2221 | dependencies: 2222 | wrappy "1" 2223 | 2224 | once@~1.3.3: 2225 | version "1.3.3" 2226 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2227 | dependencies: 2228 | wrappy "1" 2229 | 2230 | onetime@^1.0.0: 2231 | version "1.1.0" 2232 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2233 | 2234 | onetime@^2.0.0: 2235 | version "2.0.1" 2236 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2237 | dependencies: 2238 | mimic-fn "^1.0.0" 2239 | 2240 | optionator@^0.8.2: 2241 | version "0.8.2" 2242 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2243 | dependencies: 2244 | deep-is "~0.1.3" 2245 | fast-levenshtein "~2.0.4" 2246 | levn "~0.3.0" 2247 | prelude-ls "~1.1.2" 2248 | type-check "~0.3.2" 2249 | wordwrap "~1.0.0" 2250 | 2251 | ora@^0.2.3: 2252 | version "0.2.3" 2253 | resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" 2254 | dependencies: 2255 | chalk "^1.1.1" 2256 | cli-cursor "^1.0.2" 2257 | cli-spinners "^0.1.2" 2258 | object-assign "^4.0.1" 2259 | 2260 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2261 | version "1.0.2" 2262 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2263 | 2264 | os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 2265 | version "1.0.2" 2266 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2267 | 2268 | output-file-sync@^1.1.0: 2269 | version "1.1.2" 2270 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2271 | dependencies: 2272 | graceful-fs "^4.1.4" 2273 | mkdirp "^0.5.1" 2274 | object-assign "^4.1.0" 2275 | 2276 | p-finally@^1.0.0: 2277 | version "1.0.0" 2278 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2279 | 2280 | p-map@^1.1.1: 2281 | version "1.1.1" 2282 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 2283 | 2284 | parse-glob@^3.0.4: 2285 | version "3.0.4" 2286 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2287 | dependencies: 2288 | glob-base "^0.3.0" 2289 | is-dotfile "^1.0.0" 2290 | is-extglob "^1.0.0" 2291 | is-glob "^2.0.0" 2292 | 2293 | parse-json@^2.2.0: 2294 | version "2.2.0" 2295 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2296 | dependencies: 2297 | error-ex "^1.2.0" 2298 | 2299 | path-is-absolute@^1.0.0: 2300 | version "1.0.1" 2301 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2302 | 2303 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2304 | version "1.0.2" 2305 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2306 | 2307 | path-key@^2.0.0: 2308 | version "2.0.1" 2309 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2310 | 2311 | pify@^2.0.0: 2312 | version "2.3.0" 2313 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2314 | 2315 | pinkie-promise@^2.0.0: 2316 | version "2.0.1" 2317 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2318 | dependencies: 2319 | pinkie "^2.0.0" 2320 | 2321 | pinkie@^2.0.0: 2322 | version "2.0.4" 2323 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2324 | 2325 | pluralize@^4.0.0: 2326 | version "4.0.0" 2327 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-4.0.0.tgz#59b708c1c0190a2f692f1c7618c446b052fd1762" 2328 | 2329 | prelude-ls@~1.1.2: 2330 | version "1.1.2" 2331 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2332 | 2333 | preserve@^0.2.0: 2334 | version "0.2.0" 2335 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2336 | 2337 | prettier@^1.5.3: 2338 | version "1.5.3" 2339 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.5.3.tgz#59dadc683345ec6b88f88b94ed4ae7e1da394bfe" 2340 | 2341 | private@^0.1.6: 2342 | version "0.1.6" 2343 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 2344 | 2345 | process-nextick-args@~1.0.6: 2346 | version "1.0.7" 2347 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2348 | 2349 | progress@^2.0.0: 2350 | version "2.0.0" 2351 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2352 | 2353 | prr@~0.0.0: 2354 | version "0.0.0" 2355 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2356 | 2357 | pseudomap@^1.0.2: 2358 | version "1.0.2" 2359 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2360 | 2361 | punycode@1.3.2: 2362 | version "1.3.2" 2363 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2364 | 2365 | punycode@^1.4.1: 2366 | version "1.4.1" 2367 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2368 | 2369 | qs@~6.3.0: 2370 | version "6.3.0" 2371 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 2372 | 2373 | querystring@0.2.0: 2374 | version "0.2.0" 2375 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2376 | 2377 | randomatic@^1.1.3: 2378 | version "1.1.6" 2379 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2380 | dependencies: 2381 | is-number "^2.0.2" 2382 | kind-of "^3.0.2" 2383 | 2384 | rc@~1.1.6: 2385 | version "1.1.6" 2386 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 2387 | dependencies: 2388 | deep-extend "~0.4.0" 2389 | ini "~1.3.0" 2390 | minimist "^1.2.0" 2391 | strip-json-comments "~1.0.4" 2392 | 2393 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@~2.1.4: 2394 | version "2.1.5" 2395 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 2396 | dependencies: 2397 | buffer-shims "^1.0.0" 2398 | core-util-is "~1.0.0" 2399 | inherits "~2.0.1" 2400 | isarray "~1.0.0" 2401 | process-nextick-args "~1.0.6" 2402 | string_decoder "~0.10.x" 2403 | util-deprecate "~1.0.1" 2404 | 2405 | readable-stream@^2.0.2: 2406 | version "2.0.6" 2407 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 2408 | dependencies: 2409 | core-util-is "~1.0.0" 2410 | inherits "~2.0.1" 2411 | isarray "~1.0.0" 2412 | process-nextick-args "~1.0.6" 2413 | string_decoder "~0.10.x" 2414 | util-deprecate "~1.0.1" 2415 | 2416 | readable-stream@^2.0.5, readable-stream@^2.2.2: 2417 | version "2.3.3" 2418 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2419 | dependencies: 2420 | core-util-is "~1.0.0" 2421 | inherits "~2.0.3" 2422 | isarray "~1.0.0" 2423 | process-nextick-args "~1.0.6" 2424 | safe-buffer "~5.1.1" 2425 | string_decoder "~1.0.3" 2426 | util-deprecate "~1.0.1" 2427 | 2428 | readdirp@^2.0.0: 2429 | version "2.1.0" 2430 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2431 | dependencies: 2432 | graceful-fs "^4.1.2" 2433 | minimatch "^3.0.2" 2434 | readable-stream "^2.0.2" 2435 | set-immediate-shim "^1.0.1" 2436 | 2437 | regenerate@^1.2.1: 2438 | version "1.3.2" 2439 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2440 | 2441 | regenerator-runtime@^0.10.0: 2442 | version "0.10.1" 2443 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb" 2444 | 2445 | regenerator-transform@0.9.11: 2446 | version "0.9.11" 2447 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 2448 | dependencies: 2449 | babel-runtime "^6.18.0" 2450 | babel-types "^6.19.0" 2451 | private "^0.1.6" 2452 | 2453 | regex-cache@^0.4.2: 2454 | version "0.4.3" 2455 | resolved "http://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2456 | dependencies: 2457 | is-equal-shallow "^0.1.3" 2458 | is-primitive "^2.0.0" 2459 | 2460 | regexpu-core@^2.0.0: 2461 | version "2.0.0" 2462 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2463 | dependencies: 2464 | regenerate "^1.2.1" 2465 | regjsgen "^0.2.0" 2466 | regjsparser "^0.1.4" 2467 | 2468 | regjsgen@^0.2.0: 2469 | version "0.2.0" 2470 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2471 | 2472 | regjsparser@^0.1.4: 2473 | version "0.1.5" 2474 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2475 | dependencies: 2476 | jsesc "~0.5.0" 2477 | 2478 | repeat-element@^1.1.2: 2479 | version "1.1.2" 2480 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2481 | 2482 | repeat-string@^1.5.2: 2483 | version "1.6.1" 2484 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2485 | 2486 | repeating@^2.0.0: 2487 | version "2.0.1" 2488 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2489 | dependencies: 2490 | is-finite "^1.0.0" 2491 | 2492 | request@^2.79.0: 2493 | version "2.79.0" 2494 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 2495 | dependencies: 2496 | aws-sign2 "~0.6.0" 2497 | aws4 "^1.2.1" 2498 | caseless "~0.11.0" 2499 | combined-stream "~1.0.5" 2500 | extend "~3.0.0" 2501 | forever-agent "~0.6.1" 2502 | form-data "~2.1.1" 2503 | har-validator "~2.0.6" 2504 | hawk "~3.1.3" 2505 | http-signature "~1.1.0" 2506 | is-typedarray "~1.0.0" 2507 | isstream "~0.1.2" 2508 | json-stringify-safe "~5.0.1" 2509 | mime-types "~2.1.7" 2510 | oauth-sign "~0.8.1" 2511 | qs "~6.3.0" 2512 | stringstream "~0.0.4" 2513 | tough-cookie "~2.3.0" 2514 | tunnel-agent "~0.4.1" 2515 | uuid "^3.0.0" 2516 | 2517 | require-from-string@^1.1.0: 2518 | version "1.2.1" 2519 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" 2520 | 2521 | require-uncached@^1.0.3: 2522 | version "1.0.3" 2523 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2524 | dependencies: 2525 | caller-path "^0.1.0" 2526 | resolve-from "^1.0.0" 2527 | 2528 | resolve-from@^1.0.0: 2529 | version "1.0.1" 2530 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2531 | 2532 | restore-cursor@^1.0.1: 2533 | version "1.0.1" 2534 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2535 | dependencies: 2536 | exit-hook "^1.0.0" 2537 | onetime "^1.0.0" 2538 | 2539 | restore-cursor@^2.0.0: 2540 | version "2.0.0" 2541 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2542 | dependencies: 2543 | onetime "^2.0.0" 2544 | signal-exit "^3.0.2" 2545 | 2546 | rimraf@2, rimraf@^2.2.8, rimraf@~2.5.1, rimraf@~2.5.4: 2547 | version "2.5.4" 2548 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 2549 | dependencies: 2550 | glob "^7.0.5" 2551 | 2552 | run-async@^2.2.0: 2553 | version "2.3.0" 2554 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2555 | dependencies: 2556 | is-promise "^2.1.0" 2557 | 2558 | rx-lite-aggregates@^4.0.8: 2559 | version "4.0.8" 2560 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2561 | dependencies: 2562 | rx-lite "*" 2563 | 2564 | rx-lite@*, rx-lite@^4.0.8: 2565 | version "4.0.8" 2566 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2567 | 2568 | rxjs@^5.0.0-beta.11: 2569 | version "5.4.2" 2570 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.4.2.tgz#2a3236fcbf03df57bae06fd6972fd99e5c08fcf7" 2571 | dependencies: 2572 | symbol-observable "^1.0.1" 2573 | 2574 | safe-buffer@~5.0.1: 2575 | version "5.0.1" 2576 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 2577 | 2578 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2579 | version "5.1.1" 2580 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2581 | 2582 | sax@1.2.1, sax@>=0.6.0: 2583 | version "1.2.1" 2584 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a" 2585 | 2586 | semver@^5.3.0, semver@~5.3.0: 2587 | version "5.3.0" 2588 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2589 | 2590 | set-blocking@~2.0.0: 2591 | version "2.0.0" 2592 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2593 | 2594 | set-immediate-shim@^1.0.1: 2595 | version "1.0.1" 2596 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2597 | 2598 | shebang-command@^1.2.0: 2599 | version "1.2.0" 2600 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2601 | dependencies: 2602 | shebang-regex "^1.0.0" 2603 | 2604 | shebang-regex@^1.0.0: 2605 | version "1.0.0" 2606 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2607 | 2608 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2609 | version "3.0.2" 2610 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2611 | 2612 | slash@^1.0.0: 2613 | version "1.0.0" 2614 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2615 | 2616 | slice-ansi@0.0.4: 2617 | version "0.0.4" 2618 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2619 | 2620 | sntp@1.x.x: 2621 | version "1.0.9" 2622 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2623 | dependencies: 2624 | hoek "2.x.x" 2625 | 2626 | source-map-support@^0.4.2: 2627 | version "0.4.6" 2628 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.6.tgz#32552aa64b458392a85eab3b0b5ee61527167aeb" 2629 | dependencies: 2630 | source-map "^0.5.3" 2631 | 2632 | source-map@^0.5.0, source-map@^0.5.3: 2633 | version "0.5.6" 2634 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2635 | 2636 | sprintf-js@~1.0.2: 2637 | version "1.0.3" 2638 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2639 | 2640 | sshpk@^1.7.0: 2641 | version "1.10.1" 2642 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0" 2643 | dependencies: 2644 | asn1 "~0.2.3" 2645 | assert-plus "^1.0.0" 2646 | dashdash "^1.12.0" 2647 | getpass "^0.1.1" 2648 | optionalDependencies: 2649 | bcrypt-pbkdf "^1.0.0" 2650 | ecc-jsbn "~0.1.1" 2651 | jodid25519 "^1.0.0" 2652 | jsbn "~0.1.0" 2653 | tweetnacl "~0.14.0" 2654 | 2655 | staged-git-files@0.0.4: 2656 | version "0.0.4" 2657 | resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-0.0.4.tgz#d797e1b551ca7a639dec0237dc6eb4bb9be17d35" 2658 | 2659 | stream-to-observable@^0.1.0: 2660 | version "0.1.0" 2661 | resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.1.0.tgz#45bf1d9f2d7dc09bed81f1c307c430e68b84cffe" 2662 | 2663 | string-width@^1.0.1: 2664 | version "1.0.2" 2665 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2666 | dependencies: 2667 | code-point-at "^1.0.0" 2668 | is-fullwidth-code-point "^1.0.0" 2669 | strip-ansi "^3.0.0" 2670 | 2671 | string-width@^2.0.0: 2672 | version "2.0.0" 2673 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 2674 | dependencies: 2675 | is-fullwidth-code-point "^2.0.0" 2676 | strip-ansi "^3.0.0" 2677 | 2678 | string-width@^2.1.0: 2679 | version "2.1.1" 2680 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2681 | dependencies: 2682 | is-fullwidth-code-point "^2.0.0" 2683 | strip-ansi "^4.0.0" 2684 | 2685 | string_decoder@~0.10.x: 2686 | version "0.10.31" 2687 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2688 | 2689 | string_decoder@~1.0.3: 2690 | version "1.0.3" 2691 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2692 | dependencies: 2693 | safe-buffer "~5.1.0" 2694 | 2695 | stringstream@~0.0.4: 2696 | version "0.0.5" 2697 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2698 | 2699 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2700 | version "3.0.1" 2701 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2702 | dependencies: 2703 | ansi-regex "^2.0.0" 2704 | 2705 | strip-ansi@^4.0.0: 2706 | version "4.0.0" 2707 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2708 | dependencies: 2709 | ansi-regex "^3.0.0" 2710 | 2711 | strip-eof@^1.0.0: 2712 | version "1.0.0" 2713 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2714 | 2715 | strip-indent@^2.0.0: 2716 | version "2.0.0" 2717 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 2718 | 2719 | strip-json-comments@~1.0.4: 2720 | version "1.0.4" 2721 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 2722 | 2723 | strip-json-comments@~2.0.1: 2724 | version "2.0.1" 2725 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2726 | 2727 | supports-color@3.1.2: 2728 | version "3.1.2" 2729 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 2730 | dependencies: 2731 | has-flag "^1.0.0" 2732 | 2733 | supports-color@^0.2.0: 2734 | version "0.2.0" 2735 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a" 2736 | 2737 | supports-color@^2.0.0: 2738 | version "2.0.0" 2739 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2740 | 2741 | supports-color@^4.0.0: 2742 | version "4.2.1" 2743 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.2.1.tgz#65a4bb2631e90e02420dba5554c375a4754bb836" 2744 | dependencies: 2745 | has-flag "^2.0.0" 2746 | 2747 | symbol-observable@^1.0.1: 2748 | version "1.0.4" 2749 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 2750 | 2751 | table@^4.0.1: 2752 | version "4.0.1" 2753 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435" 2754 | dependencies: 2755 | ajv "^4.7.0" 2756 | ajv-keywords "^1.0.0" 2757 | chalk "^1.1.1" 2758 | lodash "^4.0.0" 2759 | slice-ansi "0.0.4" 2760 | string-width "^2.0.0" 2761 | 2762 | tar-pack@~3.3.0: 2763 | version "3.3.0" 2764 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 2765 | dependencies: 2766 | debug "~2.2.0" 2767 | fstream "~1.0.10" 2768 | fstream-ignore "~1.0.5" 2769 | once "~1.3.3" 2770 | readable-stream "~2.1.4" 2771 | rimraf "~2.5.1" 2772 | tar "~2.2.1" 2773 | uid-number "~0.0.6" 2774 | 2775 | tar@~2.2.1: 2776 | version "2.2.1" 2777 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2778 | dependencies: 2779 | block-stream "*" 2780 | fstream "^1.0.2" 2781 | inherits "2" 2782 | 2783 | text-table@~0.2.0: 2784 | version "0.2.0" 2785 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2786 | 2787 | through@^2.3.6: 2788 | version "2.3.8" 2789 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2790 | 2791 | tmatch@^2.0.1: 2792 | version "2.0.1" 2793 | resolved "https://registry.yarnpkg.com/tmatch/-/tmatch-2.0.1.tgz#0c56246f33f30da1b8d3d72895abaf16660f38cf" 2794 | 2795 | tmp@^0.0.31: 2796 | version "0.0.31" 2797 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 2798 | dependencies: 2799 | os-tmpdir "~1.0.1" 2800 | 2801 | to-fast-properties@^1.0.1: 2802 | version "1.0.2" 2803 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 2804 | 2805 | tough-cookie@~2.3.0: 2806 | version "2.3.2" 2807 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2808 | dependencies: 2809 | punycode "^1.4.1" 2810 | 2811 | trim-right@^1.0.1: 2812 | version "1.0.1" 2813 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2814 | 2815 | tryit@^1.0.1: 2816 | version "1.0.3" 2817 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 2818 | 2819 | tunnel-agent@~0.4.1: 2820 | version "0.4.3" 2821 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 2822 | 2823 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2824 | version "0.14.5" 2825 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2826 | 2827 | type-check@~0.3.2: 2828 | version "0.3.2" 2829 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2830 | dependencies: 2831 | prelude-ls "~1.1.2" 2832 | 2833 | typedarray@^0.0.6: 2834 | version "0.0.6" 2835 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2836 | 2837 | uid-number@~0.0.6: 2838 | version "0.0.6" 2839 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2840 | 2841 | ultron@~1.1.0: 2842 | version "1.1.0" 2843 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.0.tgz#b07a2e6a541a815fc6a34ccd4533baec307ca864" 2844 | 2845 | url@0.10.3: 2846 | version "0.10.3" 2847 | resolved "https://registry.yarnpkg.com/url/-/url-0.10.3.tgz#021e4d9c7705f21bbf37d03ceb58767402774c64" 2848 | dependencies: 2849 | punycode "1.3.2" 2850 | querystring "0.2.0" 2851 | 2852 | user-home@^1.1.1: 2853 | version "1.1.1" 2854 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2855 | 2856 | util-deprecate@~1.0.1: 2857 | version "1.0.2" 2858 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2859 | 2860 | uuid@3.1.0: 2861 | version "3.1.0" 2862 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2863 | 2864 | uuid@^3.0.0: 2865 | version "3.0.1" 2866 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 2867 | 2868 | v8flags@^2.0.10: 2869 | version "2.0.11" 2870 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 2871 | dependencies: 2872 | user-home "^1.1.1" 2873 | 2874 | verror@1.3.6: 2875 | version "1.3.6" 2876 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2877 | dependencies: 2878 | extsprintf "1.0.2" 2879 | 2880 | which@^1.2.10, which@^1.2.9: 2881 | version "1.2.14" 2882 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 2883 | dependencies: 2884 | isexe "^2.0.0" 2885 | 2886 | wide-align@^1.1.0: 2887 | version "1.1.0" 2888 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 2889 | dependencies: 2890 | string-width "^1.0.1" 2891 | 2892 | wordwrap@~1.0.0: 2893 | version "1.0.0" 2894 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2895 | 2896 | wrappy@1: 2897 | version "1.0.2" 2898 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2899 | 2900 | write@^0.2.1: 2901 | version "0.2.1" 2902 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 2903 | dependencies: 2904 | mkdirp "^0.5.1" 2905 | 2906 | ws@~>2.2.3: 2907 | version "2.2.3" 2908 | resolved "https://registry.yarnpkg.com/ws/-/ws-2.2.3.tgz#f36c9719a56dff813f455af912a2078145bbd940" 2909 | dependencies: 2910 | safe-buffer "~5.0.1" 2911 | ultron "~1.1.0" 2912 | 2913 | xml2js@0.4.17: 2914 | version "0.4.17" 2915 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.17.tgz#17be93eaae3f3b779359c795b419705a8817e868" 2916 | dependencies: 2917 | sax ">=0.6.0" 2918 | xmlbuilder "^4.1.0" 2919 | 2920 | xmlbuilder@4.2.1, xmlbuilder@^4.1.0: 2921 | version "4.2.1" 2922 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-4.2.1.tgz#aa58a3041a066f90eaa16c2f5389ff19f3f461a5" 2923 | dependencies: 2924 | lodash "^4.0.0" 2925 | 2926 | xtend@^4.0.0, xtend@~4.0.0: 2927 | version "4.0.1" 2928 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2929 | 2930 | yallist@^2.1.2: 2931 | version "2.1.2" 2932 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2933 | --------------------------------------------------------------------------------