├── .npmignore ├── .travis.yml ├── imgs └── banica.jpg ├── .babelrc ├── test └── setup.js ├── LICENSE ├── .gitignore ├── src ├── banica.js └── __tests__ │ └── banica.spec.js ├── package.json ├── standalone ├── banica.min.js └── banica.js ├── lib ├── banica.js └── __tests__ │ └── banica.spec.js ├── README.md └── yarn.lock /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | imgs -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "node" 4 | - "7" 5 | - "6" -------------------------------------------------------------------------------- /imgs/banica.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasimir/banica/HEAD/imgs/banica.jpg -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ "es2015", { "loose": true } ], 4 | "stage-3" 5 | ], 6 | "plugins": [ 7 | "babel-plugin-add-module-exports" 8 | ], 9 | "ignore": [ "node_modules/**/*" ] 10 | } -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- 1 | import chai, { expect } from 'chai'; 2 | import sinon from 'sinon'; 3 | import sinonChai from 'sinon-chai'; 4 | import chaiAsPromise from 'chai-as-promised'; 5 | 6 | chai.config.truncateThreshold = 0; 7 | 8 | global.expect = expect; 9 | global.sinon = sinon; 10 | 11 | chai.use(sinonChai); 12 | chai.use(chaiAsPromise); -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Krasimir Tsonev 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | .vscode 61 | 62 | -------------------------------------------------------------------------------- /src/banica.js: -------------------------------------------------------------------------------- 1 | function validateGenerator(generator, ...args) { 2 | if (!generator || !generator.next) { 3 | if (typeof generator === 'function') { 4 | generator = generator(...args); 5 | if (!generator.next) { 6 | throw new Error('`run` method expects a generator!'); 7 | } 8 | } else { 9 | throw new Error('`run` method expects a generator!'); 10 | } 11 | } 12 | return generator; 13 | } 14 | 15 | export function call(func, ...args) { 16 | return { type: 'call', func, args }; 17 | } 18 | 19 | export function run(generator, ...args) { 20 | generator = validateGenerator(generator, ...args); 21 | return new Promise((generatorCompleted, reject) => { 22 | const iterate = function ({ value, done }) { 23 | if (done) { return generatorCompleted(value); } 24 | if (value.type === 'call') { 25 | try { 26 | const result = value.func(...value.args); 27 | 28 | if (result && typeof result.then !== 'undefined') { 29 | result.then( 30 | resolvedValue => iterate(generator.next(resolvedValue)), 31 | error => iterate(generator.throw(error)) 32 | ); 33 | } else if (result && typeof result.next !== 'undefined') { 34 | run(result).then(resultOfGenerator => { 35 | iterate(generator.next(resultOfGenerator)) 36 | }); 37 | } else { 38 | return iterate(generator.next(result)); 39 | } 40 | } catch(error) { 41 | iterate(generator.throw(error)); 42 | } 43 | } else { 44 | reject(new Error('You should yield a command. Use the `call` helper.')); 45 | } 46 | } 47 | iterate(generator.next()); 48 | }); 49 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "banica", 3 | "version": "1.0.4", 4 | "description": "Handle async processes like a boss. Implementation of the command pattern using generators. Or in other words a redux-saga but without the Redux bit.", 5 | "main": "lib/banica.js", 6 | "scripts": { 7 | "build": "npm run test && babel src --out-dir lib && browserify ./lib/banica.js -o ./standalone/banica.js --standalone banica && uglifyjs ./standalone/banica.js -o ./standalone/banica.min.js", 8 | "test": "./node_modules/.bin/mocha --require babel-register --require babel-polyfill --require test/setup.js --reporter spec --slow 100 './src/**/**.spec.js'", 9 | "test:watch": "./node_modules/.bin/mocha --require babel-register --require babel-polyfill --require test/setup.js --reporter spec --slow 100 --watch --watch-extensions jx,jsx,json './src/**/**.spec.js'", 10 | "release": "npm run build && npm publish" 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "git+https://github.com/krasimir/banica.git" 15 | }, 16 | "keywords": [ 17 | "banica", 18 | "async", 19 | "command pattern", 20 | "generator", 21 | "saga", 22 | "redux-saga" 23 | ], 24 | "author": "Krasimir Tsonev", 25 | "license": "MIT", 26 | "bugs": { 27 | "url": "https://github.com/krasimir/banica/issues" 28 | }, 29 | "homepage": "https://github.com/krasimir/banica#readme", 30 | "devDependencies": { 31 | "babel-cli": "6.24.0", 32 | "babel-plugin-add-module-exports": "0.2.0", 33 | "babel-polyfill": "6.23.0", 34 | "babel-preset-es2015": "6.22.0", 35 | "babel-preset-stage-3": "6.22.0", 36 | "babel-register": "6.24.0", 37 | "browserify": "^14.4.0", 38 | "chai": "3.5.0", 39 | "enzyme": "2.7.1", 40 | "mocha": "3.2.0", 41 | "sinon": "2.0.0", 42 | "sinon-chai": "2.9.0", 43 | "uglify-js": "^3.0.28", 44 | "chai-as-promised": "^7.1.1" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /standalone/banica.min.js: -------------------------------------------------------------------------------- 1 | (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.banica=f()}})(function(){var define,module,exports;return function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o1?_len-1:0),_key=1;_key<_len;_key++){args[_key-1]=arguments[_key]}generator=generator.apply(undefined,args);if(!generator.next){throw new Error("`run` method expects a generator!")}}else{throw new Error("`run` method expects a generator!")}}return generator}function call(func){for(var _len2=arguments.length,args=Array(_len2>1?_len2-1:0),_key2=1;_key2<_len2;_key2++){args[_key2-1]=arguments[_key2]}return{type:"call",func:func,args:args}}function run(generator){for(var _len3=arguments.length,args=Array(_len3>1?_len3-1:0),_key3=1;_key3<_len3;_key3++){args[_key3-1]=arguments[_key3]}generator=validateGenerator.apply(undefined,[generator].concat(args));return new Promise(function(generatorCompleted,reject){var iterate=function iterate(_ref){var value=_ref.value,done=_ref.done;if(done){return generatorCompleted(value)}if(value.type==="call"){try{var result=value.func.apply(value,value.args);if(result&&typeof result.then!=="undefined"){result.then(function(resolvedValue){return iterate(generator.next(resolvedValue))},function(error){return iterate(generator.throw(error))})}else if(result&&typeof result.next!=="undefined"){run(result).then(function(resultOfGenerator){iterate(generator.next(resultOfGenerator))})}else{return iterate(generator.next(result))}}catch(error){iterate(generator.throw(error))}}else{reject(new Error("You should yield a command. Use the `call` helper."))}};iterate(generator.next())})}},{}]},{},[1])(1)}); -------------------------------------------------------------------------------- /lib/banica.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.call = call; 5 | exports.run = run; 6 | function validateGenerator(generator) { 7 | if (!generator || !generator.next) { 8 | if (typeof generator === 'function') { 9 | for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { 10 | args[_key - 1] = arguments[_key]; 11 | } 12 | 13 | generator = generator.apply(undefined, args); 14 | if (!generator.next) { 15 | throw new Error('`run` method expects a generator!'); 16 | } 17 | } else { 18 | throw new Error('`run` method expects a generator!'); 19 | } 20 | } 21 | return generator; 22 | } 23 | 24 | function call(func) { 25 | for (var _len2 = arguments.length, args = Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) { 26 | args[_key2 - 1] = arguments[_key2]; 27 | } 28 | 29 | return { type: 'call', func: func, args: args }; 30 | } 31 | 32 | function run(generator) { 33 | for (var _len3 = arguments.length, args = Array(_len3 > 1 ? _len3 - 1 : 0), _key3 = 1; _key3 < _len3; _key3++) { 34 | args[_key3 - 1] = arguments[_key3]; 35 | } 36 | 37 | generator = validateGenerator.apply(undefined, [generator].concat(args)); 38 | return new Promise(function (generatorCompleted, reject) { 39 | var iterate = function iterate(_ref) { 40 | var value = _ref.value, 41 | done = _ref.done; 42 | 43 | if (done) { 44 | return generatorCompleted(value); 45 | } 46 | if (value.type === 'call') { 47 | try { 48 | var result = value.func.apply(value, value.args); 49 | 50 | if (result && typeof result.then !== 'undefined') { 51 | result.then(function (resolvedValue) { 52 | return iterate(generator.next(resolvedValue)); 53 | }, function (error) { 54 | return iterate(generator.throw(error)); 55 | }); 56 | } else if (result && typeof result.next !== 'undefined') { 57 | run(result).then(function (resultOfGenerator) { 58 | iterate(generator.next(resultOfGenerator)); 59 | }); 60 | } else { 61 | return iterate(generator.next(result)); 62 | } 63 | } catch (error) { 64 | iterate(generator.throw(error)); 65 | } 66 | } else { 67 | reject(new Error('You should yield a command. Use the `call` helper.')); 68 | } 69 | }; 70 | iterate(generator.next()); 71 | }); 72 | } -------------------------------------------------------------------------------- /standalone/banica.js: -------------------------------------------------------------------------------- 1 | (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.banica = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { 11 | args[_key - 1] = arguments[_key]; 12 | } 13 | 14 | generator = generator.apply(undefined, args); 15 | if (!generator.next) { 16 | throw new Error('`run` method expects a generator!'); 17 | } 18 | } else { 19 | throw new Error('`run` method expects a generator!'); 20 | } 21 | } 22 | return generator; 23 | } 24 | 25 | function call(func) { 26 | for (var _len2 = arguments.length, args = Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) { 27 | args[_key2 - 1] = arguments[_key2]; 28 | } 29 | 30 | return { type: 'call', func: func, args: args }; 31 | } 32 | 33 | function run(generator) { 34 | for (var _len3 = arguments.length, args = Array(_len3 > 1 ? _len3 - 1 : 0), _key3 = 1; _key3 < _len3; _key3++) { 35 | args[_key3 - 1] = arguments[_key3]; 36 | } 37 | 38 | generator = validateGenerator.apply(undefined, [generator].concat(args)); 39 | return new Promise(function (generatorCompleted, reject) { 40 | var iterate = function iterate(_ref) { 41 | var value = _ref.value, 42 | done = _ref.done; 43 | 44 | if (done) { 45 | return generatorCompleted(value); 46 | } 47 | if (value.type === 'call') { 48 | try { 49 | var result = value.func.apply(value, value.args); 50 | 51 | if (result && typeof result.then !== 'undefined') { 52 | result.then(function (resolvedValue) { 53 | return iterate(generator.next(resolvedValue)); 54 | }, function (error) { 55 | return iterate(generator.throw(error)); 56 | }); 57 | } else if (result && typeof result.next !== 'undefined') { 58 | run(result).then(function (resultOfGenerator) { 59 | iterate(generator.next(resultOfGenerator)); 60 | }); 61 | } else { 62 | return iterate(generator.next(result)); 63 | } 64 | } catch (error) { 65 | iterate(generator.throw(error)); 66 | } 67 | } else { 68 | reject(new Error('You should yield a command. Use the `call` helper.')); 69 | } 70 | }; 71 | iterate(generator.next()); 72 | }); 73 | } 74 | },{}]},{},[1])(1) 75 | }); -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Banica.js 2 | 3 | _Handle async processes like a boss. Implementation of the command pattern using generators. Or in other words a [redux-saga](http://redux-saga.js.org) but without the Redux bit._ 4 | 5 | ![Баница](./imgs/banica.jpg) 6 | 7 | --- 8 | 9 | ![Travis](https://travis-ci.org/krasimir/banica.svg?branch=master) 10 | [![npm downloads](https://img.shields.io/npm/dm/banica.svg?style=flat-square)](https://www.npmjs.com/package/banica) 11 | 12 | --- 13 | 14 | * [Read the story of the library](http://krasimirtsonev.com/blog/article/javascript-pattern-of-the-year-handle-async-like-a-boss) 15 | * CodePen to play with [codepen.io/krasimir/pen/YEvNqx](https://codepen.io/krasimir/pen/YEvNqx?editors=0010) 16 | 17 | --- 18 | 19 | ## Installation 20 | 21 | `yarn add banica` or `npm install banica -S`. The library is available also as a single JavaScript file [here](./standalone). 22 | 23 | ## Usage 24 | 25 | The library exports just two merhods `call` and `run`. `call` is used to wrap your function calls so the `run` function recognizes them as commands. That `run` function accepts a generator function or a created generator. For example: 26 | 27 | ```js 28 | import { call, run } from 'banica'; 29 | 30 | const isItTimeForBreakfast = () => true; 31 | const getFood = () => new Promise(resolve => { 32 | setTimeout(() => resolve('banica'), 1000); 33 | }); 34 | const eat = what => `I'll take ${ what } for breakfast!`; 35 | 36 | const goodMorning = function * () { 37 | const ready = yield call(isItTimeForBreakfast); 38 | 39 | if (ready) { 40 | const food = yield call(getFood); 41 | const message = yield call(eat, food); 42 | 43 | console.log(message); // I'll take banica for breakfast 44 | } 45 | } 46 | 47 | run(goodMorning).then(() => { 48 | console.log(`Oh, I'm full. I can't eat anymore.`); 49 | }); 50 | ``` 51 | 52 | ### Error handling 53 | 54 | Just wrap the `yield` statements into a try-catch block. An error is send back to your generator in the following cases: 55 | 56 | * Your function throws an error 57 | * Your function returns a promise that gets rejected 58 | 59 | ```js 60 | const broken = function () { 61 | throw new Error('Ops, it is broken!'); 62 | } 63 | const brokenAPI = function () { 64 | return new Promise((resolve, reject) => { 65 | reject(new Error('Ops, the API is broken!')); 66 | }); 67 | } 68 | 69 | const program = function * () { 70 | try { 71 | yield call(broken); 72 | } catch (error) { ... } // "Ops, it is broken!" error 73 | try { 74 | yield call(brokenAPI); 75 | } catch (error) { ... } // "Ops, the API is broken!" error 76 | } 77 | ``` 78 | 79 | ## API 80 | 81 | ### `call(, ...args)` 82 | 83 | `call` function accepts a function or generator function and arguments that need to be passed down. For example: 84 | 85 | ```js 86 | const formatMessage = name => `Hello ${ name }`; 87 | //...later in a generator 88 | yield call(formatMessage, 'John'); 89 | 90 | or 91 | const getGreeting = () => 'Hello'; 92 | const formatMessage = function * (name) { 93 | const greeting = yield call(getGreeting); 94 | return `${ greeting } ${ name }`; 95 | } 96 | //...later in a generator 97 | yield call(formatMessage, 'John'); 98 | ``` 99 | 100 | What you can `yield call` is: 101 | 102 | * A function 103 | * A function that returns a promise 104 | * A generator function 105 | 106 | The `call` method returns an object of the form 107 | 108 | ```js 109 | { type: 'call', func: , args: } 110 | ``` 111 | 112 | ### `run()` 113 | 114 | Either create your generator upfront or send the generator function. 115 | 116 | ```js 117 | function * generator() { 118 | // ... 119 | } 120 | 121 | run(generator()); 122 | // or 123 | run(generator); 124 | ``` 125 | 126 | The `run` method returns a promise that gets resolved when your generator is completed: 127 | 128 | ```js 129 | run(generator).then(() => console.log(`Job's done!`)); 130 | ``` 131 | -------------------------------------------------------------------------------- /src/__tests__/banica.spec.js: -------------------------------------------------------------------------------- 1 | import { call, run } from '../banica.js'; 2 | 3 | describe('Given the banica library', function () { 4 | describe('when calling the `run` function', function () { 5 | describe('when passing something different then a generator', function () { 6 | it('should throw an error', function () { 7 | [1, 'a', {}, [], () => {}].forEach(what => { 8 | expect(run.bind(null, what)).to.throw(); 9 | }); 10 | }); 11 | }); 12 | describe('when passing a generator function', function () { 13 | it('should create the generator and iterates over it', async function () { 14 | const result = await run(function* (param) { 15 | return param * 2; 16 | }, 21); 17 | expect(result).to.equal(42); 18 | }); 19 | }); 20 | describe('when passing a generator with no yield inside', function () { 21 | it('should iterate over it', async function () { 22 | const result = await run(function* () { 23 | return 42; 24 | }); 25 | expect(result).to.equal(42); 26 | }); 27 | }); 28 | describe('when passing a generator with unsupported yield', function () { 29 | it('should throw an error', function () { 30 | return expect(run(function* () { yield 'foo'; })).to.be.rejectedWith('You should yield a command. Use the `call` helper.'); 31 | }); 32 | }); 33 | describe('when yielding with the call helper', function () { 34 | describe('and we yield a normal function', function () { 35 | it('should execute the function', function () { 36 | const playerMove = sinon.stub().withArgs(42).returns('foo'); 37 | const transform = sinon.stub().withArgs('foo').returns('bar'); 38 | const game = function * () { 39 | const a = yield call(playerMove, 42); 40 | const b = yield call(transform, b); 41 | return b; 42 | } 43 | 44 | return expect(run(game)).become('bar'); 45 | }); 46 | }); 47 | describe('and we yield a function that returns a promise', function () { 48 | it('should wait for the promises', function () { 49 | const playerMove = sinon.stub().withArgs(42).returns(new Promise(resolve => { 50 | setTimeout(() => resolve('foo'), 5); 51 | })); 52 | const transform = sinon.stub().withArgs('foo').returns(new Promise(resolve => { 53 | setTimeout(() => resolve('bar'), 5); 54 | })); 55 | const game = function * () { 56 | const a = yield call(playerMove, 42); 57 | const b = yield call(transform, b); 58 | return b; 59 | } 60 | 61 | return expect(run(game)).become('bar'); 62 | }); 63 | }); 64 | describe('and we yield a generator', function () { 65 | it('should execute that inner generator', function () { 66 | const transform = sinon.stub().withArgs('foo').returns(new Promise(resolve => { 67 | setTimeout(() => resolve(21), 5); 68 | })); 69 | const playerMove = function * (param) { 70 | const a = yield call(transform, param); 71 | return a * 2; 72 | } 73 | const game = function * () { 74 | return yield call(playerMove, 'foo'); 75 | } 76 | 77 | return expect(run(game)).become(42); 78 | }); 79 | }); 80 | }); 81 | describe('and we delegate to another generator', function () { 82 | it('should execute that inner generator', function () { 83 | const transform = sinon.stub().withArgs('foo').returns(new Promise(resolve => { 84 | setTimeout(() => resolve(21), 5); 85 | })); 86 | const playerMove = function * (param) { 87 | const a = yield call(transform, param); 88 | return a * 2; 89 | } 90 | const game = function * () { 91 | return yield * playerMove('foo'); 92 | } 93 | 94 | return expect(run(game)).become(42); 95 | }); 96 | }); 97 | 98 | // Error handling 99 | describe('and a function throws an error', function () { 100 | it('should send the error back to the generator', function () { 101 | const err = new Error('blah'); 102 | const playerMove = sinon.stub().withArgs(42).throws(err); 103 | const game = function * () { 104 | try { 105 | yield call(playerMove, 42); 106 | } catch(error) { 107 | return error.message; 108 | } 109 | } 110 | 111 | return expect(run(game)).become('blah'); 112 | }); 113 | }); 114 | describe('and we have a promise that gets rejected', function () { 115 | it('should send the error back to the generator', function () { 116 | const err = new Error('Ops'); 117 | const playerMove = sinon.stub().withArgs(42).returns(new Promise((resolve, reject) => { 118 | setTimeout(() => reject(err), 5); 119 | })); 120 | const game = function * () { 121 | try { 122 | yield call(playerMove, 42); 123 | } catch(error) { 124 | return error.message; 125 | } 126 | } 127 | 128 | return expect(run(game)).become('Ops'); 129 | }); 130 | }); 131 | }); 132 | }); 133 | -------------------------------------------------------------------------------- /lib/__tests__/banica.spec.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var _banica = require('../banica.js'); 4 | 5 | function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, arguments); return new Promise(function (resolve, reject) { function step(key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { return Promise.resolve(value).then(function (value) { step("next", value); }, function (err) { step("throw", err); }); } } return step("next"); }); }; } 6 | 7 | describe('Given the banica library', function () { 8 | describe('when calling the `run` function', function () { 9 | describe('when passing something different then a generator', function () { 10 | it('should throw an error', function () { 11 | [1, 'a', {}, [], function () {}].forEach(function (what) { 12 | expect(_banica.run.bind(null, what)).to.throw(); 13 | }); 14 | }); 15 | }); 16 | describe('when passing a generator function', function () { 17 | it('should create the generator and iterates over it', _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee2() { 18 | var result; 19 | return regeneratorRuntime.wrap(function _callee2$(_context2) { 20 | while (1) { 21 | switch (_context2.prev = _context2.next) { 22 | case 0: 23 | _context2.next = 2; 24 | return (0, _banica.run)( /*#__PURE__*/regeneratorRuntime.mark(function _callee(param) { 25 | return regeneratorRuntime.wrap(function _callee$(_context) { 26 | while (1) { 27 | switch (_context.prev = _context.next) { 28 | case 0: 29 | return _context.abrupt('return', param * 2); 30 | 31 | case 1: 32 | case 'end': 33 | return _context.stop(); 34 | } 35 | } 36 | }, _callee, this); 37 | }), 21); 38 | 39 | case 2: 40 | result = _context2.sent; 41 | 42 | expect(result).to.equal(42); 43 | 44 | case 4: 45 | case 'end': 46 | return _context2.stop(); 47 | } 48 | } 49 | }, _callee2, this); 50 | }))); 51 | }); 52 | describe('when passing a generator with no yield inside', function () { 53 | it('should iterate over it', _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee4() { 54 | var result; 55 | return regeneratorRuntime.wrap(function _callee4$(_context4) { 56 | while (1) { 57 | switch (_context4.prev = _context4.next) { 58 | case 0: 59 | _context4.next = 2; 60 | return (0, _banica.run)( /*#__PURE__*/regeneratorRuntime.mark(function _callee3() { 61 | return regeneratorRuntime.wrap(function _callee3$(_context3) { 62 | while (1) { 63 | switch (_context3.prev = _context3.next) { 64 | case 0: 65 | return _context3.abrupt('return', 42); 66 | 67 | case 1: 68 | case 'end': 69 | return _context3.stop(); 70 | } 71 | } 72 | }, _callee3, this); 73 | })); 74 | 75 | case 2: 76 | result = _context4.sent; 77 | 78 | expect(result).to.equal(42); 79 | 80 | case 4: 81 | case 'end': 82 | return _context4.stop(); 83 | } 84 | } 85 | }, _callee4, this); 86 | }))); 87 | }); 88 | describe('when passing a generator with unsupported yield', function () { 89 | it('should throw an error', function () { 90 | return expect((0, _banica.run)( /*#__PURE__*/regeneratorRuntime.mark(function _callee5() { 91 | return regeneratorRuntime.wrap(function _callee5$(_context5) { 92 | while (1) { 93 | switch (_context5.prev = _context5.next) { 94 | case 0: 95 | _context5.next = 2; 96 | return 'foo'; 97 | 98 | case 2: 99 | case 'end': 100 | return _context5.stop(); 101 | } 102 | } 103 | }, _callee5, this); 104 | }))).to.be.rejectedWith('You should yield a command. Use the `call` helper.'); 105 | }); 106 | }); 107 | describe('when yielding with the call helper', function () { 108 | describe('and we yield a normal function', function () { 109 | it('should execute the function', function () { 110 | var playerMove = sinon.stub().withArgs(42).returns('foo'); 111 | var transform = sinon.stub().withArgs('foo').returns('bar'); 112 | var game = /*#__PURE__*/regeneratorRuntime.mark(function game() { 113 | var a, b; 114 | return regeneratorRuntime.wrap(function game$(_context6) { 115 | while (1) { 116 | switch (_context6.prev = _context6.next) { 117 | case 0: 118 | _context6.next = 2; 119 | return (0, _banica.call)(playerMove, 42); 120 | 121 | case 2: 122 | a = _context6.sent; 123 | _context6.next = 5; 124 | return (0, _banica.call)(transform, b); 125 | 126 | case 5: 127 | b = _context6.sent; 128 | return _context6.abrupt('return', b); 129 | 130 | case 7: 131 | case 'end': 132 | return _context6.stop(); 133 | } 134 | } 135 | }, game, this); 136 | }); 137 | 138 | return expect((0, _banica.run)(game)).become('bar'); 139 | }); 140 | }); 141 | describe('and we yield a function that returns a promise', function () { 142 | it('should wait for the promises', function () { 143 | var playerMove = sinon.stub().withArgs(42).returns(new Promise(function (resolve) { 144 | setTimeout(function () { 145 | return resolve('foo'); 146 | }, 5); 147 | })); 148 | var transform = sinon.stub().withArgs('foo').returns(new Promise(function (resolve) { 149 | setTimeout(function () { 150 | return resolve('bar'); 151 | }, 5); 152 | })); 153 | var game = /*#__PURE__*/regeneratorRuntime.mark(function game() { 154 | var a, b; 155 | return regeneratorRuntime.wrap(function game$(_context7) { 156 | while (1) { 157 | switch (_context7.prev = _context7.next) { 158 | case 0: 159 | _context7.next = 2; 160 | return (0, _banica.call)(playerMove, 42); 161 | 162 | case 2: 163 | a = _context7.sent; 164 | _context7.next = 5; 165 | return (0, _banica.call)(transform, b); 166 | 167 | case 5: 168 | b = _context7.sent; 169 | return _context7.abrupt('return', b); 170 | 171 | case 7: 172 | case 'end': 173 | return _context7.stop(); 174 | } 175 | } 176 | }, game, this); 177 | }); 178 | 179 | return expect((0, _banica.run)(game)).become('bar'); 180 | }); 181 | }); 182 | describe('and we yield a generator', function () { 183 | it('should execute that inner generator', function () { 184 | var transform = sinon.stub().withArgs('foo').returns(new Promise(function (resolve) { 185 | setTimeout(function () { 186 | return resolve(21); 187 | }, 5); 188 | })); 189 | var playerMove = /*#__PURE__*/regeneratorRuntime.mark(function playerMove(param) { 190 | var a; 191 | return regeneratorRuntime.wrap(function playerMove$(_context8) { 192 | while (1) { 193 | switch (_context8.prev = _context8.next) { 194 | case 0: 195 | _context8.next = 2; 196 | return (0, _banica.call)(transform, param); 197 | 198 | case 2: 199 | a = _context8.sent; 200 | return _context8.abrupt('return', a * 2); 201 | 202 | case 4: 203 | case 'end': 204 | return _context8.stop(); 205 | } 206 | } 207 | }, playerMove, this); 208 | }); 209 | var game = /*#__PURE__*/regeneratorRuntime.mark(function game() { 210 | return regeneratorRuntime.wrap(function game$(_context9) { 211 | while (1) { 212 | switch (_context9.prev = _context9.next) { 213 | case 0: 214 | _context9.next = 2; 215 | return (0, _banica.call)(playerMove, 'foo'); 216 | 217 | case 2: 218 | return _context9.abrupt('return', _context9.sent); 219 | 220 | case 3: 221 | case 'end': 222 | return _context9.stop(); 223 | } 224 | } 225 | }, game, this); 226 | }); 227 | 228 | return expect((0, _banica.run)(game)).become(42); 229 | }); 230 | }); 231 | }); 232 | describe('and we delegate to another generator', function () { 233 | it('should execute that inner generator', function () { 234 | var transform = sinon.stub().withArgs('foo').returns(new Promise(function (resolve) { 235 | setTimeout(function () { 236 | return resolve(21); 237 | }, 5); 238 | })); 239 | var playerMove = /*#__PURE__*/regeneratorRuntime.mark(function playerMove(param) { 240 | var a; 241 | return regeneratorRuntime.wrap(function playerMove$(_context10) { 242 | while (1) { 243 | switch (_context10.prev = _context10.next) { 244 | case 0: 245 | _context10.next = 2; 246 | return (0, _banica.call)(transform, param); 247 | 248 | case 2: 249 | a = _context10.sent; 250 | return _context10.abrupt('return', a * 2); 251 | 252 | case 4: 253 | case 'end': 254 | return _context10.stop(); 255 | } 256 | } 257 | }, playerMove, this); 258 | }); 259 | var game = /*#__PURE__*/regeneratorRuntime.mark(function game() { 260 | return regeneratorRuntime.wrap(function game$(_context11) { 261 | while (1) { 262 | switch (_context11.prev = _context11.next) { 263 | case 0: 264 | return _context11.delegateYield(playerMove('foo'), 't0', 1); 265 | 266 | case 1: 267 | return _context11.abrupt('return', _context11.t0); 268 | 269 | case 2: 270 | case 'end': 271 | return _context11.stop(); 272 | } 273 | } 274 | }, game, this); 275 | }); 276 | 277 | return expect((0, _banica.run)(game)).become(42); 278 | }); 279 | }); 280 | 281 | // Error handling 282 | describe('and a function throws an error', function () { 283 | it('should send the error back to the generator', function () { 284 | var err = new Error('blah'); 285 | var playerMove = sinon.stub().withArgs(42).throws(err); 286 | var game = /*#__PURE__*/regeneratorRuntime.mark(function game() { 287 | return regeneratorRuntime.wrap(function game$(_context12) { 288 | while (1) { 289 | switch (_context12.prev = _context12.next) { 290 | case 0: 291 | _context12.prev = 0; 292 | _context12.next = 3; 293 | return (0, _banica.call)(playerMove, 42); 294 | 295 | case 3: 296 | _context12.next = 8; 297 | break; 298 | 299 | case 5: 300 | _context12.prev = 5; 301 | _context12.t0 = _context12['catch'](0); 302 | return _context12.abrupt('return', _context12.t0.message); 303 | 304 | case 8: 305 | case 'end': 306 | return _context12.stop(); 307 | } 308 | } 309 | }, game, this, [[0, 5]]); 310 | }); 311 | 312 | return expect((0, _banica.run)(game)).become('blah'); 313 | }); 314 | }); 315 | describe('and we have a promise that gets rejected', function () { 316 | it('should send the error back to the generator', function () { 317 | var err = new Error('Ops'); 318 | var playerMove = sinon.stub().withArgs(42).returns(new Promise(function (resolve, reject) { 319 | setTimeout(function () { 320 | return reject(err); 321 | }, 5); 322 | })); 323 | var game = /*#__PURE__*/regeneratorRuntime.mark(function game() { 324 | return regeneratorRuntime.wrap(function game$(_context13) { 325 | while (1) { 326 | switch (_context13.prev = _context13.next) { 327 | case 0: 328 | _context13.prev = 0; 329 | _context13.next = 3; 330 | return (0, _banica.call)(playerMove, 42); 331 | 332 | case 3: 333 | _context13.next = 8; 334 | break; 335 | 336 | case 5: 337 | _context13.prev = 5; 338 | _context13.t0 = _context13['catch'](0); 339 | return _context13.abrupt('return', _context13.t0.message); 340 | 341 | case 8: 342 | case 'end': 343 | return _context13.stop(); 344 | } 345 | } 346 | }, game, this, [[0, 5]]); 347 | }); 348 | 349 | return expect((0, _banica.run)(game)).become('Ops'); 350 | }); 351 | }); 352 | }); 353 | }); -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | abbrev@1: 4 | version "1.1.1" 5 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 6 | 7 | acorn@^4.0.3: 8 | version "4.0.13" 9 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 10 | 11 | ajv@^4.9.1: 12 | version "4.11.8" 13 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 14 | dependencies: 15 | co "^4.6.0" 16 | json-stable-stringify "^1.0.1" 17 | 18 | ansi-regex@^2.0.0: 19 | version "2.1.1" 20 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 21 | 22 | ansi-styles@^2.2.1: 23 | version "2.2.1" 24 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 25 | 26 | anymatch@^1.3.0: 27 | version "1.3.2" 28 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 29 | dependencies: 30 | micromatch "^2.1.5" 31 | normalize-path "^2.0.0" 32 | 33 | aproba@^1.0.3: 34 | version "1.2.0" 35 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 36 | 37 | are-we-there-yet@~1.1.2: 38 | version "1.1.4" 39 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 40 | dependencies: 41 | delegates "^1.0.0" 42 | readable-stream "^2.0.6" 43 | 44 | arr-diff@^2.0.0: 45 | version "2.0.0" 46 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 47 | dependencies: 48 | arr-flatten "^1.0.1" 49 | 50 | arr-flatten@^1.0.1: 51 | version "1.1.0" 52 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 53 | 54 | array-filter@~0.0.0: 55 | version "0.0.1" 56 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 57 | 58 | array-map@~0.0.0: 59 | version "0.0.0" 60 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 61 | 62 | array-reduce@~0.0.0: 63 | version "0.0.0" 64 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 65 | 66 | array-unique@^0.2.1: 67 | version "0.2.1" 68 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 69 | 70 | asn1.js@^4.0.0: 71 | version "4.9.2" 72 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.2.tgz#8117ef4f7ed87cd8f89044b5bff97ac243a16c9a" 73 | dependencies: 74 | bn.js "^4.0.0" 75 | inherits "^2.0.1" 76 | minimalistic-assert "^1.0.0" 77 | 78 | asn1@~0.2.3: 79 | version "0.2.3" 80 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 81 | 82 | assert-plus@^0.2.0: 83 | version "0.2.0" 84 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 85 | 86 | assert-plus@^1.0.0, assert-plus@1.0.0: 87 | version "1.0.0" 88 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 89 | 90 | assert@^1.4.0: 91 | version "1.4.1" 92 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 93 | dependencies: 94 | util "0.10.3" 95 | 96 | assertion-error@^1.0.1: 97 | version "1.0.2" 98 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 99 | 100 | astw@^2.0.0: 101 | version "2.2.0" 102 | resolved "https://registry.yarnpkg.com/astw/-/astw-2.2.0.tgz#7bd41784d32493987aeb239b6b4e1c57a873b917" 103 | dependencies: 104 | acorn "^4.0.3" 105 | 106 | async-each@^1.0.0: 107 | version "1.0.1" 108 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 109 | 110 | asynckit@^0.4.0: 111 | version "0.4.0" 112 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 113 | 114 | aws-sign2@~0.6.0: 115 | version "0.6.0" 116 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 117 | 118 | aws4@^1.2.1: 119 | version "1.6.0" 120 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 121 | 122 | babel-cli@6.24.0: 123 | version "6.24.0" 124 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.0.tgz#a05ffd210dca0c288a26d5319c5ac8669a265ad0" 125 | dependencies: 126 | babel-core "^6.24.0" 127 | babel-polyfill "^6.23.0" 128 | babel-register "^6.24.0" 129 | babel-runtime "^6.22.0" 130 | commander "^2.8.1" 131 | convert-source-map "^1.1.0" 132 | fs-readdir-recursive "^1.0.0" 133 | glob "^7.0.0" 134 | lodash "^4.2.0" 135 | output-file-sync "^1.1.0" 136 | path-is-absolute "^1.0.0" 137 | slash "^1.0.0" 138 | source-map "^0.5.0" 139 | v8flags "^2.0.10" 140 | optionalDependencies: 141 | chokidar "^1.6.1" 142 | 143 | babel-code-frame@^6.26.0: 144 | version "6.26.0" 145 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 146 | dependencies: 147 | chalk "^1.1.3" 148 | esutils "^2.0.2" 149 | js-tokens "^3.0.2" 150 | 151 | babel-core@^6.24.0, babel-core@^6.26.0: 152 | version "6.26.0" 153 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 154 | dependencies: 155 | babel-code-frame "^6.26.0" 156 | babel-generator "^6.26.0" 157 | babel-helpers "^6.24.1" 158 | babel-messages "^6.23.0" 159 | babel-register "^6.26.0" 160 | babel-runtime "^6.26.0" 161 | babel-template "^6.26.0" 162 | babel-traverse "^6.26.0" 163 | babel-types "^6.26.0" 164 | babylon "^6.18.0" 165 | convert-source-map "^1.5.0" 166 | debug "^2.6.8" 167 | json5 "^0.5.1" 168 | lodash "^4.17.4" 169 | minimatch "^3.0.4" 170 | path-is-absolute "^1.0.1" 171 | private "^0.1.7" 172 | slash "^1.0.0" 173 | source-map "^0.5.6" 174 | 175 | babel-generator@^6.26.0: 176 | version "6.26.0" 177 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 178 | dependencies: 179 | babel-messages "^6.23.0" 180 | babel-runtime "^6.26.0" 181 | babel-types "^6.26.0" 182 | detect-indent "^4.0.0" 183 | jsesc "^1.3.0" 184 | lodash "^4.17.4" 185 | source-map "^0.5.6" 186 | trim-right "^1.0.1" 187 | 188 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 189 | version "6.24.1" 190 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 191 | dependencies: 192 | babel-helper-explode-assignable-expression "^6.24.1" 193 | babel-runtime "^6.22.0" 194 | babel-types "^6.24.1" 195 | 196 | babel-helper-call-delegate@^6.24.1: 197 | version "6.24.1" 198 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 199 | dependencies: 200 | babel-helper-hoist-variables "^6.24.1" 201 | babel-runtime "^6.22.0" 202 | babel-traverse "^6.24.1" 203 | babel-types "^6.24.1" 204 | 205 | babel-helper-define-map@^6.24.1: 206 | version "6.26.0" 207 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 208 | dependencies: 209 | babel-helper-function-name "^6.24.1" 210 | babel-runtime "^6.26.0" 211 | babel-types "^6.26.0" 212 | lodash "^4.17.4" 213 | 214 | babel-helper-explode-assignable-expression@^6.24.1: 215 | version "6.24.1" 216 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 217 | dependencies: 218 | babel-runtime "^6.22.0" 219 | babel-traverse "^6.24.1" 220 | babel-types "^6.24.1" 221 | 222 | babel-helper-function-name@^6.24.1: 223 | version "6.24.1" 224 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 225 | dependencies: 226 | babel-helper-get-function-arity "^6.24.1" 227 | babel-runtime "^6.22.0" 228 | babel-template "^6.24.1" 229 | babel-traverse "^6.24.1" 230 | babel-types "^6.24.1" 231 | 232 | babel-helper-get-function-arity@^6.24.1: 233 | version "6.24.1" 234 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 235 | dependencies: 236 | babel-runtime "^6.22.0" 237 | babel-types "^6.24.1" 238 | 239 | babel-helper-hoist-variables@^6.24.1: 240 | version "6.24.1" 241 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 242 | dependencies: 243 | babel-runtime "^6.22.0" 244 | babel-types "^6.24.1" 245 | 246 | babel-helper-optimise-call-expression@^6.24.1: 247 | version "6.24.1" 248 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 249 | dependencies: 250 | babel-runtime "^6.22.0" 251 | babel-types "^6.24.1" 252 | 253 | babel-helper-regex@^6.24.1: 254 | version "6.26.0" 255 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 256 | dependencies: 257 | babel-runtime "^6.26.0" 258 | babel-types "^6.26.0" 259 | lodash "^4.17.4" 260 | 261 | babel-helper-remap-async-to-generator@^6.24.1: 262 | version "6.24.1" 263 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 264 | dependencies: 265 | babel-helper-function-name "^6.24.1" 266 | babel-runtime "^6.22.0" 267 | babel-template "^6.24.1" 268 | babel-traverse "^6.24.1" 269 | babel-types "^6.24.1" 270 | 271 | babel-helper-replace-supers@^6.24.1: 272 | version "6.24.1" 273 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 274 | dependencies: 275 | babel-helper-optimise-call-expression "^6.24.1" 276 | babel-messages "^6.23.0" 277 | babel-runtime "^6.22.0" 278 | babel-template "^6.24.1" 279 | babel-traverse "^6.24.1" 280 | babel-types "^6.24.1" 281 | 282 | babel-helpers@^6.24.1: 283 | version "6.24.1" 284 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 285 | dependencies: 286 | babel-runtime "^6.22.0" 287 | babel-template "^6.24.1" 288 | 289 | babel-messages@^6.23.0: 290 | version "6.23.0" 291 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 292 | dependencies: 293 | babel-runtime "^6.22.0" 294 | 295 | babel-plugin-add-module-exports@0.2.0: 296 | version "0.2.0" 297 | resolved "https://registry.yarnpkg.com/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.2.0.tgz#a636dae6fa076f9361b3164e46a611414a32b0ea" 298 | 299 | babel-plugin-check-es2015-constants@^6.22.0: 300 | version "6.22.0" 301 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 302 | dependencies: 303 | babel-runtime "^6.22.0" 304 | 305 | babel-plugin-syntax-async-functions@^6.8.0: 306 | version "6.13.0" 307 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 308 | 309 | babel-plugin-syntax-async-generators@^6.5.0: 310 | version "6.13.0" 311 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 312 | 313 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 314 | version "6.13.0" 315 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 316 | 317 | babel-plugin-syntax-object-rest-spread@^6.8.0: 318 | version "6.13.0" 319 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 320 | 321 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 322 | version "6.22.0" 323 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 324 | 325 | babel-plugin-transform-async-generator-functions@^6.22.0: 326 | version "6.24.1" 327 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 328 | dependencies: 329 | babel-helper-remap-async-to-generator "^6.24.1" 330 | babel-plugin-syntax-async-generators "^6.5.0" 331 | babel-runtime "^6.22.0" 332 | 333 | babel-plugin-transform-async-to-generator@^6.22.0: 334 | version "6.24.1" 335 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 336 | dependencies: 337 | babel-helper-remap-async-to-generator "^6.24.1" 338 | babel-plugin-syntax-async-functions "^6.8.0" 339 | babel-runtime "^6.22.0" 340 | 341 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 342 | version "6.22.0" 343 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 344 | dependencies: 345 | babel-runtime "^6.22.0" 346 | 347 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 348 | version "6.22.0" 349 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 350 | dependencies: 351 | babel-runtime "^6.22.0" 352 | 353 | babel-plugin-transform-es2015-block-scoping@^6.22.0: 354 | version "6.26.0" 355 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 356 | dependencies: 357 | babel-runtime "^6.26.0" 358 | babel-template "^6.26.0" 359 | babel-traverse "^6.26.0" 360 | babel-types "^6.26.0" 361 | lodash "^4.17.4" 362 | 363 | babel-plugin-transform-es2015-classes@^6.22.0: 364 | version "6.24.1" 365 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 366 | dependencies: 367 | babel-helper-define-map "^6.24.1" 368 | babel-helper-function-name "^6.24.1" 369 | babel-helper-optimise-call-expression "^6.24.1" 370 | babel-helper-replace-supers "^6.24.1" 371 | babel-messages "^6.23.0" 372 | babel-runtime "^6.22.0" 373 | babel-template "^6.24.1" 374 | babel-traverse "^6.24.1" 375 | babel-types "^6.24.1" 376 | 377 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 378 | version "6.24.1" 379 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 380 | dependencies: 381 | babel-runtime "^6.22.0" 382 | babel-template "^6.24.1" 383 | 384 | babel-plugin-transform-es2015-destructuring@^6.22.0: 385 | version "6.23.0" 386 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 387 | dependencies: 388 | babel-runtime "^6.22.0" 389 | 390 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 391 | version "6.24.1" 392 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 393 | dependencies: 394 | babel-runtime "^6.22.0" 395 | babel-types "^6.24.1" 396 | 397 | babel-plugin-transform-es2015-for-of@^6.22.0: 398 | version "6.23.0" 399 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 400 | dependencies: 401 | babel-runtime "^6.22.0" 402 | 403 | babel-plugin-transform-es2015-function-name@^6.22.0: 404 | version "6.24.1" 405 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 406 | dependencies: 407 | babel-helper-function-name "^6.24.1" 408 | babel-runtime "^6.22.0" 409 | babel-types "^6.24.1" 410 | 411 | babel-plugin-transform-es2015-literals@^6.22.0: 412 | version "6.22.0" 413 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 414 | dependencies: 415 | babel-runtime "^6.22.0" 416 | 417 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 418 | version "6.24.1" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 420 | dependencies: 421 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 422 | babel-runtime "^6.22.0" 423 | babel-template "^6.24.1" 424 | 425 | babel-plugin-transform-es2015-modules-commonjs@^6.22.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 426 | version "6.26.0" 427 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 428 | dependencies: 429 | babel-plugin-transform-strict-mode "^6.24.1" 430 | babel-runtime "^6.26.0" 431 | babel-template "^6.26.0" 432 | babel-types "^6.26.0" 433 | 434 | babel-plugin-transform-es2015-modules-systemjs@^6.22.0: 435 | version "6.24.1" 436 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 437 | dependencies: 438 | babel-helper-hoist-variables "^6.24.1" 439 | babel-runtime "^6.22.0" 440 | babel-template "^6.24.1" 441 | 442 | babel-plugin-transform-es2015-modules-umd@^6.22.0: 443 | version "6.24.1" 444 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 445 | dependencies: 446 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 447 | babel-runtime "^6.22.0" 448 | babel-template "^6.24.1" 449 | 450 | babel-plugin-transform-es2015-object-super@^6.22.0: 451 | version "6.24.1" 452 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 453 | dependencies: 454 | babel-helper-replace-supers "^6.24.1" 455 | babel-runtime "^6.22.0" 456 | 457 | babel-plugin-transform-es2015-parameters@^6.22.0: 458 | version "6.24.1" 459 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 460 | dependencies: 461 | babel-helper-call-delegate "^6.24.1" 462 | babel-helper-get-function-arity "^6.24.1" 463 | babel-runtime "^6.22.0" 464 | babel-template "^6.24.1" 465 | babel-traverse "^6.24.1" 466 | babel-types "^6.24.1" 467 | 468 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 469 | version "6.24.1" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 471 | dependencies: 472 | babel-runtime "^6.22.0" 473 | babel-types "^6.24.1" 474 | 475 | babel-plugin-transform-es2015-spread@^6.22.0: 476 | version "6.22.0" 477 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 478 | dependencies: 479 | babel-runtime "^6.22.0" 480 | 481 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 482 | version "6.24.1" 483 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 484 | dependencies: 485 | babel-helper-regex "^6.24.1" 486 | babel-runtime "^6.22.0" 487 | babel-types "^6.24.1" 488 | 489 | babel-plugin-transform-es2015-template-literals@^6.22.0: 490 | version "6.22.0" 491 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 492 | dependencies: 493 | babel-runtime "^6.22.0" 494 | 495 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 496 | version "6.23.0" 497 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 498 | dependencies: 499 | babel-runtime "^6.22.0" 500 | 501 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 502 | version "6.24.1" 503 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 504 | dependencies: 505 | babel-helper-regex "^6.24.1" 506 | babel-runtime "^6.22.0" 507 | regexpu-core "^2.0.0" 508 | 509 | babel-plugin-transform-exponentiation-operator@^6.22.0: 510 | version "6.24.1" 511 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 512 | dependencies: 513 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 514 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 515 | babel-runtime "^6.22.0" 516 | 517 | babel-plugin-transform-object-rest-spread@^6.22.0: 518 | version "6.26.0" 519 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 520 | dependencies: 521 | babel-plugin-syntax-object-rest-spread "^6.8.0" 522 | babel-runtime "^6.26.0" 523 | 524 | babel-plugin-transform-regenerator@^6.22.0: 525 | version "6.26.0" 526 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 527 | dependencies: 528 | regenerator-transform "^0.10.0" 529 | 530 | babel-plugin-transform-strict-mode@^6.24.1: 531 | version "6.24.1" 532 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 533 | dependencies: 534 | babel-runtime "^6.22.0" 535 | babel-types "^6.24.1" 536 | 537 | babel-polyfill@^6.23.0: 538 | version "6.26.0" 539 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 540 | dependencies: 541 | babel-runtime "^6.26.0" 542 | core-js "^2.5.0" 543 | regenerator-runtime "^0.10.5" 544 | 545 | babel-polyfill@6.23.0: 546 | version "6.23.0" 547 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 548 | dependencies: 549 | babel-runtime "^6.22.0" 550 | core-js "^2.4.0" 551 | regenerator-runtime "^0.10.0" 552 | 553 | babel-preset-es2015@6.22.0: 554 | version "6.22.0" 555 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.22.0.tgz#af5a98ecb35eb8af764ad8a5a05eb36dc4386835" 556 | dependencies: 557 | babel-plugin-check-es2015-constants "^6.22.0" 558 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 559 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 560 | babel-plugin-transform-es2015-block-scoping "^6.22.0" 561 | babel-plugin-transform-es2015-classes "^6.22.0" 562 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 563 | babel-plugin-transform-es2015-destructuring "^6.22.0" 564 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 565 | babel-plugin-transform-es2015-for-of "^6.22.0" 566 | babel-plugin-transform-es2015-function-name "^6.22.0" 567 | babel-plugin-transform-es2015-literals "^6.22.0" 568 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 569 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 570 | babel-plugin-transform-es2015-modules-systemjs "^6.22.0" 571 | babel-plugin-transform-es2015-modules-umd "^6.22.0" 572 | babel-plugin-transform-es2015-object-super "^6.22.0" 573 | babel-plugin-transform-es2015-parameters "^6.22.0" 574 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 575 | babel-plugin-transform-es2015-spread "^6.22.0" 576 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 577 | babel-plugin-transform-es2015-template-literals "^6.22.0" 578 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 579 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 580 | babel-plugin-transform-regenerator "^6.22.0" 581 | 582 | babel-preset-stage-3@6.22.0: 583 | version "6.22.0" 584 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.22.0.tgz#a4e92bbace7456fafdf651d7a7657ee0bbca9c2e" 585 | dependencies: 586 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 587 | babel-plugin-transform-async-generator-functions "^6.22.0" 588 | babel-plugin-transform-async-to-generator "^6.22.0" 589 | babel-plugin-transform-exponentiation-operator "^6.22.0" 590 | babel-plugin-transform-object-rest-spread "^6.22.0" 591 | 592 | babel-register@^6.24.0, babel-register@^6.26.0: 593 | version "6.26.0" 594 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 595 | dependencies: 596 | babel-core "^6.26.0" 597 | babel-runtime "^6.26.0" 598 | core-js "^2.5.0" 599 | home-or-tmp "^2.0.0" 600 | lodash "^4.17.4" 601 | mkdirp "^0.5.1" 602 | source-map-support "^0.4.15" 603 | 604 | babel-register@6.24.0: 605 | version "6.24.0" 606 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.0.tgz#5e89f8463ba9970356d02eb07dabe3308b080cfd" 607 | dependencies: 608 | babel-core "^6.24.0" 609 | babel-runtime "^6.22.0" 610 | core-js "^2.4.0" 611 | home-or-tmp "^2.0.0" 612 | lodash "^4.2.0" 613 | mkdirp "^0.5.1" 614 | source-map-support "^0.4.2" 615 | 616 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 617 | version "6.26.0" 618 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 619 | dependencies: 620 | core-js "^2.4.0" 621 | regenerator-runtime "^0.11.0" 622 | 623 | babel-template@^6.24.1, babel-template@^6.26.0: 624 | version "6.26.0" 625 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 626 | dependencies: 627 | babel-runtime "^6.26.0" 628 | babel-traverse "^6.26.0" 629 | babel-types "^6.26.0" 630 | babylon "^6.18.0" 631 | lodash "^4.17.4" 632 | 633 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 634 | version "6.26.0" 635 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 636 | dependencies: 637 | babel-code-frame "^6.26.0" 638 | babel-messages "^6.23.0" 639 | babel-runtime "^6.26.0" 640 | babel-types "^6.26.0" 641 | babylon "^6.18.0" 642 | debug "^2.6.8" 643 | globals "^9.18.0" 644 | invariant "^2.2.2" 645 | lodash "^4.17.4" 646 | 647 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 648 | version "6.26.0" 649 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 650 | dependencies: 651 | babel-runtime "^6.26.0" 652 | esutils "^2.0.2" 653 | lodash "^4.17.4" 654 | to-fast-properties "^1.0.3" 655 | 656 | babylon@^6.18.0: 657 | version "6.18.0" 658 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 659 | 660 | balanced-match@^1.0.0: 661 | version "1.0.0" 662 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 663 | 664 | base64-js@^1.0.2: 665 | version "1.2.1" 666 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" 667 | 668 | bcrypt-pbkdf@^1.0.0: 669 | version "1.0.1" 670 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 671 | dependencies: 672 | tweetnacl "^0.14.3" 673 | 674 | binary-extensions@^1.0.0: 675 | version "1.11.0" 676 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 677 | 678 | block-stream@*: 679 | version "0.0.9" 680 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 681 | dependencies: 682 | inherits "~2.0.0" 683 | 684 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 685 | version "4.11.8" 686 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 687 | 688 | boolbase@~1.0.0: 689 | version "1.0.0" 690 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 691 | 692 | boom@2.x.x: 693 | version "2.10.1" 694 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 695 | dependencies: 696 | hoek "2.x.x" 697 | 698 | brace-expansion@^1.1.7: 699 | version "1.1.8" 700 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 701 | dependencies: 702 | balanced-match "^1.0.0" 703 | concat-map "0.0.1" 704 | 705 | braces@^1.8.2: 706 | version "1.8.5" 707 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 708 | dependencies: 709 | expand-range "^1.8.1" 710 | preserve "^0.2.0" 711 | repeat-element "^1.1.2" 712 | 713 | brorand@^1.0.1: 714 | version "1.1.0" 715 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 716 | 717 | browser-pack@^6.0.1: 718 | version "6.0.2" 719 | resolved "https://registry.yarnpkg.com/browser-pack/-/browser-pack-6.0.2.tgz#f86cd6cef4f5300c8e63e07a4d512f65fbff4531" 720 | dependencies: 721 | combine-source-map "~0.7.1" 722 | defined "^1.0.0" 723 | JSONStream "^1.0.3" 724 | through2 "^2.0.0" 725 | umd "^3.0.0" 726 | 727 | browser-resolve@^1.11.0, browser-resolve@^1.7.0: 728 | version "1.11.2" 729 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 730 | dependencies: 731 | resolve "1.1.7" 732 | 733 | browser-stdout@1.3.0: 734 | version "1.3.0" 735 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 736 | 737 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 738 | version "1.1.1" 739 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f" 740 | dependencies: 741 | buffer-xor "^1.0.3" 742 | cipher-base "^1.0.0" 743 | create-hash "^1.1.0" 744 | evp_bytestokey "^1.0.3" 745 | inherits "^2.0.1" 746 | safe-buffer "^5.0.1" 747 | 748 | browserify-cipher@^1.0.0: 749 | version "1.0.0" 750 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 751 | dependencies: 752 | browserify-aes "^1.0.4" 753 | browserify-des "^1.0.0" 754 | evp_bytestokey "^1.0.0" 755 | 756 | browserify-des@^1.0.0: 757 | version "1.0.0" 758 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 759 | dependencies: 760 | cipher-base "^1.0.1" 761 | des.js "^1.0.0" 762 | inherits "^2.0.1" 763 | 764 | browserify-rsa@^4.0.0: 765 | version "4.0.1" 766 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 767 | dependencies: 768 | bn.js "^4.1.0" 769 | randombytes "^2.0.1" 770 | 771 | browserify-sign@^4.0.0: 772 | version "4.0.4" 773 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 774 | dependencies: 775 | bn.js "^4.1.1" 776 | browserify-rsa "^4.0.0" 777 | create-hash "^1.1.0" 778 | create-hmac "^1.1.2" 779 | elliptic "^6.0.0" 780 | inherits "^2.0.1" 781 | parse-asn1 "^5.0.0" 782 | 783 | browserify-zlib@~0.2.0: 784 | version "0.2.0" 785 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 786 | dependencies: 787 | pako "~1.0.5" 788 | 789 | browserify@^14.4.0: 790 | version "14.5.0" 791 | resolved "https://registry.yarnpkg.com/browserify/-/browserify-14.5.0.tgz#0bbbce521acd6e4d1d54d8e9365008efb85a9cc5" 792 | dependencies: 793 | assert "^1.4.0" 794 | browser-pack "^6.0.1" 795 | browser-resolve "^1.11.0" 796 | browserify-zlib "~0.2.0" 797 | buffer "^5.0.2" 798 | cached-path-relative "^1.0.0" 799 | concat-stream "~1.5.1" 800 | console-browserify "^1.1.0" 801 | constants-browserify "~1.0.0" 802 | crypto-browserify "^3.0.0" 803 | defined "^1.0.0" 804 | deps-sort "^2.0.0" 805 | domain-browser "~1.1.0" 806 | duplexer2 "~0.1.2" 807 | events "~1.1.0" 808 | glob "^7.1.0" 809 | has "^1.0.0" 810 | htmlescape "^1.1.0" 811 | https-browserify "^1.0.0" 812 | inherits "~2.0.1" 813 | insert-module-globals "^7.0.0" 814 | JSONStream "^1.0.3" 815 | labeled-stream-splicer "^2.0.0" 816 | module-deps "^4.0.8" 817 | os-browserify "~0.3.0" 818 | parents "^1.0.1" 819 | path-browserify "~0.0.0" 820 | process "~0.11.0" 821 | punycode "^1.3.2" 822 | querystring-es3 "~0.2.0" 823 | read-only-stream "^2.0.0" 824 | readable-stream "^2.0.2" 825 | resolve "^1.1.4" 826 | shasum "^1.0.0" 827 | shell-quote "^1.6.1" 828 | stream-browserify "^2.0.0" 829 | stream-http "^2.0.0" 830 | string_decoder "~1.0.0" 831 | subarg "^1.0.0" 832 | syntax-error "^1.1.1" 833 | through2 "^2.0.0" 834 | timers-browserify "^1.0.1" 835 | tty-browserify "~0.0.0" 836 | url "~0.11.0" 837 | util "~0.10.1" 838 | vm-browserify "~0.0.1" 839 | xtend "^4.0.0" 840 | 841 | buffer-xor@^1.0.3: 842 | version "1.0.3" 843 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 844 | 845 | buffer@^5.0.2: 846 | version "5.0.8" 847 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.0.8.tgz#84daa52e7cf2fa8ce4195bc5cf0f7809e0930b24" 848 | dependencies: 849 | base64-js "^1.0.2" 850 | ieee754 "^1.1.4" 851 | 852 | builtin-status-codes@^3.0.0: 853 | version "3.0.0" 854 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 855 | 856 | cached-path-relative@^1.0.0: 857 | version "1.0.1" 858 | resolved "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.0.1.tgz#d09c4b52800aa4c078e2dd81a869aac90d2e54e7" 859 | 860 | caseless@~0.12.0: 861 | version "0.12.0" 862 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 863 | 864 | chai-as-promised: 865 | version "7.1.1" 866 | resolved "https://registry.yarnpkg.com/chai-as-promised/-/chai-as-promised-7.1.1.tgz#08645d825deb8696ee61725dbf590c012eb00ca0" 867 | dependencies: 868 | check-error "^1.0.2" 869 | 870 | chai@3.5.0: 871 | version "3.5.0" 872 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 873 | dependencies: 874 | assertion-error "^1.0.1" 875 | deep-eql "^0.1.3" 876 | type-detect "^1.0.0" 877 | 878 | chalk@^1.1.3: 879 | version "1.1.3" 880 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 881 | dependencies: 882 | ansi-styles "^2.2.1" 883 | escape-string-regexp "^1.0.2" 884 | has-ansi "^2.0.0" 885 | strip-ansi "^3.0.0" 886 | supports-color "^2.0.0" 887 | 888 | check-error@^1.0.2: 889 | version "1.0.2" 890 | resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" 891 | 892 | cheerio@^0.22.0: 893 | version "0.22.0" 894 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" 895 | dependencies: 896 | css-select "~1.2.0" 897 | dom-serializer "~0.1.0" 898 | entities "~1.1.1" 899 | htmlparser2 "^3.9.1" 900 | lodash.assignin "^4.0.9" 901 | lodash.bind "^4.1.4" 902 | lodash.defaults "^4.0.1" 903 | lodash.filter "^4.4.0" 904 | lodash.flatten "^4.2.0" 905 | lodash.foreach "^4.3.0" 906 | lodash.map "^4.4.0" 907 | lodash.merge "^4.4.0" 908 | lodash.pick "^4.2.1" 909 | lodash.reduce "^4.4.0" 910 | lodash.reject "^4.4.0" 911 | lodash.some "^4.4.0" 912 | 913 | chokidar@^1.6.1: 914 | version "1.7.0" 915 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 916 | dependencies: 917 | anymatch "^1.3.0" 918 | async-each "^1.0.0" 919 | glob-parent "^2.0.0" 920 | inherits "^2.0.1" 921 | is-binary-path "^1.0.0" 922 | is-glob "^2.0.0" 923 | path-is-absolute "^1.0.0" 924 | readdirp "^2.0.0" 925 | optionalDependencies: 926 | fsevents "^1.0.0" 927 | 928 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 929 | version "1.0.4" 930 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 931 | dependencies: 932 | inherits "^2.0.1" 933 | safe-buffer "^5.0.1" 934 | 935 | co@^4.6.0: 936 | version "4.6.0" 937 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 938 | 939 | code-point-at@^1.0.0: 940 | version "1.1.0" 941 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 942 | 943 | combine-source-map@~0.7.1: 944 | version "0.7.2" 945 | resolved "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.7.2.tgz#0870312856b307a87cc4ac486f3a9a62aeccc09e" 946 | dependencies: 947 | convert-source-map "~1.1.0" 948 | inline-source-map "~0.6.0" 949 | lodash.memoize "~3.0.3" 950 | source-map "~0.5.3" 951 | 952 | combined-stream@^1.0.5, combined-stream@~1.0.5: 953 | version "1.0.5" 954 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 955 | dependencies: 956 | delayed-stream "~1.0.0" 957 | 958 | commander@^2.8.1: 959 | version "2.12.1" 960 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.12.1.tgz#468635c4168d06145b9323356d1da84d14ac4a7a" 961 | 962 | commander@~2.11.0: 963 | version "2.11.0" 964 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 965 | 966 | commander@2.9.0: 967 | version "2.9.0" 968 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 969 | dependencies: 970 | graceful-readlink ">= 1.0.0" 971 | 972 | concat-map@0.0.1: 973 | version "0.0.1" 974 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 975 | 976 | concat-stream@~1.5.0, concat-stream@~1.5.1: 977 | version "1.5.2" 978 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 979 | dependencies: 980 | inherits "~2.0.1" 981 | readable-stream "~2.0.0" 982 | typedarray "~0.0.5" 983 | 984 | console-browserify@^1.1.0: 985 | version "1.1.0" 986 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 987 | dependencies: 988 | date-now "^0.1.4" 989 | 990 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 991 | version "1.1.0" 992 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 993 | 994 | constants-browserify@~1.0.0: 995 | version "1.0.0" 996 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 997 | 998 | convert-source-map@^1.1.0, convert-source-map@^1.5.0: 999 | version "1.5.1" 1000 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 1001 | 1002 | convert-source-map@~1.1.0: 1003 | version "1.1.3" 1004 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" 1005 | 1006 | core-js@^2.4.0, core-js@^2.5.0: 1007 | version "2.5.1" 1008 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 1009 | 1010 | core-util-is@~1.0.0, core-util-is@1.0.2: 1011 | version "1.0.2" 1012 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1013 | 1014 | create-ecdh@^4.0.0: 1015 | version "4.0.0" 1016 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 1017 | dependencies: 1018 | bn.js "^4.1.0" 1019 | elliptic "^6.0.0" 1020 | 1021 | create-hash@^1.1.0, create-hash@^1.1.2: 1022 | version "1.1.3" 1023 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" 1024 | dependencies: 1025 | cipher-base "^1.0.1" 1026 | inherits "^2.0.1" 1027 | ripemd160 "^2.0.0" 1028 | sha.js "^2.4.0" 1029 | 1030 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 1031 | version "1.1.6" 1032 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" 1033 | dependencies: 1034 | cipher-base "^1.0.3" 1035 | create-hash "^1.1.0" 1036 | inherits "^2.0.1" 1037 | ripemd160 "^2.0.0" 1038 | safe-buffer "^5.0.1" 1039 | sha.js "^2.4.8" 1040 | 1041 | cryptiles@2.x.x: 1042 | version "2.0.5" 1043 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1044 | dependencies: 1045 | boom "2.x.x" 1046 | 1047 | crypto-browserify@^3.0.0: 1048 | version "3.12.0" 1049 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 1050 | dependencies: 1051 | browserify-cipher "^1.0.0" 1052 | browserify-sign "^4.0.0" 1053 | create-ecdh "^4.0.0" 1054 | create-hash "^1.1.0" 1055 | create-hmac "^1.1.0" 1056 | diffie-hellman "^5.0.0" 1057 | inherits "^2.0.1" 1058 | pbkdf2 "^3.0.3" 1059 | public-encrypt "^4.0.0" 1060 | randombytes "^2.0.0" 1061 | randomfill "^1.0.3" 1062 | 1063 | css-select@~1.2.0: 1064 | version "1.2.0" 1065 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" 1066 | dependencies: 1067 | boolbase "~1.0.0" 1068 | css-what "2.1" 1069 | domutils "1.5.1" 1070 | nth-check "~1.0.1" 1071 | 1072 | css-what@2.1: 1073 | version "2.1.0" 1074 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" 1075 | 1076 | dashdash@^1.12.0: 1077 | version "1.14.1" 1078 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1079 | dependencies: 1080 | assert-plus "^1.0.0" 1081 | 1082 | date-now@^0.1.4: 1083 | version "0.1.4" 1084 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1085 | 1086 | debug@^2.2.0, debug@^2.6.8: 1087 | version "2.6.9" 1088 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1089 | dependencies: 1090 | ms "2.0.0" 1091 | 1092 | debug@2.2.0: 1093 | version "2.2.0" 1094 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1095 | dependencies: 1096 | ms "0.7.1" 1097 | 1098 | deep-eql@^0.1.3: 1099 | version "0.1.3" 1100 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 1101 | dependencies: 1102 | type-detect "0.1.1" 1103 | 1104 | deep-extend@~0.4.0: 1105 | version "0.4.2" 1106 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1107 | 1108 | define-properties@^1.1.2: 1109 | version "1.1.2" 1110 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1111 | dependencies: 1112 | foreach "^2.0.5" 1113 | object-keys "^1.0.8" 1114 | 1115 | defined@^1.0.0: 1116 | version "1.0.0" 1117 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1118 | 1119 | delayed-stream@~1.0.0: 1120 | version "1.0.0" 1121 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1122 | 1123 | delegates@^1.0.0: 1124 | version "1.0.0" 1125 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1126 | 1127 | deps-sort@^2.0.0: 1128 | version "2.0.0" 1129 | resolved "https://registry.yarnpkg.com/deps-sort/-/deps-sort-2.0.0.tgz#091724902e84658260eb910748cccd1af6e21fb5" 1130 | dependencies: 1131 | JSONStream "^1.0.3" 1132 | shasum "^1.0.0" 1133 | subarg "^1.0.0" 1134 | through2 "^2.0.0" 1135 | 1136 | des.js@^1.0.0: 1137 | version "1.0.0" 1138 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1139 | dependencies: 1140 | inherits "^2.0.1" 1141 | minimalistic-assert "^1.0.0" 1142 | 1143 | detect-indent@^4.0.0: 1144 | version "4.0.0" 1145 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1146 | dependencies: 1147 | repeating "^2.0.0" 1148 | 1149 | detect-libc@^1.0.2: 1150 | version "1.0.3" 1151 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1152 | 1153 | detective@^4.0.0: 1154 | version "4.5.0" 1155 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.5.0.tgz#6e5a8c6b26e6c7a254b1c6b6d7490d98ec91edd1" 1156 | dependencies: 1157 | acorn "^4.0.3" 1158 | defined "^1.0.0" 1159 | 1160 | diff@^3.1.0: 1161 | version "3.4.0" 1162 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c" 1163 | 1164 | diff@1.4.0: 1165 | version "1.4.0" 1166 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 1167 | 1168 | diffie-hellman@^5.0.0: 1169 | version "5.0.2" 1170 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1171 | dependencies: 1172 | bn.js "^4.1.0" 1173 | miller-rabin "^4.0.0" 1174 | randombytes "^2.0.0" 1175 | 1176 | dom-serializer@~0.1.0, dom-serializer@0: 1177 | version "0.1.0" 1178 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 1179 | dependencies: 1180 | domelementtype "~1.1.1" 1181 | entities "~1.1.1" 1182 | 1183 | domain-browser@~1.1.0: 1184 | version "1.1.7" 1185 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1186 | 1187 | domelementtype@^1.3.0, domelementtype@1: 1188 | version "1.3.0" 1189 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 1190 | 1191 | domelementtype@~1.1.1: 1192 | version "1.1.3" 1193 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 1194 | 1195 | domhandler@^2.3.0: 1196 | version "2.4.1" 1197 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.1.tgz#892e47000a99be55bbf3774ffea0561d8879c259" 1198 | dependencies: 1199 | domelementtype "1" 1200 | 1201 | domutils@^1.5.1: 1202 | version "1.6.2" 1203 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.6.2.tgz#1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff" 1204 | dependencies: 1205 | dom-serializer "0" 1206 | domelementtype "1" 1207 | 1208 | domutils@1.5.1: 1209 | version "1.5.1" 1210 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 1211 | dependencies: 1212 | dom-serializer "0" 1213 | domelementtype "1" 1214 | 1215 | duplexer2@^0.1.2, duplexer2@~0.1.0, duplexer2@~0.1.2: 1216 | version "0.1.4" 1217 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 1218 | dependencies: 1219 | readable-stream "^2.0.2" 1220 | 1221 | ecc-jsbn@~0.1.1: 1222 | version "0.1.1" 1223 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1224 | dependencies: 1225 | jsbn "~0.1.0" 1226 | 1227 | elliptic@^6.0.0: 1228 | version "6.4.0" 1229 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 1230 | dependencies: 1231 | bn.js "^4.4.0" 1232 | brorand "^1.0.1" 1233 | hash.js "^1.0.0" 1234 | hmac-drbg "^1.0.0" 1235 | inherits "^2.0.1" 1236 | minimalistic-assert "^1.0.0" 1237 | minimalistic-crypto-utils "^1.0.0" 1238 | 1239 | entities@^1.1.1, entities@~1.1.1: 1240 | version "1.1.1" 1241 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 1242 | 1243 | enzyme@2.7.1: 1244 | version "2.7.1" 1245 | resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-2.7.1.tgz#76370e1d99e91f73091bb8c4314b7c128cc2d621" 1246 | dependencies: 1247 | cheerio "^0.22.0" 1248 | function.prototype.name "^1.0.0" 1249 | is-subset "^0.1.1" 1250 | lodash "^4.17.2" 1251 | object-is "^1.0.1" 1252 | object.assign "^4.0.4" 1253 | object.entries "^1.0.3" 1254 | object.values "^1.0.3" 1255 | uuid "^2.0.3" 1256 | 1257 | es-abstract@^1.6.1: 1258 | version "1.9.0" 1259 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.9.0.tgz#690829a07cae36b222e7fd9b75c0d0573eb25227" 1260 | dependencies: 1261 | es-to-primitive "^1.1.1" 1262 | function-bind "^1.1.1" 1263 | has "^1.0.1" 1264 | is-callable "^1.1.3" 1265 | is-regex "^1.0.4" 1266 | 1267 | es-to-primitive@^1.1.1: 1268 | version "1.1.1" 1269 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1270 | dependencies: 1271 | is-callable "^1.1.1" 1272 | is-date-object "^1.0.1" 1273 | is-symbol "^1.0.1" 1274 | 1275 | escape-string-regexp@^1.0.2, escape-string-regexp@1.0.5: 1276 | version "1.0.5" 1277 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1278 | 1279 | esutils@^2.0.2: 1280 | version "2.0.2" 1281 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1282 | 1283 | events@~1.1.0: 1284 | version "1.1.1" 1285 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1286 | 1287 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 1288 | version "1.0.3" 1289 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 1290 | dependencies: 1291 | md5.js "^1.3.4" 1292 | safe-buffer "^5.1.1" 1293 | 1294 | expand-brackets@^0.1.4: 1295 | version "0.1.5" 1296 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1297 | dependencies: 1298 | is-posix-bracket "^0.1.0" 1299 | 1300 | expand-range@^1.8.1: 1301 | version "1.8.2" 1302 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1303 | dependencies: 1304 | fill-range "^2.1.0" 1305 | 1306 | extend@~3.0.0: 1307 | version "3.0.1" 1308 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1309 | 1310 | extglob@^0.3.1: 1311 | version "0.3.2" 1312 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1313 | dependencies: 1314 | is-extglob "^1.0.0" 1315 | 1316 | extsprintf@^1.2.0, extsprintf@1.3.0: 1317 | version "1.3.0" 1318 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1319 | 1320 | filename-regex@^2.0.0: 1321 | version "2.0.1" 1322 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1323 | 1324 | fill-range@^2.1.0: 1325 | version "2.2.3" 1326 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1327 | dependencies: 1328 | is-number "^2.1.0" 1329 | isobject "^2.0.0" 1330 | randomatic "^1.1.3" 1331 | repeat-element "^1.1.2" 1332 | repeat-string "^1.5.2" 1333 | 1334 | for-in@^1.0.1: 1335 | version "1.0.2" 1336 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1337 | 1338 | for-own@^0.1.4: 1339 | version "0.1.5" 1340 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1341 | dependencies: 1342 | for-in "^1.0.1" 1343 | 1344 | foreach@^2.0.5: 1345 | version "2.0.5" 1346 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1347 | 1348 | forever-agent@~0.6.1: 1349 | version "0.6.1" 1350 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1351 | 1352 | form-data@~2.1.1: 1353 | version "2.1.4" 1354 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1355 | dependencies: 1356 | asynckit "^0.4.0" 1357 | combined-stream "^1.0.5" 1358 | mime-types "^2.1.12" 1359 | 1360 | formatio@1.2.0: 1361 | version "1.2.0" 1362 | resolved "https://registry.yarnpkg.com/formatio/-/formatio-1.2.0.tgz#f3b2167d9068c4698a8d51f4f760a39a54d818eb" 1363 | dependencies: 1364 | samsam "1.x" 1365 | 1366 | fs-readdir-recursive@^1.0.0: 1367 | version "1.1.0" 1368 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1369 | 1370 | fs.realpath@^1.0.0: 1371 | version "1.0.0" 1372 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1373 | 1374 | fsevents@^1.0.0: 1375 | version "1.1.3" 1376 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1377 | dependencies: 1378 | nan "^2.3.0" 1379 | node-pre-gyp "^0.6.39" 1380 | 1381 | fstream-ignore@^1.0.5: 1382 | version "1.0.5" 1383 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1384 | dependencies: 1385 | fstream "^1.0.0" 1386 | inherits "2" 1387 | minimatch "^3.0.0" 1388 | 1389 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1390 | version "1.0.11" 1391 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1392 | dependencies: 1393 | graceful-fs "^4.1.2" 1394 | inherits "~2.0.0" 1395 | mkdirp ">=0.5 0" 1396 | rimraf "2" 1397 | 1398 | function-bind@^1.0.2, function-bind@^1.1.0, function-bind@^1.1.1: 1399 | version "1.1.1" 1400 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1401 | 1402 | function.prototype.name@^1.0.0: 1403 | version "1.0.3" 1404 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.0.3.tgz#0099ae5572e9dd6f03c97d023fd92bcc5e639eac" 1405 | dependencies: 1406 | define-properties "^1.1.2" 1407 | function-bind "^1.1.0" 1408 | is-callable "^1.1.3" 1409 | 1410 | gauge@~2.7.3: 1411 | version "2.7.4" 1412 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1413 | dependencies: 1414 | aproba "^1.0.3" 1415 | console-control-strings "^1.0.0" 1416 | has-unicode "^2.0.0" 1417 | object-assign "^4.1.0" 1418 | signal-exit "^3.0.0" 1419 | string-width "^1.0.1" 1420 | strip-ansi "^3.0.1" 1421 | wide-align "^1.1.0" 1422 | 1423 | getpass@^0.1.1: 1424 | version "0.1.7" 1425 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1426 | dependencies: 1427 | assert-plus "^1.0.0" 1428 | 1429 | glob-base@^0.3.0: 1430 | version "0.3.0" 1431 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1432 | dependencies: 1433 | glob-parent "^2.0.0" 1434 | is-glob "^2.0.0" 1435 | 1436 | glob-parent@^2.0.0: 1437 | version "2.0.0" 1438 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1439 | dependencies: 1440 | is-glob "^2.0.0" 1441 | 1442 | glob@^7.0.0, glob@^7.0.5, glob@^7.1.0: 1443 | version "7.1.2" 1444 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1445 | dependencies: 1446 | fs.realpath "^1.0.0" 1447 | inflight "^1.0.4" 1448 | inherits "2" 1449 | minimatch "^3.0.4" 1450 | once "^1.3.0" 1451 | path-is-absolute "^1.0.0" 1452 | 1453 | glob@7.0.5: 1454 | version "7.0.5" 1455 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.5.tgz#b4202a69099bbb4d292a7c1b95b6682b67ebdc95" 1456 | dependencies: 1457 | fs.realpath "^1.0.0" 1458 | inflight "^1.0.4" 1459 | inherits "2" 1460 | minimatch "^3.0.2" 1461 | once "^1.3.0" 1462 | path-is-absolute "^1.0.0" 1463 | 1464 | globals@^9.18.0: 1465 | version "9.18.0" 1466 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1467 | 1468 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1469 | version "4.1.11" 1470 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1471 | 1472 | "graceful-readlink@>= 1.0.0": 1473 | version "1.0.1" 1474 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1475 | 1476 | growl@1.9.2: 1477 | version "1.9.2" 1478 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1479 | 1480 | har-schema@^1.0.5: 1481 | version "1.0.5" 1482 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1483 | 1484 | har-validator@~4.2.1: 1485 | version "4.2.1" 1486 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1487 | dependencies: 1488 | ajv "^4.9.1" 1489 | har-schema "^1.0.5" 1490 | 1491 | has-ansi@^2.0.0: 1492 | version "2.0.0" 1493 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1494 | dependencies: 1495 | ansi-regex "^2.0.0" 1496 | 1497 | has-flag@^1.0.0: 1498 | version "1.0.0" 1499 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1500 | 1501 | has-unicode@^2.0.0: 1502 | version "2.0.1" 1503 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1504 | 1505 | has@^1.0.0, has@^1.0.1: 1506 | version "1.0.1" 1507 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1508 | dependencies: 1509 | function-bind "^1.0.2" 1510 | 1511 | hash-base@^2.0.0: 1512 | version "2.0.2" 1513 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" 1514 | dependencies: 1515 | inherits "^2.0.1" 1516 | 1517 | hash-base@^3.0.0: 1518 | version "3.0.4" 1519 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 1520 | dependencies: 1521 | inherits "^2.0.1" 1522 | safe-buffer "^5.0.1" 1523 | 1524 | hash.js@^1.0.0, hash.js@^1.0.3: 1525 | version "1.1.3" 1526 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" 1527 | dependencies: 1528 | inherits "^2.0.3" 1529 | minimalistic-assert "^1.0.0" 1530 | 1531 | hawk@~3.1.3, hawk@3.1.3: 1532 | version "3.1.3" 1533 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1534 | dependencies: 1535 | boom "2.x.x" 1536 | cryptiles "2.x.x" 1537 | hoek "2.x.x" 1538 | sntp "1.x.x" 1539 | 1540 | hmac-drbg@^1.0.0: 1541 | version "1.0.1" 1542 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1543 | dependencies: 1544 | hash.js "^1.0.3" 1545 | minimalistic-assert "^1.0.0" 1546 | minimalistic-crypto-utils "^1.0.1" 1547 | 1548 | hoek@2.x.x: 1549 | version "2.16.3" 1550 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1551 | 1552 | home-or-tmp@^2.0.0: 1553 | version "2.0.0" 1554 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1555 | dependencies: 1556 | os-homedir "^1.0.0" 1557 | os-tmpdir "^1.0.1" 1558 | 1559 | htmlescape@^1.1.0: 1560 | version "1.1.1" 1561 | resolved "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351" 1562 | 1563 | htmlparser2@^3.9.1: 1564 | version "3.9.2" 1565 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338" 1566 | dependencies: 1567 | domelementtype "^1.3.0" 1568 | domhandler "^2.3.0" 1569 | domutils "^1.5.1" 1570 | entities "^1.1.1" 1571 | inherits "^2.0.1" 1572 | readable-stream "^2.0.2" 1573 | 1574 | http-signature@~1.1.0: 1575 | version "1.1.1" 1576 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1577 | dependencies: 1578 | assert-plus "^0.2.0" 1579 | jsprim "^1.2.2" 1580 | sshpk "^1.7.0" 1581 | 1582 | https-browserify@^1.0.0: 1583 | version "1.0.0" 1584 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 1585 | 1586 | ieee754@^1.1.4: 1587 | version "1.1.8" 1588 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1589 | 1590 | indexof@0.0.1: 1591 | version "0.0.1" 1592 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1593 | 1594 | inflight@^1.0.4: 1595 | version "1.0.6" 1596 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1597 | dependencies: 1598 | once "^1.3.0" 1599 | wrappy "1" 1600 | 1601 | inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3, inherits@2: 1602 | version "2.0.3" 1603 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1604 | 1605 | inherits@2.0.1: 1606 | version "2.0.1" 1607 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1608 | 1609 | ini@~1.3.0: 1610 | version "1.3.5" 1611 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1612 | 1613 | inline-source-map@~0.6.0: 1614 | version "0.6.2" 1615 | resolved "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" 1616 | dependencies: 1617 | source-map "~0.5.3" 1618 | 1619 | insert-module-globals@^7.0.0: 1620 | version "7.0.1" 1621 | resolved "https://registry.yarnpkg.com/insert-module-globals/-/insert-module-globals-7.0.1.tgz#c03bf4e01cb086d5b5e5ace8ad0afe7889d638c3" 1622 | dependencies: 1623 | combine-source-map "~0.7.1" 1624 | concat-stream "~1.5.1" 1625 | is-buffer "^1.1.0" 1626 | JSONStream "^1.0.3" 1627 | lexical-scope "^1.2.0" 1628 | process "~0.11.0" 1629 | through2 "^2.0.0" 1630 | xtend "^4.0.0" 1631 | 1632 | invariant@^2.2.2: 1633 | version "2.2.2" 1634 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1635 | dependencies: 1636 | loose-envify "^1.0.0" 1637 | 1638 | is-binary-path@^1.0.0: 1639 | version "1.0.1" 1640 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1641 | dependencies: 1642 | binary-extensions "^1.0.0" 1643 | 1644 | is-buffer@^1.1.0, is-buffer@^1.1.5: 1645 | version "1.1.6" 1646 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1647 | 1648 | is-callable@^1.1.1, is-callable@^1.1.3: 1649 | version "1.1.3" 1650 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1651 | 1652 | is-date-object@^1.0.1: 1653 | version "1.0.1" 1654 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1655 | 1656 | is-dotfile@^1.0.0: 1657 | version "1.0.3" 1658 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1659 | 1660 | is-equal-shallow@^0.1.3: 1661 | version "0.1.3" 1662 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1663 | dependencies: 1664 | is-primitive "^2.0.0" 1665 | 1666 | is-extendable@^0.1.1: 1667 | version "0.1.1" 1668 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1669 | 1670 | is-extglob@^1.0.0: 1671 | version "1.0.0" 1672 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1673 | 1674 | is-finite@^1.0.0: 1675 | version "1.0.2" 1676 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1677 | dependencies: 1678 | number-is-nan "^1.0.0" 1679 | 1680 | is-fullwidth-code-point@^1.0.0: 1681 | version "1.0.0" 1682 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1683 | dependencies: 1684 | number-is-nan "^1.0.0" 1685 | 1686 | is-glob@^2.0.0, is-glob@^2.0.1: 1687 | version "2.0.1" 1688 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1689 | dependencies: 1690 | is-extglob "^1.0.0" 1691 | 1692 | is-number@^2.1.0: 1693 | version "2.1.0" 1694 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1695 | dependencies: 1696 | kind-of "^3.0.2" 1697 | 1698 | is-number@^3.0.0: 1699 | version "3.0.0" 1700 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1701 | dependencies: 1702 | kind-of "^3.0.2" 1703 | 1704 | is-posix-bracket@^0.1.0: 1705 | version "0.1.1" 1706 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1707 | 1708 | is-primitive@^2.0.0: 1709 | version "2.0.0" 1710 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1711 | 1712 | is-regex@^1.0.4: 1713 | version "1.0.4" 1714 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1715 | dependencies: 1716 | has "^1.0.1" 1717 | 1718 | is-subset@^0.1.1: 1719 | version "0.1.1" 1720 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" 1721 | 1722 | is-symbol@^1.0.1: 1723 | version "1.0.1" 1724 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1725 | 1726 | is-typedarray@~1.0.0: 1727 | version "1.0.0" 1728 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1729 | 1730 | isarray@~0.0.1, isarray@0.0.1: 1731 | version "0.0.1" 1732 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1733 | 1734 | isarray@~1.0.0, isarray@1.0.0: 1735 | version "1.0.0" 1736 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1737 | 1738 | isobject@^2.0.0: 1739 | version "2.1.0" 1740 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1741 | dependencies: 1742 | isarray "1.0.0" 1743 | 1744 | isstream@~0.1.2: 1745 | version "0.1.2" 1746 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1747 | 1748 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1749 | version "3.0.2" 1750 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1751 | 1752 | jsbn@~0.1.0: 1753 | version "0.1.1" 1754 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1755 | 1756 | jsesc@^1.3.0: 1757 | version "1.3.0" 1758 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1759 | 1760 | jsesc@~0.5.0: 1761 | version "0.5.0" 1762 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1763 | 1764 | json-schema@0.2.3: 1765 | version "0.2.3" 1766 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1767 | 1768 | json-stable-stringify@^1.0.1: 1769 | version "1.0.1" 1770 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1771 | dependencies: 1772 | jsonify "~0.0.0" 1773 | 1774 | json-stable-stringify@~0.0.0: 1775 | version "0.0.1" 1776 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45" 1777 | dependencies: 1778 | jsonify "~0.0.0" 1779 | 1780 | json-stringify-safe@~5.0.1: 1781 | version "5.0.1" 1782 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1783 | 1784 | json3@3.3.2: 1785 | version "3.3.2" 1786 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1787 | 1788 | json5@^0.5.1: 1789 | version "0.5.1" 1790 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1791 | 1792 | jsonify@~0.0.0: 1793 | version "0.0.0" 1794 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1795 | 1796 | jsonparse@^1.2.0: 1797 | version "1.3.1" 1798 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 1799 | 1800 | JSONStream@^1.0.3: 1801 | version "1.3.1" 1802 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.1.tgz#707f761e01dae9e16f1bcf93703b78c70966579a" 1803 | dependencies: 1804 | jsonparse "^1.2.0" 1805 | through ">=2.2.7 <3" 1806 | 1807 | jsprim@^1.2.2: 1808 | version "1.4.1" 1809 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1810 | dependencies: 1811 | assert-plus "1.0.0" 1812 | extsprintf "1.3.0" 1813 | json-schema "0.2.3" 1814 | verror "1.10.0" 1815 | 1816 | kind-of@^3.0.2: 1817 | version "3.2.2" 1818 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1819 | dependencies: 1820 | is-buffer "^1.1.5" 1821 | 1822 | kind-of@^4.0.0: 1823 | version "4.0.0" 1824 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1825 | dependencies: 1826 | is-buffer "^1.1.5" 1827 | 1828 | labeled-stream-splicer@^2.0.0: 1829 | version "2.0.0" 1830 | resolved "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz#a52e1d138024c00b86b1c0c91f677918b8ae0a59" 1831 | dependencies: 1832 | inherits "^2.0.1" 1833 | isarray "~0.0.1" 1834 | stream-splicer "^2.0.0" 1835 | 1836 | lexical-scope@^1.2.0: 1837 | version "1.2.0" 1838 | resolved "https://registry.yarnpkg.com/lexical-scope/-/lexical-scope-1.2.0.tgz#fcea5edc704a4b3a8796cdca419c3a0afaf22df4" 1839 | dependencies: 1840 | astw "^2.0.0" 1841 | 1842 | lodash._baseassign@^3.0.0: 1843 | version "3.2.0" 1844 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1845 | dependencies: 1846 | lodash._basecopy "^3.0.0" 1847 | lodash.keys "^3.0.0" 1848 | 1849 | lodash._basecopy@^3.0.0: 1850 | version "3.0.1" 1851 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1852 | 1853 | lodash._basecreate@^3.0.0: 1854 | version "3.0.3" 1855 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 1856 | 1857 | lodash._getnative@^3.0.0: 1858 | version "3.9.1" 1859 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1860 | 1861 | lodash._isiterateecall@^3.0.0: 1862 | version "3.0.9" 1863 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1864 | 1865 | lodash.assignin@^4.0.9: 1866 | version "4.2.0" 1867 | resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" 1868 | 1869 | lodash.bind@^4.1.4: 1870 | version "4.2.1" 1871 | resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" 1872 | 1873 | lodash.create@3.1.1: 1874 | version "3.1.1" 1875 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 1876 | dependencies: 1877 | lodash._baseassign "^3.0.0" 1878 | lodash._basecreate "^3.0.0" 1879 | lodash._isiterateecall "^3.0.0" 1880 | 1881 | lodash.defaults@^4.0.1: 1882 | version "4.2.0" 1883 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" 1884 | 1885 | lodash.filter@^4.4.0: 1886 | version "4.6.0" 1887 | resolved "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" 1888 | 1889 | lodash.flatten@^4.2.0: 1890 | version "4.4.0" 1891 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 1892 | 1893 | lodash.foreach@^4.3.0: 1894 | version "4.5.0" 1895 | resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" 1896 | 1897 | lodash.isarguments@^3.0.0: 1898 | version "3.1.0" 1899 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1900 | 1901 | lodash.isarray@^3.0.0: 1902 | version "3.0.4" 1903 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1904 | 1905 | lodash.keys@^3.0.0: 1906 | version "3.1.2" 1907 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1908 | dependencies: 1909 | lodash._getnative "^3.0.0" 1910 | lodash.isarguments "^3.0.0" 1911 | lodash.isarray "^3.0.0" 1912 | 1913 | lodash.map@^4.4.0: 1914 | version "4.6.0" 1915 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" 1916 | 1917 | lodash.memoize@~3.0.3: 1918 | version "3.0.4" 1919 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" 1920 | 1921 | lodash.merge@^4.4.0: 1922 | version "4.6.0" 1923 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 1924 | 1925 | lodash.pick@^4.2.1: 1926 | version "4.4.0" 1927 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" 1928 | 1929 | lodash.reduce@^4.4.0: 1930 | version "4.6.0" 1931 | resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" 1932 | 1933 | lodash.reject@^4.4.0: 1934 | version "4.6.0" 1935 | resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" 1936 | 1937 | lodash.some@^4.4.0: 1938 | version "4.6.0" 1939 | resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" 1940 | 1941 | lodash@^4.17.2, lodash@^4.17.4, lodash@^4.2.0: 1942 | version "4.17.4" 1943 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1944 | 1945 | lolex@^1.6.0: 1946 | version "1.6.0" 1947 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-1.6.0.tgz#3a9a0283452a47d7439e72731b9e07d7386e49f6" 1948 | 1949 | loose-envify@^1.0.0: 1950 | version "1.3.1" 1951 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1952 | dependencies: 1953 | js-tokens "^3.0.0" 1954 | 1955 | md5.js@^1.3.4: 1956 | version "1.3.4" 1957 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" 1958 | dependencies: 1959 | hash-base "^3.0.0" 1960 | inherits "^2.0.1" 1961 | 1962 | micromatch@^2.1.5: 1963 | version "2.3.11" 1964 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1965 | dependencies: 1966 | arr-diff "^2.0.0" 1967 | array-unique "^0.2.1" 1968 | braces "^1.8.2" 1969 | expand-brackets "^0.1.4" 1970 | extglob "^0.3.1" 1971 | filename-regex "^2.0.0" 1972 | is-extglob "^1.0.0" 1973 | is-glob "^2.0.1" 1974 | kind-of "^3.0.2" 1975 | normalize-path "^2.0.1" 1976 | object.omit "^2.0.0" 1977 | parse-glob "^3.0.4" 1978 | regex-cache "^0.4.2" 1979 | 1980 | miller-rabin@^4.0.0: 1981 | version "4.0.1" 1982 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 1983 | dependencies: 1984 | bn.js "^4.0.0" 1985 | brorand "^1.0.1" 1986 | 1987 | mime-db@~1.30.0: 1988 | version "1.30.0" 1989 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1990 | 1991 | mime-types@^2.1.12, mime-types@~2.1.7: 1992 | version "2.1.17" 1993 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1994 | dependencies: 1995 | mime-db "~1.30.0" 1996 | 1997 | minimalistic-assert@^1.0.0: 1998 | version "1.0.0" 1999 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 2000 | 2001 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 2002 | version "1.0.1" 2003 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 2004 | 2005 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 2006 | version "3.0.4" 2007 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2008 | dependencies: 2009 | brace-expansion "^1.1.7" 2010 | 2011 | minimist@^1.1.0, minimist@^1.2.0: 2012 | version "1.2.0" 2013 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2014 | 2015 | minimist@0.0.8: 2016 | version "0.0.8" 2017 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2018 | 2019 | mkdirp@^0.5.1, "mkdirp@>=0.5 0", mkdirp@0.5.1: 2020 | version "0.5.1" 2021 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2022 | dependencies: 2023 | minimist "0.0.8" 2024 | 2025 | mocha@3.2.0: 2026 | version "3.2.0" 2027 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.2.0.tgz#7dc4f45e5088075171a68896814e6ae9eb7a85e3" 2028 | dependencies: 2029 | browser-stdout "1.3.0" 2030 | commander "2.9.0" 2031 | debug "2.2.0" 2032 | diff "1.4.0" 2033 | escape-string-regexp "1.0.5" 2034 | glob "7.0.5" 2035 | growl "1.9.2" 2036 | json3 "3.3.2" 2037 | lodash.create "3.1.1" 2038 | mkdirp "0.5.1" 2039 | supports-color "3.1.2" 2040 | 2041 | module-deps@^4.0.8: 2042 | version "4.1.1" 2043 | resolved "https://registry.yarnpkg.com/module-deps/-/module-deps-4.1.1.tgz#23215833f1da13fd606ccb8087b44852dcb821fd" 2044 | dependencies: 2045 | browser-resolve "^1.7.0" 2046 | cached-path-relative "^1.0.0" 2047 | concat-stream "~1.5.0" 2048 | defined "^1.0.0" 2049 | detective "^4.0.0" 2050 | duplexer2 "^0.1.2" 2051 | inherits "^2.0.1" 2052 | JSONStream "^1.0.3" 2053 | parents "^1.0.0" 2054 | readable-stream "^2.0.2" 2055 | resolve "^1.1.3" 2056 | stream-combiner2 "^1.1.1" 2057 | subarg "^1.0.0" 2058 | through2 "^2.0.0" 2059 | xtend "^4.0.0" 2060 | 2061 | ms@0.7.1: 2062 | version "0.7.1" 2063 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2064 | 2065 | ms@2.0.0: 2066 | version "2.0.0" 2067 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2068 | 2069 | nan@^2.3.0: 2070 | version "2.8.0" 2071 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 2072 | 2073 | native-promise-only@^0.8.1: 2074 | version "0.8.1" 2075 | resolved "https://registry.yarnpkg.com/native-promise-only/-/native-promise-only-0.8.1.tgz#20a318c30cb45f71fe7adfbf7b21c99c1472ef11" 2076 | 2077 | node-pre-gyp@^0.6.39: 2078 | version "0.6.39" 2079 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2080 | dependencies: 2081 | detect-libc "^1.0.2" 2082 | hawk "3.1.3" 2083 | mkdirp "^0.5.1" 2084 | nopt "^4.0.1" 2085 | npmlog "^4.0.2" 2086 | rc "^1.1.7" 2087 | request "2.81.0" 2088 | rimraf "^2.6.1" 2089 | semver "^5.3.0" 2090 | tar "^2.2.1" 2091 | tar-pack "^3.4.0" 2092 | 2093 | nopt@^4.0.1: 2094 | version "4.0.1" 2095 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2096 | dependencies: 2097 | abbrev "1" 2098 | osenv "^0.1.4" 2099 | 2100 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2101 | version "2.1.1" 2102 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2103 | dependencies: 2104 | remove-trailing-separator "^1.0.1" 2105 | 2106 | npmlog@^4.0.2: 2107 | version "4.1.2" 2108 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2109 | dependencies: 2110 | are-we-there-yet "~1.1.2" 2111 | console-control-strings "~1.1.0" 2112 | gauge "~2.7.3" 2113 | set-blocking "~2.0.0" 2114 | 2115 | nth-check@~1.0.1: 2116 | version "1.0.1" 2117 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" 2118 | dependencies: 2119 | boolbase "~1.0.0" 2120 | 2121 | number-is-nan@^1.0.0: 2122 | version "1.0.1" 2123 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2124 | 2125 | oauth-sign@~0.8.1: 2126 | version "0.8.2" 2127 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2128 | 2129 | object-assign@^4.1.0: 2130 | version "4.1.1" 2131 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2132 | 2133 | object-is@^1.0.1: 2134 | version "1.0.1" 2135 | resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.1.tgz#0aa60ec9989a0b3ed795cf4d06f62cf1ad6539b6" 2136 | 2137 | object-keys@^1.0.10, object-keys@^1.0.8: 2138 | version "1.0.11" 2139 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2140 | 2141 | object.assign@^4.0.4: 2142 | version "4.0.4" 2143 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc" 2144 | dependencies: 2145 | define-properties "^1.1.2" 2146 | function-bind "^1.1.0" 2147 | object-keys "^1.0.10" 2148 | 2149 | object.entries@^1.0.3: 2150 | version "1.0.4" 2151 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.0.4.tgz#1bf9a4dd2288f5b33f3a993d257661f05d161a5f" 2152 | dependencies: 2153 | define-properties "^1.1.2" 2154 | es-abstract "^1.6.1" 2155 | function-bind "^1.1.0" 2156 | has "^1.0.1" 2157 | 2158 | object.omit@^2.0.0: 2159 | version "2.0.1" 2160 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2161 | dependencies: 2162 | for-own "^0.1.4" 2163 | is-extendable "^0.1.1" 2164 | 2165 | object.values@^1.0.3: 2166 | version "1.0.4" 2167 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.0.4.tgz#e524da09b4f66ff05df457546ec72ac99f13069a" 2168 | dependencies: 2169 | define-properties "^1.1.2" 2170 | es-abstract "^1.6.1" 2171 | function-bind "^1.1.0" 2172 | has "^1.0.1" 2173 | 2174 | once@^1.3.0, once@^1.3.3: 2175 | version "1.4.0" 2176 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2177 | dependencies: 2178 | wrappy "1" 2179 | 2180 | os-browserify@~0.3.0: 2181 | version "0.3.0" 2182 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 2183 | 2184 | os-homedir@^1.0.0: 2185 | version "1.0.2" 2186 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2187 | 2188 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2189 | version "1.0.2" 2190 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2191 | 2192 | osenv@^0.1.4: 2193 | version "0.1.4" 2194 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2195 | dependencies: 2196 | os-homedir "^1.0.0" 2197 | os-tmpdir "^1.0.0" 2198 | 2199 | output-file-sync@^1.1.0: 2200 | version "1.1.2" 2201 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2202 | dependencies: 2203 | graceful-fs "^4.1.4" 2204 | mkdirp "^0.5.1" 2205 | object-assign "^4.1.0" 2206 | 2207 | pako@~1.0.5: 2208 | version "1.0.6" 2209 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" 2210 | 2211 | parents@^1.0.0, parents@^1.0.1: 2212 | version "1.0.1" 2213 | resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" 2214 | dependencies: 2215 | path-platform "~0.11.15" 2216 | 2217 | parse-asn1@^5.0.0: 2218 | version "5.1.0" 2219 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 2220 | dependencies: 2221 | asn1.js "^4.0.0" 2222 | browserify-aes "^1.0.0" 2223 | create-hash "^1.1.0" 2224 | evp_bytestokey "^1.0.0" 2225 | pbkdf2 "^3.0.3" 2226 | 2227 | parse-glob@^3.0.4: 2228 | version "3.0.4" 2229 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2230 | dependencies: 2231 | glob-base "^0.3.0" 2232 | is-dotfile "^1.0.0" 2233 | is-extglob "^1.0.0" 2234 | is-glob "^2.0.0" 2235 | 2236 | path-browserify@~0.0.0: 2237 | version "0.0.0" 2238 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2239 | 2240 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2241 | version "1.0.1" 2242 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2243 | 2244 | path-parse@^1.0.5: 2245 | version "1.0.5" 2246 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2247 | 2248 | path-platform@~0.11.15: 2249 | version "0.11.15" 2250 | resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" 2251 | 2252 | path-to-regexp@^1.7.0: 2253 | version "1.7.0" 2254 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" 2255 | dependencies: 2256 | isarray "0.0.1" 2257 | 2258 | pbkdf2@^3.0.3: 2259 | version "3.0.14" 2260 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" 2261 | dependencies: 2262 | create-hash "^1.1.2" 2263 | create-hmac "^1.1.4" 2264 | ripemd160 "^2.0.1" 2265 | safe-buffer "^5.0.1" 2266 | sha.js "^2.4.8" 2267 | 2268 | performance-now@^0.2.0: 2269 | version "0.2.0" 2270 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2271 | 2272 | preserve@^0.2.0: 2273 | version "0.2.0" 2274 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2275 | 2276 | private@^0.1.6, private@^0.1.7: 2277 | version "0.1.8" 2278 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2279 | 2280 | process-nextick-args@~1.0.6: 2281 | version "1.0.7" 2282 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2283 | 2284 | process@~0.11.0: 2285 | version "0.11.10" 2286 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 2287 | 2288 | public-encrypt@^4.0.0: 2289 | version "4.0.0" 2290 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 2291 | dependencies: 2292 | bn.js "^4.1.0" 2293 | browserify-rsa "^4.0.0" 2294 | create-hash "^1.1.0" 2295 | parse-asn1 "^5.0.0" 2296 | randombytes "^2.0.1" 2297 | 2298 | punycode@^1.3.2, punycode@^1.4.1: 2299 | version "1.4.1" 2300 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2301 | 2302 | punycode@1.3.2: 2303 | version "1.3.2" 2304 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2305 | 2306 | qs@~6.4.0: 2307 | version "6.4.0" 2308 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2309 | 2310 | querystring-es3@~0.2.0: 2311 | version "0.2.1" 2312 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2313 | 2314 | querystring@0.2.0: 2315 | version "0.2.0" 2316 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2317 | 2318 | randomatic@^1.1.3: 2319 | version "1.1.7" 2320 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2321 | dependencies: 2322 | is-number "^3.0.0" 2323 | kind-of "^4.0.0" 2324 | 2325 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: 2326 | version "2.0.5" 2327 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79" 2328 | dependencies: 2329 | safe-buffer "^5.1.0" 2330 | 2331 | randomfill@^1.0.3: 2332 | version "1.0.3" 2333 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.3.tgz#b96b7df587f01dd91726c418f30553b1418e3d62" 2334 | dependencies: 2335 | randombytes "^2.0.5" 2336 | safe-buffer "^5.1.0" 2337 | 2338 | rc@^1.1.7: 2339 | version "1.2.2" 2340 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 2341 | dependencies: 2342 | deep-extend "~0.4.0" 2343 | ini "~1.3.0" 2344 | minimist "^1.2.0" 2345 | strip-json-comments "~2.0.1" 2346 | 2347 | read-only-stream@^2.0.0: 2348 | version "2.0.0" 2349 | resolved "https://registry.yarnpkg.com/read-only-stream/-/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0" 2350 | dependencies: 2351 | readable-stream "^2.0.2" 2352 | 2353 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.6: 2354 | version "2.3.3" 2355 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2356 | dependencies: 2357 | core-util-is "~1.0.0" 2358 | inherits "~2.0.3" 2359 | isarray "~1.0.0" 2360 | process-nextick-args "~1.0.6" 2361 | safe-buffer "~5.1.1" 2362 | string_decoder "~1.0.3" 2363 | util-deprecate "~1.0.1" 2364 | 2365 | readable-stream@~2.0.0: 2366 | version "2.0.6" 2367 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 2368 | dependencies: 2369 | core-util-is "~1.0.0" 2370 | inherits "~2.0.1" 2371 | isarray "~1.0.0" 2372 | process-nextick-args "~1.0.6" 2373 | string_decoder "~0.10.x" 2374 | util-deprecate "~1.0.1" 2375 | 2376 | readdirp@^2.0.0: 2377 | version "2.1.0" 2378 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2379 | dependencies: 2380 | graceful-fs "^4.1.2" 2381 | minimatch "^3.0.2" 2382 | readable-stream "^2.0.2" 2383 | set-immediate-shim "^1.0.1" 2384 | 2385 | regenerate@^1.2.1: 2386 | version "1.3.3" 2387 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2388 | 2389 | regenerator-runtime@^0.10.0, regenerator-runtime@^0.10.5: 2390 | version "0.10.5" 2391 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2392 | 2393 | regenerator-runtime@^0.11.0: 2394 | version "0.11.0" 2395 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 2396 | 2397 | regenerator-transform@^0.10.0: 2398 | version "0.10.1" 2399 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2400 | dependencies: 2401 | babel-runtime "^6.18.0" 2402 | babel-types "^6.19.0" 2403 | private "^0.1.6" 2404 | 2405 | regex-cache@^0.4.2: 2406 | version "0.4.4" 2407 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2408 | dependencies: 2409 | is-equal-shallow "^0.1.3" 2410 | 2411 | regexpu-core@^2.0.0: 2412 | version "2.0.0" 2413 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2414 | dependencies: 2415 | regenerate "^1.2.1" 2416 | regjsgen "^0.2.0" 2417 | regjsparser "^0.1.4" 2418 | 2419 | regjsgen@^0.2.0: 2420 | version "0.2.0" 2421 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2422 | 2423 | regjsparser@^0.1.4: 2424 | version "0.1.5" 2425 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2426 | dependencies: 2427 | jsesc "~0.5.0" 2428 | 2429 | remove-trailing-separator@^1.0.1: 2430 | version "1.1.0" 2431 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2432 | 2433 | repeat-element@^1.1.2: 2434 | version "1.1.2" 2435 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2436 | 2437 | repeat-string@^1.5.2: 2438 | version "1.6.1" 2439 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2440 | 2441 | repeating@^2.0.0: 2442 | version "2.0.1" 2443 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2444 | dependencies: 2445 | is-finite "^1.0.0" 2446 | 2447 | request@2.81.0: 2448 | version "2.81.0" 2449 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2450 | dependencies: 2451 | aws-sign2 "~0.6.0" 2452 | aws4 "^1.2.1" 2453 | caseless "~0.12.0" 2454 | combined-stream "~1.0.5" 2455 | extend "~3.0.0" 2456 | forever-agent "~0.6.1" 2457 | form-data "~2.1.1" 2458 | har-validator "~4.2.1" 2459 | hawk "~3.1.3" 2460 | http-signature "~1.1.0" 2461 | is-typedarray "~1.0.0" 2462 | isstream "~0.1.2" 2463 | json-stringify-safe "~5.0.1" 2464 | mime-types "~2.1.7" 2465 | oauth-sign "~0.8.1" 2466 | performance-now "^0.2.0" 2467 | qs "~6.4.0" 2468 | safe-buffer "^5.0.1" 2469 | stringstream "~0.0.4" 2470 | tough-cookie "~2.3.0" 2471 | tunnel-agent "^0.6.0" 2472 | uuid "^3.0.0" 2473 | 2474 | resolve@^1.1.3, resolve@^1.1.4: 2475 | version "1.5.0" 2476 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 2477 | dependencies: 2478 | path-parse "^1.0.5" 2479 | 2480 | resolve@1.1.7: 2481 | version "1.1.7" 2482 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2483 | 2484 | rimraf@^2.5.1, rimraf@^2.6.1, rimraf@2: 2485 | version "2.6.2" 2486 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2487 | dependencies: 2488 | glob "^7.0.5" 2489 | 2490 | ripemd160@^2.0.0, ripemd160@^2.0.1: 2491 | version "2.0.1" 2492 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" 2493 | dependencies: 2494 | hash-base "^2.0.0" 2495 | inherits "^2.0.1" 2496 | 2497 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2498 | version "5.1.1" 2499 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2500 | 2501 | samsam@^1.1.3, samsam@1.x: 2502 | version "1.3.0" 2503 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.3.0.tgz#8d1d9350e25622da30de3e44ba692b5221ab7c50" 2504 | 2505 | semver@^5.3.0: 2506 | version "5.4.1" 2507 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2508 | 2509 | set-blocking@~2.0.0: 2510 | version "2.0.0" 2511 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2512 | 2513 | set-immediate-shim@^1.0.1: 2514 | version "1.0.1" 2515 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2516 | 2517 | sha.js@^2.4.0, sha.js@^2.4.8, sha.js@~2.4.4: 2518 | version "2.4.9" 2519 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d" 2520 | dependencies: 2521 | inherits "^2.0.1" 2522 | safe-buffer "^5.0.1" 2523 | 2524 | shasum@^1.0.0: 2525 | version "1.0.2" 2526 | resolved "https://registry.yarnpkg.com/shasum/-/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f" 2527 | dependencies: 2528 | json-stable-stringify "~0.0.0" 2529 | sha.js "~2.4.4" 2530 | 2531 | shell-quote@^1.6.1: 2532 | version "1.6.1" 2533 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 2534 | dependencies: 2535 | array-filter "~0.0.0" 2536 | array-map "~0.0.0" 2537 | array-reduce "~0.0.0" 2538 | jsonify "~0.0.0" 2539 | 2540 | signal-exit@^3.0.0: 2541 | version "3.0.2" 2542 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2543 | 2544 | sinon-chai@2.9.0: 2545 | version "2.9.0" 2546 | resolved "https://registry.yarnpkg.com/sinon-chai/-/sinon-chai-2.9.0.tgz#34d820042bc9661a14527130d401eb462c49bb84" 2547 | 2548 | sinon@2.0.0: 2549 | version "2.0.0" 2550 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-2.0.0.tgz#48337fa489069e530ad7e2f44f07b0ae93d37b24" 2551 | dependencies: 2552 | diff "^3.1.0" 2553 | formatio "1.2.0" 2554 | lolex "^1.6.0" 2555 | native-promise-only "^0.8.1" 2556 | path-to-regexp "^1.7.0" 2557 | samsam "^1.1.3" 2558 | text-encoding "0.6.4" 2559 | type-detect "^4.0.0" 2560 | 2561 | slash@^1.0.0: 2562 | version "1.0.0" 2563 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2564 | 2565 | sntp@1.x.x: 2566 | version "1.0.9" 2567 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2568 | dependencies: 2569 | hoek "2.x.x" 2570 | 2571 | source-map-support@^0.4.15, source-map-support@^0.4.2: 2572 | version "0.4.18" 2573 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2574 | dependencies: 2575 | source-map "^0.5.6" 2576 | 2577 | source-map@^0.5.0, source-map@^0.5.6, source-map@~0.5.3: 2578 | version "0.5.7" 2579 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2580 | 2581 | source-map@~0.6.1: 2582 | version "0.6.1" 2583 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2584 | 2585 | sshpk@^1.7.0: 2586 | version "1.13.1" 2587 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2588 | dependencies: 2589 | asn1 "~0.2.3" 2590 | assert-plus "^1.0.0" 2591 | dashdash "^1.12.0" 2592 | getpass "^0.1.1" 2593 | optionalDependencies: 2594 | bcrypt-pbkdf "^1.0.0" 2595 | ecc-jsbn "~0.1.1" 2596 | jsbn "~0.1.0" 2597 | tweetnacl "~0.14.0" 2598 | 2599 | stream-browserify@^2.0.0: 2600 | version "2.0.1" 2601 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 2602 | dependencies: 2603 | inherits "~2.0.1" 2604 | readable-stream "^2.0.2" 2605 | 2606 | stream-combiner2@^1.1.1: 2607 | version "1.1.1" 2608 | resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" 2609 | dependencies: 2610 | duplexer2 "~0.1.0" 2611 | readable-stream "^2.0.2" 2612 | 2613 | stream-http@^2.0.0: 2614 | version "2.7.2" 2615 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" 2616 | dependencies: 2617 | builtin-status-codes "^3.0.0" 2618 | inherits "^2.0.1" 2619 | readable-stream "^2.2.6" 2620 | to-arraybuffer "^1.0.0" 2621 | xtend "^4.0.0" 2622 | 2623 | stream-splicer@^2.0.0: 2624 | version "2.0.0" 2625 | resolved "https://registry.yarnpkg.com/stream-splicer/-/stream-splicer-2.0.0.tgz#1b63be438a133e4b671cc1935197600175910d83" 2626 | dependencies: 2627 | inherits "^2.0.1" 2628 | readable-stream "^2.0.2" 2629 | 2630 | string_decoder@~0.10.x: 2631 | version "0.10.31" 2632 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2633 | 2634 | string_decoder@~1.0.0, string_decoder@~1.0.3: 2635 | version "1.0.3" 2636 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2637 | dependencies: 2638 | safe-buffer "~5.1.0" 2639 | 2640 | string-width@^1.0.1, string-width@^1.0.2: 2641 | version "1.0.2" 2642 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2643 | dependencies: 2644 | code-point-at "^1.0.0" 2645 | is-fullwidth-code-point "^1.0.0" 2646 | strip-ansi "^3.0.0" 2647 | 2648 | stringstream@~0.0.4: 2649 | version "0.0.5" 2650 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2651 | 2652 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2653 | version "3.0.1" 2654 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2655 | dependencies: 2656 | ansi-regex "^2.0.0" 2657 | 2658 | strip-json-comments@~2.0.1: 2659 | version "2.0.1" 2660 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2661 | 2662 | subarg@^1.0.0: 2663 | version "1.0.0" 2664 | resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" 2665 | dependencies: 2666 | minimist "^1.1.0" 2667 | 2668 | supports-color@^2.0.0: 2669 | version "2.0.0" 2670 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2671 | 2672 | supports-color@3.1.2: 2673 | version "3.1.2" 2674 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 2675 | dependencies: 2676 | has-flag "^1.0.0" 2677 | 2678 | syntax-error@^1.1.1: 2679 | version "1.3.0" 2680 | resolved "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.3.0.tgz#1ed9266c4d40be75dc55bf9bb1cb77062bb96ca1" 2681 | dependencies: 2682 | acorn "^4.0.3" 2683 | 2684 | tar-pack@^3.4.0: 2685 | version "3.4.1" 2686 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2687 | dependencies: 2688 | debug "^2.2.0" 2689 | fstream "^1.0.10" 2690 | fstream-ignore "^1.0.5" 2691 | once "^1.3.3" 2692 | readable-stream "^2.1.4" 2693 | rimraf "^2.5.1" 2694 | tar "^2.2.1" 2695 | uid-number "^0.0.6" 2696 | 2697 | tar@^2.2.1: 2698 | version "2.2.1" 2699 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2700 | dependencies: 2701 | block-stream "*" 2702 | fstream "^1.0.2" 2703 | inherits "2" 2704 | 2705 | text-encoding@0.6.4: 2706 | version "0.6.4" 2707 | resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.6.4.tgz#e399a982257a276dae428bb92845cb71bdc26d19" 2708 | 2709 | "through@>=2.2.7 <3": 2710 | version "2.3.8" 2711 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2712 | 2713 | through2@^2.0.0: 2714 | version "2.0.3" 2715 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2716 | dependencies: 2717 | readable-stream "^2.1.5" 2718 | xtend "~4.0.1" 2719 | 2720 | timers-browserify@^1.0.1: 2721 | version "1.4.2" 2722 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" 2723 | dependencies: 2724 | process "~0.11.0" 2725 | 2726 | to-arraybuffer@^1.0.0: 2727 | version "1.0.1" 2728 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 2729 | 2730 | to-fast-properties@^1.0.3: 2731 | version "1.0.3" 2732 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2733 | 2734 | tough-cookie@~2.3.0: 2735 | version "2.3.3" 2736 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2737 | dependencies: 2738 | punycode "^1.4.1" 2739 | 2740 | trim-right@^1.0.1: 2741 | version "1.0.1" 2742 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2743 | 2744 | tty-browserify@~0.0.0: 2745 | version "0.0.0" 2746 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 2747 | 2748 | tunnel-agent@^0.6.0: 2749 | version "0.6.0" 2750 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2751 | dependencies: 2752 | safe-buffer "^5.0.1" 2753 | 2754 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2755 | version "0.14.5" 2756 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2757 | 2758 | type-detect@^1.0.0: 2759 | version "1.0.0" 2760 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 2761 | 2762 | type-detect@^4.0.0: 2763 | version "4.0.5" 2764 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.5.tgz#d70e5bc81db6de2a381bcaca0c6e0cbdc7635de2" 2765 | 2766 | type-detect@0.1.1: 2767 | version "0.1.1" 2768 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 2769 | 2770 | typedarray@~0.0.5: 2771 | version "0.0.6" 2772 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2773 | 2774 | uglify-js@^3.0.28: 2775 | version "3.1.10" 2776 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.1.10.tgz#c4a5f9b5c6276b40cb971c1d97c9eeb26af9509c" 2777 | dependencies: 2778 | commander "~2.11.0" 2779 | source-map "~0.6.1" 2780 | 2781 | uid-number@^0.0.6: 2782 | version "0.0.6" 2783 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2784 | 2785 | umd@^3.0.0: 2786 | version "3.0.1" 2787 | resolved "https://registry.yarnpkg.com/umd/-/umd-3.0.1.tgz#8ae556e11011f63c2596708a8837259f01b3d60e" 2788 | 2789 | url@~0.11.0: 2790 | version "0.11.0" 2791 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 2792 | dependencies: 2793 | punycode "1.3.2" 2794 | querystring "0.2.0" 2795 | 2796 | user-home@^1.1.1: 2797 | version "1.1.1" 2798 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2799 | 2800 | util-deprecate@~1.0.1: 2801 | version "1.0.2" 2802 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2803 | 2804 | util@~0.10.1, util@0.10.3: 2805 | version "0.10.3" 2806 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 2807 | dependencies: 2808 | inherits "2.0.1" 2809 | 2810 | uuid@^2.0.3: 2811 | version "2.0.3" 2812 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 2813 | 2814 | uuid@^3.0.0: 2815 | version "3.1.0" 2816 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2817 | 2818 | v8flags@^2.0.10: 2819 | version "2.1.1" 2820 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 2821 | dependencies: 2822 | user-home "^1.1.1" 2823 | 2824 | verror@1.10.0: 2825 | version "1.10.0" 2826 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2827 | dependencies: 2828 | assert-plus "^1.0.0" 2829 | core-util-is "1.0.2" 2830 | extsprintf "^1.2.0" 2831 | 2832 | vm-browserify@~0.0.1: 2833 | version "0.0.4" 2834 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 2835 | dependencies: 2836 | indexof "0.0.1" 2837 | 2838 | wide-align@^1.1.0: 2839 | version "1.1.2" 2840 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2841 | dependencies: 2842 | string-width "^1.0.2" 2843 | 2844 | wrappy@1: 2845 | version "1.0.2" 2846 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2847 | 2848 | xtend@^4.0.0, xtend@~4.0.1: 2849 | version "4.0.1" 2850 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2851 | 2852 | --------------------------------------------------------------------------------