├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── dist └── index.js ├── examples ├── example-1.md └── example-2.md ├── index.js ├── package.json ├── scripts └── mocha_runner.js ├── src ├── __tests__ │ ├── isIdle.js │ ├── isRunning.js │ ├── sample.js │ ├── task-cancellation.js │ ├── test-components │ │ └── AsyncButton.js │ └── timeout.js └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-2", "react"] 3 | } -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "env": { 4 | "browser": true, 5 | "node": true, 6 | "es6": true 7 | }, 8 | "ecmaFeatures": { 9 | "modules": true 10 | }, 11 | "rules": { 12 | "no-bitwise": 2, 13 | "no-else-return": 2, 14 | "no-eq-null": 2, 15 | "no-extra-parens": 0, 16 | "no-floating-decimal": 2, 17 | "no-inner-declarations": [2, "both"], 18 | "no-lonely-if": 2, 19 | "no-multiple-empty-lines": [2, {"max": 3}], 20 | "no-self-compare": 2, 21 | "no-underscore-dangle": 0, 22 | "no-use-before-define": 0, 23 | "no-unused-expressions": 0, 24 | "no-void": 2, 25 | "brace-style": [2, "1tbs"], 26 | "camelcase": [1, {"properties": "never"}], 27 | "consistent-return": 0, 28 | "comma-style": [2, "last"], 29 | "complexity": [1, 12], 30 | "func-names": 0, 31 | "guard-for-in": 2, 32 | "indent": [0, 2], 33 | "max-len": [0, 120, 4], 34 | "new-cap": [2, {"newIsCap": true, "capIsNew": false}], 35 | "quotes": [2, "single"], 36 | "keyword-spacing": [2, {"before": true, "after": true}], 37 | "space-before-blocks": [2, "always"], 38 | "array-bracket-spacing": [2, "never"], 39 | "space-in-parens": [2, "never"], 40 | "strict": [0], 41 | "valid-jsdoc": 2, 42 | "wrap-iife": [2, "any"], 43 | "yoda": [1, "never"] 44 | }, 45 | "plugins": [ 46 | "react" 47 | ], 48 | "globals": { 49 | 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *~ 3 | *.iml 4 | .*.haste_cache.* 5 | .DS_Store 6 | .idea 7 | npm-debug.log 8 | node_modules 9 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *~ 3 | *.iml 4 | .*.haste_cache.* 5 | .DS_Store 6 | .idea 7 | .babelrc 8 | .eslintrc 9 | npm-debug.log 10 | lib 11 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 7.5.0 4 | install: npm install 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Julian Ćwirko 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Build Status](https://travis-ci.org/skaterdav85/react-concurrency.svg?branch=master)](https://travis-ci.org/skaterdav85/react-concurrency) 2 | 3 | React Concurrency 4 | ================= 5 | 6 | An implementation of [ember-concurrency](http://ember-concurrency.com/) for React components. This is still a work in progress. 7 | 8 | ## Current Implemented Features 9 | 10 | * Tasks get automatically canceled when the component they live on is destroyed 11 | * Derived state with `isRunning` and `isIdle` flags 12 | * promise based `timeout` 13 | 14 | ## Installation 15 | 16 | ``` 17 | npm install react-concurrency 18 | ``` 19 | 20 | ## Why? 21 | 22 | Have you ever seen the error? 23 | 24 | > Warning: setState(...): Can only update a mounted or mounting component. This usually means you called setState() on an unmounted component. This is a no-op. Please check the code for the YourComponent component. 25 | 26 | There are a few ways to deal with this in React. Read about them [here](https://facebook.github.io/react/blog/2015/12/16/ismounted-antipattern.html). 27 | 28 | In Ember, this is solved with a brilliant addon called [ember-concurrency](http://ember-concurrency.com/). This library attempts to do the same but for React components while keeping a similar API. If you haven't read about ember-concurrency, check out this great article: [ember-concurrency: the solution to so many problems you never knew you had](https://emberway.io/ember-concurrency-the-solution-to-so-many-problems-you-never-knew-you-had-cce6d7731ba9#.e6r0iv44u). 29 | 30 | 31 | * [Example 1](examples/example-1.md) 32 | * [Example 2](examples/example-2.md) 33 | 34 | Run the examples here: [https://github.com/skaterdav85/react-concurrency-demos](https://github.com/skaterdav85/react-concurrency-demos). 35 | 36 | ## About This Repo 37 | 38 | This repo was created with [react-npm-boilerplate](https://github.com/juliancwirko/react-npm-boilerplate). 39 | 40 | 1. Clone this repo 41 | 2. Inside cloned repo run `npm install` 42 | 3. If you want to run tests: `npm test` or `npm run testonly` or `npm run test-watch`. You need to write tests in `__tests__` folder. You need at least Node 4 on your machine to run tests. 43 | 4. If you want to run linting: `npm test` or `npm run lint`. Fix bugs: `npm run lint-fix`. You can adjust your `.eslintrc` config file. 44 | 5. If you want to run transpilation to ES5 in `dist` folder: `npm run prepublish` (standard npm hook). 45 | -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define(['exports', 'react'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(exports, require('react')); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod.exports, global.react); 11 | global.index = mod.exports; 12 | } 13 | })(this, function (exports, _react) { 14 | 'use strict'; 15 | 16 | Object.defineProperty(exports, "__esModule", { 17 | value: true 18 | }); 19 | exports.ConcurrentComponent = undefined; 20 | exports.task = task; 21 | exports.timeout = timeout; 22 | 23 | var _react2 = _interopRequireDefault(_react); 24 | 25 | function _interopRequireDefault(obj) { 26 | return obj && obj.__esModule ? obj : { 27 | default: obj 28 | }; 29 | } 30 | 31 | function _classCallCheck(instance, Constructor) { 32 | if (!(instance instanceof Constructor)) { 33 | throw new TypeError("Cannot call a class as a function"); 34 | } 35 | } 36 | 37 | var _createClass = function () { 38 | function defineProperties(target, props) { 39 | for (var i = 0; i < props.length; i++) { 40 | var descriptor = props[i]; 41 | descriptor.enumerable = descriptor.enumerable || false; 42 | descriptor.configurable = true; 43 | if ("value" in descriptor) descriptor.writable = true; 44 | Object.defineProperty(target, descriptor.key, descriptor); 45 | } 46 | } 47 | 48 | return function (Constructor, protoProps, staticProps) { 49 | if (protoProps) defineProperties(Constructor.prototype, protoProps); 50 | if (staticProps) defineProperties(Constructor, staticProps); 51 | return Constructor; 52 | }; 53 | }(); 54 | 55 | function _possibleConstructorReturn(self, call) { 56 | if (!self) { 57 | throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); 58 | } 59 | 60 | return call && (typeof call === "object" || typeof call === "function") ? call : self; 61 | } 62 | 63 | function _inherits(subClass, superClass) { 64 | if (typeof superClass !== "function" && superClass !== null) { 65 | throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); 66 | } 67 | 68 | subClass.prototype = Object.create(superClass && superClass.prototype, { 69 | constructor: { 70 | value: subClass, 71 | enumerable: false, 72 | writable: true, 73 | configurable: true 74 | } 75 | }); 76 | if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; 77 | } 78 | 79 | function task(generator) { 80 | var taskInstance = { 81 | isIdle: true, 82 | isRunning: false 83 | }; 84 | taskInstance.perform = function () { 85 | taskInstance.isIdle = false; 86 | taskInstance.isRunning = true; 87 | var component = this; 88 | var iterator = generator.call(component); 89 | recursivelyCallNextOnIterator(); 90 | 91 | // this function keeps calling next() if a promise is yielded 92 | function recursivelyCallNextOnIterator(data) { 93 | var yielded = iterator.next.apply(iterator, arguments); 94 | // yielded = { value: Any, done: Boolean } 95 | 96 | if (yielded.done) { 97 | taskInstance.isIdle = true; 98 | taskInstance.isRunning = false; 99 | // call setState with the same state to trigger another render 100 | // so that you can use task properties like isIdle directly 101 | // in your render function 102 | component.setState(component.state); 103 | return; 104 | } 105 | 106 | if (isPromise(yielded.value)) { 107 | yielded.value.then(function (data) { 108 | if (component._isMounted) { 109 | recursivelyCallNextOnIterator(data); 110 | } 111 | }, function (e) { 112 | if (component._isMounted) { 113 | iterator.throw(e); 114 | } 115 | }); 116 | } 117 | } 118 | }; 119 | return taskInstance; 120 | } 121 | 122 | function timeout(milliseconds) { 123 | return new Promise(function (resolve, reject) { 124 | setTimeout(function () { 125 | resolve(); 126 | }, milliseconds); 127 | }); 128 | } 129 | 130 | var ConcurrentComponent = exports.ConcurrentComponent = function (_React$Component) { 131 | _inherits(ConcurrentComponent, _React$Component); 132 | 133 | function ConcurrentComponent() { 134 | _classCallCheck(this, ConcurrentComponent); 135 | 136 | return _possibleConstructorReturn(this, (ConcurrentComponent.__proto__ || Object.getPrototypeOf(ConcurrentComponent)).apply(this, arguments)); 137 | } 138 | 139 | _createClass(ConcurrentComponent, [{ 140 | key: 'componentDidMount', 141 | value: function componentDidMount() { 142 | this._isMounted = true; 143 | } 144 | }, { 145 | key: 'componentWillUnmount', 146 | value: function componentWillUnmount() { 147 | this._isMounted = false; 148 | } 149 | }]); 150 | 151 | return ConcurrentComponent; 152 | }(_react2.default.Component); 153 | 154 | function isPromise(value) { 155 | return value && typeof value.then === 'function'; 156 | } 157 | }); -------------------------------------------------------------------------------- /examples/example-1.md: -------------------------------------------------------------------------------- 1 | Example 1 - Task Cancellation 2 | ========= 3 | 4 | This example shows how tasks get automatically canceled when the component they live on is destroyed. See a live example here: [http://react-concurrency.surge.sh/](http://react-concurrency.surge.sh/) 5 | 6 | Imagine you have an `AsyncButton` component that takes an asynchronous function that returns a promise, in this case `save`. As the promise transitions through its different states, the button's label changes. 7 | 8 | ```jsx 9 | 15 | ``` 16 | 17 | To use this library, first create a component that extends from `ConcurrentComponent`. Next, define a property using the `task` function, which takes in a generator function. See `handleClick` below. `handleClick` is a task object with a `perform` method, which gets invoked when the button is clicked. 18 | 19 | The `yield` keyword is used with promises. When you yield a promise, your task function will pause execution. If the promise resolves, the task will continue executing from that point. If the promise rejects, the task will throw an error at that point. If the component has been unmounted, the task will get cancelled. 20 | 21 | ```js 22 | import React from 'react'; 23 | import { task, timeout, ConcurrentComponent } from 'react-concurrency'; 24 | 25 | class AsyncButton extends ConcurrentComponent { 26 | constructor(props) { 27 | super(props); 28 | this.state = { 29 | label: this.props.default 30 | }; 31 | } 32 | 33 | handleClick = task(function*() { 34 | try { 35 | this.setState({ label: this.props.pending }); 36 | yield this.props.onClick(); 37 | this.setState({ label: this.props.success }); 38 | yield timeout(2000); 39 | this.setState({ label: this.props.default }); 40 | } catch (e) { 41 | this.setState({ label: this.props.error }); 42 | } 43 | }) 44 | 45 | render() { 46 | return ( 47 | 50 | ); 51 | } 52 | } 53 | 54 | export default AsyncButton; 55 | ``` -------------------------------------------------------------------------------- /examples/example-2.md: -------------------------------------------------------------------------------- 1 | Example 2 - Derived State Flags 2 | === 3 | 4 | This example shows how to use derived state flags on tasks. See a live example here: [http://react-concurrency.surge.sh/](http://react-concurrency.surge.sh/) 5 | 6 | This example is similar to the previous one, but inside the button the derived state flags `isIdle` and `isRunning` are used. 7 | 8 | ```jsx 9 | import React from 'react'; 10 | import { ConcurrentComponent, task, timeout } from 'react-concurrency'; 11 | 12 | class AsyncButton extends ConcurrentComponent { 13 | constructor(props) { 14 | super(props); 15 | this.state = { 16 | label: this.props.default 17 | }; 18 | } 19 | 20 | handleClick = task(function*() { 21 | try { 22 | this.setState({ label: this.props.pending }); 23 | yield this.props.onClick(); 24 | this.setState({ label: this.props.success }); 25 | yield timeout(2000); 26 | this.setState({ label: this.props.default }); 27 | } catch (e) { 28 | this.setState({ label: this.props.error }); 29 | } 30 | }) 31 | 32 | render() { 33 | let isIdle = this.handleClick.isIdle ? 'idle' : 'running'; 34 | let isRunning = this.handleClick.isRunning ? 'running' : 'idle'; 35 | 36 | return ( 37 | 40 | ); 41 | } 42 | } 43 | 44 | export default AsyncButton; 45 | ``` -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/index'); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-concurrency", 3 | "version": "0.0.10", 4 | "description": "ember-concurrency for React components", 5 | "repository": { 6 | "type": "git", 7 | "url": "git+https://github.com/skaterdav85/react-concurrency.git" 8 | }, 9 | "author": "David Tang", 10 | "license": "MIT", 11 | "bugs": { 12 | "url": "https://github.com/skaterdav85/react-concurrency/issues" 13 | }, 14 | "homepage": "https://github.com/skaterdav85/react-concurrency#readme", 15 | "keywords": [ 16 | "react", 17 | "ember", 18 | "concurrency", 19 | "ember-concurrency", 20 | "generators", 21 | "task" 22 | ], 23 | "options": { 24 | "mocha": "--require scripts/mocha_runner src/**/__tests__/**/*.js" 25 | }, 26 | "scripts": { 27 | "prepublish": "babel --plugins transform-es2015-modules-umd src --ignore __tests__ --out-dir ./dist", 28 | "lint": "eslint ./src", 29 | "lintfix": "eslint ./src --fix", 30 | "testonly": "mocha $npm_package_options_mocha", 31 | "test": "npm run lint && npm run testonly", 32 | "test-watch": "npm run testonly -- --watch --watch-extensions js" 33 | }, 34 | "devDependencies": { 35 | "babel-cli": "^6.6.4", 36 | "babel-core": "^6.7.4", 37 | "babel-eslint": "^6.0.2", 38 | "babel-plugin-transform-es2015-modules-umd": "^6.6.5", 39 | "babel-polyfill": "^6.7.4", 40 | "babel-preset-es2015": "^6.6.0", 41 | "babel-preset-react": "^6.5.0", 42 | "babel-preset-stage-2": "^6.5.0", 43 | "chai": "^3.5.0", 44 | "enzyme": "^2.2.0", 45 | "eslint": "^2.7.0", 46 | "eslint-plugin-babel": "^3.1.0", 47 | "eslint-plugin-react": "^4.2.3", 48 | "jsdom": "^8.1.0", 49 | "mocha": "^2.4.5", 50 | "nodemon": "^1.9.1", 51 | "react": "^15.0.0", 52 | "react-addons-test-utils": "^15.0.0", 53 | "react-dom": "^15.0.0", 54 | "react-test-renderer": "^15.5.4", 55 | "sinon": "^1.17.3" 56 | }, 57 | "peerDependencies": { 58 | "react": "~0.14.8 || ^15.0.0", 59 | "react-dom": "~0.14.8 || ^15.0.0" 60 | }, 61 | "dependencies": { 62 | "babel-runtime": "^6.6.1" 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /scripts/mocha_runner.js: -------------------------------------------------------------------------------- 1 | var jsdom = require('jsdom').jsdom; 2 | 3 | var exposedProperties = ['window', 'navigator', 'document']; 4 | 5 | global.document = jsdom(''); 6 | global.window = document.defaultView; 7 | Object.keys(document.defaultView).forEach((property) => { 8 | if (typeof global[property] === 'undefined') { 9 | exposedProperties.push(property); 10 | global[property] = document.defaultView[property]; 11 | } 12 | }); 13 | 14 | global.navigator = { 15 | userAgent: 'node.js' 16 | }; 17 | 18 | documentRef = document; 19 | 20 | require('babel-core/register'); 21 | require('babel-polyfill'); -------------------------------------------------------------------------------- /src/__tests__/isIdle.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { mount } from 'enzyme'; 3 | import { expect } from 'chai'; 4 | import sinon from 'sinon'; 5 | import AsyncButton from './test-components/AsyncButton'; 6 | 7 | // Shallow Rendering 8 | // https://github.com/airbnb/enzyme/blob/master/docs/api/shallow.md 9 | describe('isIdle', () => { 10 | it('should be true when the task has not been started', () => { 11 | let doSomethingAsync = sinon.stub(); 12 | const wrapper = mount( 13 | 19 | ); 20 | let asyncButton = wrapper.instance(); 21 | expect(asyncButton.handleClick.isIdle).to.be.true; 22 | }); 23 | 24 | it('should be false when the task is running', () => { 25 | let doSomethingAsync = function() { 26 | return new Promise(function() { 27 | // unresolved 28 | }); 29 | }; 30 | const wrapper = mount( 31 | 37 | ); 38 | wrapper.find('button').simulate('click'); 39 | let asyncButton = wrapper.instance(); 40 | expect(asyncButton.handleClick.isIdle).to.be.false; 41 | }); 42 | 43 | it('should be true when the task has completed running', function(done) { 44 | function doSomethingAsync() { 45 | return Promise.resolve(); 46 | } 47 | 48 | const wrapper = mount( 49 | 55 | ); 56 | wrapper.find('button').simulate('click'); 57 | let asyncButton = wrapper.instance(); 58 | 59 | setTimeout(function() { 60 | expect(asyncButton.handleClick.isIdle).to.be.true; 61 | done(); 62 | }, 0); 63 | }); 64 | }); 65 | -------------------------------------------------------------------------------- /src/__tests__/isRunning.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { mount } from 'enzyme'; 3 | import { expect } from 'chai'; 4 | import sinon from 'sinon'; 5 | import AsyncButton from './test-components/AsyncButton'; 6 | import { task } from './../index'; 7 | 8 | describe('isRunning', () => { 9 | it('should be false when the task has not been started', () => { 10 | let doSomethingAsync = sinon.stub(); 11 | const wrapper = mount( 12 | 18 | ); 19 | let asyncButton = wrapper.instance(); 20 | expect(asyncButton.handleClick.isRunning).to.be.false; 21 | }); 22 | 23 | it('should be true when the task is running', () => { 24 | let doSomethingAsync = function() { 25 | return new Promise(function() { 26 | // unresolved 27 | }); 28 | }; 29 | const wrapper = mount( 30 | 36 | ); 37 | wrapper.find('button').simulate('click'); 38 | let asyncButton = wrapper.instance(); 39 | expect(asyncButton.handleClick.isRunning).to.be.true; 40 | }); 41 | 42 | it('should be false when the task has completed running', function(done) { 43 | function doSomethingAsync() { 44 | return Promise.resolve(); 45 | } 46 | 47 | const wrapper = mount( 48 | 54 | ); 55 | wrapper.find('button').simulate('click'); 56 | let asyncButton = wrapper.instance(); 57 | 58 | setTimeout(function() { 59 | expect(asyncButton.handleClick.isRunning).to.be.false; 60 | done(); 61 | }, 0); 62 | }); 63 | }); 64 | -------------------------------------------------------------------------------- /src/__tests__/sample.js: -------------------------------------------------------------------------------- 1 | // Sample test file 2 | // import React from 'react'; 3 | // import {shallow, mount, render} from 'enzyme'; 4 | // import {expect} from 'chai'; 5 | // import sinon from 'sinon'; 6 | // import MyComponent from '../index'; 7 | 8 | // Shallow Rendering 9 | // https://github.com/airbnb/enzyme/blob/master/docs/api/shallow.md 10 | // describe('Shallow Rendering', () => { 11 | // it('to have three `.icon-test`s', () => { 12 | // const wrapper = shallow(); 13 | // expect(wrapper.find('.icon-test')).to.have.length(3); 14 | // }); 15 | // 16 | // it('simulates click events', () => { 17 | // const buttonClick = sinon.spy(); 18 | // const wrapper = shallow( 19 | // 20 | // ); 21 | // wrapper.find('button').simulate('click'); 22 | // expect(buttonClick.calledOnce).to.equal(true); 23 | // }); 24 | // }); 25 | // 26 | // // Full DOM Rendering 27 | // // https://github.com/airbnb/enzyme/blob/master/docs/api/mount.md 28 | // describe('Full DOM Rendering', () => { 29 | // it('allows us to set props', () => { 30 | // const wrapper = mount(); 31 | // expect(wrapper.props().bar).to.equal('baz'); 32 | // wrapper.setProps({ bar: 'foo' }); 33 | // expect(wrapper.props().bar).to.equal('foo'); 34 | // }); 35 | // 36 | // it('calls componentDidMount', () => { 37 | // sinon.spy(MyComponent.prototype, 'componentDidMount'); 38 | // const wrapper = mount(); 39 | // expect(MyComponent.prototype.componentDidMount.calledOnce).to.be.true; 40 | // MyComponent.prototype.componentDidMount.restore(); 41 | // }); 42 | // }); 43 | // 44 | // // Static Rendered Markup 45 | // // https://github.com/airbnb/enzyme/blob/master/docs/api/render.md 46 | // describe('Static Rendered Markup', () => { 47 | // it('renders three `.icon-test`s', () => { 48 | // const wrapper = render(); 49 | // expect(wrapper.find('.icon-test').length).to.equal(3); 50 | // }); 51 | // }); 52 | -------------------------------------------------------------------------------- /src/__tests__/task-cancellation.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { mount } from 'enzyme'; 3 | import { expect } from 'chai'; 4 | import sinon from 'sinon'; 5 | import AsyncButton from './test-components/AsyncButton'; 6 | import { task } from './../index'; 7 | 8 | describe('A task', () => { 9 | it(`should automatically cancel when the component it lives on is 10 | destroyed and an error isn't thrown`, (done) => { 11 | let resolvePromise; 12 | let promise = new Promise(function(resolve) { 13 | // pending 14 | resolvePromise = resolve; 15 | }); 16 | function doSomethingAsync() { 17 | return promise; 18 | } 19 | const wrapper = mount( 20 | 26 | ); 27 | 28 | let asyncButton = wrapper.instance(); 29 | sinon.spy(asyncButton, 'setState'); 30 | 31 | wrapper.find('button').simulate('click'); 32 | wrapper.unmount(); 33 | resolvePromise(); 34 | 35 | setTimeout(function() { 36 | expect(asyncButton.setState.callCount).to.equal(1); 37 | done(); 38 | }, 0); 39 | }); 40 | 41 | it(`should automatically cancel when the component it lives on is 42 | destroyed and an error is thrown`, (done) => { 43 | let rejectPromise; 44 | let promise = new Promise(function(resolve, reject) { 45 | // pending 46 | rejectPromise = reject; 47 | }); 48 | function doSomethingAsync() { 49 | return promise; 50 | } 51 | const wrapper = mount( 52 | 58 | ); 59 | 60 | let asyncButton = wrapper.instance(); 61 | sinon.spy(asyncButton, 'setState'); 62 | 63 | wrapper.find('button').simulate('click'); 64 | wrapper.unmount(); 65 | rejectPromise(); 66 | 67 | setTimeout(function() { 68 | expect(asyncButton.setState.callCount).to.equal(1); 69 | done(); 70 | }, 0); 71 | }); 72 | }); 73 | -------------------------------------------------------------------------------- /src/__tests__/test-components/AsyncButton.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { ConcurrentComponent, task } from './../../index'; 3 | 4 | class AsyncButton extends ConcurrentComponent { 5 | constructor(props) { 6 | super(props); 7 | this.state = { 8 | label: this.props.default 9 | }; 10 | } 11 | 12 | handleClick = task(function*() { 13 | try { 14 | this.setState({ label: this.props.pending }); 15 | yield this.props.onClick(); 16 | this.setState({ label: this.props.default }); 17 | } catch (e) { 18 | this.setState({ label: this.props.error }); 19 | } 20 | }) 21 | 22 | render() { 23 | let isIdle = this.handleClick.isIdle ? 'idle' : 'processing'; 24 | let isRunning = this.handleClick.isRunning ? 'processing' : 'idle'; 25 | 26 | return ( 27 | 30 | ); 31 | } 32 | } 33 | 34 | export default AsyncButton; 35 | -------------------------------------------------------------------------------- /src/__tests__/timeout.js: -------------------------------------------------------------------------------- 1 | import { expect } from 'chai'; 2 | import sinon from 'sinon'; 3 | import { timeout } from './../index'; 4 | 5 | describe('timeout', () => { 6 | let clock; 7 | beforeEach(() => { 8 | clock = sinon.useFakeTimers(); 9 | }); 10 | 11 | afterEach(() => { 12 | clock.restore(); 13 | }); 14 | 15 | it('should return a promise', (done) => { 16 | timeout(2000).then(done); 17 | clock.tick(2000); 18 | }); 19 | }); 20 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export function task(generator) { 4 | let taskInstance = { 5 | isIdle: true, 6 | isRunning: false 7 | }; 8 | taskInstance.perform = function() { 9 | taskInstance.isIdle = false; 10 | taskInstance.isRunning = true; 11 | let component = this; 12 | let iterator = generator.call(component); 13 | recursivelyCallNextOnIterator(); 14 | 15 | // this function keeps calling next() if a promise is yielded 16 | function recursivelyCallNextOnIterator(data) { 17 | let yielded = iterator.next.apply(iterator, arguments); 18 | // yielded = { value: Any, done: Boolean } 19 | 20 | if (yielded.done) { 21 | taskInstance.isIdle = true; 22 | taskInstance.isRunning = false; 23 | // call setState with the same state to trigger another render 24 | // so that you can use task properties like isIdle directly 25 | // in your render function 26 | component.setState(component.state); 27 | return; 28 | } 29 | 30 | if (isPromise(yielded.value)) { 31 | yielded.value.then((data) => { 32 | if (component._isMounted) { 33 | recursivelyCallNextOnIterator(data); 34 | } 35 | }, (e) => { 36 | if (component._isMounted) { 37 | iterator.throw(e); 38 | } 39 | }); 40 | } 41 | } 42 | }; 43 | return taskInstance; 44 | } 45 | 46 | export function timeout(milliseconds) { 47 | return new Promise(function(resolve, reject) { 48 | setTimeout(function() { 49 | resolve(); 50 | }, milliseconds); 51 | }); 52 | } 53 | 54 | export class ConcurrentComponent extends React.Component { 55 | componentDidMount() { 56 | this._isMounted = true; 57 | } 58 | 59 | componentWillUnmount() { 60 | this._isMounted = false; 61 | } 62 | } 63 | 64 | function isPromise(value) { 65 | return value && typeof value.then === 'function'; 66 | } 67 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.0: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | abbrev@1: 10 | version "1.1.0" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 12 | 13 | acorn-globals@^1.0.4: 14 | version "1.0.9" 15 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-1.0.9.tgz#55bb5e98691507b74579d0513413217c380c54cf" 16 | dependencies: 17 | acorn "^2.1.0" 18 | 19 | acorn-jsx@^3.0.0: 20 | version "3.0.1" 21 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 22 | dependencies: 23 | acorn "^3.0.4" 24 | 25 | acorn@^2.1.0, acorn@^2.4.0: 26 | version "2.7.0" 27 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7" 28 | 29 | acorn@^3.0.4: 30 | version "3.3.0" 31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 32 | 33 | acorn@^5.0.1: 34 | version "5.0.3" 35 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 36 | 37 | ajv-keywords@^1.0.0: 38 | version "1.5.1" 39 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 40 | 41 | ajv@^4.7.0, ajv@^4.9.1: 42 | version "4.11.6" 43 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.6.tgz#947e93049790942b2a2d60a8289b28924d39f987" 44 | dependencies: 45 | co "^4.6.0" 46 | json-stable-stringify "^1.0.1" 47 | 48 | amdefine@>=0.0.4: 49 | version "1.0.1" 50 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 51 | 52 | ansi-escapes@^1.1.0: 53 | version "1.4.0" 54 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 55 | 56 | ansi-regex@^2.0.0: 57 | version "2.1.1" 58 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 59 | 60 | ansi-styles@^2.2.1: 61 | version "2.2.1" 62 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 63 | 64 | anymatch@^1.3.0: 65 | version "1.3.0" 66 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 67 | dependencies: 68 | arrify "^1.0.0" 69 | micromatch "^2.1.5" 70 | 71 | aproba@^1.0.3: 72 | version "1.1.1" 73 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 74 | 75 | are-we-there-yet@~1.1.2: 76 | version "1.1.2" 77 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 78 | dependencies: 79 | delegates "^1.0.0" 80 | readable-stream "^2.0.0 || ^1.1.13" 81 | 82 | argparse@^1.0.7: 83 | version "1.0.9" 84 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 85 | dependencies: 86 | sprintf-js "~1.0.2" 87 | 88 | arr-diff@^2.0.0: 89 | version "2.0.0" 90 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 91 | dependencies: 92 | arr-flatten "^1.0.1" 93 | 94 | arr-flatten@^1.0.1: 95 | version "1.0.1" 96 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 97 | 98 | array-equal@^1.0.0: 99 | version "1.0.0" 100 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 101 | 102 | array-union@^1.0.1: 103 | version "1.0.2" 104 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 105 | dependencies: 106 | array-uniq "^1.0.1" 107 | 108 | array-uniq@^1.0.1: 109 | version "1.0.3" 110 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 111 | 112 | array-unique@^0.2.1: 113 | version "0.2.1" 114 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 115 | 116 | arrify@^1.0.0: 117 | version "1.0.1" 118 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 119 | 120 | asap@~2.0.3: 121 | version "2.0.5" 122 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 123 | 124 | asn1@~0.2.3: 125 | version "0.2.3" 126 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 127 | 128 | assert-plus@1.0.0, assert-plus@^1.0.0: 129 | version "1.0.0" 130 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 131 | 132 | assert-plus@^0.2.0: 133 | version "0.2.0" 134 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 135 | 136 | assertion-error@^1.0.1: 137 | version "1.0.2" 138 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 139 | 140 | async-each@^1.0.0: 141 | version "1.0.1" 142 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 143 | 144 | asynckit@^0.4.0: 145 | version "0.4.0" 146 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 147 | 148 | aws-sign2@~0.6.0: 149 | version "0.6.0" 150 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 151 | 152 | aws4@^1.2.1: 153 | version "1.6.0" 154 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 155 | 156 | babel-cli@^6.6.4: 157 | version "6.24.1" 158 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" 159 | dependencies: 160 | babel-core "^6.24.1" 161 | babel-polyfill "^6.23.0" 162 | babel-register "^6.24.1" 163 | babel-runtime "^6.22.0" 164 | commander "^2.8.1" 165 | convert-source-map "^1.1.0" 166 | fs-readdir-recursive "^1.0.0" 167 | glob "^7.0.0" 168 | lodash "^4.2.0" 169 | output-file-sync "^1.1.0" 170 | path-is-absolute "^1.0.0" 171 | slash "^1.0.0" 172 | source-map "^0.5.0" 173 | v8flags "^2.0.10" 174 | optionalDependencies: 175 | chokidar "^1.6.1" 176 | 177 | babel-code-frame@^6.22.0: 178 | version "6.22.0" 179 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 180 | dependencies: 181 | chalk "^1.1.0" 182 | esutils "^2.0.2" 183 | js-tokens "^3.0.0" 184 | 185 | babel-core@^6.24.1, babel-core@^6.7.4: 186 | version "6.24.1" 187 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 188 | dependencies: 189 | babel-code-frame "^6.22.0" 190 | babel-generator "^6.24.1" 191 | babel-helpers "^6.24.1" 192 | babel-messages "^6.23.0" 193 | babel-register "^6.24.1" 194 | babel-runtime "^6.22.0" 195 | babel-template "^6.24.1" 196 | babel-traverse "^6.24.1" 197 | babel-types "^6.24.1" 198 | babylon "^6.11.0" 199 | convert-source-map "^1.1.0" 200 | debug "^2.1.1" 201 | json5 "^0.5.0" 202 | lodash "^4.2.0" 203 | minimatch "^3.0.2" 204 | path-is-absolute "^1.0.0" 205 | private "^0.1.6" 206 | slash "^1.0.0" 207 | source-map "^0.5.0" 208 | 209 | babel-eslint@^6.0.2: 210 | version "6.1.2" 211 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-6.1.2.tgz#5293419fe3672d66598d327da9694567ba6a5f2f" 212 | dependencies: 213 | babel-traverse "^6.0.20" 214 | babel-types "^6.0.19" 215 | babylon "^6.0.18" 216 | lodash.assign "^4.0.0" 217 | lodash.pickby "^4.0.0" 218 | 219 | babel-generator@^6.24.1: 220 | version "6.24.1" 221 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 222 | dependencies: 223 | babel-messages "^6.23.0" 224 | babel-runtime "^6.22.0" 225 | babel-types "^6.24.1" 226 | detect-indent "^4.0.0" 227 | jsesc "^1.3.0" 228 | lodash "^4.2.0" 229 | source-map "^0.5.0" 230 | trim-right "^1.0.1" 231 | 232 | babel-helper-bindify-decorators@^6.24.1: 233 | version "6.24.1" 234 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" 235 | dependencies: 236 | babel-runtime "^6.22.0" 237 | babel-traverse "^6.24.1" 238 | babel-types "^6.24.1" 239 | 240 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 241 | version "6.24.1" 242 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 243 | dependencies: 244 | babel-helper-explode-assignable-expression "^6.24.1" 245 | babel-runtime "^6.22.0" 246 | babel-types "^6.24.1" 247 | 248 | babel-helper-builder-react-jsx@^6.24.1: 249 | version "6.24.1" 250 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz#0ad7917e33c8d751e646daca4e77cc19377d2cbc" 251 | dependencies: 252 | babel-runtime "^6.22.0" 253 | babel-types "^6.24.1" 254 | esutils "^2.0.0" 255 | 256 | babel-helper-call-delegate@^6.24.1: 257 | version "6.24.1" 258 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 259 | dependencies: 260 | babel-helper-hoist-variables "^6.24.1" 261 | babel-runtime "^6.22.0" 262 | babel-traverse "^6.24.1" 263 | babel-types "^6.24.1" 264 | 265 | babel-helper-define-map@^6.24.1: 266 | version "6.24.1" 267 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 268 | dependencies: 269 | babel-helper-function-name "^6.24.1" 270 | babel-runtime "^6.22.0" 271 | babel-types "^6.24.1" 272 | lodash "^4.2.0" 273 | 274 | babel-helper-explode-assignable-expression@^6.24.1: 275 | version "6.24.1" 276 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 277 | dependencies: 278 | babel-runtime "^6.22.0" 279 | babel-traverse "^6.24.1" 280 | babel-types "^6.24.1" 281 | 282 | babel-helper-explode-class@^6.24.1: 283 | version "6.24.1" 284 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" 285 | dependencies: 286 | babel-helper-bindify-decorators "^6.24.1" 287 | babel-runtime "^6.22.0" 288 | babel-traverse "^6.24.1" 289 | babel-types "^6.24.1" 290 | 291 | babel-helper-function-name@^6.24.1: 292 | version "6.24.1" 293 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 294 | dependencies: 295 | babel-helper-get-function-arity "^6.24.1" 296 | babel-runtime "^6.22.0" 297 | babel-template "^6.24.1" 298 | babel-traverse "^6.24.1" 299 | babel-types "^6.24.1" 300 | 301 | babel-helper-get-function-arity@^6.24.1: 302 | version "6.24.1" 303 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 304 | dependencies: 305 | babel-runtime "^6.22.0" 306 | babel-types "^6.24.1" 307 | 308 | babel-helper-hoist-variables@^6.24.1: 309 | version "6.24.1" 310 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 311 | dependencies: 312 | babel-runtime "^6.22.0" 313 | babel-types "^6.24.1" 314 | 315 | babel-helper-optimise-call-expression@^6.24.1: 316 | version "6.24.1" 317 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 318 | dependencies: 319 | babel-runtime "^6.22.0" 320 | babel-types "^6.24.1" 321 | 322 | babel-helper-regex@^6.24.1: 323 | version "6.24.1" 324 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 325 | dependencies: 326 | babel-runtime "^6.22.0" 327 | babel-types "^6.24.1" 328 | lodash "^4.2.0" 329 | 330 | babel-helper-remap-async-to-generator@^6.24.1: 331 | version "6.24.1" 332 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 333 | dependencies: 334 | babel-helper-function-name "^6.24.1" 335 | babel-runtime "^6.22.0" 336 | babel-template "^6.24.1" 337 | babel-traverse "^6.24.1" 338 | babel-types "^6.24.1" 339 | 340 | babel-helper-replace-supers@^6.24.1: 341 | version "6.24.1" 342 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 343 | dependencies: 344 | babel-helper-optimise-call-expression "^6.24.1" 345 | babel-messages "^6.23.0" 346 | babel-runtime "^6.22.0" 347 | babel-template "^6.24.1" 348 | babel-traverse "^6.24.1" 349 | babel-types "^6.24.1" 350 | 351 | babel-helpers@^6.24.1: 352 | version "6.24.1" 353 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 354 | dependencies: 355 | babel-runtime "^6.22.0" 356 | babel-template "^6.24.1" 357 | 358 | babel-messages@^6.23.0: 359 | version "6.23.0" 360 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 361 | dependencies: 362 | babel-runtime "^6.22.0" 363 | 364 | babel-plugin-check-es2015-constants@^6.22.0: 365 | version "6.22.0" 366 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 367 | dependencies: 368 | babel-runtime "^6.22.0" 369 | 370 | babel-plugin-syntax-async-functions@^6.8.0: 371 | version "6.13.0" 372 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 373 | 374 | babel-plugin-syntax-async-generators@^6.5.0: 375 | version "6.13.0" 376 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 377 | 378 | babel-plugin-syntax-class-properties@^6.8.0: 379 | version "6.13.0" 380 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 381 | 382 | babel-plugin-syntax-decorators@^6.13.0: 383 | version "6.13.0" 384 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 385 | 386 | babel-plugin-syntax-dynamic-import@^6.18.0: 387 | version "6.18.0" 388 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 389 | 390 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 391 | version "6.13.0" 392 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 393 | 394 | babel-plugin-syntax-flow@^6.18.0: 395 | version "6.18.0" 396 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 397 | 398 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 399 | version "6.18.0" 400 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 401 | 402 | babel-plugin-syntax-object-rest-spread@^6.8.0: 403 | version "6.13.0" 404 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 405 | 406 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 407 | version "6.22.0" 408 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 409 | 410 | babel-plugin-transform-async-generator-functions@^6.24.1: 411 | version "6.24.1" 412 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 413 | dependencies: 414 | babel-helper-remap-async-to-generator "^6.24.1" 415 | babel-plugin-syntax-async-generators "^6.5.0" 416 | babel-runtime "^6.22.0" 417 | 418 | babel-plugin-transform-async-to-generator@^6.24.1: 419 | version "6.24.1" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 421 | dependencies: 422 | babel-helper-remap-async-to-generator "^6.24.1" 423 | babel-plugin-syntax-async-functions "^6.8.0" 424 | babel-runtime "^6.22.0" 425 | 426 | babel-plugin-transform-class-properties@^6.24.1: 427 | version "6.24.1" 428 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 429 | dependencies: 430 | babel-helper-function-name "^6.24.1" 431 | babel-plugin-syntax-class-properties "^6.8.0" 432 | babel-runtime "^6.22.0" 433 | babel-template "^6.24.1" 434 | 435 | babel-plugin-transform-decorators@^6.24.1: 436 | version "6.24.1" 437 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" 438 | dependencies: 439 | babel-helper-explode-class "^6.24.1" 440 | babel-plugin-syntax-decorators "^6.13.0" 441 | babel-runtime "^6.22.0" 442 | babel-template "^6.24.1" 443 | babel-types "^6.24.1" 444 | 445 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 446 | version "6.22.0" 447 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 448 | dependencies: 449 | babel-runtime "^6.22.0" 450 | 451 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 452 | version "6.22.0" 453 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 454 | dependencies: 455 | babel-runtime "^6.22.0" 456 | 457 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 458 | version "6.24.1" 459 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 460 | dependencies: 461 | babel-runtime "^6.22.0" 462 | babel-template "^6.24.1" 463 | babel-traverse "^6.24.1" 464 | babel-types "^6.24.1" 465 | lodash "^4.2.0" 466 | 467 | babel-plugin-transform-es2015-classes@^6.24.1: 468 | version "6.24.1" 469 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 470 | dependencies: 471 | babel-helper-define-map "^6.24.1" 472 | babel-helper-function-name "^6.24.1" 473 | babel-helper-optimise-call-expression "^6.24.1" 474 | babel-helper-replace-supers "^6.24.1" 475 | babel-messages "^6.23.0" 476 | babel-runtime "^6.22.0" 477 | babel-template "^6.24.1" 478 | babel-traverse "^6.24.1" 479 | babel-types "^6.24.1" 480 | 481 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 482 | version "6.24.1" 483 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 484 | dependencies: 485 | babel-runtime "^6.22.0" 486 | babel-template "^6.24.1" 487 | 488 | babel-plugin-transform-es2015-destructuring@^6.22.0: 489 | version "6.23.0" 490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 491 | dependencies: 492 | babel-runtime "^6.22.0" 493 | 494 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 495 | version "6.24.1" 496 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 497 | dependencies: 498 | babel-runtime "^6.22.0" 499 | babel-types "^6.24.1" 500 | 501 | babel-plugin-transform-es2015-for-of@^6.22.0: 502 | version "6.23.0" 503 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 504 | dependencies: 505 | babel-runtime "^6.22.0" 506 | 507 | babel-plugin-transform-es2015-function-name@^6.24.1: 508 | version "6.24.1" 509 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 510 | dependencies: 511 | babel-helper-function-name "^6.24.1" 512 | babel-runtime "^6.22.0" 513 | babel-types "^6.24.1" 514 | 515 | babel-plugin-transform-es2015-literals@^6.22.0: 516 | version "6.22.0" 517 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 518 | dependencies: 519 | babel-runtime "^6.22.0" 520 | 521 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 522 | version "6.24.1" 523 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 524 | dependencies: 525 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 526 | babel-runtime "^6.22.0" 527 | babel-template "^6.24.1" 528 | 529 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 530 | version "6.24.1" 531 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 532 | dependencies: 533 | babel-plugin-transform-strict-mode "^6.24.1" 534 | babel-runtime "^6.22.0" 535 | babel-template "^6.24.1" 536 | babel-types "^6.24.1" 537 | 538 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 539 | version "6.24.1" 540 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 541 | dependencies: 542 | babel-helper-hoist-variables "^6.24.1" 543 | babel-runtime "^6.22.0" 544 | babel-template "^6.24.1" 545 | 546 | babel-plugin-transform-es2015-modules-umd@^6.24.1, babel-plugin-transform-es2015-modules-umd@^6.6.5: 547 | version "6.24.1" 548 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 549 | dependencies: 550 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 551 | babel-runtime "^6.22.0" 552 | babel-template "^6.24.1" 553 | 554 | babel-plugin-transform-es2015-object-super@^6.24.1: 555 | version "6.24.1" 556 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 557 | dependencies: 558 | babel-helper-replace-supers "^6.24.1" 559 | babel-runtime "^6.22.0" 560 | 561 | babel-plugin-transform-es2015-parameters@^6.24.1: 562 | version "6.24.1" 563 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 564 | dependencies: 565 | babel-helper-call-delegate "^6.24.1" 566 | babel-helper-get-function-arity "^6.24.1" 567 | babel-runtime "^6.22.0" 568 | babel-template "^6.24.1" 569 | babel-traverse "^6.24.1" 570 | babel-types "^6.24.1" 571 | 572 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 573 | version "6.24.1" 574 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 575 | dependencies: 576 | babel-runtime "^6.22.0" 577 | babel-types "^6.24.1" 578 | 579 | babel-plugin-transform-es2015-spread@^6.22.0: 580 | version "6.22.0" 581 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 582 | dependencies: 583 | babel-runtime "^6.22.0" 584 | 585 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 586 | version "6.24.1" 587 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 588 | dependencies: 589 | babel-helper-regex "^6.24.1" 590 | babel-runtime "^6.22.0" 591 | babel-types "^6.24.1" 592 | 593 | babel-plugin-transform-es2015-template-literals@^6.22.0: 594 | version "6.22.0" 595 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 596 | dependencies: 597 | babel-runtime "^6.22.0" 598 | 599 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 600 | version "6.23.0" 601 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 602 | dependencies: 603 | babel-runtime "^6.22.0" 604 | 605 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 606 | version "6.24.1" 607 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 608 | dependencies: 609 | babel-helper-regex "^6.24.1" 610 | babel-runtime "^6.22.0" 611 | regexpu-core "^2.0.0" 612 | 613 | babel-plugin-transform-exponentiation-operator@^6.24.1: 614 | version "6.24.1" 615 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 616 | dependencies: 617 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 618 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 619 | babel-runtime "^6.22.0" 620 | 621 | babel-plugin-transform-flow-strip-types@^6.22.0: 622 | version "6.22.0" 623 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 624 | dependencies: 625 | babel-plugin-syntax-flow "^6.18.0" 626 | babel-runtime "^6.22.0" 627 | 628 | babel-plugin-transform-object-rest-spread@^6.22.0: 629 | version "6.23.0" 630 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 631 | dependencies: 632 | babel-plugin-syntax-object-rest-spread "^6.8.0" 633 | babel-runtime "^6.22.0" 634 | 635 | babel-plugin-transform-react-display-name@^6.23.0: 636 | version "6.23.0" 637 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37" 638 | dependencies: 639 | babel-runtime "^6.22.0" 640 | 641 | babel-plugin-transform-react-jsx-self@^6.22.0: 642 | version "6.22.0" 643 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 644 | dependencies: 645 | babel-plugin-syntax-jsx "^6.8.0" 646 | babel-runtime "^6.22.0" 647 | 648 | babel-plugin-transform-react-jsx-source@^6.22.0: 649 | version "6.22.0" 650 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 651 | dependencies: 652 | babel-plugin-syntax-jsx "^6.8.0" 653 | babel-runtime "^6.22.0" 654 | 655 | babel-plugin-transform-react-jsx@^6.24.1: 656 | version "6.24.1" 657 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 658 | dependencies: 659 | babel-helper-builder-react-jsx "^6.24.1" 660 | babel-plugin-syntax-jsx "^6.8.0" 661 | babel-runtime "^6.22.0" 662 | 663 | babel-plugin-transform-regenerator@^6.24.1: 664 | version "6.24.1" 665 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 666 | dependencies: 667 | regenerator-transform "0.9.11" 668 | 669 | babel-plugin-transform-strict-mode@^6.24.1: 670 | version "6.24.1" 671 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 672 | dependencies: 673 | babel-runtime "^6.22.0" 674 | babel-types "^6.24.1" 675 | 676 | babel-polyfill@^6.23.0, babel-polyfill@^6.7.4: 677 | version "6.23.0" 678 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 679 | dependencies: 680 | babel-runtime "^6.22.0" 681 | core-js "^2.4.0" 682 | regenerator-runtime "^0.10.0" 683 | 684 | babel-preset-es2015@^6.6.0: 685 | version "6.24.1" 686 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 687 | dependencies: 688 | babel-plugin-check-es2015-constants "^6.22.0" 689 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 690 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 691 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 692 | babel-plugin-transform-es2015-classes "^6.24.1" 693 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 694 | babel-plugin-transform-es2015-destructuring "^6.22.0" 695 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 696 | babel-plugin-transform-es2015-for-of "^6.22.0" 697 | babel-plugin-transform-es2015-function-name "^6.24.1" 698 | babel-plugin-transform-es2015-literals "^6.22.0" 699 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 700 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 701 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 702 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 703 | babel-plugin-transform-es2015-object-super "^6.24.1" 704 | babel-plugin-transform-es2015-parameters "^6.24.1" 705 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 706 | babel-plugin-transform-es2015-spread "^6.22.0" 707 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 708 | babel-plugin-transform-es2015-template-literals "^6.22.0" 709 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 710 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 711 | babel-plugin-transform-regenerator "^6.24.1" 712 | 713 | babel-preset-flow@^6.23.0: 714 | version "6.23.0" 715 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 716 | dependencies: 717 | babel-plugin-transform-flow-strip-types "^6.22.0" 718 | 719 | babel-preset-react@^6.5.0: 720 | version "6.24.1" 721 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 722 | dependencies: 723 | babel-plugin-syntax-jsx "^6.3.13" 724 | babel-plugin-transform-react-display-name "^6.23.0" 725 | babel-plugin-transform-react-jsx "^6.24.1" 726 | babel-plugin-transform-react-jsx-self "^6.22.0" 727 | babel-plugin-transform-react-jsx-source "^6.22.0" 728 | babel-preset-flow "^6.23.0" 729 | 730 | babel-preset-stage-2@^6.5.0: 731 | version "6.24.1" 732 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" 733 | dependencies: 734 | babel-plugin-syntax-dynamic-import "^6.18.0" 735 | babel-plugin-transform-class-properties "^6.24.1" 736 | babel-plugin-transform-decorators "^6.24.1" 737 | babel-preset-stage-3 "^6.24.1" 738 | 739 | babel-preset-stage-3@^6.24.1: 740 | version "6.24.1" 741 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 742 | dependencies: 743 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 744 | babel-plugin-transform-async-generator-functions "^6.24.1" 745 | babel-plugin-transform-async-to-generator "^6.24.1" 746 | babel-plugin-transform-exponentiation-operator "^6.24.1" 747 | babel-plugin-transform-object-rest-spread "^6.22.0" 748 | 749 | babel-register@^6.24.1: 750 | version "6.24.1" 751 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 752 | dependencies: 753 | babel-core "^6.24.1" 754 | babel-runtime "^6.22.0" 755 | core-js "^2.4.0" 756 | home-or-tmp "^2.0.0" 757 | lodash "^4.2.0" 758 | mkdirp "^0.5.1" 759 | source-map-support "^0.4.2" 760 | 761 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.6.1: 762 | version "6.23.0" 763 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 764 | dependencies: 765 | core-js "^2.4.0" 766 | regenerator-runtime "^0.10.0" 767 | 768 | babel-template@^6.24.1: 769 | version "6.24.1" 770 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 771 | dependencies: 772 | babel-runtime "^6.22.0" 773 | babel-traverse "^6.24.1" 774 | babel-types "^6.24.1" 775 | babylon "^6.11.0" 776 | lodash "^4.2.0" 777 | 778 | babel-traverse@^6.0.20, babel-traverse@^6.24.1: 779 | version "6.24.1" 780 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 781 | dependencies: 782 | babel-code-frame "^6.22.0" 783 | babel-messages "^6.23.0" 784 | babel-runtime "^6.22.0" 785 | babel-types "^6.24.1" 786 | babylon "^6.15.0" 787 | debug "^2.2.0" 788 | globals "^9.0.0" 789 | invariant "^2.2.0" 790 | lodash "^4.2.0" 791 | 792 | babel-types@^6.0.19, babel-types@^6.19.0, babel-types@^6.24.1: 793 | version "6.24.1" 794 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 795 | dependencies: 796 | babel-runtime "^6.22.0" 797 | esutils "^2.0.2" 798 | lodash "^4.2.0" 799 | to-fast-properties "^1.0.1" 800 | 801 | babylon@^6.0.18, babylon@^6.11.0, babylon@^6.15.0: 802 | version "6.16.1" 803 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3" 804 | 805 | balanced-match@^0.4.1: 806 | version "0.4.2" 807 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 808 | 809 | bcrypt-pbkdf@^1.0.0: 810 | version "1.0.1" 811 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 812 | dependencies: 813 | tweetnacl "^0.14.3" 814 | 815 | binary-extensions@^1.0.0: 816 | version "1.8.0" 817 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 818 | 819 | block-stream@*: 820 | version "0.0.9" 821 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 822 | dependencies: 823 | inherits "~2.0.0" 824 | 825 | boolbase@~1.0.0: 826 | version "1.0.0" 827 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 828 | 829 | boom@2.x.x: 830 | version "2.10.1" 831 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 832 | dependencies: 833 | hoek "2.x.x" 834 | 835 | brace-expansion@^1.0.0: 836 | version "1.1.7" 837 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 838 | dependencies: 839 | balanced-match "^0.4.1" 840 | concat-map "0.0.1" 841 | 842 | braces@^1.8.2: 843 | version "1.8.5" 844 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 845 | dependencies: 846 | expand-range "^1.8.1" 847 | preserve "^0.2.0" 848 | repeat-element "^1.1.2" 849 | 850 | buffer-shims@~1.0.0: 851 | version "1.0.0" 852 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 853 | 854 | caller-path@^0.1.0: 855 | version "0.1.0" 856 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 857 | dependencies: 858 | callsites "^0.2.0" 859 | 860 | callsites@^0.2.0: 861 | version "0.2.0" 862 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 863 | 864 | caseless@~0.12.0: 865 | version "0.12.0" 866 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 867 | 868 | chai@^3.5.0: 869 | version "3.5.0" 870 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 871 | dependencies: 872 | assertion-error "^1.0.1" 873 | deep-eql "^0.1.3" 874 | type-detect "^1.0.0" 875 | 876 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 877 | version "1.1.3" 878 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 879 | dependencies: 880 | ansi-styles "^2.2.1" 881 | escape-string-regexp "^1.0.2" 882 | has-ansi "^2.0.0" 883 | strip-ansi "^3.0.0" 884 | supports-color "^2.0.0" 885 | 886 | cheerio@^0.22.0: 887 | version "0.22.0" 888 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" 889 | dependencies: 890 | css-select "~1.2.0" 891 | dom-serializer "~0.1.0" 892 | entities "~1.1.1" 893 | htmlparser2 "^3.9.1" 894 | lodash.assignin "^4.0.9" 895 | lodash.bind "^4.1.4" 896 | lodash.defaults "^4.0.1" 897 | lodash.filter "^4.4.0" 898 | lodash.flatten "^4.2.0" 899 | lodash.foreach "^4.3.0" 900 | lodash.map "^4.4.0" 901 | lodash.merge "^4.4.0" 902 | lodash.pick "^4.2.1" 903 | lodash.reduce "^4.4.0" 904 | lodash.reject "^4.4.0" 905 | lodash.some "^4.4.0" 906 | 907 | chokidar@^1.4.3, chokidar@^1.6.1: 908 | version "1.6.1" 909 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 910 | dependencies: 911 | anymatch "^1.3.0" 912 | async-each "^1.0.0" 913 | glob-parent "^2.0.0" 914 | inherits "^2.0.1" 915 | is-binary-path "^1.0.0" 916 | is-glob "^2.0.0" 917 | path-is-absolute "^1.0.0" 918 | readdirp "^2.0.0" 919 | optionalDependencies: 920 | fsevents "^1.0.0" 921 | 922 | circular-json@^0.3.1: 923 | version "0.3.1" 924 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 925 | 926 | cli-cursor@^1.0.1: 927 | version "1.0.2" 928 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 929 | dependencies: 930 | restore-cursor "^1.0.1" 931 | 932 | cli-width@^2.0.0: 933 | version "2.1.0" 934 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 935 | 936 | co@^4.6.0: 937 | version "4.6.0" 938 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 939 | 940 | code-point-at@^1.0.0: 941 | version "1.1.0" 942 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 943 | 944 | combined-stream@^1.0.5, combined-stream@~1.0.5: 945 | version "1.0.5" 946 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 947 | dependencies: 948 | delayed-stream "~1.0.0" 949 | 950 | commander@0.6.1: 951 | version "0.6.1" 952 | resolved "https://registry.yarnpkg.com/commander/-/commander-0.6.1.tgz#fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06" 953 | 954 | commander@2.3.0: 955 | version "2.3.0" 956 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.3.0.tgz#fd430e889832ec353b9acd1de217c11cb3eef873" 957 | 958 | commander@^2.8.1: 959 | version "2.9.0" 960 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 961 | dependencies: 962 | graceful-readlink ">= 1.0.0" 963 | 964 | concat-map@0.0.1: 965 | version "0.0.1" 966 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 967 | 968 | concat-stream@^1.4.6: 969 | version "1.6.0" 970 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 971 | dependencies: 972 | inherits "^2.0.3" 973 | readable-stream "^2.2.2" 974 | typedarray "^0.0.6" 975 | 976 | configstore@^1.0.0: 977 | version "1.4.0" 978 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-1.4.0.tgz#c35781d0501d268c25c54b8b17f6240e8a4fb021" 979 | dependencies: 980 | graceful-fs "^4.1.2" 981 | mkdirp "^0.5.0" 982 | object-assign "^4.0.1" 983 | os-tmpdir "^1.0.0" 984 | osenv "^0.1.0" 985 | uuid "^2.0.1" 986 | write-file-atomic "^1.1.2" 987 | xdg-basedir "^2.0.0" 988 | 989 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 990 | version "1.1.0" 991 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 992 | 993 | convert-source-map@^1.1.0: 994 | version "1.5.0" 995 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 996 | 997 | core-js@^1.0.0: 998 | version "1.2.7" 999 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1000 | 1001 | core-js@^2.4.0: 1002 | version "2.4.1" 1003 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1004 | 1005 | core-util-is@~1.0.0: 1006 | version "1.0.2" 1007 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1008 | 1009 | cryptiles@2.x.x: 1010 | version "2.0.5" 1011 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1012 | dependencies: 1013 | boom "2.x.x" 1014 | 1015 | css-select@~1.2.0: 1016 | version "1.2.0" 1017 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" 1018 | dependencies: 1019 | boolbase "~1.0.0" 1020 | css-what "2.1" 1021 | domutils "1.5.1" 1022 | nth-check "~1.0.1" 1023 | 1024 | css-what@2.1: 1025 | version "2.1.0" 1026 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" 1027 | 1028 | cssom@0.3.x, "cssom@>= 0.3.0 < 0.4.0": 1029 | version "0.3.2" 1030 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1031 | 1032 | "cssstyle@>= 0.2.34 < 0.3.0": 1033 | version "0.2.37" 1034 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1035 | dependencies: 1036 | cssom "0.3.x" 1037 | 1038 | d@1: 1039 | version "1.0.0" 1040 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1041 | dependencies: 1042 | es5-ext "^0.10.9" 1043 | 1044 | dashdash@^1.12.0: 1045 | version "1.14.1" 1046 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1047 | dependencies: 1048 | assert-plus "^1.0.0" 1049 | 1050 | debug@2.2.0: 1051 | version "2.2.0" 1052 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1053 | dependencies: 1054 | ms "0.7.1" 1055 | 1056 | debug@^2.1.1, debug@^2.2.0: 1057 | version "2.6.3" 1058 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d" 1059 | dependencies: 1060 | ms "0.7.2" 1061 | 1062 | deep-eql@^0.1.3: 1063 | version "0.1.3" 1064 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 1065 | dependencies: 1066 | type-detect "0.1.1" 1067 | 1068 | deep-extend@~0.4.0: 1069 | version "0.4.1" 1070 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1071 | 1072 | deep-is@~0.1.3: 1073 | version "0.1.3" 1074 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1075 | 1076 | define-properties@^1.1.2: 1077 | version "1.1.2" 1078 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1079 | dependencies: 1080 | foreach "^2.0.5" 1081 | object-keys "^1.0.8" 1082 | 1083 | del@^2.0.2: 1084 | version "2.2.2" 1085 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1086 | dependencies: 1087 | globby "^5.0.0" 1088 | is-path-cwd "^1.0.0" 1089 | is-path-in-cwd "^1.0.0" 1090 | object-assign "^4.0.1" 1091 | pify "^2.0.0" 1092 | pinkie-promise "^2.0.0" 1093 | rimraf "^2.2.8" 1094 | 1095 | delayed-stream@~1.0.0: 1096 | version "1.0.0" 1097 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1098 | 1099 | delegates@^1.0.0: 1100 | version "1.0.0" 1101 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1102 | 1103 | detect-indent@^4.0.0: 1104 | version "4.0.0" 1105 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1106 | dependencies: 1107 | repeating "^2.0.0" 1108 | 1109 | diff@1.4.0: 1110 | version "1.4.0" 1111 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 1112 | 1113 | doctrine@^1.2.2: 1114 | version "1.5.0" 1115 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1116 | dependencies: 1117 | esutils "^2.0.2" 1118 | isarray "^1.0.0" 1119 | 1120 | dom-serializer@0, dom-serializer@~0.1.0: 1121 | version "0.1.0" 1122 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 1123 | dependencies: 1124 | domelementtype "~1.1.1" 1125 | entities "~1.1.1" 1126 | 1127 | domelementtype@1, domelementtype@^1.3.0: 1128 | version "1.3.0" 1129 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 1130 | 1131 | domelementtype@~1.1.1: 1132 | version "1.1.3" 1133 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 1134 | 1135 | domhandler@^2.3.0: 1136 | version "2.3.0" 1137 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.3.0.tgz#2de59a0822d5027fabff6f032c2b25a2a8abe738" 1138 | dependencies: 1139 | domelementtype "1" 1140 | 1141 | domutils@1.5.1, domutils@^1.5.1: 1142 | version "1.5.1" 1143 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 1144 | dependencies: 1145 | dom-serializer "0" 1146 | domelementtype "1" 1147 | 1148 | duplexer@~0.1.1: 1149 | version "0.1.1" 1150 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 1151 | 1152 | duplexify@^3.2.0: 1153 | version "3.5.0" 1154 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.0.tgz#1aa773002e1578457e9d9d4a50b0ccaaebcbd604" 1155 | dependencies: 1156 | end-of-stream "1.0.0" 1157 | inherits "^2.0.1" 1158 | readable-stream "^2.0.0" 1159 | stream-shift "^1.0.0" 1160 | 1161 | ecc-jsbn@~0.1.1: 1162 | version "0.1.1" 1163 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1164 | dependencies: 1165 | jsbn "~0.1.0" 1166 | 1167 | encoding@^0.1.11: 1168 | version "0.1.12" 1169 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1170 | dependencies: 1171 | iconv-lite "~0.4.13" 1172 | 1173 | end-of-stream@1.0.0: 1174 | version "1.0.0" 1175 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.0.0.tgz#d4596e702734a93e40e9af864319eabd99ff2f0e" 1176 | dependencies: 1177 | once "~1.3.0" 1178 | 1179 | entities@^1.1.1, entities@~1.1.1: 1180 | version "1.1.1" 1181 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 1182 | 1183 | enzyme@^2.2.0: 1184 | version "2.8.1" 1185 | resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-2.8.1.tgz#53891a75c8fe4d56582c113b3da45713b8215738" 1186 | dependencies: 1187 | cheerio "^0.22.0" 1188 | function.prototype.name "^1.0.0" 1189 | is-subset "^0.1.1" 1190 | lodash "^4.17.2" 1191 | object-is "^1.0.1" 1192 | object.assign "^4.0.4" 1193 | object.entries "^1.0.3" 1194 | object.values "^1.0.3" 1195 | prop-types "^15.5.4" 1196 | uuid "^2.0.3" 1197 | 1198 | es-abstract@^1.6.1: 1199 | version "1.7.0" 1200 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 1201 | dependencies: 1202 | es-to-primitive "^1.1.1" 1203 | function-bind "^1.1.0" 1204 | is-callable "^1.1.3" 1205 | is-regex "^1.0.3" 1206 | 1207 | es-to-primitive@^1.1.1: 1208 | version "1.1.1" 1209 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1210 | dependencies: 1211 | is-callable "^1.1.1" 1212 | is-date-object "^1.0.1" 1213 | is-symbol "^1.0.1" 1214 | 1215 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 1216 | version "0.10.15" 1217 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.15.tgz#c330a5934c1ee21284a7c081a86e5fd937c91ea6" 1218 | dependencies: 1219 | es6-iterator "2" 1220 | es6-symbol "~3.1" 1221 | 1222 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1223 | version "2.0.1" 1224 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1225 | dependencies: 1226 | d "1" 1227 | es5-ext "^0.10.14" 1228 | es6-symbol "^3.1" 1229 | 1230 | es6-map@^0.1.3: 1231 | version "0.1.5" 1232 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1233 | dependencies: 1234 | d "1" 1235 | es5-ext "~0.10.14" 1236 | es6-iterator "~2.0.1" 1237 | es6-set "~0.1.5" 1238 | es6-symbol "~3.1.1" 1239 | event-emitter "~0.3.5" 1240 | 1241 | es6-promise@^3.0.2: 1242 | version "3.3.1" 1243 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" 1244 | 1245 | es6-set@~0.1.5: 1246 | version "0.1.5" 1247 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1248 | dependencies: 1249 | d "1" 1250 | es5-ext "~0.10.14" 1251 | es6-iterator "~2.0.1" 1252 | es6-symbol "3.1.1" 1253 | event-emitter "~0.3.5" 1254 | 1255 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1256 | version "3.1.1" 1257 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1258 | dependencies: 1259 | d "1" 1260 | es5-ext "~0.10.14" 1261 | 1262 | es6-weak-map@^2.0.1: 1263 | version "2.0.2" 1264 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1265 | dependencies: 1266 | d "1" 1267 | es5-ext "^0.10.14" 1268 | es6-iterator "^2.0.1" 1269 | es6-symbol "^3.1.1" 1270 | 1271 | escape-string-regexp@1.0.2, escape-string-regexp@^1.0.2: 1272 | version "1.0.2" 1273 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz#4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1" 1274 | 1275 | 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 | escodegen@^1.6.1: 1280 | version "1.8.1" 1281 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1282 | dependencies: 1283 | esprima "^2.7.1" 1284 | estraverse "^1.9.1" 1285 | esutils "^2.0.2" 1286 | optionator "^0.8.1" 1287 | optionalDependencies: 1288 | source-map "~0.2.0" 1289 | 1290 | escope@^3.6.0: 1291 | version "3.6.0" 1292 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1293 | dependencies: 1294 | es6-map "^0.1.3" 1295 | es6-weak-map "^2.0.1" 1296 | esrecurse "^4.1.0" 1297 | estraverse "^4.1.1" 1298 | 1299 | eslint-plugin-babel@^3.1.0: 1300 | version "3.3.0" 1301 | resolved "https://registry.yarnpkg.com/eslint-plugin-babel/-/eslint-plugin-babel-3.3.0.tgz#2f494aedcf6f4aa4e75b9155980837bc1fbde193" 1302 | 1303 | eslint-plugin-react@^4.2.3: 1304 | version "4.3.0" 1305 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-4.3.0.tgz#c79aac8069d62de27887c13b8298d592088de378" 1306 | 1307 | eslint@^2.7.0: 1308 | version "2.13.1" 1309 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-2.13.1.tgz#e4cc8fa0f009fb829aaae23855a29360be1f6c11" 1310 | dependencies: 1311 | chalk "^1.1.3" 1312 | concat-stream "^1.4.6" 1313 | debug "^2.1.1" 1314 | doctrine "^1.2.2" 1315 | es6-map "^0.1.3" 1316 | escope "^3.6.0" 1317 | espree "^3.1.6" 1318 | estraverse "^4.2.0" 1319 | esutils "^2.0.2" 1320 | file-entry-cache "^1.1.1" 1321 | glob "^7.0.3" 1322 | globals "^9.2.0" 1323 | ignore "^3.1.2" 1324 | imurmurhash "^0.1.4" 1325 | inquirer "^0.12.0" 1326 | is-my-json-valid "^2.10.0" 1327 | is-resolvable "^1.0.0" 1328 | js-yaml "^3.5.1" 1329 | json-stable-stringify "^1.0.0" 1330 | levn "^0.3.0" 1331 | lodash "^4.0.0" 1332 | mkdirp "^0.5.0" 1333 | optionator "^0.8.1" 1334 | path-is-absolute "^1.0.0" 1335 | path-is-inside "^1.0.1" 1336 | pluralize "^1.2.1" 1337 | progress "^1.1.8" 1338 | require-uncached "^1.0.2" 1339 | shelljs "^0.6.0" 1340 | strip-json-comments "~1.0.1" 1341 | table "^3.7.8" 1342 | text-table "~0.2.0" 1343 | user-home "^2.0.0" 1344 | 1345 | espree@^3.1.6: 1346 | version "3.4.1" 1347 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.1.tgz#28a83ab4aaed71ed8fe0f5efe61b76a05c13c4d2" 1348 | dependencies: 1349 | acorn "^5.0.1" 1350 | acorn-jsx "^3.0.0" 1351 | 1352 | esprima@^2.7.1: 1353 | version "2.7.3" 1354 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1355 | 1356 | esprima@^3.1.1: 1357 | version "3.1.3" 1358 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1359 | 1360 | esrecurse@^4.1.0: 1361 | version "4.1.0" 1362 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1363 | dependencies: 1364 | estraverse "~4.1.0" 1365 | object-assign "^4.0.1" 1366 | 1367 | estraverse@^1.9.1: 1368 | version "1.9.3" 1369 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1370 | 1371 | estraverse@^4.1.1, estraverse@^4.2.0: 1372 | version "4.2.0" 1373 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1374 | 1375 | estraverse@~4.1.0: 1376 | version "4.1.1" 1377 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1378 | 1379 | esutils@^2.0.0, esutils@^2.0.2: 1380 | version "2.0.2" 1381 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1382 | 1383 | event-emitter@~0.3.5: 1384 | version "0.3.5" 1385 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1386 | dependencies: 1387 | d "1" 1388 | es5-ext "~0.10.14" 1389 | 1390 | event-stream@~3.3.0: 1391 | version "3.3.4" 1392 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 1393 | dependencies: 1394 | duplexer "~0.1.1" 1395 | from "~0" 1396 | map-stream "~0.1.0" 1397 | pause-stream "0.0.11" 1398 | split "0.3" 1399 | stream-combiner "~0.0.4" 1400 | through "~2.3.1" 1401 | 1402 | exit-hook@^1.0.0: 1403 | version "1.1.1" 1404 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1405 | 1406 | expand-brackets@^0.1.4: 1407 | version "0.1.5" 1408 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1409 | dependencies: 1410 | is-posix-bracket "^0.1.0" 1411 | 1412 | expand-range@^1.8.1: 1413 | version "1.8.2" 1414 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1415 | dependencies: 1416 | fill-range "^2.1.0" 1417 | 1418 | extend@~3.0.0: 1419 | version "3.0.0" 1420 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1421 | 1422 | extglob@^0.3.1: 1423 | version "0.3.2" 1424 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1425 | dependencies: 1426 | is-extglob "^1.0.0" 1427 | 1428 | extsprintf@1.0.2: 1429 | version "1.0.2" 1430 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1431 | 1432 | fast-levenshtein@~2.0.4: 1433 | version "2.0.6" 1434 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1435 | 1436 | fbjs@^0.8.4, fbjs@^0.8.9: 1437 | version "0.8.12" 1438 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.12.tgz#10b5d92f76d45575fd63a217d4ea02bea2f8ed04" 1439 | dependencies: 1440 | core-js "^1.0.0" 1441 | isomorphic-fetch "^2.1.1" 1442 | loose-envify "^1.0.0" 1443 | object-assign "^4.1.0" 1444 | promise "^7.1.1" 1445 | setimmediate "^1.0.5" 1446 | ua-parser-js "^0.7.9" 1447 | 1448 | figures@^1.3.5: 1449 | version "1.7.0" 1450 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1451 | dependencies: 1452 | escape-string-regexp "^1.0.5" 1453 | object-assign "^4.1.0" 1454 | 1455 | file-entry-cache@^1.1.1: 1456 | version "1.3.1" 1457 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-1.3.1.tgz#44c61ea607ae4be9c1402f41f44270cbfe334ff8" 1458 | dependencies: 1459 | flat-cache "^1.2.1" 1460 | object-assign "^4.0.1" 1461 | 1462 | filename-regex@^2.0.0: 1463 | version "2.0.0" 1464 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1465 | 1466 | fill-range@^2.1.0: 1467 | version "2.2.3" 1468 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1469 | dependencies: 1470 | is-number "^2.1.0" 1471 | isobject "^2.0.0" 1472 | randomatic "^1.1.3" 1473 | repeat-element "^1.1.2" 1474 | repeat-string "^1.5.2" 1475 | 1476 | flat-cache@^1.2.1: 1477 | version "1.2.2" 1478 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1479 | dependencies: 1480 | circular-json "^0.3.1" 1481 | del "^2.0.2" 1482 | graceful-fs "^4.1.2" 1483 | write "^0.2.1" 1484 | 1485 | for-in@^1.0.1: 1486 | version "1.0.2" 1487 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1488 | 1489 | for-own@^0.1.4: 1490 | version "0.1.5" 1491 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1492 | dependencies: 1493 | for-in "^1.0.1" 1494 | 1495 | foreach@^2.0.5: 1496 | version "2.0.5" 1497 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1498 | 1499 | forever-agent@~0.6.1: 1500 | version "0.6.1" 1501 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1502 | 1503 | form-data@~2.1.1: 1504 | version "2.1.4" 1505 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1506 | dependencies: 1507 | asynckit "^0.4.0" 1508 | combined-stream "^1.0.5" 1509 | mime-types "^2.1.12" 1510 | 1511 | formatio@1.1.1: 1512 | version "1.1.1" 1513 | resolved "https://registry.yarnpkg.com/formatio/-/formatio-1.1.1.tgz#5ed3ccd636551097383465d996199100e86161e9" 1514 | dependencies: 1515 | samsam "~1.1" 1516 | 1517 | from@~0: 1518 | version "0.1.7" 1519 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 1520 | 1521 | fs-readdir-recursive@^1.0.0: 1522 | version "1.0.0" 1523 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1524 | 1525 | fs.realpath@^1.0.0: 1526 | version "1.0.0" 1527 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1528 | 1529 | fsevents@^1.0.0: 1530 | version "1.1.1" 1531 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1532 | dependencies: 1533 | nan "^2.3.0" 1534 | node-pre-gyp "^0.6.29" 1535 | 1536 | fstream-ignore@^1.0.5: 1537 | version "1.0.5" 1538 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1539 | dependencies: 1540 | fstream "^1.0.0" 1541 | inherits "2" 1542 | minimatch "^3.0.0" 1543 | 1544 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1545 | version "1.0.11" 1546 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1547 | dependencies: 1548 | graceful-fs "^4.1.2" 1549 | inherits "~2.0.0" 1550 | mkdirp ">=0.5 0" 1551 | rimraf "2" 1552 | 1553 | function-bind@^1.0.2, function-bind@^1.1.0: 1554 | version "1.1.0" 1555 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1556 | 1557 | function.prototype.name@^1.0.0: 1558 | version "1.0.0" 1559 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.0.0.tgz#5f523ca64e491a5f95aba80cc1e391080a14482e" 1560 | dependencies: 1561 | define-properties "^1.1.2" 1562 | function-bind "^1.1.0" 1563 | is-callable "^1.1.2" 1564 | 1565 | gauge@~2.7.1: 1566 | version "2.7.3" 1567 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 1568 | dependencies: 1569 | aproba "^1.0.3" 1570 | console-control-strings "^1.0.0" 1571 | has-unicode "^2.0.0" 1572 | object-assign "^4.1.0" 1573 | signal-exit "^3.0.0" 1574 | string-width "^1.0.1" 1575 | strip-ansi "^3.0.1" 1576 | wide-align "^1.1.0" 1577 | 1578 | generate-function@^2.0.0: 1579 | version "2.0.0" 1580 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1581 | 1582 | generate-object-property@^1.1.0: 1583 | version "1.2.0" 1584 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1585 | dependencies: 1586 | is-property "^1.0.0" 1587 | 1588 | getpass@^0.1.1: 1589 | version "0.1.6" 1590 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1591 | dependencies: 1592 | assert-plus "^1.0.0" 1593 | 1594 | glob-base@^0.3.0: 1595 | version "0.3.0" 1596 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1597 | dependencies: 1598 | glob-parent "^2.0.0" 1599 | is-glob "^2.0.0" 1600 | 1601 | glob-parent@^2.0.0: 1602 | version "2.0.0" 1603 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1604 | dependencies: 1605 | is-glob "^2.0.0" 1606 | 1607 | glob@3.2.11: 1608 | version "3.2.11" 1609 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.2.11.tgz#4a973f635b9190f715d10987d5c00fd2815ebe3d" 1610 | dependencies: 1611 | inherits "2" 1612 | minimatch "0.3" 1613 | 1614 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 1615 | version "7.1.1" 1616 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1617 | dependencies: 1618 | fs.realpath "^1.0.0" 1619 | inflight "^1.0.4" 1620 | inherits "2" 1621 | minimatch "^3.0.2" 1622 | once "^1.3.0" 1623 | path-is-absolute "^1.0.0" 1624 | 1625 | globals@^9.0.0, globals@^9.2.0: 1626 | version "9.17.0" 1627 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1628 | 1629 | globby@^5.0.0: 1630 | version "5.0.0" 1631 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1632 | dependencies: 1633 | array-union "^1.0.1" 1634 | arrify "^1.0.0" 1635 | glob "^7.0.3" 1636 | object-assign "^4.0.1" 1637 | pify "^2.0.0" 1638 | pinkie-promise "^2.0.0" 1639 | 1640 | got@^3.2.0: 1641 | version "3.3.1" 1642 | resolved "https://registry.yarnpkg.com/got/-/got-3.3.1.tgz#e5d0ed4af55fc3eef4d56007769d98192bcb2eca" 1643 | dependencies: 1644 | duplexify "^3.2.0" 1645 | infinity-agent "^2.0.0" 1646 | is-redirect "^1.0.0" 1647 | is-stream "^1.0.0" 1648 | lowercase-keys "^1.0.0" 1649 | nested-error-stacks "^1.0.0" 1650 | object-assign "^3.0.0" 1651 | prepend-http "^1.0.0" 1652 | read-all-stream "^3.0.0" 1653 | timed-out "^2.0.0" 1654 | 1655 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1656 | version "4.1.11" 1657 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1658 | 1659 | "graceful-readlink@>= 1.0.0": 1660 | version "1.0.1" 1661 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1662 | 1663 | growl@1.9.2: 1664 | version "1.9.2" 1665 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1666 | 1667 | har-schema@^1.0.5: 1668 | version "1.0.5" 1669 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1670 | 1671 | har-validator@~4.2.1: 1672 | version "4.2.1" 1673 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1674 | dependencies: 1675 | ajv "^4.9.1" 1676 | har-schema "^1.0.5" 1677 | 1678 | has-ansi@^2.0.0: 1679 | version "2.0.0" 1680 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1681 | dependencies: 1682 | ansi-regex "^2.0.0" 1683 | 1684 | has-unicode@^2.0.0: 1685 | version "2.0.1" 1686 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1687 | 1688 | has@^1.0.1: 1689 | version "1.0.1" 1690 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1691 | dependencies: 1692 | function-bind "^1.0.2" 1693 | 1694 | hawk@~3.1.3: 1695 | version "3.1.3" 1696 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1697 | dependencies: 1698 | boom "2.x.x" 1699 | cryptiles "2.x.x" 1700 | hoek "2.x.x" 1701 | sntp "1.x.x" 1702 | 1703 | hoek@2.x.x: 1704 | version "2.16.3" 1705 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1706 | 1707 | home-or-tmp@^2.0.0: 1708 | version "2.0.0" 1709 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1710 | dependencies: 1711 | os-homedir "^1.0.0" 1712 | os-tmpdir "^1.0.1" 1713 | 1714 | htmlparser2@^3.9.1: 1715 | version "3.9.2" 1716 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338" 1717 | dependencies: 1718 | domelementtype "^1.3.0" 1719 | domhandler "^2.3.0" 1720 | domutils "^1.5.1" 1721 | entities "^1.1.1" 1722 | inherits "^2.0.1" 1723 | readable-stream "^2.0.2" 1724 | 1725 | http-signature@~1.1.0: 1726 | version "1.1.1" 1727 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1728 | dependencies: 1729 | assert-plus "^0.2.0" 1730 | jsprim "^1.2.2" 1731 | sshpk "^1.7.0" 1732 | 1733 | iconv-lite@^0.4.13, iconv-lite@~0.4.13: 1734 | version "0.4.15" 1735 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 1736 | 1737 | ignore-by-default@^1.0.0: 1738 | version "1.0.1" 1739 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1740 | 1741 | ignore@^3.1.2: 1742 | version "3.2.7" 1743 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.7.tgz#4810ca5f1d8eca5595213a34b94f2eb4ed926bbd" 1744 | 1745 | imurmurhash@^0.1.4: 1746 | version "0.1.4" 1747 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1748 | 1749 | infinity-agent@^2.0.0: 1750 | version "2.0.3" 1751 | resolved "https://registry.yarnpkg.com/infinity-agent/-/infinity-agent-2.0.3.tgz#45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216" 1752 | 1753 | inflight@^1.0.4: 1754 | version "1.0.6" 1755 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1756 | dependencies: 1757 | once "^1.3.0" 1758 | wrappy "1" 1759 | 1760 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1761 | version "2.0.3" 1762 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1763 | 1764 | inherits@2.0.1: 1765 | version "2.0.1" 1766 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1767 | 1768 | ini@~1.3.0: 1769 | version "1.3.4" 1770 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1771 | 1772 | inquirer@^0.12.0: 1773 | version "0.12.0" 1774 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1775 | dependencies: 1776 | ansi-escapes "^1.1.0" 1777 | ansi-regex "^2.0.0" 1778 | chalk "^1.0.0" 1779 | cli-cursor "^1.0.1" 1780 | cli-width "^2.0.0" 1781 | figures "^1.3.5" 1782 | lodash "^4.3.0" 1783 | readline2 "^1.0.1" 1784 | run-async "^0.1.0" 1785 | rx-lite "^3.1.2" 1786 | string-width "^1.0.1" 1787 | strip-ansi "^3.0.0" 1788 | through "^2.3.6" 1789 | 1790 | invariant@^2.2.0: 1791 | version "2.2.2" 1792 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1793 | dependencies: 1794 | loose-envify "^1.0.0" 1795 | 1796 | is-binary-path@^1.0.0: 1797 | version "1.0.1" 1798 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1799 | dependencies: 1800 | binary-extensions "^1.0.0" 1801 | 1802 | is-buffer@^1.0.2: 1803 | version "1.1.5" 1804 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1805 | 1806 | is-callable@^1.1.1, is-callable@^1.1.2, is-callable@^1.1.3: 1807 | version "1.1.3" 1808 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1809 | 1810 | is-date-object@^1.0.1: 1811 | version "1.0.1" 1812 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1813 | 1814 | is-dotfile@^1.0.0: 1815 | version "1.0.2" 1816 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1817 | 1818 | is-equal-shallow@^0.1.3: 1819 | version "0.1.3" 1820 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1821 | dependencies: 1822 | is-primitive "^2.0.0" 1823 | 1824 | is-extendable@^0.1.1: 1825 | version "0.1.1" 1826 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1827 | 1828 | is-extglob@^1.0.0: 1829 | version "1.0.0" 1830 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1831 | 1832 | is-finite@^1.0.0: 1833 | version "1.0.2" 1834 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1835 | dependencies: 1836 | number-is-nan "^1.0.0" 1837 | 1838 | is-fullwidth-code-point@^1.0.0: 1839 | version "1.0.0" 1840 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1841 | dependencies: 1842 | number-is-nan "^1.0.0" 1843 | 1844 | is-fullwidth-code-point@^2.0.0: 1845 | version "2.0.0" 1846 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1847 | 1848 | is-glob@^2.0.0, is-glob@^2.0.1: 1849 | version "2.0.1" 1850 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1851 | dependencies: 1852 | is-extglob "^1.0.0" 1853 | 1854 | is-my-json-valid@^2.10.0: 1855 | version "2.16.0" 1856 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 1857 | dependencies: 1858 | generate-function "^2.0.0" 1859 | generate-object-property "^1.1.0" 1860 | jsonpointer "^4.0.0" 1861 | xtend "^4.0.0" 1862 | 1863 | is-npm@^1.0.0: 1864 | version "1.0.0" 1865 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1866 | 1867 | is-number@^2.0.2, is-number@^2.1.0: 1868 | version "2.1.0" 1869 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1870 | dependencies: 1871 | kind-of "^3.0.2" 1872 | 1873 | is-path-cwd@^1.0.0: 1874 | version "1.0.0" 1875 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1876 | 1877 | is-path-in-cwd@^1.0.0: 1878 | version "1.0.0" 1879 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1880 | dependencies: 1881 | is-path-inside "^1.0.0" 1882 | 1883 | is-path-inside@^1.0.0: 1884 | version "1.0.0" 1885 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1886 | dependencies: 1887 | path-is-inside "^1.0.1" 1888 | 1889 | is-posix-bracket@^0.1.0: 1890 | version "0.1.1" 1891 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1892 | 1893 | is-primitive@^2.0.0: 1894 | version "2.0.0" 1895 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1896 | 1897 | is-property@^1.0.0: 1898 | version "1.0.2" 1899 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1900 | 1901 | is-redirect@^1.0.0: 1902 | version "1.0.0" 1903 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1904 | 1905 | is-regex@^1.0.3: 1906 | version "1.0.4" 1907 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1908 | dependencies: 1909 | has "^1.0.1" 1910 | 1911 | is-resolvable@^1.0.0: 1912 | version "1.0.0" 1913 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1914 | dependencies: 1915 | tryit "^1.0.1" 1916 | 1917 | is-stream@^1.0.0, is-stream@^1.0.1: 1918 | version "1.1.0" 1919 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1920 | 1921 | is-subset@^0.1.1: 1922 | version "0.1.1" 1923 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" 1924 | 1925 | is-symbol@^1.0.1: 1926 | version "1.0.1" 1927 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1928 | 1929 | is-typedarray@~1.0.0: 1930 | version "1.0.0" 1931 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1932 | 1933 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1934 | version "1.0.0" 1935 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1936 | 1937 | isobject@^2.0.0: 1938 | version "2.1.0" 1939 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1940 | dependencies: 1941 | isarray "1.0.0" 1942 | 1943 | isomorphic-fetch@^2.1.1: 1944 | version "2.2.1" 1945 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1946 | dependencies: 1947 | node-fetch "^1.0.1" 1948 | whatwg-fetch ">=0.10.0" 1949 | 1950 | isstream@~0.1.2: 1951 | version "0.1.2" 1952 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1953 | 1954 | jade@0.26.3: 1955 | version "0.26.3" 1956 | resolved "https://registry.yarnpkg.com/jade/-/jade-0.26.3.tgz#8f10d7977d8d79f2f6ff862a81b0513ccb25686c" 1957 | dependencies: 1958 | commander "0.6.1" 1959 | mkdirp "0.3.0" 1960 | 1961 | jodid25519@^1.0.0: 1962 | version "1.0.2" 1963 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1964 | dependencies: 1965 | jsbn "~0.1.0" 1966 | 1967 | js-tokens@^3.0.0: 1968 | version "3.0.1" 1969 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1970 | 1971 | js-yaml@^3.5.1: 1972 | version "3.8.3" 1973 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.3.tgz#33a05ec481c850c8875929166fe1beb61c728766" 1974 | dependencies: 1975 | argparse "^1.0.7" 1976 | esprima "^3.1.1" 1977 | 1978 | jsbn@~0.1.0: 1979 | version "0.1.1" 1980 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1981 | 1982 | jsdom@^8.1.0: 1983 | version "8.5.0" 1984 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-8.5.0.tgz#d4d8f5dbf2768635b62a62823b947cf7071ebc98" 1985 | dependencies: 1986 | abab "^1.0.0" 1987 | acorn "^2.4.0" 1988 | acorn-globals "^1.0.4" 1989 | array-equal "^1.0.0" 1990 | cssom ">= 0.3.0 < 0.4.0" 1991 | cssstyle ">= 0.2.34 < 0.3.0" 1992 | escodegen "^1.6.1" 1993 | iconv-lite "^0.4.13" 1994 | nwmatcher ">= 1.3.7 < 2.0.0" 1995 | parse5 "^1.5.1" 1996 | request "^2.55.0" 1997 | sax "^1.1.4" 1998 | symbol-tree ">= 3.1.0 < 4.0.0" 1999 | tough-cookie "^2.2.0" 2000 | webidl-conversions "^3.0.1" 2001 | whatwg-url "^2.0.1" 2002 | xml-name-validator ">= 2.0.1 < 3.0.0" 2003 | 2004 | jsesc@^1.3.0: 2005 | version "1.3.0" 2006 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2007 | 2008 | jsesc@~0.5.0: 2009 | version "0.5.0" 2010 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2011 | 2012 | json-schema@0.2.3: 2013 | version "0.2.3" 2014 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2015 | 2016 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2017 | version "1.0.1" 2018 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2019 | dependencies: 2020 | jsonify "~0.0.0" 2021 | 2022 | json-stringify-safe@~5.0.1: 2023 | version "5.0.1" 2024 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2025 | 2026 | json5@^0.5.0: 2027 | version "0.5.1" 2028 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2029 | 2030 | jsonify@~0.0.0: 2031 | version "0.0.0" 2032 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2033 | 2034 | jsonpointer@^4.0.0: 2035 | version "4.0.1" 2036 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2037 | 2038 | jsprim@^1.2.2: 2039 | version "1.4.0" 2040 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2041 | dependencies: 2042 | assert-plus "1.0.0" 2043 | extsprintf "1.0.2" 2044 | json-schema "0.2.3" 2045 | verror "1.3.6" 2046 | 2047 | kind-of@^3.0.2: 2048 | version "3.1.0" 2049 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 2050 | dependencies: 2051 | is-buffer "^1.0.2" 2052 | 2053 | latest-version@^1.0.0: 2054 | version "1.0.1" 2055 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-1.0.1.tgz#72cfc46e3e8d1be651e1ebb54ea9f6ea96f374bb" 2056 | dependencies: 2057 | package-json "^1.0.0" 2058 | 2059 | levn@^0.3.0, levn@~0.3.0: 2060 | version "0.3.0" 2061 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2062 | dependencies: 2063 | prelude-ls "~1.1.2" 2064 | type-check "~0.3.2" 2065 | 2066 | lodash._baseassign@^3.0.0: 2067 | version "3.2.0" 2068 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 2069 | dependencies: 2070 | lodash._basecopy "^3.0.0" 2071 | lodash.keys "^3.0.0" 2072 | 2073 | lodash._basecopy@^3.0.0: 2074 | version "3.0.1" 2075 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 2076 | 2077 | lodash._bindcallback@^3.0.0: 2078 | version "3.0.1" 2079 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 2080 | 2081 | lodash._createassigner@^3.0.0: 2082 | version "3.1.1" 2083 | resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 2084 | dependencies: 2085 | lodash._bindcallback "^3.0.0" 2086 | lodash._isiterateecall "^3.0.0" 2087 | lodash.restparam "^3.0.0" 2088 | 2089 | lodash._getnative@^3.0.0: 2090 | version "3.9.1" 2091 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2092 | 2093 | lodash._isiterateecall@^3.0.0: 2094 | version "3.0.9" 2095 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 2096 | 2097 | lodash.assign@^3.0.0: 2098 | version "3.2.0" 2099 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 2100 | dependencies: 2101 | lodash._baseassign "^3.0.0" 2102 | lodash._createassigner "^3.0.0" 2103 | lodash.keys "^3.0.0" 2104 | 2105 | lodash.assign@^4.0.0: 2106 | version "4.2.0" 2107 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 2108 | 2109 | lodash.assignin@^4.0.9: 2110 | version "4.2.0" 2111 | resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" 2112 | 2113 | lodash.bind@^4.1.4: 2114 | version "4.2.1" 2115 | resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" 2116 | 2117 | lodash.defaults@^3.1.2: 2118 | version "3.1.2" 2119 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-3.1.2.tgz#c7308b18dbf8bc9372d701a73493c61192bd2e2c" 2120 | dependencies: 2121 | lodash.assign "^3.0.0" 2122 | lodash.restparam "^3.0.0" 2123 | 2124 | lodash.defaults@^4.0.1: 2125 | version "4.2.0" 2126 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" 2127 | 2128 | lodash.filter@^4.4.0: 2129 | version "4.6.0" 2130 | resolved "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" 2131 | 2132 | lodash.flatten@^4.2.0: 2133 | version "4.4.0" 2134 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 2135 | 2136 | lodash.foreach@^4.3.0: 2137 | version "4.5.0" 2138 | resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" 2139 | 2140 | lodash.isarguments@^3.0.0: 2141 | version "3.1.0" 2142 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2143 | 2144 | lodash.isarray@^3.0.0: 2145 | version "3.0.4" 2146 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2147 | 2148 | lodash.keys@^3.0.0: 2149 | version "3.1.2" 2150 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2151 | dependencies: 2152 | lodash._getnative "^3.0.0" 2153 | lodash.isarguments "^3.0.0" 2154 | lodash.isarray "^3.0.0" 2155 | 2156 | lodash.map@^4.4.0: 2157 | version "4.6.0" 2158 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" 2159 | 2160 | lodash.merge@^4.4.0: 2161 | version "4.6.0" 2162 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 2163 | 2164 | lodash.pick@^4.2.1: 2165 | version "4.4.0" 2166 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" 2167 | 2168 | lodash.pickby@^4.0.0: 2169 | version "4.6.0" 2170 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff" 2171 | 2172 | lodash.reduce@^4.4.0: 2173 | version "4.6.0" 2174 | resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" 2175 | 2176 | lodash.reject@^4.4.0: 2177 | version "4.6.0" 2178 | resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" 2179 | 2180 | lodash.restparam@^3.0.0: 2181 | version "3.6.1" 2182 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 2183 | 2184 | lodash.some@^4.4.0: 2185 | version "4.6.0" 2186 | resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" 2187 | 2188 | lodash@^4.0.0, lodash@^4.17.2, lodash@^4.2.0, lodash@^4.3.0: 2189 | version "4.17.4" 2190 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2191 | 2192 | lolex@1.3.2: 2193 | version "1.3.2" 2194 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-1.3.2.tgz#7c3da62ffcb30f0f5a80a2566ca24e45d8a01f31" 2195 | 2196 | loose-envify@^1.0.0, loose-envify@^1.1.0: 2197 | version "1.3.1" 2198 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2199 | dependencies: 2200 | js-tokens "^3.0.0" 2201 | 2202 | lowercase-keys@^1.0.0: 2203 | version "1.0.0" 2204 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2205 | 2206 | lru-cache@2: 2207 | version "2.7.3" 2208 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" 2209 | 2210 | map-stream@~0.1.0: 2211 | version "0.1.0" 2212 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 2213 | 2214 | micromatch@^2.1.5: 2215 | version "2.3.11" 2216 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2217 | dependencies: 2218 | arr-diff "^2.0.0" 2219 | array-unique "^0.2.1" 2220 | braces "^1.8.2" 2221 | expand-brackets "^0.1.4" 2222 | extglob "^0.3.1" 2223 | filename-regex "^2.0.0" 2224 | is-extglob "^1.0.0" 2225 | is-glob "^2.0.1" 2226 | kind-of "^3.0.2" 2227 | normalize-path "^2.0.1" 2228 | object.omit "^2.0.0" 2229 | parse-glob "^3.0.4" 2230 | regex-cache "^0.4.2" 2231 | 2232 | mime-db@~1.27.0: 2233 | version "1.27.0" 2234 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2235 | 2236 | mime-types@^2.1.12, mime-types@~2.1.7: 2237 | version "2.1.15" 2238 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2239 | dependencies: 2240 | mime-db "~1.27.0" 2241 | 2242 | minimatch@0.3: 2243 | version "0.3.0" 2244 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.3.0.tgz#275d8edaac4f1bb3326472089e7949c8394699dd" 2245 | dependencies: 2246 | lru-cache "2" 2247 | sigmund "~1.0.0" 2248 | 2249 | minimatch@^3.0.0, minimatch@^3.0.2: 2250 | version "3.0.3" 2251 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2252 | dependencies: 2253 | brace-expansion "^1.0.0" 2254 | 2255 | minimist@0.0.8: 2256 | version "0.0.8" 2257 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2258 | 2259 | minimist@^1.2.0: 2260 | version "1.2.0" 2261 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2262 | 2263 | mkdirp@0.3.0: 2264 | version "0.3.0" 2265 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.0.tgz#1bbf5ab1ba827af23575143490426455f481fe1e" 2266 | 2267 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 2268 | version "0.5.1" 2269 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2270 | dependencies: 2271 | minimist "0.0.8" 2272 | 2273 | mocha@^2.4.5: 2274 | version "2.5.3" 2275 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-2.5.3.tgz#161be5bdeb496771eb9b35745050b622b5aefc58" 2276 | dependencies: 2277 | commander "2.3.0" 2278 | debug "2.2.0" 2279 | diff "1.4.0" 2280 | escape-string-regexp "1.0.2" 2281 | glob "3.2.11" 2282 | growl "1.9.2" 2283 | jade "0.26.3" 2284 | mkdirp "0.5.1" 2285 | supports-color "1.2.0" 2286 | to-iso-string "0.0.2" 2287 | 2288 | ms@0.7.1: 2289 | version "0.7.1" 2290 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2291 | 2292 | ms@0.7.2: 2293 | version "0.7.2" 2294 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2295 | 2296 | mute-stream@0.0.5: 2297 | version "0.0.5" 2298 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2299 | 2300 | nan@^2.3.0: 2301 | version "2.6.2" 2302 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2303 | 2304 | nested-error-stacks@^1.0.0: 2305 | version "1.0.2" 2306 | resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz#19f619591519f096769a5ba9a86e6eeec823c3cf" 2307 | dependencies: 2308 | inherits "~2.0.1" 2309 | 2310 | node-fetch@^1.0.1: 2311 | version "1.6.3" 2312 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" 2313 | dependencies: 2314 | encoding "^0.1.11" 2315 | is-stream "^1.0.1" 2316 | 2317 | node-pre-gyp@^0.6.29: 2318 | version "0.6.34" 2319 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 2320 | dependencies: 2321 | mkdirp "^0.5.1" 2322 | nopt "^4.0.1" 2323 | npmlog "^4.0.2" 2324 | rc "^1.1.7" 2325 | request "^2.81.0" 2326 | rimraf "^2.6.1" 2327 | semver "^5.3.0" 2328 | tar "^2.2.1" 2329 | tar-pack "^3.4.0" 2330 | 2331 | nodemon@^1.9.1: 2332 | version "1.11.0" 2333 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-1.11.0.tgz#226c562bd2a7b13d3d7518b49ad4828a3623d06c" 2334 | dependencies: 2335 | chokidar "^1.4.3" 2336 | debug "^2.2.0" 2337 | es6-promise "^3.0.2" 2338 | ignore-by-default "^1.0.0" 2339 | lodash.defaults "^3.1.2" 2340 | minimatch "^3.0.0" 2341 | ps-tree "^1.0.1" 2342 | touch "1.0.0" 2343 | undefsafe "0.0.3" 2344 | update-notifier "0.5.0" 2345 | 2346 | nopt@^4.0.1: 2347 | version "4.0.1" 2348 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2349 | dependencies: 2350 | abbrev "1" 2351 | osenv "^0.1.4" 2352 | 2353 | nopt@~1.0.10: 2354 | version "1.0.10" 2355 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 2356 | dependencies: 2357 | abbrev "1" 2358 | 2359 | normalize-path@^2.0.1: 2360 | version "2.1.1" 2361 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2362 | dependencies: 2363 | remove-trailing-separator "^1.0.1" 2364 | 2365 | npmlog@^4.0.2: 2366 | version "4.0.2" 2367 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 2368 | dependencies: 2369 | are-we-there-yet "~1.1.2" 2370 | console-control-strings "~1.1.0" 2371 | gauge "~2.7.1" 2372 | set-blocking "~2.0.0" 2373 | 2374 | nth-check@~1.0.1: 2375 | version "1.0.1" 2376 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" 2377 | dependencies: 2378 | boolbase "~1.0.0" 2379 | 2380 | number-is-nan@^1.0.0: 2381 | version "1.0.1" 2382 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2383 | 2384 | "nwmatcher@>= 1.3.7 < 2.0.0": 2385 | version "1.3.9" 2386 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 2387 | 2388 | oauth-sign@~0.8.1: 2389 | version "0.8.2" 2390 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2391 | 2392 | object-assign@^3.0.0: 2393 | version "3.0.0" 2394 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 2395 | 2396 | object-assign@^4.0.1, object-assign@^4.1.0: 2397 | version "4.1.1" 2398 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2399 | 2400 | object-is@^1.0.1: 2401 | version "1.0.1" 2402 | resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.1.tgz#0aa60ec9989a0b3ed795cf4d06f62cf1ad6539b6" 2403 | 2404 | object-keys@^1.0.10, object-keys@^1.0.8: 2405 | version "1.0.11" 2406 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2407 | 2408 | object.assign@^4.0.4: 2409 | version "4.0.4" 2410 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc" 2411 | dependencies: 2412 | define-properties "^1.1.2" 2413 | function-bind "^1.1.0" 2414 | object-keys "^1.0.10" 2415 | 2416 | object.entries@^1.0.3: 2417 | version "1.0.4" 2418 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.0.4.tgz#1bf9a4dd2288f5b33f3a993d257661f05d161a5f" 2419 | dependencies: 2420 | define-properties "^1.1.2" 2421 | es-abstract "^1.6.1" 2422 | function-bind "^1.1.0" 2423 | has "^1.0.1" 2424 | 2425 | object.omit@^2.0.0: 2426 | version "2.0.1" 2427 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2428 | dependencies: 2429 | for-own "^0.1.4" 2430 | is-extendable "^0.1.1" 2431 | 2432 | object.values@^1.0.3: 2433 | version "1.0.4" 2434 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.0.4.tgz#e524da09b4f66ff05df457546ec72ac99f13069a" 2435 | dependencies: 2436 | define-properties "^1.1.2" 2437 | es-abstract "^1.6.1" 2438 | function-bind "^1.1.0" 2439 | has "^1.0.1" 2440 | 2441 | once@^1.3.0, once@^1.3.3: 2442 | version "1.4.0" 2443 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2444 | dependencies: 2445 | wrappy "1" 2446 | 2447 | once@~1.3.0: 2448 | version "1.3.3" 2449 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2450 | dependencies: 2451 | wrappy "1" 2452 | 2453 | onetime@^1.0.0: 2454 | version "1.1.0" 2455 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2456 | 2457 | optionator@^0.8.1: 2458 | version "0.8.2" 2459 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2460 | dependencies: 2461 | deep-is "~0.1.3" 2462 | fast-levenshtein "~2.0.4" 2463 | levn "~0.3.0" 2464 | prelude-ls "~1.1.2" 2465 | type-check "~0.3.2" 2466 | wordwrap "~1.0.0" 2467 | 2468 | os-homedir@^1.0.0: 2469 | version "1.0.2" 2470 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2471 | 2472 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2473 | version "1.0.2" 2474 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2475 | 2476 | osenv@^0.1.0, osenv@^0.1.4: 2477 | version "0.1.4" 2478 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2479 | dependencies: 2480 | os-homedir "^1.0.0" 2481 | os-tmpdir "^1.0.0" 2482 | 2483 | output-file-sync@^1.1.0: 2484 | version "1.1.2" 2485 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2486 | dependencies: 2487 | graceful-fs "^4.1.4" 2488 | mkdirp "^0.5.1" 2489 | object-assign "^4.1.0" 2490 | 2491 | package-json@^1.0.0: 2492 | version "1.2.0" 2493 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-1.2.0.tgz#c8ecac094227cdf76a316874ed05e27cc939a0e0" 2494 | dependencies: 2495 | got "^3.2.0" 2496 | registry-url "^3.0.0" 2497 | 2498 | parse-glob@^3.0.4: 2499 | version "3.0.4" 2500 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2501 | dependencies: 2502 | glob-base "^0.3.0" 2503 | is-dotfile "^1.0.0" 2504 | is-extglob "^1.0.0" 2505 | is-glob "^2.0.0" 2506 | 2507 | parse5@^1.5.1: 2508 | version "1.5.1" 2509 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2510 | 2511 | path-is-absolute@^1.0.0: 2512 | version "1.0.1" 2513 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2514 | 2515 | path-is-inside@^1.0.1: 2516 | version "1.0.2" 2517 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2518 | 2519 | pause-stream@0.0.11: 2520 | version "0.0.11" 2521 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 2522 | dependencies: 2523 | through "~2.3" 2524 | 2525 | performance-now@^0.2.0: 2526 | version "0.2.0" 2527 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2528 | 2529 | pify@^2.0.0: 2530 | version "2.3.0" 2531 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2532 | 2533 | pinkie-promise@^2.0.0: 2534 | version "2.0.1" 2535 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2536 | dependencies: 2537 | pinkie "^2.0.0" 2538 | 2539 | pinkie@^2.0.0: 2540 | version "2.0.4" 2541 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2542 | 2543 | pluralize@^1.2.1: 2544 | version "1.2.1" 2545 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2546 | 2547 | prelude-ls@~1.1.2: 2548 | version "1.1.2" 2549 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2550 | 2551 | prepend-http@^1.0.0: 2552 | version "1.0.4" 2553 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2554 | 2555 | preserve@^0.2.0: 2556 | version "0.2.0" 2557 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2558 | 2559 | private@^0.1.6: 2560 | version "0.1.7" 2561 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2562 | 2563 | process-nextick-args@~1.0.6: 2564 | version "1.0.7" 2565 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2566 | 2567 | progress@^1.1.8: 2568 | version "1.1.8" 2569 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2570 | 2571 | promise@^7.1.1: 2572 | version "7.1.1" 2573 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 2574 | dependencies: 2575 | asap "~2.0.3" 2576 | 2577 | prop-types@^15.5.4, prop-types@^15.5.7, prop-types@~15.5.7: 2578 | version "15.5.8" 2579 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.8.tgz#6b7b2e141083be38c8595aa51fc55775c7199394" 2580 | dependencies: 2581 | fbjs "^0.8.9" 2582 | 2583 | ps-tree@^1.0.1: 2584 | version "1.1.0" 2585 | resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.1.0.tgz#b421b24140d6203f1ed3c76996b4427b08e8c014" 2586 | dependencies: 2587 | event-stream "~3.3.0" 2588 | 2589 | punycode@^1.4.1: 2590 | version "1.4.1" 2591 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2592 | 2593 | qs@~6.4.0: 2594 | version "6.4.0" 2595 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2596 | 2597 | randomatic@^1.1.3: 2598 | version "1.1.6" 2599 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2600 | dependencies: 2601 | is-number "^2.0.2" 2602 | kind-of "^3.0.2" 2603 | 2604 | rc@^1.0.1, rc@^1.1.7: 2605 | version "1.2.1" 2606 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2607 | dependencies: 2608 | deep-extend "~0.4.0" 2609 | ini "~1.3.0" 2610 | minimist "^1.2.0" 2611 | strip-json-comments "~2.0.1" 2612 | 2613 | react-addons-test-utils@^15.0.0: 2614 | version "15.5.1" 2615 | resolved "https://registry.yarnpkg.com/react-addons-test-utils/-/react-addons-test-utils-15.5.1.tgz#e0d258cda2a122ad0dff69f838260d0c3958f5f7" 2616 | dependencies: 2617 | fbjs "^0.8.4" 2618 | object-assign "^4.1.0" 2619 | 2620 | react-dom@^15.0.0: 2621 | version "15.5.4" 2622 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.5.4.tgz#ba0c28786fd52ed7e4f2135fe0288d462aef93da" 2623 | dependencies: 2624 | fbjs "^0.8.9" 2625 | loose-envify "^1.1.0" 2626 | object-assign "^4.1.0" 2627 | prop-types "~15.5.7" 2628 | 2629 | react-test-renderer@^15.5.4: 2630 | version "15.5.4" 2631 | resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-15.5.4.tgz#d4ebb23f613d685ea8f5390109c2d20fbf7c83bc" 2632 | dependencies: 2633 | fbjs "^0.8.9" 2634 | object-assign "^4.1.0" 2635 | 2636 | react@^15.0.0: 2637 | version "15.5.4" 2638 | resolved "https://registry.yarnpkg.com/react/-/react-15.5.4.tgz#fa83eb01506ab237cdc1c8c3b1cea8de012bf047" 2639 | dependencies: 2640 | fbjs "^0.8.9" 2641 | loose-envify "^1.1.0" 2642 | object-assign "^4.1.0" 2643 | prop-types "^15.5.7" 2644 | 2645 | read-all-stream@^3.0.0: 2646 | version "3.1.0" 2647 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 2648 | dependencies: 2649 | pinkie-promise "^2.0.0" 2650 | readable-stream "^2.0.0" 2651 | 2652 | readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.1.4, readable-stream@^2.2.2: 2653 | version "2.2.9" 2654 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 2655 | dependencies: 2656 | buffer-shims "~1.0.0" 2657 | core-util-is "~1.0.0" 2658 | inherits "~2.0.1" 2659 | isarray "~1.0.0" 2660 | process-nextick-args "~1.0.6" 2661 | string_decoder "~1.0.0" 2662 | util-deprecate "~1.0.1" 2663 | 2664 | readdirp@^2.0.0: 2665 | version "2.1.0" 2666 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2667 | dependencies: 2668 | graceful-fs "^4.1.2" 2669 | minimatch "^3.0.2" 2670 | readable-stream "^2.0.2" 2671 | set-immediate-shim "^1.0.1" 2672 | 2673 | readline2@^1.0.1: 2674 | version "1.0.1" 2675 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2676 | dependencies: 2677 | code-point-at "^1.0.0" 2678 | is-fullwidth-code-point "^1.0.0" 2679 | mute-stream "0.0.5" 2680 | 2681 | regenerate@^1.2.1: 2682 | version "1.3.2" 2683 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2684 | 2685 | regenerator-runtime@^0.10.0: 2686 | version "0.10.3" 2687 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 2688 | 2689 | regenerator-transform@0.9.11: 2690 | version "0.9.11" 2691 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 2692 | dependencies: 2693 | babel-runtime "^6.18.0" 2694 | babel-types "^6.19.0" 2695 | private "^0.1.6" 2696 | 2697 | regex-cache@^0.4.2: 2698 | version "0.4.3" 2699 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2700 | dependencies: 2701 | is-equal-shallow "^0.1.3" 2702 | is-primitive "^2.0.0" 2703 | 2704 | regexpu-core@^2.0.0: 2705 | version "2.0.0" 2706 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2707 | dependencies: 2708 | regenerate "^1.2.1" 2709 | regjsgen "^0.2.0" 2710 | regjsparser "^0.1.4" 2711 | 2712 | registry-url@^3.0.0: 2713 | version "3.1.0" 2714 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2715 | dependencies: 2716 | rc "^1.0.1" 2717 | 2718 | regjsgen@^0.2.0: 2719 | version "0.2.0" 2720 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2721 | 2722 | regjsparser@^0.1.4: 2723 | version "0.1.5" 2724 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2725 | dependencies: 2726 | jsesc "~0.5.0" 2727 | 2728 | remove-trailing-separator@^1.0.1: 2729 | version "1.0.1" 2730 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 2731 | 2732 | repeat-element@^1.1.2: 2733 | version "1.1.2" 2734 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2735 | 2736 | repeat-string@^1.5.2: 2737 | version "1.6.1" 2738 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2739 | 2740 | repeating@^1.1.2: 2741 | version "1.1.3" 2742 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" 2743 | dependencies: 2744 | is-finite "^1.0.0" 2745 | 2746 | repeating@^2.0.0: 2747 | version "2.0.1" 2748 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2749 | dependencies: 2750 | is-finite "^1.0.0" 2751 | 2752 | request@^2.55.0, request@^2.81.0: 2753 | version "2.81.0" 2754 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2755 | dependencies: 2756 | aws-sign2 "~0.6.0" 2757 | aws4 "^1.2.1" 2758 | caseless "~0.12.0" 2759 | combined-stream "~1.0.5" 2760 | extend "~3.0.0" 2761 | forever-agent "~0.6.1" 2762 | form-data "~2.1.1" 2763 | har-validator "~4.2.1" 2764 | hawk "~3.1.3" 2765 | http-signature "~1.1.0" 2766 | is-typedarray "~1.0.0" 2767 | isstream "~0.1.2" 2768 | json-stringify-safe "~5.0.1" 2769 | mime-types "~2.1.7" 2770 | oauth-sign "~0.8.1" 2771 | performance-now "^0.2.0" 2772 | qs "~6.4.0" 2773 | safe-buffer "^5.0.1" 2774 | stringstream "~0.0.4" 2775 | tough-cookie "~2.3.0" 2776 | tunnel-agent "^0.6.0" 2777 | uuid "^3.0.0" 2778 | 2779 | require-uncached@^1.0.2: 2780 | version "1.0.3" 2781 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2782 | dependencies: 2783 | caller-path "^0.1.0" 2784 | resolve-from "^1.0.0" 2785 | 2786 | resolve-from@^1.0.0: 2787 | version "1.0.1" 2788 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2789 | 2790 | restore-cursor@^1.0.1: 2791 | version "1.0.1" 2792 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2793 | dependencies: 2794 | exit-hook "^1.0.0" 2795 | onetime "^1.0.0" 2796 | 2797 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 2798 | version "2.6.1" 2799 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2800 | dependencies: 2801 | glob "^7.0.5" 2802 | 2803 | run-async@^0.1.0: 2804 | version "0.1.0" 2805 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 2806 | dependencies: 2807 | once "^1.3.0" 2808 | 2809 | rx-lite@^3.1.2: 2810 | version "3.1.2" 2811 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 2812 | 2813 | safe-buffer@^5.0.1: 2814 | version "5.0.1" 2815 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 2816 | 2817 | samsam@1.1.2, samsam@~1.1: 2818 | version "1.1.2" 2819 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.1.2.tgz#bec11fdc83a9fda063401210e40176c3024d1567" 2820 | 2821 | sax@^1.1.4: 2822 | version "1.2.2" 2823 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 2824 | 2825 | semver-diff@^2.0.0: 2826 | version "2.1.0" 2827 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 2828 | dependencies: 2829 | semver "^5.0.3" 2830 | 2831 | semver@^5.0.3, semver@^5.3.0: 2832 | version "5.3.0" 2833 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2834 | 2835 | set-blocking@~2.0.0: 2836 | version "2.0.0" 2837 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2838 | 2839 | set-immediate-shim@^1.0.1: 2840 | version "1.0.1" 2841 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2842 | 2843 | setimmediate@^1.0.5: 2844 | version "1.0.5" 2845 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2846 | 2847 | shelljs@^0.6.0: 2848 | version "0.6.1" 2849 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.6.1.tgz#ec6211bed1920442088fe0f70b2837232ed2c8a8" 2850 | 2851 | sigmund@~1.0.0: 2852 | version "1.0.1" 2853 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 2854 | 2855 | signal-exit@^3.0.0: 2856 | version "3.0.2" 2857 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2858 | 2859 | sinon@^1.17.3: 2860 | version "1.17.7" 2861 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-1.17.7.tgz#4542a4f49ba0c45c05eb2e9dd9d203e2b8efe0bf" 2862 | dependencies: 2863 | formatio "1.1.1" 2864 | lolex "1.3.2" 2865 | samsam "1.1.2" 2866 | util ">=0.10.3 <1" 2867 | 2868 | slash@^1.0.0: 2869 | version "1.0.0" 2870 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2871 | 2872 | slice-ansi@0.0.4: 2873 | version "0.0.4" 2874 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2875 | 2876 | slide@^1.1.5: 2877 | version "1.1.6" 2878 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2879 | 2880 | sntp@1.x.x: 2881 | version "1.0.9" 2882 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2883 | dependencies: 2884 | hoek "2.x.x" 2885 | 2886 | source-map-support@^0.4.2: 2887 | version "0.4.14" 2888 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef" 2889 | dependencies: 2890 | source-map "^0.5.6" 2891 | 2892 | source-map@^0.5.0, source-map@^0.5.6: 2893 | version "0.5.6" 2894 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2895 | 2896 | source-map@~0.2.0: 2897 | version "0.2.0" 2898 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 2899 | dependencies: 2900 | amdefine ">=0.0.4" 2901 | 2902 | split@0.3: 2903 | version "0.3.3" 2904 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 2905 | dependencies: 2906 | through "2" 2907 | 2908 | sprintf-js@~1.0.2: 2909 | version "1.0.3" 2910 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2911 | 2912 | sshpk@^1.7.0: 2913 | version "1.13.0" 2914 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 2915 | dependencies: 2916 | asn1 "~0.2.3" 2917 | assert-plus "^1.0.0" 2918 | dashdash "^1.12.0" 2919 | getpass "^0.1.1" 2920 | optionalDependencies: 2921 | bcrypt-pbkdf "^1.0.0" 2922 | ecc-jsbn "~0.1.1" 2923 | jodid25519 "^1.0.0" 2924 | jsbn "~0.1.0" 2925 | tweetnacl "~0.14.0" 2926 | 2927 | stream-combiner@~0.0.4: 2928 | version "0.0.4" 2929 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 2930 | dependencies: 2931 | duplexer "~0.1.1" 2932 | 2933 | stream-shift@^1.0.0: 2934 | version "1.0.0" 2935 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 2936 | 2937 | string-length@^1.0.0: 2938 | version "1.0.1" 2939 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 2940 | dependencies: 2941 | strip-ansi "^3.0.0" 2942 | 2943 | string-width@^1.0.1: 2944 | version "1.0.2" 2945 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2946 | dependencies: 2947 | code-point-at "^1.0.0" 2948 | is-fullwidth-code-point "^1.0.0" 2949 | strip-ansi "^3.0.0" 2950 | 2951 | string-width@^2.0.0: 2952 | version "2.0.0" 2953 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 2954 | dependencies: 2955 | is-fullwidth-code-point "^2.0.0" 2956 | strip-ansi "^3.0.0" 2957 | 2958 | string_decoder@~1.0.0: 2959 | version "1.0.0" 2960 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.0.tgz#f06f41157b664d86069f84bdbdc9b0d8ab281667" 2961 | dependencies: 2962 | buffer-shims "~1.0.0" 2963 | 2964 | stringstream@~0.0.4: 2965 | version "0.0.5" 2966 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2967 | 2968 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2969 | version "3.0.1" 2970 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2971 | dependencies: 2972 | ansi-regex "^2.0.0" 2973 | 2974 | strip-json-comments@~1.0.1: 2975 | version "1.0.4" 2976 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 2977 | 2978 | strip-json-comments@~2.0.1: 2979 | version "2.0.1" 2980 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2981 | 2982 | supports-color@1.2.0: 2983 | version "1.2.0" 2984 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-1.2.0.tgz#ff1ed1e61169d06b3cf2d588e188b18d8847e17e" 2985 | 2986 | supports-color@^2.0.0: 2987 | version "2.0.0" 2988 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2989 | 2990 | "symbol-tree@>= 3.1.0 < 4.0.0": 2991 | version "3.2.2" 2992 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2993 | 2994 | table@^3.7.8: 2995 | version "3.8.3" 2996 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 2997 | dependencies: 2998 | ajv "^4.7.0" 2999 | ajv-keywords "^1.0.0" 3000 | chalk "^1.1.1" 3001 | lodash "^4.0.0" 3002 | slice-ansi "0.0.4" 3003 | string-width "^2.0.0" 3004 | 3005 | tar-pack@^3.4.0: 3006 | version "3.4.0" 3007 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3008 | dependencies: 3009 | debug "^2.2.0" 3010 | fstream "^1.0.10" 3011 | fstream-ignore "^1.0.5" 3012 | once "^1.3.3" 3013 | readable-stream "^2.1.4" 3014 | rimraf "^2.5.1" 3015 | tar "^2.2.1" 3016 | uid-number "^0.0.6" 3017 | 3018 | tar@^2.2.1: 3019 | version "2.2.1" 3020 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3021 | dependencies: 3022 | block-stream "*" 3023 | fstream "^1.0.2" 3024 | inherits "2" 3025 | 3026 | text-table@~0.2.0: 3027 | version "0.2.0" 3028 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3029 | 3030 | through@2, through@^2.3.6, through@~2.3, through@~2.3.1: 3031 | version "2.3.8" 3032 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3033 | 3034 | timed-out@^2.0.0: 3035 | version "2.0.0" 3036 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-2.0.0.tgz#f38b0ae81d3747d628001f41dafc652ace671c0a" 3037 | 3038 | to-fast-properties@^1.0.1: 3039 | version "1.0.2" 3040 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3041 | 3042 | to-iso-string@0.0.2: 3043 | version "0.0.2" 3044 | resolved "https://registry.yarnpkg.com/to-iso-string/-/to-iso-string-0.0.2.tgz#4dc19e664dfccbe25bd8db508b00c6da158255d1" 3045 | 3046 | touch@1.0.0: 3047 | version "1.0.0" 3048 | resolved "https://registry.yarnpkg.com/touch/-/touch-1.0.0.tgz#449cbe2dbae5a8c8038e30d71fa0ff464947c4de" 3049 | dependencies: 3050 | nopt "~1.0.10" 3051 | 3052 | tough-cookie@^2.2.0, tough-cookie@~2.3.0: 3053 | version "2.3.2" 3054 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3055 | dependencies: 3056 | punycode "^1.4.1" 3057 | 3058 | tr46@~0.0.3: 3059 | version "0.0.3" 3060 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3061 | 3062 | trim-right@^1.0.1: 3063 | version "1.0.1" 3064 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3065 | 3066 | tryit@^1.0.1: 3067 | version "1.0.3" 3068 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3069 | 3070 | tunnel-agent@^0.6.0: 3071 | version "0.6.0" 3072 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3073 | dependencies: 3074 | safe-buffer "^5.0.1" 3075 | 3076 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3077 | version "0.14.5" 3078 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3079 | 3080 | type-check@~0.3.2: 3081 | version "0.3.2" 3082 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3083 | dependencies: 3084 | prelude-ls "~1.1.2" 3085 | 3086 | type-detect@0.1.1: 3087 | version "0.1.1" 3088 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 3089 | 3090 | type-detect@^1.0.0: 3091 | version "1.0.0" 3092 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 3093 | 3094 | typedarray@^0.0.6: 3095 | version "0.0.6" 3096 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3097 | 3098 | ua-parser-js@^0.7.9: 3099 | version "0.7.12" 3100 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 3101 | 3102 | uid-number@^0.0.6: 3103 | version "0.0.6" 3104 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3105 | 3106 | undefsafe@0.0.3: 3107 | version "0.0.3" 3108 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-0.0.3.tgz#ecca3a03e56b9af17385baac812ac83b994a962f" 3109 | 3110 | update-notifier@0.5.0: 3111 | version "0.5.0" 3112 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-0.5.0.tgz#07b5dc2066b3627ab3b4f530130f7eddda07a4cc" 3113 | dependencies: 3114 | chalk "^1.0.0" 3115 | configstore "^1.0.0" 3116 | is-npm "^1.0.0" 3117 | latest-version "^1.0.0" 3118 | repeating "^1.1.2" 3119 | semver-diff "^2.0.0" 3120 | string-length "^1.0.0" 3121 | 3122 | user-home@^1.1.1: 3123 | version "1.1.1" 3124 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3125 | 3126 | user-home@^2.0.0: 3127 | version "2.0.0" 3128 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3129 | dependencies: 3130 | os-homedir "^1.0.0" 3131 | 3132 | util-deprecate@~1.0.1: 3133 | version "1.0.2" 3134 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3135 | 3136 | "util@>=0.10.3 <1": 3137 | version "0.10.3" 3138 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3139 | dependencies: 3140 | inherits "2.0.1" 3141 | 3142 | uuid@^2.0.1, uuid@^2.0.3: 3143 | version "2.0.3" 3144 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3145 | 3146 | uuid@^3.0.0: 3147 | version "3.0.1" 3148 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3149 | 3150 | v8flags@^2.0.10: 3151 | version "2.0.12" 3152 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.12.tgz#73235d9f7176f8e8833fb286795445f7938d84e5" 3153 | dependencies: 3154 | user-home "^1.1.1" 3155 | 3156 | verror@1.3.6: 3157 | version "1.3.6" 3158 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3159 | dependencies: 3160 | extsprintf "1.0.2" 3161 | 3162 | webidl-conversions@^3.0.0, webidl-conversions@^3.0.1: 3163 | version "3.0.1" 3164 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3165 | 3166 | whatwg-fetch@>=0.10.0: 3167 | version "2.0.3" 3168 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 3169 | 3170 | whatwg-url@^2.0.1: 3171 | version "2.0.1" 3172 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-2.0.1.tgz#5396b2043f020ee6f704d9c45ea8519e724de659" 3173 | dependencies: 3174 | tr46 "~0.0.3" 3175 | webidl-conversions "^3.0.0" 3176 | 3177 | wide-align@^1.1.0: 3178 | version "1.1.0" 3179 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3180 | dependencies: 3181 | string-width "^1.0.1" 3182 | 3183 | wordwrap@~1.0.0: 3184 | version "1.0.0" 3185 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3186 | 3187 | wrappy@1: 3188 | version "1.0.2" 3189 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3190 | 3191 | write-file-atomic@^1.1.2: 3192 | version "1.3.1" 3193 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.1.tgz#7d45ba32316328dd1ec7d90f60ebc0d845bb759a" 3194 | dependencies: 3195 | graceful-fs "^4.1.11" 3196 | imurmurhash "^0.1.4" 3197 | slide "^1.1.5" 3198 | 3199 | write@^0.2.1: 3200 | version "0.2.1" 3201 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3202 | dependencies: 3203 | mkdirp "^0.5.1" 3204 | 3205 | xdg-basedir@^2.0.0: 3206 | version "2.0.0" 3207 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 3208 | dependencies: 3209 | os-homedir "^1.0.0" 3210 | 3211 | "xml-name-validator@>= 2.0.1 < 3.0.0": 3212 | version "2.0.1" 3213 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3214 | 3215 | xtend@^4.0.0: 3216 | version "4.0.1" 3217 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3218 | --------------------------------------------------------------------------------