├── .babelrc ├── .eslintrc.js ├── .flowconfig ├── .gitignore ├── .travis.yml ├── README.md ├── decls ├── types.js └── vars.js ├── examples ├── .babelrc ├── README.md ├── package.json ├── src │ ├── manifest.json │ └── pages │ │ ├── background │ │ ├── actions.js │ │ ├── index.js │ │ ├── reducers.js │ │ └── store.js │ │ ├── constants.js │ │ └── popup │ │ ├── actions.js │ │ ├── app.js │ │ └── index.js └── webpack.config.js ├── package.json ├── src ├── background-store.js ├── constants.js ├── index.js └── ui-store.js ├── tests ├── background-store.js └── ui-store.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "es2015" 4 | ], 5 | "plugins": [ 6 | "transform-flow-strip-types", 7 | "transform-object-rest-spread", 8 | "transform-async-to-generator" 9 | ] 10 | } -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | parser: 'babel-eslint', 3 | extends: [ 4 | 'airbnb-base', 5 | 'plugin:flowtype/recommended' 6 | ], 7 | plugins: [ 8 | 'flowtype' 9 | ], 10 | env: { 11 | browser: true, 12 | webextensions: true, 13 | jasmine: true, 14 | jest: true 15 | }, 16 | rules: { 17 | indent: ['error', 4], 18 | 'one-var': ['error', { 19 | initialized: 'never' 20 | }], 21 | 'one-var-declaration-per-line': ['error', 'initializations'], 22 | 'comma-dangle': ['error', 'never'], 23 | 'object-curly-spacing': ['error', 'never'], 24 | 'brace-style': ['error', 'stroustrup', { 25 | 'allowSingleLine': false 26 | }], 27 | 'linebreak-style': 'off', 28 | 'no-prototype-builtins': 'off', 29 | 'arrow-parens': 'off', 30 | 'max-len': 'off', 31 | 'generator-star-spacing': 0 // TODO: babel-eslint bug https://github.com/babel/babel-eslint/issues/350 32 | } 33 | }; 34 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | /coverage/.* 3 | /examples/.* 4 | 5 | [include] 6 | 7 | [libs] 8 | decls/ 9 | 10 | [options] 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | lib 4 | coverage 5 | *.log 6 | examples/dist -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 7 4 | script: 5 | - npm run check-code 6 | - npm run test:coverage 7 | - npm run build 8 | cache: 9 | yarn: true 10 | directories: 11 | - node_modules 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # redux-webext 2 | 3 | [![Build Status](https://travis-ci.org/ivantsov/redux-webext.svg?branch=master)](https://travis-ci.org/ivantsov/redux-webext) 4 | [![codecov](https://codecov.io/gh/ivantsov/redux-webext/branch/master/graph/badge.svg)](https://codecov.io/gh/ivantsov/redux-webext) 5 | [![npm version](https://badge.fury.io/js/redux-webext.svg)](https://badge.fury.io/js/redux-webext) 6 | 7 | This package allows you to use [Redux](https://github.com/reactjs/redux) for managing the state of your WebExtension. 8 | 9 | ## Installation 10 | 11 | `npm install redux-webext --save` 12 | 13 | ## Introduction 14 | 15 | Usually WebExtension consists of two basic parts: 16 | 17 | * _background page_, where you store the data and process it somehow 18 | * _UI pages_ (e.g. popup or content scripts), where you show the data from _background page_ 19 | 20 |
21 |

22 | 23 |

24 |
25 | 26 | As you can see, to provide data between _background_ and _UI_ pages you have to use [messages](https://developer.chrome.com/extensions/messaging). Or... actually, you don't have to, because of `redux-webext`: 27 | 28 |
29 |

30 | 31 |

32 |
33 | 34 | In a nutshell, `redux-webext` takes care of communication between _background_ and _UI_ pages using Redux. But there are 2 key things that you should understand: 35 | 36 | * In _background_ page there is Redux store that contains the entire state of your WebExtension. All logic (actions, reducers etc) is placed in _background_ page as well. 37 | * _UI_ pages have access to the state via their own Redux stores, but **there are no real actions or reducers**. I said *real* because _UI_ pages might have functions associated with actions in _background_ page. You can think about it like a proxy that allows you to call _background_ actions from _UI_ pages. 38 | 39 | The words above don't make a lot of sense without code, right? So, there's [tutorial with example](https://github.com/ivantsov/redux-webext/tree/master/examples) where you can find how to use `redux-webext` and how it works. 40 | 41 | ## Examples 42 | 43 | * https://github.com/ivantsov/redux-webext/tree/master/examples - simple example with tutorial 44 | * https://github.com/ivantsov/yandex-mail-notifier-chrome - real extension that uses `redux-webext` 45 | * https://github.com/armateam/extension - a real and simple extension that uses `redux-webext` 46 | 47 | ## API 48 | 49 | #### `createBackgroundStore(options)` - creates Redux store for _background_ page. 50 | 51 | #### Options 52 | 53 | - `store` - instance of Redux store. 54 | - `actions` (optional) - object which keys are types of actions in _UI_ page and values are actions in _background_ page. 55 | - `onDisconnect` (optional) - function that will be called on destroying _UI_ store (e.g. right after closing a popup). 56 | 57 | Returns the provided `store`. 58 | 59 | #### Example 60 | 61 | ```js 62 | const store = createStore(reducer); // real Redux store 63 | 64 | const backgroundStore = createBackgroundStore({ 65 | store, 66 | actions: { 67 | // "INCREMENT_UI_COUNTER" is a string that will be used as a type of action in UI page 68 | // "incrementUICounter" is an action is background page 69 | INCREMENT_UI_COUNTER: incrementUICounter, 70 | DECREMENT_UI_COUNTER: decrementUICounter 71 | } 72 | }); 73 | ``` 74 | 75 | #### `createUIStore()` - creates Redux store for _UI_ pages. 76 | 77 | Returns `promise` which will be resolved after receiving the current state of _background_ store. And an object with identical to Redux store structure will be passed as resolved result. 78 | 79 | #### Example 80 | 81 | ```js 82 | async function initApp() { 83 | const store = await createUIStore(); 84 | 85 | ReactDOM.render( 86 | 87 | 88 | , 89 | document.getElementById('app') 90 | ); 91 | } 92 | 93 | initApp(); 94 | ``` 95 | -------------------------------------------------------------------------------- /decls/types.js: -------------------------------------------------------------------------------- 1 | declare type EmptyFunc = () => void; 2 | 3 | declare type Connection = { 4 | name: string, 5 | postMessage: (msg: any) => void, 6 | onDisconnect: { 7 | addListener: (handler: EmptyFunc) => void 8 | }, 9 | onMessage: { 10 | addListener: (handler: ((msg: Object) => void)) => void 11 | } 12 | }; 13 | 14 | declare type Store = { 15 | getState: () => Object, 16 | dispatch: (...args: any) => void, 17 | subscribe: (listener: EmptyFunc) => EmptyFunc 18 | }; 19 | -------------------------------------------------------------------------------- /decls/vars.js: -------------------------------------------------------------------------------- 1 | declare var chrome: { 2 | runtime: { 3 | connect: (options: {name: string}) => Connection, 4 | sendMessage: ( 5 | msg: any, 6 | cb?: (res: Object) => void 7 | ) => void, 8 | onConnect: { 9 | addListener: (handler: (connection: Connection) => void) => void 10 | }, 11 | onMessage: { 12 | addListener: (handler: ( 13 | msg: Object, 14 | sender: ?string, 15 | cb: (res: any) => void 16 | ) => ?boolean) => void 17 | } 18 | } 19 | }; 20 | -------------------------------------------------------------------------------- /examples/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "react" 4 | ], 5 | "plugins": [ 6 | "transform-class-properties", 7 | "transform-async-to-generator" 8 | ] 9 | } -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- 1 | ## Installation 2 | 3 | To run the example (from this folder, **not the root**): 4 | 5 | 1. `npm i` 6 | 2. `npm run build` 7 | 3. install the extension from `/dist` folder via _Load unpacked extension_ button in Chrome 8 | 9 | ## Tutorial 10 | 11 | So, let's assume that our WebExtension has popup with counter. Value of the counter can be changed by clicking on the buttons in popup. 12 | 13 | #### Background page 14 | 15 | Let's look at the background store: 16 | 17 | ```js 18 | const store = createStore(reducer); // real Redux store 19 | 20 | export default createBackgroundStore({ 21 | store, 22 | actions: { 23 | 'someKeyForIncrement': incrementCounterBackground, 24 | 'someKeyForDecrement': decrementCounterBackground 25 | } 26 | }); 27 | ``` 28 | 29 | As you can see we provide real Redux store to `createBackgroundStore` and also pass `actions` object. This object associates actions in _background_ page with _popup_ actions (don't worry, it'll become clearer when you look at actions in _popup_). 30 | 31 | Regarding _background_ actions, they're just usual actions as in any Redux application: 32 | 33 | ```js 34 | export function incrementCounterBackground() { 35 | return {type: INCREMENT_COUNTER}; 36 | } 37 | 38 | export function decrementCounterBackground() { 39 | return {type: DECREMENT_COUNTER}; 40 | } 41 | ``` 42 | 43 | And that's it about _background_ page, pretty straightforward. 44 | 45 | #### Popup (UI page) 46 | 47 | To create store in _popup_ we can use the following code: 48 | 49 | ```js 50 | const store = await createUIStore(); 51 | ``` 52 | 53 | Just one line if you use `async/await` feature! `createUIStore` creates an object with the same interface as Redux store, so you or [react-redux](https://github.com/reactjs/react-redux) won't see any difference. 54 | 55 | The only thing that is left is _popup_ actions: 56 | 57 | ```js 58 | export function incrementCounterUI() { 59 | return {type: 'someKeyForIncrement'}; 60 | } 61 | 62 | export function decrementCounterUI() { 63 | return {type: 'someKeyForDecrement'}; 64 | } 65 | ``` 66 | 67 | As you can see the values of `type` property are the same as the keys of `actions` object that we provided to `createBackgroundStore`. And when we call one of these _popup_ actions, `redux-webext` will call the associated action in _background_ page. 68 | 69 | For instance, when you call `incrementCounterUI` in _popup_, `redux-webext` will call `incrementCounterBackground` in _background_ page. 70 | -------------------------------------------------------------------------------- /examples/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "redux-webext-examples", 3 | "version": "1.0.0", 4 | "author": { 5 | "name": "Alexander Ivantsov", 6 | "email": "alexivantsov@ya.ru" 7 | }, 8 | "license": "MIT", 9 | "scripts": { 10 | "build": "webpack" 11 | }, 12 | "dependencies": { 13 | "react": "^15.4.1", 14 | "react-dom": "^15.4.1", 15 | "react-redux": "^4.4.6", 16 | "redux": "^3.6.0", 17 | "redux-webext": "*" 18 | }, 19 | "devDependencies": { 20 | "babel-core": "^6.18.2", 21 | "babel-loader": "^6.2.8", 22 | "babel-plugin-transform-async-to-generator": "^6.16.0", 23 | "babel-plugin-transform-class-properties": "^6.19.0", 24 | "babel-preset-react": "^6.16.0", 25 | "copy-webpack-plugin": "^4.0.1", 26 | "html-webpack-plugin": "^2.24.1", 27 | "webpack": "^2.1.0-beta.27", 28 | "write-file-webpack-plugin": "^3.4.2" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /examples/src/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 2, 3 | "name": "redux-webext example", 4 | "version": "1.0.0", 5 | "description": "Example of using redux-webext in WebExtensions", 6 | "browser_action": { 7 | "default_title": "Popup", 8 | "default_popup": "pages/popup.html" 9 | }, 10 | "author": "Alexander Ivantsov ", 11 | "background": { 12 | "page": "pages/background.html" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /examples/src/pages/background/actions.js: -------------------------------------------------------------------------------- 1 | import { 2 | INCREMENT_BACKGROUND_COUNTER, 3 | DECREMENT_BACKGROUND_COUNTER, 4 | INCREMENT_UI_COUNTER, 5 | DECREMENT_UI_COUNTER 6 | } from '../constants'; 7 | 8 | export function incrementBackgroundCounter() { 9 | return {type: INCREMENT_BACKGROUND_COUNTER}; 10 | } 11 | 12 | export function decrementBackgroundCounter() { 13 | return {type: DECREMENT_BACKGROUND_COUNTER}; 14 | } 15 | 16 | export function incrementUICounter({value}) { 17 | return { 18 | type: INCREMENT_UI_COUNTER, 19 | value 20 | }; 21 | } 22 | 23 | export function decrementUICounter({value}) { 24 | return { 25 | type: DECREMENT_UI_COUNTER, 26 | value 27 | }; 28 | } 29 | -------------------------------------------------------------------------------- /examples/src/pages/background/index.js: -------------------------------------------------------------------------------- 1 | import store from './store'; 2 | import {incrementBackgroundCounter, decrementBackgroundCounter} from './actions'; 3 | 4 | // increment or decrement background counter every second 5 | setInterval(() => { 6 | store.dispatch(Math.random() >= 0.5 ? 7 | incrementBackgroundCounter() : 8 | decrementBackgroundCounter() 9 | ); 10 | }, 1000); -------------------------------------------------------------------------------- /examples/src/pages/background/reducers.js: -------------------------------------------------------------------------------- 1 | import {combineReducers} from 'redux'; 2 | import { 3 | INCREMENT_BACKGROUND_COUNTER, 4 | DECREMENT_BACKGROUND_COUNTER, 5 | INCREMENT_UI_COUNTER, 6 | DECREMENT_UI_COUNTER 7 | } from '../constants'; 8 | 9 | function createCounterReducer(increment, decrement) { 10 | return function (state = 0, action) { 11 | const value = action.value || 1; 12 | switch (action.type) { 13 | case increment: 14 | return state + value; 15 | case decrement: 16 | return state - value; 17 | default: 18 | return state; 19 | } 20 | } 21 | } 22 | 23 | export default combineReducers({ 24 | backgroundCounter: createCounterReducer(INCREMENT_BACKGROUND_COUNTER, DECREMENT_BACKGROUND_COUNTER), 25 | uiCounter: createCounterReducer(INCREMENT_UI_COUNTER, DECREMENT_UI_COUNTER) 26 | }); 27 | -------------------------------------------------------------------------------- /examples/src/pages/background/store.js: -------------------------------------------------------------------------------- 1 | import {createStore} from 'redux'; 2 | import {createBackgroundStore} from 'redux-webext'; 3 | import {INCREMENT_UI_COUNTER, DECREMENT_UI_COUNTER} from '../constants'; 4 | import reducer from './reducers'; 5 | import {incrementUICounter, decrementUICounter} from './actions'; 6 | 7 | const store = createStore(reducer); 8 | 9 | export default createBackgroundStore({ 10 | store, 11 | actions: { 12 | INCREMENT_UI_COUNTER: incrementUICounter, 13 | DECREMENT_UI_COUNTER: decrementUICounter 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /examples/src/pages/constants.js: -------------------------------------------------------------------------------- 1 | export const INCREMENT_BACKGROUND_COUNTER = 'INCREMENT_BACKGROUND_COUNTER'; 2 | export const DECREMENT_BACKGROUND_COUNTER = 'DECREMENT_BACKGROUND_COUNTER'; 3 | export const INCREMENT_UI_COUNTER = 'INCREMENT_UI_COUNTER'; 4 | export const DECREMENT_UI_COUNTER = 'DECREMENT_UI_COUNTER'; 5 | -------------------------------------------------------------------------------- /examples/src/pages/popup/actions.js: -------------------------------------------------------------------------------- 1 | import {INCREMENT_UI_COUNTER, DECREMENT_UI_COUNTER} from '../constants'; 2 | 3 | export function incrementUICounter() { 4 | return { 5 | type: INCREMENT_UI_COUNTER, 6 | value: 3 7 | }; 8 | } 9 | 10 | export function decrementUICounter() { 11 | return { 12 | type: DECREMENT_UI_COUNTER, 13 | value: 3 14 | }; 15 | } 16 | -------------------------------------------------------------------------------- /examples/src/pages/popup/app.js: -------------------------------------------------------------------------------- 1 | import React, {Component, PropTypes} from 'react'; 2 | import {connect} from 'react-redux'; 3 | import * as actions from './actions'; 4 | 5 | class App extends Component { 6 | static propTypes = { 7 | backgroundCounter: PropTypes.number.isRequired, 8 | uiCounter: PropTypes.number.isRequired, 9 | incrementUICounter: PropTypes.func.isRequired, 10 | decrementUICounter: PropTypes.func.isRequired 11 | }; 12 | 13 | render() { 14 | const { 15 | backgroundCounter, 16 | uiCounter, 17 | incrementUICounter, 18 | decrementUICounter 19 | } = this.props; 20 | 21 | return ( 22 |
23 |
24 | Background counter: {backgroundCounter} 25 |
26 |
27 | UI counter: {uiCounter} 28 |
29 | 30 | 31 | 32 |
33 |
34 |
35 | ); 36 | } 37 | } 38 | 39 | export default connect(state => state, actions)(App); 40 | -------------------------------------------------------------------------------- /examples/src/pages/popup/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import {Provider} from 'react-redux'; 4 | import {createUIStore} from 'redux-webext'; 5 | import App from './app'; 6 | 7 | async function initApp() { 8 | const store = await createUIStore(); 9 | 10 | const mountNode = document.createElement('div'); 11 | document.body.appendChild(mountNode); 12 | 13 | ReactDOM.render( 14 | 15 | 16 | , 17 | mountNode 18 | ); 19 | } 20 | 21 | initApp(); 22 | -------------------------------------------------------------------------------- /examples/webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | const CopyPlugin = require('copy-webpack-plugin'); 3 | const HtmlPlugin = require('html-webpack-plugin'); 4 | 5 | const PAGES_PATH = './src/pages'; 6 | 7 | function generateHtmlPlugins(items) { 8 | return items.map(name => new HtmlPlugin({ 9 | filename: `./${name}.html`, 10 | chunks: [name] 11 | })); 12 | } 13 | 14 | module.exports = { 15 | entry: { 16 | background: `${PAGES_PATH}/background`, 17 | popup: `${PAGES_PATH}/popup` 18 | }, 19 | output: { 20 | path: path.resolve('dist/pages'), 21 | filename: '[name].js' 22 | }, 23 | module: { 24 | rules: [{ 25 | test: /\.js$/, 26 | use: ['babel-loader'] 27 | }] 28 | }, 29 | plugins: [ 30 | new CopyPlugin([{ 31 | from: 'src', 32 | to: path.resolve('dist'), 33 | ignore: ['pages/**/*'] 34 | }]), 35 | ...generateHtmlPlugins([ 36 | 'background', 37 | 'popup' 38 | ]) 39 | ] 40 | }; 41 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "redux-webext", 3 | "version": "1.1.2", 4 | "description": "Redux for WebExtensions", 5 | "main": "lib/index.js", 6 | "files": [ 7 | "lib" 8 | ], 9 | "scripts": { 10 | "prepublish": "npm run clean && npm run check-code && npm run build", 11 | "clean": "rimraf lib", 12 | "check-code": "npm run lint && npm run flow && npm test", 13 | "test": "jest", 14 | "test:watch": "jest --watch", 15 | "test:coverage": "jest --coverage && codecov", 16 | "lint": "eslint src tests", 17 | "flow": "flow check", 18 | "build": "babel src -d lib", 19 | "build:watch": "npm run build -- -w" 20 | }, 21 | "repository": { 22 | "type": "git", 23 | "url": "git+https://github.com/ivantsov/redux-webext.git" 24 | }, 25 | "keywords": [ 26 | "redux", 27 | "store", 28 | "state", 29 | "webextension", 30 | "extension", 31 | "webext", 32 | "chrome", 33 | "firefox", 34 | "react" 35 | ], 36 | "author": "Alexander Ivantsov (https://github.com/ivantsov)", 37 | "license": "MIT", 38 | "bugs": { 39 | "url": "https://github.com/ivantsov/redux-webext/issues" 40 | }, 41 | "homepage": "https://github.com/ivantsov/redux-webext#readme", 42 | "devDependencies": { 43 | "babel-cli": "^6.18.0", 44 | "babel-eslint": "^7.1.1", 45 | "babel-plugin-transform-async-to-generator": "^6.16.0", 46 | "babel-plugin-transform-flow-strip-types": "^6.21.0", 47 | "babel-plugin-transform-object-rest-spread": "^6.20.2", 48 | "babel-preset-es2015": "^6.18.0", 49 | "codecov": "^1.0.1", 50 | "eslint": "^3.13.1", 51 | "eslint-config-airbnb-base": "^11.0.1", 52 | "eslint-plugin-flowtype": "^2.29.2", 53 | "eslint-plugin-import": "^2.2.0", 54 | "flow-bin": "^0.37.4", 55 | "jest": "^18.1.0", 56 | "rimraf": "^2.5.4" 57 | }, 58 | "jest": { 59 | "testRegex": "tests/.*.js$", 60 | "resetMocks": true, 61 | "resetModules": true 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /src/background-store.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | import { 4 | CONNECTION_NAME, 5 | DISPATCH, 6 | UPDATE_STATE 7 | } from './constants'; 8 | 9 | let store, actions, onDisconnect; 10 | 11 | // eslint-disable-next-line consistent-return 12 | function handleMessage( 13 | msg: Object, 14 | sender: ?string, 15 | cb: (res: any) => void 16 | ): ?boolean { 17 | if (msg.type === DISPATCH) { 18 | const {type, ...actionData} = msg.action; 19 | const action = actions[type]; 20 | 21 | if (action) { 22 | // if action doesn't have any data we should pass "undefined" 23 | store.dispatch(action(Object.keys(actionData).length ? actionData : undefined)); 24 | } 25 | else { 26 | console.error(`Provided in background store "actions" object doesn't contain "${type}" key.`); 27 | } 28 | } 29 | else if (msg.type === UPDATE_STATE) { 30 | cb(store.getState()); 31 | 32 | // keep channel open, https://developer.chrome.com/extensions/runtime#event-onMessage 33 | return true; 34 | } 35 | } 36 | 37 | // allow other parts of the app to reuse the store, e.g. popup 38 | function handleConnection(connection: Connection): void { 39 | if (connection.name !== CONNECTION_NAME) { 40 | return; 41 | } 42 | 43 | // send updated state to other parts of the app on every change 44 | const unsubscribe = store.subscribe(() => { 45 | connection.postMessage({ 46 | type: UPDATE_STATE, 47 | data: store.getState() 48 | }); 49 | }); 50 | 51 | // unsubscribe on disconnect 52 | connection.onDisconnect.addListener(() => { 53 | unsubscribe(); 54 | 55 | if (onDisconnect) { 56 | onDisconnect(); 57 | } 58 | }); 59 | } 60 | 61 | export default function createBackgroundStore(options: { 62 | store: Store, 63 | actions?: Object, 64 | onDisconnect?: EmptyFunc 65 | }): Store { 66 | if (typeof options !== 'object' || typeof options.store !== 'object') { 67 | throw new Error('Expected the "store" to be an object.'); 68 | } 69 | 70 | if (options.hasOwnProperty('actions') && typeof options.actions !== 'object') { 71 | throw new Error('Expected the "actions" to be an object.'); 72 | } 73 | 74 | if (options.hasOwnProperty('onDisconnect') && typeof options.onDisconnect !== 'function') { 75 | throw new Error('Expected the "onDisconnect" to be a function.'); 76 | } 77 | 78 | store = options.store; 79 | actions = options.actions || {}; 80 | onDisconnect = options.onDisconnect; 81 | 82 | chrome.runtime.onConnect.addListener(handleConnection); 83 | chrome.runtime.onMessage.addListener(handleMessage); 84 | 85 | return store; 86 | } 87 | -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- 1 | export const CONNECTION_NAME = 'redux-webext'; 2 | export const DISPATCH = '@@STORE_DISPATCH'; 3 | export const UPDATE_STATE = '@@STORE_UPDATE_STATE'; 4 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | export {default as createBackgroundStore} from './background-store'; 2 | export {default as createUIStore} from './ui-store'; 3 | -------------------------------------------------------------------------------- /src/ui-store.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | import { 4 | CONNECTION_NAME, 5 | DISPATCH, 6 | UPDATE_STATE 7 | } from './constants'; 8 | 9 | let listeners = []; 10 | let state; 11 | 12 | function handleMessage(msg: Object): void { 13 | if (msg.type === UPDATE_STATE) { 14 | state = msg.data; 15 | 16 | listeners.forEach(l => l()); 17 | } 18 | } 19 | 20 | function subscribe(listener: EmptyFunc): EmptyFunc { 21 | listeners.push(listener); 22 | 23 | // return unsubscribe function 24 | return function () { 25 | listeners = listeners.filter(l => l !== listener); 26 | }; 27 | } 28 | 29 | function dispatch(action: any): void { 30 | // perform an action to change state of "background" store 31 | chrome.runtime.sendMessage({ 32 | type: DISPATCH, 33 | action 34 | }); 35 | } 36 | 37 | function getState(): Object { 38 | return state; 39 | } 40 | 41 | export default function (): Promise { 42 | // connect to "background" store 43 | const connection = chrome.runtime.connect({name: CONNECTION_NAME}); 44 | 45 | // listen for changes in the "background" store 46 | connection.onMessage.addListener(handleMessage); 47 | 48 | // return promise to allow getting current state of "background" store 49 | return new Promise(resolve => { 50 | chrome.runtime.sendMessage({type: UPDATE_STATE}, res => { 51 | state = res; 52 | 53 | // return an object with equivalent to Redux store interface 54 | resolve({ 55 | subscribe, 56 | dispatch, 57 | getState 58 | }); 59 | }); 60 | }); 61 | } 62 | -------------------------------------------------------------------------------- /tests/background-store.js: -------------------------------------------------------------------------------- 1 | import { 2 | CONNECTION_NAME, 3 | DISPATCH, 4 | UPDATE_STATE 5 | } from '../src/constants'; 6 | import createBackgroundStore from '../src/background-store'; 7 | 8 | function createStore(params) { 9 | window.chrome = { 10 | runtime: { 11 | onConnect: { 12 | addListener: jest.fn() 13 | }, 14 | onMessage: { 15 | addListener: jest.fn() 16 | } 17 | } 18 | }; 19 | 20 | return { 21 | store: createBackgroundStore({ 22 | store: { 23 | dispatch: jest.fn() 24 | }, 25 | ...params 26 | }), 27 | handleConnect: chrome.runtime.onConnect.addListener.mock.calls[0][0], 28 | handleMessage: chrome.runtime.onMessage.addListener.mock.calls[0][0] 29 | }; 30 | } 31 | 32 | describe('background-store', () => { 33 | describe('invalid params', () => { 34 | it('no params', () => { 35 | expect(createBackgroundStore).toThrowError(/store/); 36 | }); 37 | 38 | it('no store or not an object', () => { 39 | expect(() => createBackgroundStore()).toThrowError(/store/); 40 | expect(() => createBackgroundStore({store: true})).toThrowError(/store/); 41 | }); 42 | 43 | it('actions is not an object', () => { 44 | expect(() => createBackgroundStore({ 45 | store: {}, 46 | actions: true 47 | })).toThrowError(/actions/); 48 | }); 49 | 50 | it('onDisconnect is not an object', () => { 51 | expect(() => createBackgroundStore({ 52 | store: {}, 53 | onDisconnect: true 54 | })).toThrowError(/onDisconnect/); 55 | }); 56 | }); 57 | 58 | it('returns the same store', () => { 59 | const store = { 60 | prop1: 'prop1', 61 | prop2: 'prop2' 62 | }; 63 | 64 | expect(createStore({store}).store).toBe(store); 65 | }); 66 | 67 | describe('handle connection', () => { 68 | function testCase(onDisconnect) { 69 | const unsubscribe = jest.fn(); 70 | const options = { 71 | store: { 72 | subscribe: jest.fn(() => unsubscribe), 73 | getState: jest.fn() 74 | } 75 | }; 76 | 77 | if (onDisconnect) { 78 | options.onDisconnect = onDisconnect; 79 | } 80 | 81 | const {store, handleConnect} = createStore(options); 82 | const connection = { 83 | name: CONNECTION_NAME, 84 | postMessage: jest.fn(), 85 | onDisconnect: { 86 | addListener: jest.fn() 87 | } 88 | }; 89 | 90 | handleConnect(connection); 91 | 92 | expect(store.subscribe).lastCalledWith(jasmine.any(Function)); 93 | expect(connection.onDisconnect.addListener).lastCalledWith(jasmine.any(Function)); 94 | 95 | store.subscribe.mock.calls[0][0](); 96 | 97 | expect(store.getState).lastCalledWith(); 98 | expect(connection.postMessage).lastCalledWith({ 99 | type: UPDATE_STATE, 100 | data: store.getState() 101 | }); 102 | 103 | return { 104 | store, 105 | unsubscribe, 106 | connection 107 | }; 108 | } 109 | 110 | it('dont handle connection with other names', () => { 111 | const {handleConnect} = createStore(); 112 | const connection = { 113 | name: 'test', 114 | onDisconnect: { 115 | addListener: jest.fn() 116 | } 117 | }; 118 | 119 | handleConnect(connection); 120 | 121 | expect(connection.onDisconnect.addListener).not.toBeCalled(); 122 | }); 123 | 124 | it('on change event', () => { 125 | testCase(); 126 | }); 127 | 128 | describe('on disconnect', () => { 129 | it('without provided onDisconnect callback', () => { 130 | const { 131 | unsubscribe, 132 | connection 133 | } = testCase(); 134 | 135 | // onDisconnect 136 | connection.onDisconnect.addListener.mock.calls[0][0](); 137 | 138 | expect(unsubscribe).lastCalledWith(); 139 | }); 140 | 141 | it('with provided onDisconnect callback', () => { 142 | const onDisconnect = jest.fn(); 143 | const { 144 | unsubscribe, 145 | connection 146 | } = testCase(onDisconnect); 147 | 148 | // onDisconnect 149 | connection.onDisconnect.addListener.mock.calls[0][0](); 150 | 151 | expect(unsubscribe).lastCalledWith(); 152 | expect(onDisconnect).lastCalledWith(); 153 | }); 154 | }); 155 | }); 156 | 157 | describe('handle message', () => { 158 | describe('dispatch', () => { 159 | it('the action does not exist', () => { 160 | const {handleMessage} = createStore({actions: {}}); 161 | const actionName = 'fake'; 162 | 163 | window.console.error = jest.fn(); 164 | 165 | handleMessage({ 166 | type: DISPATCH, 167 | action: { 168 | type: actionName 169 | } 170 | }); 171 | 172 | expect(window.console.error).lastCalledWith(`Provided in background store "actions" object doesn't contain "${actionName}" key.`); 173 | }); 174 | 175 | describe('the action exists', () => { 176 | function testCase(actionData) { 177 | const action = { 178 | type: 'load', 179 | ...actionData 180 | }; 181 | const actionResult = 456; 182 | const actions = { 183 | [action.type]: jest.fn(() => actionResult) 184 | }; 185 | const {store, handleMessage} = createStore({actions}); 186 | 187 | window.console.error = jest.fn(); 188 | 189 | handleMessage({ 190 | type: DISPATCH, 191 | action 192 | }); 193 | 194 | expect(actions[action.type]).lastCalledWith(actionData); 195 | expect(store.dispatch).lastCalledWith(actionResult); 196 | expect(window.console.error).not.toBeCalled(); 197 | } 198 | 199 | it('action data is empty', () => { 200 | testCase(); 201 | }); 202 | 203 | it('action data is just an object', () => { 204 | testCase({value: 123}); 205 | }); 206 | 207 | it('action data is a nested object', () => { 208 | testCase({ 209 | obj: { 210 | value1: 123 211 | }, 212 | value2: 456 213 | }); 214 | }); 215 | }); 216 | }); 217 | 218 | it('update state', () => { 219 | const {store, handleMessage} = createStore({store: { 220 | getState: jest.fn() 221 | }}); 222 | const callback = jest.fn(); 223 | 224 | const result = handleMessage({type: UPDATE_STATE}, null, callback); 225 | 226 | expect(result).toBe(true); 227 | expect(store.getState).lastCalledWith(); 228 | expect(callback).lastCalledWith(store.getState()); 229 | }); 230 | }); 231 | }); 232 | -------------------------------------------------------------------------------- /tests/ui-store.js: -------------------------------------------------------------------------------- 1 | import { 2 | CONNECTION_NAME, 3 | DISPATCH, 4 | UPDATE_STATE 5 | } from '../src/constants'; 6 | import createUIStore from '../src/ui-store'; 7 | 8 | async function createStore(state) { 9 | const connection = { 10 | onMessage: { 11 | addListener: jest.fn() 12 | } 13 | }; 14 | 15 | window.chrome = { 16 | runtime: { 17 | connect: jest.fn(() => connection), 18 | sendMessage: jest.fn() 19 | } 20 | }; 21 | 22 | const promise = createUIStore(); 23 | 24 | expect(chrome.runtime.connect).lastCalledWith({name: CONNECTION_NAME}); 25 | expect(connection.onMessage.addListener).lastCalledWith(jasmine.any(Function)); 26 | expect(chrome.runtime.sendMessage).lastCalledWith({type: UPDATE_STATE}, jasmine.any(Function)); 27 | 28 | chrome.runtime.sendMessage.mock.calls[0][1](state); 29 | 30 | const store = await promise; 31 | 32 | expect(store).toEqual({ 33 | subscribe: jasmine.any(Function), 34 | dispatch: jasmine.any(Function), 35 | getState: jasmine.any(Function) 36 | }); 37 | 38 | return { 39 | store, 40 | onMessageHandler: connection.onMessage.addListener.mock.calls[0][0] 41 | }; 42 | } 43 | 44 | describe('ui-store', () => { 45 | it('works', async () => { 46 | await createStore(); 47 | }); 48 | 49 | it('dispatch', async () => { 50 | const action = { 51 | type: 'ACTION', 52 | data: 'test' 53 | }; 54 | const {store} = await createStore(); 55 | 56 | store.dispatch(action); 57 | 58 | expect(chrome.runtime.sendMessage).lastCalledWith({ 59 | type: DISPATCH, 60 | action 61 | }); 62 | }); 63 | 64 | describe('subscribe', async () => { 65 | async function createTestCase() { 66 | const {store, onMessageHandler} = await createStore(); 67 | 68 | const listener1 = jest.fn(); 69 | const listener2 = jest.fn(); 70 | const unsubscribe1 = store.subscribe(listener1); 71 | const unsubscribe2 = store.subscribe(listener2); 72 | 73 | onMessageHandler({ 74 | type: UPDATE_STATE, 75 | data: 'test1' 76 | }); 77 | 78 | expect(listener1.mock.calls.length).toBe(1); 79 | expect(listener2.mock.calls.length).toBe(1); 80 | 81 | return { 82 | onMessageHandler, 83 | listener1, 84 | listener2, 85 | unsubscribe1, 86 | unsubscribe2 87 | }; 88 | } 89 | 90 | it('correct message type', async () => { 91 | const { 92 | onMessageHandler, 93 | listener1, 94 | listener2 95 | } = await createTestCase(); 96 | 97 | onMessageHandler({ 98 | type: UPDATE_STATE, 99 | data: 'test2' 100 | }); 101 | 102 | expect(listener1.mock.calls.length).toBe(2); 103 | expect(listener2.mock.calls.length).toBe(2); 104 | }); 105 | 106 | 107 | it('wrong message type', async () => { 108 | const { 109 | onMessageHandler, 110 | listener1, 111 | listener2 112 | } = await createTestCase(); 113 | 114 | onMessageHandler({ 115 | type: 'some weird type', 116 | data: 'test2' 117 | }); 118 | 119 | expect(listener1.mock.calls.length).toBe(1); 120 | expect(listener2.mock.calls.length).toBe(1); 121 | }); 122 | 123 | it('unsubscribe', async () => { 124 | const { 125 | onMessageHandler, 126 | listener1, 127 | listener2, 128 | unsubscribe1, 129 | unsubscribe2 130 | } = await createTestCase(); 131 | 132 | unsubscribe1(); 133 | 134 | onMessageHandler({ 135 | type: UPDATE_STATE, 136 | data: 'test2' 137 | }); 138 | 139 | expect(listener1.mock.calls.length).toBe(1); 140 | expect(listener2.mock.calls.length).toBe(2); 141 | 142 | unsubscribe2(); 143 | 144 | expect(listener1.mock.calls.length).toBe(1); 145 | expect(listener2.mock.calls.length).toBe(2); 146 | }); 147 | }); 148 | 149 | it('getState', async () => { 150 | const initialState = {test1: 'test1'}; 151 | const { 152 | store, 153 | onMessageHandler 154 | } = await createStore(initialState); 155 | 156 | expect(store.getState()).toBe(initialState); 157 | 158 | const newState = { 159 | test1: 'test2', 160 | test3: 'test3' 161 | }; 162 | onMessageHandler({ 163 | type: UPDATE_STATE, 164 | data: newState 165 | }); 166 | expect(store.getState()).toBe(newState); 167 | 168 | onMessageHandler({type: UPDATE_STATE}); 169 | expect(store.getState()).toBeUndefined(); 170 | }); 171 | }); 172 | -------------------------------------------------------------------------------- /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.0.9" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 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@^4.0.1: 34 | version "4.0.3" 35 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.3.tgz#1a3e850b428e73ba6b09d1cc527f5aaad4d03ef1" 36 | 37 | ajv-keywords@^1.0.0: 38 | version "1.2.0" 39 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.2.0.tgz#676c4f087bfe1e8b12dca6fda2f3c74f417b099c" 40 | 41 | ajv@^4.7.0: 42 | version "4.9.1" 43 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.9.1.tgz#08e1b0a5fddc8b844d28ca7b03510e78812ee3a0" 44 | dependencies: 45 | co "^4.6.0" 46 | json-stable-stringify "^1.0.1" 47 | 48 | align-text@^0.1.1, align-text@^0.1.3: 49 | version "0.1.4" 50 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 51 | dependencies: 52 | kind-of "^3.0.2" 53 | longest "^1.0.1" 54 | repeat-string "^1.5.2" 55 | 56 | amdefine@>=0.0.4: 57 | version "1.0.1" 58 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 59 | 60 | ansi-escapes@^1.1.0, ansi-escapes@^1.4.0: 61 | version "1.4.0" 62 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 63 | 64 | ansi-regex@^2.0.0: 65 | version "2.0.0" 66 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 67 | 68 | ansi-styles@^2.2.1: 69 | version "2.2.1" 70 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 71 | 72 | ansicolors@~0.2.1: 73 | version "0.2.1" 74 | resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.2.1.tgz#be089599097b74a5c9c4a84a0cdbcdb62bd87aef" 75 | 76 | anymatch@^1.3.0: 77 | version "1.3.0" 78 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 79 | dependencies: 80 | arrify "^1.0.0" 81 | micromatch "^2.1.5" 82 | 83 | append-transform@^0.3.0: 84 | version "0.3.0" 85 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.3.0.tgz#d6933ce4a85f09445d9ccc4cc119051b7381a813" 86 | 87 | aproba@^1.0.3: 88 | version "1.0.4" 89 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 90 | 91 | are-we-there-yet@~1.1.2: 92 | version "1.1.2" 93 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 94 | dependencies: 95 | delegates "^1.0.0" 96 | readable-stream "^2.0.0 || ^1.1.13" 97 | 98 | argparse@^1.0.7: 99 | version "1.0.9" 100 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 101 | dependencies: 102 | sprintf-js "~1.0.2" 103 | 104 | argv@>=0.0.2: 105 | version "0.0.2" 106 | resolved "https://registry.yarnpkg.com/argv/-/argv-0.0.2.tgz#ecbd16f8949b157183711b1bda334f37840185ab" 107 | 108 | arr-diff@^2.0.0: 109 | version "2.0.0" 110 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 111 | dependencies: 112 | arr-flatten "^1.0.1" 113 | 114 | arr-flatten@^1.0.1: 115 | version "1.0.1" 116 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 117 | 118 | array-equal@^1.0.0: 119 | version "1.0.0" 120 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 121 | 122 | array-union@^1.0.1: 123 | version "1.0.2" 124 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 125 | dependencies: 126 | array-uniq "^1.0.1" 127 | 128 | array-uniq@^1.0.1: 129 | version "1.0.3" 130 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 131 | 132 | array-unique@^0.2.1: 133 | version "0.2.1" 134 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 135 | 136 | arrify@^1.0.0, arrify@^1.0.1: 137 | version "1.0.1" 138 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 139 | 140 | asn1@~0.2.3: 141 | version "0.2.3" 142 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 143 | 144 | assert-plus@^0.2.0: 145 | version "0.2.0" 146 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 147 | 148 | assert-plus@^1.0.0: 149 | version "1.0.0" 150 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 151 | 152 | async-each@^1.0.0: 153 | version "1.0.1" 154 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 155 | 156 | async@^1.4.0, async@^1.4.2: 157 | version "1.5.2" 158 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 159 | 160 | async@^2.1.4: 161 | version "2.1.4" 162 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.4.tgz#2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4" 163 | dependencies: 164 | lodash "^4.14.0" 165 | 166 | async@~0.2.6: 167 | version "0.2.10" 168 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 169 | 170 | asynckit@^0.4.0: 171 | version "0.4.0" 172 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 173 | 174 | aws-sign2@~0.6.0: 175 | version "0.6.0" 176 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 177 | 178 | aws4@^1.2.1: 179 | version "1.5.0" 180 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 181 | 182 | babel-cli@^6.18.0: 183 | version "6.18.0" 184 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.18.0.tgz#92117f341add9dead90f6fa7d0a97c0cc08ec186" 185 | dependencies: 186 | babel-core "^6.18.0" 187 | babel-polyfill "^6.16.0" 188 | babel-register "^6.18.0" 189 | babel-runtime "^6.9.0" 190 | commander "^2.8.1" 191 | convert-source-map "^1.1.0" 192 | fs-readdir-recursive "^1.0.0" 193 | glob "^5.0.5" 194 | lodash "^4.2.0" 195 | output-file-sync "^1.1.0" 196 | path-is-absolute "^1.0.0" 197 | slash "^1.0.0" 198 | source-map "^0.5.0" 199 | v8flags "^2.0.10" 200 | optionalDependencies: 201 | chokidar "^1.0.0" 202 | 203 | babel-code-frame@^6.16.0: 204 | version "6.16.0" 205 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.16.0.tgz#f90e60da0862909d3ce098733b5d3987c97cb8de" 206 | dependencies: 207 | chalk "^1.1.0" 208 | esutils "^2.0.2" 209 | js-tokens "^2.0.0" 210 | 211 | babel-core@^6.0.0, babel-core@^6.18.0: 212 | version "6.18.2" 213 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.18.2.tgz#d8bb14dd6986fa4f3566a26ceda3964fa0e04e5b" 214 | dependencies: 215 | babel-code-frame "^6.16.0" 216 | babel-generator "^6.18.0" 217 | babel-helpers "^6.16.0" 218 | babel-messages "^6.8.0" 219 | babel-register "^6.18.0" 220 | babel-runtime "^6.9.1" 221 | babel-template "^6.16.0" 222 | babel-traverse "^6.18.0" 223 | babel-types "^6.18.0" 224 | babylon "^6.11.0" 225 | convert-source-map "^1.1.0" 226 | debug "^2.1.1" 227 | json5 "^0.5.0" 228 | lodash "^4.2.0" 229 | minimatch "^3.0.2" 230 | path-is-absolute "^1.0.0" 231 | private "^0.1.6" 232 | slash "^1.0.0" 233 | source-map "^0.5.0" 234 | 235 | babel-eslint@^7.1.1: 236 | version "7.1.1" 237 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.1.1.tgz#8a6a884f085aa7060af69cfc77341c2f99370fb2" 238 | dependencies: 239 | babel-code-frame "^6.16.0" 240 | babel-traverse "^6.15.0" 241 | babel-types "^6.15.0" 242 | babylon "^6.13.0" 243 | lodash.pickby "^4.6.0" 244 | 245 | babel-generator@^6.18.0: 246 | version "6.19.0" 247 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.19.0.tgz#9b2f244204777a3d6810ec127c673c87b349fac5" 248 | dependencies: 249 | babel-messages "^6.8.0" 250 | babel-runtime "^6.9.0" 251 | babel-types "^6.19.0" 252 | detect-indent "^4.0.0" 253 | jsesc "^1.3.0" 254 | lodash "^4.2.0" 255 | source-map "^0.5.0" 256 | 257 | babel-helper-call-delegate@^6.18.0: 258 | version "6.18.0" 259 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.18.0.tgz#05b14aafa430884b034097ef29e9f067ea4133bd" 260 | dependencies: 261 | babel-helper-hoist-variables "^6.18.0" 262 | babel-runtime "^6.0.0" 263 | babel-traverse "^6.18.0" 264 | babel-types "^6.18.0" 265 | 266 | babel-helper-define-map@^6.18.0, babel-helper-define-map@^6.8.0: 267 | version "6.18.0" 268 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.18.0.tgz#8d6c85dc7fbb4c19be3de40474d18e97c3676ec2" 269 | dependencies: 270 | babel-helper-function-name "^6.18.0" 271 | babel-runtime "^6.9.0" 272 | babel-types "^6.18.0" 273 | lodash "^4.2.0" 274 | 275 | babel-helper-function-name@^6.18.0, babel-helper-function-name@^6.8.0: 276 | version "6.18.0" 277 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz#68ec71aeba1f3e28b2a6f0730190b754a9bf30e6" 278 | dependencies: 279 | babel-helper-get-function-arity "^6.18.0" 280 | babel-runtime "^6.0.0" 281 | babel-template "^6.8.0" 282 | babel-traverse "^6.18.0" 283 | babel-types "^6.18.0" 284 | 285 | babel-helper-get-function-arity@^6.18.0: 286 | version "6.18.0" 287 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.18.0.tgz#a5b19695fd3f9cdfc328398b47dafcd7094f9f24" 288 | dependencies: 289 | babel-runtime "^6.0.0" 290 | babel-types "^6.18.0" 291 | 292 | babel-helper-hoist-variables@^6.18.0: 293 | version "6.18.0" 294 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.18.0.tgz#a835b5ab8b46d6de9babefae4d98ea41e866b82a" 295 | dependencies: 296 | babel-runtime "^6.0.0" 297 | babel-types "^6.18.0" 298 | 299 | babel-helper-optimise-call-expression@^6.18.0: 300 | version "6.18.0" 301 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.18.0.tgz#9261d0299ee1a4f08a6dd28b7b7c777348fd8f0f" 302 | dependencies: 303 | babel-runtime "^6.0.0" 304 | babel-types "^6.18.0" 305 | 306 | babel-helper-regex@^6.8.0: 307 | version "6.18.0" 308 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.18.0.tgz#ae0ebfd77de86cb2f1af258e2cc20b5fe893ecc6" 309 | dependencies: 310 | babel-runtime "^6.9.0" 311 | babel-types "^6.18.0" 312 | lodash "^4.2.0" 313 | 314 | babel-helper-remap-async-to-generator@^6.16.0: 315 | version "6.18.0" 316 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.18.0.tgz#336cdf3cab650bb191b02fc16a3708e7be7f9ce5" 317 | dependencies: 318 | babel-helper-function-name "^6.18.0" 319 | babel-runtime "^6.0.0" 320 | babel-template "^6.16.0" 321 | babel-traverse "^6.18.0" 322 | babel-types "^6.18.0" 323 | 324 | babel-helper-replace-supers@^6.18.0, babel-helper-replace-supers@^6.8.0: 325 | version "6.18.0" 326 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.18.0.tgz#28ec69877be4144dbd64f4cc3a337e89f29a924e" 327 | dependencies: 328 | babel-helper-optimise-call-expression "^6.18.0" 329 | babel-messages "^6.8.0" 330 | babel-runtime "^6.0.0" 331 | babel-template "^6.16.0" 332 | babel-traverse "^6.18.0" 333 | babel-types "^6.18.0" 334 | 335 | babel-helpers@^6.16.0: 336 | version "6.16.0" 337 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.16.0.tgz#1095ec10d99279460553e67eb3eee9973d3867e3" 338 | dependencies: 339 | babel-runtime "^6.0.0" 340 | babel-template "^6.16.0" 341 | 342 | babel-jest@^18.0.0: 343 | version "18.0.0" 344 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-18.0.0.tgz#17ebba8cb3285c906d859e8707e4e79795fb65e3" 345 | dependencies: 346 | babel-core "^6.0.0" 347 | babel-plugin-istanbul "^3.0.0" 348 | babel-preset-jest "^18.0.0" 349 | 350 | babel-messages@^6.8.0: 351 | version "6.8.0" 352 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9" 353 | dependencies: 354 | babel-runtime "^6.0.0" 355 | 356 | babel-plugin-check-es2015-constants@^6.3.13: 357 | version "6.8.0" 358 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.8.0.tgz#dbf024c32ed37bfda8dee1e76da02386a8d26fe7" 359 | dependencies: 360 | babel-runtime "^6.0.0" 361 | 362 | babel-plugin-istanbul@^3.0.0: 363 | version "3.1.2" 364 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-3.1.2.tgz#11d5abde18425ec24b5d648c7e0b5d25cd354a22" 365 | dependencies: 366 | find-up "^1.1.2" 367 | istanbul-lib-instrument "^1.4.2" 368 | object-assign "^4.1.0" 369 | test-exclude "^3.3.0" 370 | 371 | babel-plugin-jest-hoist@^18.0.0: 372 | version "18.0.0" 373 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-18.0.0.tgz#4150e70ecab560e6e7344adc849498072d34e12a" 374 | 375 | babel-plugin-syntax-async-functions@^6.8.0: 376 | version "6.13.0" 377 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 378 | 379 | babel-plugin-syntax-flow@^6.18.0: 380 | version "6.18.0" 381 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 382 | 383 | babel-plugin-syntax-object-rest-spread@^6.8.0: 384 | version "6.13.0" 385 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 386 | 387 | babel-plugin-transform-async-to-generator@^6.16.0: 388 | version "6.16.0" 389 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.16.0.tgz#19ec36cb1486b59f9f468adfa42ce13908ca2999" 390 | dependencies: 391 | babel-helper-remap-async-to-generator "^6.16.0" 392 | babel-plugin-syntax-async-functions "^6.8.0" 393 | babel-runtime "^6.0.0" 394 | 395 | babel-plugin-transform-es2015-arrow-functions@^6.3.13: 396 | version "6.8.0" 397 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.8.0.tgz#5b63afc3181bdc9a8c4d481b5a4f3f7d7fef3d9d" 398 | dependencies: 399 | babel-runtime "^6.0.0" 400 | 401 | babel-plugin-transform-es2015-block-scoped-functions@^6.3.13: 402 | version "6.8.0" 403 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.8.0.tgz#ed95d629c4b5a71ae29682b998f70d9833eb366d" 404 | dependencies: 405 | babel-runtime "^6.0.0" 406 | 407 | babel-plugin-transform-es2015-block-scoping@^6.18.0: 408 | version "6.18.0" 409 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.18.0.tgz#3bfdcfec318d46df22525cdea88f1978813653af" 410 | dependencies: 411 | babel-runtime "^6.9.0" 412 | babel-template "^6.15.0" 413 | babel-traverse "^6.18.0" 414 | babel-types "^6.18.0" 415 | lodash "^4.2.0" 416 | 417 | babel-plugin-transform-es2015-classes@^6.18.0: 418 | version "6.18.0" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.18.0.tgz#ffe7a17321bf83e494dcda0ae3fc72df48ffd1d9" 420 | dependencies: 421 | babel-helper-define-map "^6.18.0" 422 | babel-helper-function-name "^6.18.0" 423 | babel-helper-optimise-call-expression "^6.18.0" 424 | babel-helper-replace-supers "^6.18.0" 425 | babel-messages "^6.8.0" 426 | babel-runtime "^6.9.0" 427 | babel-template "^6.14.0" 428 | babel-traverse "^6.18.0" 429 | babel-types "^6.18.0" 430 | 431 | babel-plugin-transform-es2015-computed-properties@^6.3.13: 432 | version "6.8.0" 433 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.8.0.tgz#f51010fd61b3bd7b6b60a5fdfd307bb7a5279870" 434 | dependencies: 435 | babel-helper-define-map "^6.8.0" 436 | babel-runtime "^6.0.0" 437 | babel-template "^6.8.0" 438 | 439 | babel-plugin-transform-es2015-destructuring@^6.18.0: 440 | version "6.19.0" 441 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.19.0.tgz#ff1d911c4b3f4cab621bd66702a869acd1900533" 442 | dependencies: 443 | babel-runtime "^6.9.0" 444 | 445 | babel-plugin-transform-es2015-duplicate-keys@^6.6.0: 446 | version "6.8.0" 447 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.8.0.tgz#fd8f7f7171fc108cc1c70c3164b9f15a81c25f7d" 448 | dependencies: 449 | babel-runtime "^6.0.0" 450 | babel-types "^6.8.0" 451 | 452 | babel-plugin-transform-es2015-for-of@^6.18.0: 453 | version "6.18.0" 454 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.18.0.tgz#4c517504db64bf8cfc119a6b8f177211f2028a70" 455 | dependencies: 456 | babel-runtime "^6.0.0" 457 | 458 | babel-plugin-transform-es2015-function-name@^6.9.0: 459 | version "6.9.0" 460 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.9.0.tgz#8c135b17dbd064e5bba56ec511baaee2fca82719" 461 | dependencies: 462 | babel-helper-function-name "^6.8.0" 463 | babel-runtime "^6.9.0" 464 | babel-types "^6.9.0" 465 | 466 | babel-plugin-transform-es2015-literals@^6.3.13: 467 | version "6.8.0" 468 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.8.0.tgz#50aa2e5c7958fc2ab25d74ec117e0cc98f046468" 469 | dependencies: 470 | babel-runtime "^6.0.0" 471 | 472 | babel-plugin-transform-es2015-modules-amd@^6.18.0: 473 | version "6.18.0" 474 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.18.0.tgz#49a054cbb762bdf9ae2d8a807076cfade6141e40" 475 | dependencies: 476 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 477 | babel-runtime "^6.0.0" 478 | babel-template "^6.8.0" 479 | 480 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 481 | version "6.18.0" 482 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz#c15ae5bb11b32a0abdcc98a5837baa4ee8d67bcc" 483 | dependencies: 484 | babel-plugin-transform-strict-mode "^6.18.0" 485 | babel-runtime "^6.0.0" 486 | babel-template "^6.16.0" 487 | babel-types "^6.18.0" 488 | 489 | babel-plugin-transform-es2015-modules-systemjs@^6.18.0: 490 | version "6.19.0" 491 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.19.0.tgz#50438136eba74527efa00a5b0fefaf1dc4071da6" 492 | dependencies: 493 | babel-helper-hoist-variables "^6.18.0" 494 | babel-runtime "^6.11.6" 495 | babel-template "^6.14.0" 496 | 497 | babel-plugin-transform-es2015-modules-umd@^6.18.0: 498 | version "6.18.0" 499 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.18.0.tgz#23351770ece5c1f8e83ed67cb1d7992884491e50" 500 | dependencies: 501 | babel-plugin-transform-es2015-modules-amd "^6.18.0" 502 | babel-runtime "^6.0.0" 503 | babel-template "^6.8.0" 504 | 505 | babel-plugin-transform-es2015-object-super@^6.3.13: 506 | version "6.8.0" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.8.0.tgz#1b858740a5a4400887c23dcff6f4d56eea4a24c5" 508 | dependencies: 509 | babel-helper-replace-supers "^6.8.0" 510 | babel-runtime "^6.0.0" 511 | 512 | babel-plugin-transform-es2015-parameters@^6.18.0: 513 | version "6.18.0" 514 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.18.0.tgz#9b2cfe238c549f1635ba27fc1daa858be70608b1" 515 | dependencies: 516 | babel-helper-call-delegate "^6.18.0" 517 | babel-helper-get-function-arity "^6.18.0" 518 | babel-runtime "^6.9.0" 519 | babel-template "^6.16.0" 520 | babel-traverse "^6.18.0" 521 | babel-types "^6.18.0" 522 | 523 | babel-plugin-transform-es2015-shorthand-properties@^6.18.0: 524 | version "6.18.0" 525 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.18.0.tgz#e2ede3b7df47bf980151926534d1dd0cbea58f43" 526 | dependencies: 527 | babel-runtime "^6.0.0" 528 | babel-types "^6.18.0" 529 | 530 | babel-plugin-transform-es2015-spread@^6.3.13: 531 | version "6.8.0" 532 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.8.0.tgz#0217f737e3b821fa5a669f187c6ed59205f05e9c" 533 | dependencies: 534 | babel-runtime "^6.0.0" 535 | 536 | babel-plugin-transform-es2015-sticky-regex@^6.3.13: 537 | version "6.8.0" 538 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.8.0.tgz#e73d300a440a35d5c64f5c2a344dc236e3df47be" 539 | dependencies: 540 | babel-helper-regex "^6.8.0" 541 | babel-runtime "^6.0.0" 542 | babel-types "^6.8.0" 543 | 544 | babel-plugin-transform-es2015-template-literals@^6.6.0: 545 | version "6.8.0" 546 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.8.0.tgz#86eb876d0a2c635da4ec048b4f7de9dfc897e66b" 547 | dependencies: 548 | babel-runtime "^6.0.0" 549 | 550 | babel-plugin-transform-es2015-typeof-symbol@^6.18.0: 551 | version "6.18.0" 552 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.18.0.tgz#0b14c48629c90ff47a0650077f6aa699bee35798" 553 | dependencies: 554 | babel-runtime "^6.0.0" 555 | 556 | babel-plugin-transform-es2015-unicode-regex@^6.3.13: 557 | version "6.11.0" 558 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.11.0.tgz#6298ceabaad88d50a3f4f392d8de997260f6ef2c" 559 | dependencies: 560 | babel-helper-regex "^6.8.0" 561 | babel-runtime "^6.0.0" 562 | regexpu-core "^2.0.0" 563 | 564 | babel-plugin-transform-flow-strip-types@^6.21.0: 565 | version "6.21.0" 566 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.21.0.tgz#2eea3f8b5bb234339b47283feac155cfb237b948" 567 | dependencies: 568 | babel-plugin-syntax-flow "^6.18.0" 569 | babel-runtime "^6.0.0" 570 | 571 | babel-plugin-transform-object-rest-spread@^6.20.2: 572 | version "6.20.2" 573 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.20.2.tgz#e816c55bba77b14c16365d87e2ae48c8fd18fc2e" 574 | dependencies: 575 | babel-plugin-syntax-object-rest-spread "^6.8.0" 576 | babel-runtime "^6.20.0" 577 | 578 | babel-plugin-transform-regenerator@^6.16.0: 579 | version "6.16.1" 580 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.16.1.tgz#a75de6b048a14154aae14b0122756c5bed392f59" 581 | dependencies: 582 | babel-runtime "^6.9.0" 583 | babel-types "^6.16.0" 584 | private "~0.1.5" 585 | 586 | babel-plugin-transform-strict-mode@^6.18.0: 587 | version "6.18.0" 588 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.18.0.tgz#df7cf2991fe046f44163dcd110d5ca43bc652b9d" 589 | dependencies: 590 | babel-runtime "^6.0.0" 591 | babel-types "^6.18.0" 592 | 593 | babel-polyfill@^6.16.0: 594 | version "6.16.0" 595 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.16.0.tgz#2d45021df87e26a374b6d4d1a9c65964d17f2422" 596 | dependencies: 597 | babel-runtime "^6.9.1" 598 | core-js "^2.4.0" 599 | regenerator-runtime "^0.9.5" 600 | 601 | babel-preset-es2015@^6.18.0: 602 | version "6.18.0" 603 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.18.0.tgz#b8c70df84ec948c43dcf2bf770e988eb7da88312" 604 | dependencies: 605 | babel-plugin-check-es2015-constants "^6.3.13" 606 | babel-plugin-transform-es2015-arrow-functions "^6.3.13" 607 | babel-plugin-transform-es2015-block-scoped-functions "^6.3.13" 608 | babel-plugin-transform-es2015-block-scoping "^6.18.0" 609 | babel-plugin-transform-es2015-classes "^6.18.0" 610 | babel-plugin-transform-es2015-computed-properties "^6.3.13" 611 | babel-plugin-transform-es2015-destructuring "^6.18.0" 612 | babel-plugin-transform-es2015-duplicate-keys "^6.6.0" 613 | babel-plugin-transform-es2015-for-of "^6.18.0" 614 | babel-plugin-transform-es2015-function-name "^6.9.0" 615 | babel-plugin-transform-es2015-literals "^6.3.13" 616 | babel-plugin-transform-es2015-modules-amd "^6.18.0" 617 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 618 | babel-plugin-transform-es2015-modules-systemjs "^6.18.0" 619 | babel-plugin-transform-es2015-modules-umd "^6.18.0" 620 | babel-plugin-transform-es2015-object-super "^6.3.13" 621 | babel-plugin-transform-es2015-parameters "^6.18.0" 622 | babel-plugin-transform-es2015-shorthand-properties "^6.18.0" 623 | babel-plugin-transform-es2015-spread "^6.3.13" 624 | babel-plugin-transform-es2015-sticky-regex "^6.3.13" 625 | babel-plugin-transform-es2015-template-literals "^6.6.0" 626 | babel-plugin-transform-es2015-typeof-symbol "^6.18.0" 627 | babel-plugin-transform-es2015-unicode-regex "^6.3.13" 628 | babel-plugin-transform-regenerator "^6.16.0" 629 | 630 | babel-preset-jest@^18.0.0: 631 | version "18.0.0" 632 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-18.0.0.tgz#84faf8ca3ec65aba7d5e3f59bbaed935ab24049e" 633 | dependencies: 634 | babel-plugin-jest-hoist "^18.0.0" 635 | 636 | babel-register@^6.18.0: 637 | version "6.18.0" 638 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.18.0.tgz#892e2e03865078dd90ad2c715111ec4449b32a68" 639 | dependencies: 640 | babel-core "^6.18.0" 641 | babel-runtime "^6.11.6" 642 | core-js "^2.4.0" 643 | home-or-tmp "^2.0.0" 644 | lodash "^4.2.0" 645 | mkdirp "^0.5.1" 646 | source-map-support "^0.4.2" 647 | 648 | babel-runtime@^6.0.0, babel-runtime@^6.11.6, babel-runtime@^6.9.0, babel-runtime@^6.9.1: 649 | version "6.18.0" 650 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.18.0.tgz#0f4177ffd98492ef13b9f823e9994a02584c9078" 651 | dependencies: 652 | core-js "^2.4.0" 653 | regenerator-runtime "^0.9.5" 654 | 655 | babel-runtime@^6.20.0: 656 | version "6.20.0" 657 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.20.0.tgz#87300bdcf4cd770f09bf0048c64204e17806d16f" 658 | dependencies: 659 | core-js "^2.4.0" 660 | regenerator-runtime "^0.10.0" 661 | 662 | babel-template@^6.14.0, babel-template@^6.15.0, babel-template@^6.16.0, babel-template@^6.8.0: 663 | version "6.16.0" 664 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca" 665 | dependencies: 666 | babel-runtime "^6.9.0" 667 | babel-traverse "^6.16.0" 668 | babel-types "^6.16.0" 669 | babylon "^6.11.0" 670 | lodash "^4.2.0" 671 | 672 | babel-traverse@^6.15.0, babel-traverse@^6.16.0, babel-traverse@^6.18.0: 673 | version "6.19.0" 674 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.19.0.tgz#68363fb821e26247d52a519a84b2ceab8df4f55a" 675 | dependencies: 676 | babel-code-frame "^6.16.0" 677 | babel-messages "^6.8.0" 678 | babel-runtime "^6.9.0" 679 | babel-types "^6.19.0" 680 | babylon "^6.11.0" 681 | debug "^2.2.0" 682 | globals "^9.0.0" 683 | invariant "^2.2.0" 684 | lodash "^4.2.0" 685 | 686 | babel-types@^6.15.0, babel-types@^6.16.0, babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.8.0, babel-types@^6.9.0: 687 | version "6.19.0" 688 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.19.0.tgz#8db2972dbed01f1192a8b602ba1e1e4c516240b9" 689 | dependencies: 690 | babel-runtime "^6.9.1" 691 | esutils "^2.0.2" 692 | lodash "^4.2.0" 693 | to-fast-properties "^1.0.1" 694 | 695 | babylon@^6.11.0, babylon@^6.13.0: 696 | version "6.14.1" 697 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.14.1.tgz#956275fab72753ad9b3435d7afe58f8bf0a29815" 698 | 699 | balanced-match@^0.4.1: 700 | version "0.4.2" 701 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 702 | 703 | bcrypt-pbkdf@^1.0.0: 704 | version "1.0.0" 705 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 706 | dependencies: 707 | tweetnacl "^0.14.3" 708 | 709 | binary-extensions@^1.0.0: 710 | version "1.8.0" 711 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 712 | 713 | block-stream@*: 714 | version "0.0.9" 715 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 716 | dependencies: 717 | inherits "~2.0.0" 718 | 719 | boom@2.x.x: 720 | version "2.10.1" 721 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 722 | dependencies: 723 | hoek "2.x.x" 724 | 725 | brace-expansion@^1.0.0: 726 | version "1.1.6" 727 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 728 | dependencies: 729 | balanced-match "^0.4.1" 730 | concat-map "0.0.1" 731 | 732 | braces@^1.8.2: 733 | version "1.8.5" 734 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 735 | dependencies: 736 | expand-range "^1.8.1" 737 | preserve "^0.2.0" 738 | repeat-element "^1.1.2" 739 | 740 | browser-resolve@^1.11.2: 741 | version "1.11.2" 742 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 743 | dependencies: 744 | resolve "1.1.7" 745 | 746 | bser@^1.0.2: 747 | version "1.0.2" 748 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 749 | dependencies: 750 | node-int64 "^0.4.0" 751 | 752 | buffer-shims@^1.0.0: 753 | version "1.0.0" 754 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 755 | 756 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 757 | version "1.1.1" 758 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 759 | 760 | caller-path@^0.1.0: 761 | version "0.1.0" 762 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 763 | dependencies: 764 | callsites "^0.2.0" 765 | 766 | callsites@^0.2.0: 767 | version "0.2.0" 768 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 769 | 770 | callsites@^2.0.0: 771 | version "2.0.0" 772 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 773 | 774 | camelcase@^1.0.2: 775 | version "1.2.1" 776 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 777 | 778 | camelcase@^3.0.0: 779 | version "3.0.0" 780 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 781 | 782 | cardinal@^1.0.0: 783 | version "1.0.0" 784 | resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-1.0.0.tgz#50e21c1b0aa37729f9377def196b5a9cec932ee9" 785 | dependencies: 786 | ansicolors "~0.2.1" 787 | redeyed "~1.0.0" 788 | 789 | caseless@~0.11.0: 790 | version "0.11.0" 791 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 792 | 793 | center-align@^0.1.1: 794 | version "0.1.3" 795 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 796 | dependencies: 797 | align-text "^0.1.3" 798 | lazy-cache "^1.0.3" 799 | 800 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 801 | version "1.1.3" 802 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 803 | dependencies: 804 | ansi-styles "^2.2.1" 805 | escape-string-regexp "^1.0.2" 806 | has-ansi "^2.0.0" 807 | strip-ansi "^3.0.0" 808 | supports-color "^2.0.0" 809 | 810 | chokidar@^1.0.0: 811 | version "1.6.1" 812 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 813 | dependencies: 814 | anymatch "^1.3.0" 815 | async-each "^1.0.0" 816 | glob-parent "^2.0.0" 817 | inherits "^2.0.1" 818 | is-binary-path "^1.0.0" 819 | is-glob "^2.0.0" 820 | path-is-absolute "^1.0.0" 821 | readdirp "^2.0.0" 822 | optionalDependencies: 823 | fsevents "^1.0.0" 824 | 825 | ci-info@^1.0.0: 826 | version "1.0.0" 827 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 828 | 829 | circular-json@^0.3.0: 830 | version "0.3.1" 831 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 832 | 833 | cli-cursor@^1.0.1: 834 | version "1.0.2" 835 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 836 | dependencies: 837 | restore-cursor "^1.0.1" 838 | 839 | cli-table@^0.3.1: 840 | version "0.3.1" 841 | resolved "https://registry.yarnpkg.com/cli-table/-/cli-table-0.3.1.tgz#f53b05266a8b1a0b934b3d0821e6e2dc5914ae23" 842 | dependencies: 843 | colors "1.0.3" 844 | 845 | cli-usage@^0.1.1: 846 | version "0.1.4" 847 | resolved "https://registry.yarnpkg.com/cli-usage/-/cli-usage-0.1.4.tgz#7c01e0dc706c234b39c933838c8e20b2175776e2" 848 | dependencies: 849 | marked "^0.3.6" 850 | marked-terminal "^1.6.2" 851 | 852 | cli-width@^2.0.0: 853 | version "2.1.0" 854 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 855 | 856 | cliui@^2.1.0: 857 | version "2.1.0" 858 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 859 | dependencies: 860 | center-align "^0.1.1" 861 | right-align "^0.1.1" 862 | wordwrap "0.0.2" 863 | 864 | cliui@^3.2.0: 865 | version "3.2.0" 866 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 867 | dependencies: 868 | string-width "^1.0.1" 869 | strip-ansi "^3.0.1" 870 | wrap-ansi "^2.0.0" 871 | 872 | co@^4.6.0: 873 | version "4.6.0" 874 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 875 | 876 | code-point-at@^1.0.0: 877 | version "1.1.0" 878 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 879 | 880 | codecov@^1.0.1: 881 | version "1.0.1" 882 | resolved "https://registry.yarnpkg.com/codecov/-/codecov-1.0.1.tgz#97260ceac0e96b8eda8d562006558a53a139dffd" 883 | dependencies: 884 | argv ">=0.0.2" 885 | execSync "1.0.2" 886 | request ">=2.42.0" 887 | urlgrey ">=0.4.0" 888 | 889 | colors@1.0.3: 890 | version "1.0.3" 891 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 892 | 893 | combined-stream@^1.0.5, combined-stream@~1.0.5: 894 | version "1.0.5" 895 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 896 | dependencies: 897 | delayed-stream "~1.0.0" 898 | 899 | commander@^2.8.1, commander@^2.9.0: 900 | version "2.9.0" 901 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 902 | dependencies: 903 | graceful-readlink ">= 1.0.0" 904 | 905 | concat-map@0.0.1: 906 | version "0.0.1" 907 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 908 | 909 | concat-stream@^1.4.6: 910 | version "1.5.2" 911 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 912 | dependencies: 913 | inherits "~2.0.1" 914 | readable-stream "~2.0.0" 915 | typedarray "~0.0.5" 916 | 917 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 918 | version "1.1.0" 919 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 920 | 921 | contains-path@^0.1.0: 922 | version "0.1.0" 923 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 924 | 925 | content-type-parser@^1.0.1: 926 | version "1.0.1" 927 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 928 | 929 | convert-source-map@^1.1.0: 930 | version "1.3.0" 931 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 932 | 933 | core-js@^2.4.0: 934 | version "2.4.1" 935 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 936 | 937 | core-util-is@~1.0.0: 938 | version "1.0.2" 939 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 940 | 941 | cryptiles@2.x.x: 942 | version "2.0.5" 943 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 944 | dependencies: 945 | boom "2.x.x" 946 | 947 | cssom@0.3.x, "cssom@>= 0.3.0 < 0.4.0": 948 | version "0.3.1" 949 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.1.tgz#c9e37ef2490e64f6d1baa10fda852257082c25d3" 950 | 951 | "cssstyle@>= 0.2.36 < 0.3.0": 952 | version "0.2.37" 953 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 954 | dependencies: 955 | cssom "0.3.x" 956 | 957 | d@^0.1.1, d@~0.1.1: 958 | version "0.1.1" 959 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" 960 | dependencies: 961 | es5-ext "~0.10.2" 962 | 963 | dashdash@^1.12.0: 964 | version "1.14.1" 965 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 966 | dependencies: 967 | assert-plus "^1.0.0" 968 | 969 | debug@2.2.0, debug@~2.2.0: 970 | version "2.2.0" 971 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 972 | dependencies: 973 | ms "0.7.1" 974 | 975 | debug@^2.1.1, debug@^2.2.0: 976 | version "2.3.3" 977 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.3.3.tgz#40c453e67e6e13c901ddec317af8986cda9eff8c" 978 | dependencies: 979 | ms "0.7.2" 980 | 981 | decamelize@^1.0.0, decamelize@^1.1.1: 982 | version "1.2.0" 983 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 984 | 985 | deep-extend@~0.4.0: 986 | version "0.4.1" 987 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 988 | 989 | deep-is@~0.1.3: 990 | version "0.1.3" 991 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 992 | 993 | del@^2.0.2: 994 | version "2.2.2" 995 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 996 | dependencies: 997 | globby "^5.0.0" 998 | is-path-cwd "^1.0.0" 999 | is-path-in-cwd "^1.0.0" 1000 | object-assign "^4.0.1" 1001 | pify "^2.0.0" 1002 | pinkie-promise "^2.0.0" 1003 | rimraf "^2.2.8" 1004 | 1005 | delayed-stream@~1.0.0: 1006 | version "1.0.0" 1007 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1008 | 1009 | delegates@^1.0.0: 1010 | version "1.0.0" 1011 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1012 | 1013 | detect-indent@^4.0.0: 1014 | version "4.0.0" 1015 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1016 | dependencies: 1017 | repeating "^2.0.0" 1018 | 1019 | diff@^3.0.0: 1020 | version "3.1.0" 1021 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.1.0.tgz#9406c73a401e6c2b3ba901c5e2c44eb6a60c5385" 1022 | 1023 | doctrine@1.5.0, doctrine@^1.2.2: 1024 | version "1.5.0" 1025 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1026 | dependencies: 1027 | esutils "^2.0.2" 1028 | isarray "^1.0.0" 1029 | 1030 | ecc-jsbn@~0.1.1: 1031 | version "0.1.1" 1032 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1033 | dependencies: 1034 | jsbn "~0.1.0" 1035 | 1036 | "errno@>=0.1.1 <0.2.0-0": 1037 | version "0.1.4" 1038 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1039 | dependencies: 1040 | prr "~0.0.0" 1041 | 1042 | error-ex@^1.2.0: 1043 | version "1.3.0" 1044 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 1045 | dependencies: 1046 | is-arrayish "^0.2.1" 1047 | 1048 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7: 1049 | version "0.10.12" 1050 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047" 1051 | dependencies: 1052 | es6-iterator "2" 1053 | es6-symbol "~3.1" 1054 | 1055 | es6-iterator@2: 1056 | version "2.0.0" 1057 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac" 1058 | dependencies: 1059 | d "^0.1.1" 1060 | es5-ext "^0.10.7" 1061 | es6-symbol "3" 1062 | 1063 | es6-map@^0.1.3: 1064 | version "0.1.4" 1065 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897" 1066 | dependencies: 1067 | d "~0.1.1" 1068 | es5-ext "~0.10.11" 1069 | es6-iterator "2" 1070 | es6-set "~0.1.3" 1071 | es6-symbol "~3.1.0" 1072 | event-emitter "~0.3.4" 1073 | 1074 | es6-set@~0.1.3: 1075 | version "0.1.4" 1076 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8" 1077 | dependencies: 1078 | d "~0.1.1" 1079 | es5-ext "~0.10.11" 1080 | es6-iterator "2" 1081 | es6-symbol "3" 1082 | event-emitter "~0.3.4" 1083 | 1084 | es6-symbol@3, es6-symbol@~3.1, es6-symbol@~3.1.0: 1085 | version "3.1.0" 1086 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa" 1087 | dependencies: 1088 | d "~0.1.1" 1089 | es5-ext "~0.10.11" 1090 | 1091 | es6-weak-map@^2.0.1: 1092 | version "2.0.1" 1093 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81" 1094 | dependencies: 1095 | d "^0.1.1" 1096 | es5-ext "^0.10.8" 1097 | es6-iterator "2" 1098 | es6-symbol "3" 1099 | 1100 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1101 | version "1.0.5" 1102 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1103 | 1104 | escodegen@^1.6.1: 1105 | version "1.8.1" 1106 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1107 | dependencies: 1108 | esprima "^2.7.1" 1109 | estraverse "^1.9.1" 1110 | esutils "^2.0.2" 1111 | optionator "^0.8.1" 1112 | optionalDependencies: 1113 | source-map "~0.2.0" 1114 | 1115 | escope@^3.6.0: 1116 | version "3.6.0" 1117 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1118 | dependencies: 1119 | es6-map "^0.1.3" 1120 | es6-weak-map "^2.0.1" 1121 | esrecurse "^4.1.0" 1122 | estraverse "^4.1.1" 1123 | 1124 | eslint-config-airbnb-base@^11.0.1: 1125 | version "11.0.1" 1126 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.0.1.tgz#5401dba284c6b7d7c8fb1c2ee19aba018f9dfa21" 1127 | 1128 | eslint-import-resolver-node@^0.2.0: 1129 | version "0.2.3" 1130 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 1131 | dependencies: 1132 | debug "^2.2.0" 1133 | object-assign "^4.0.1" 1134 | resolve "^1.1.6" 1135 | 1136 | eslint-module-utils@^2.0.0: 1137 | version "2.0.0" 1138 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce" 1139 | dependencies: 1140 | debug "2.2.0" 1141 | pkg-dir "^1.0.0" 1142 | 1143 | eslint-plugin-flowtype@^2.29.2: 1144 | version "2.29.2" 1145 | resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.29.2.tgz#91b4fde0400c4c37ca4440b43bdbc95fc405bea9" 1146 | dependencies: 1147 | lodash "^4.15.0" 1148 | 1149 | eslint-plugin-import@^2.2.0: 1150 | version "2.2.0" 1151 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e" 1152 | dependencies: 1153 | builtin-modules "^1.1.1" 1154 | contains-path "^0.1.0" 1155 | debug "^2.2.0" 1156 | doctrine "1.5.0" 1157 | eslint-import-resolver-node "^0.2.0" 1158 | eslint-module-utils "^2.0.0" 1159 | has "^1.0.1" 1160 | lodash.cond "^4.3.0" 1161 | minimatch "^3.0.3" 1162 | pkg-up "^1.0.0" 1163 | 1164 | eslint@^3.13.1: 1165 | version "3.13.1" 1166 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.13.1.tgz#564d2646b5efded85df96985332edd91a23bff25" 1167 | dependencies: 1168 | babel-code-frame "^6.16.0" 1169 | chalk "^1.1.3" 1170 | concat-stream "^1.4.6" 1171 | debug "^2.1.1" 1172 | doctrine "^1.2.2" 1173 | escope "^3.6.0" 1174 | espree "^3.3.1" 1175 | estraverse "^4.2.0" 1176 | esutils "^2.0.2" 1177 | file-entry-cache "^2.0.0" 1178 | glob "^7.0.3" 1179 | globals "^9.14.0" 1180 | ignore "^3.2.0" 1181 | imurmurhash "^0.1.4" 1182 | inquirer "^0.12.0" 1183 | is-my-json-valid "^2.10.0" 1184 | is-resolvable "^1.0.0" 1185 | js-yaml "^3.5.1" 1186 | json-stable-stringify "^1.0.0" 1187 | levn "^0.3.0" 1188 | lodash "^4.0.0" 1189 | mkdirp "^0.5.0" 1190 | natural-compare "^1.4.0" 1191 | optionator "^0.8.2" 1192 | path-is-inside "^1.0.1" 1193 | pluralize "^1.2.1" 1194 | progress "^1.1.8" 1195 | require-uncached "^1.0.2" 1196 | shelljs "^0.7.5" 1197 | strip-bom "^3.0.0" 1198 | strip-json-comments "~2.0.1" 1199 | table "^3.7.8" 1200 | text-table "~0.2.0" 1201 | user-home "^2.0.0" 1202 | 1203 | espree@^3.3.1: 1204 | version "3.3.2" 1205 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.3.2.tgz#dbf3fadeb4ecb4d4778303e50103b3d36c88b89c" 1206 | dependencies: 1207 | acorn "^4.0.1" 1208 | acorn-jsx "^3.0.0" 1209 | 1210 | esprima@^2.6.0, esprima@^2.7.1: 1211 | version "2.7.3" 1212 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1213 | 1214 | esprima@~3.0.0: 1215 | version "3.0.0" 1216 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.0.0.tgz#53cf247acda77313e551c3aa2e73342d3fb4f7d9" 1217 | 1218 | esrecurse@^4.1.0: 1219 | version "4.1.0" 1220 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1221 | dependencies: 1222 | estraverse "~4.1.0" 1223 | object-assign "^4.0.1" 1224 | 1225 | estraverse@^1.9.1: 1226 | version "1.9.3" 1227 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1228 | 1229 | estraverse@^4.1.1, estraverse@^4.2.0: 1230 | version "4.2.0" 1231 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1232 | 1233 | estraverse@~4.1.0: 1234 | version "4.1.1" 1235 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1236 | 1237 | esutils@^2.0.2: 1238 | version "2.0.2" 1239 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1240 | 1241 | event-emitter@~0.3.4: 1242 | version "0.3.4" 1243 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5" 1244 | dependencies: 1245 | d "~0.1.1" 1246 | es5-ext "~0.10.7" 1247 | 1248 | exec-sh@^0.2.0: 1249 | version "0.2.0" 1250 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1251 | dependencies: 1252 | merge "^1.1.3" 1253 | 1254 | execSync@1.0.2: 1255 | version "1.0.2" 1256 | resolved "https://registry.yarnpkg.com/execSync/-/execSync-1.0.2.tgz#1f42eda582225180053224ecdd3fd1960fdb3139" 1257 | dependencies: 1258 | temp "~0.5.1" 1259 | 1260 | exit-hook@^1.0.0: 1261 | version "1.1.1" 1262 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1263 | 1264 | expand-brackets@^0.1.4: 1265 | version "0.1.5" 1266 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1267 | dependencies: 1268 | is-posix-bracket "^0.1.0" 1269 | 1270 | expand-range@^1.8.1: 1271 | version "1.8.2" 1272 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1273 | dependencies: 1274 | fill-range "^2.1.0" 1275 | 1276 | extend@~3.0.0: 1277 | version "3.0.0" 1278 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1279 | 1280 | extglob@^0.3.1: 1281 | version "0.3.2" 1282 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1283 | dependencies: 1284 | is-extglob "^1.0.0" 1285 | 1286 | extsprintf@1.0.2: 1287 | version "1.0.2" 1288 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1289 | 1290 | fast-levenshtein@~2.0.4: 1291 | version "2.0.5" 1292 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2" 1293 | 1294 | fb-watchman@^1.8.0, fb-watchman@^1.9.0: 1295 | version "1.9.0" 1296 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.0.tgz#6f268f1f347a6b3c875d1e89da7e1ed79adfc0ec" 1297 | dependencies: 1298 | bser "^1.0.2" 1299 | 1300 | figures@^1.3.5: 1301 | version "1.7.0" 1302 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1303 | dependencies: 1304 | escape-string-regexp "^1.0.5" 1305 | object-assign "^4.1.0" 1306 | 1307 | file-entry-cache@^2.0.0: 1308 | version "2.0.0" 1309 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1310 | dependencies: 1311 | flat-cache "^1.2.1" 1312 | object-assign "^4.0.1" 1313 | 1314 | filename-regex@^2.0.0: 1315 | version "2.0.0" 1316 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1317 | 1318 | fileset@^2.0.2: 1319 | version "2.0.3" 1320 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1321 | dependencies: 1322 | glob "^7.0.3" 1323 | minimatch "^3.0.3" 1324 | 1325 | fill-range@^2.1.0: 1326 | version "2.2.3" 1327 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1328 | dependencies: 1329 | is-number "^2.1.0" 1330 | isobject "^2.0.0" 1331 | randomatic "^1.1.3" 1332 | repeat-element "^1.1.2" 1333 | repeat-string "^1.5.2" 1334 | 1335 | find-up@^1.0.0, find-up@^1.1.2: 1336 | version "1.1.2" 1337 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1338 | dependencies: 1339 | path-exists "^2.0.0" 1340 | pinkie-promise "^2.0.0" 1341 | 1342 | flat-cache@^1.2.1: 1343 | version "1.2.1" 1344 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.1.tgz#6c837d6225a7de5659323740b36d5361f71691ff" 1345 | dependencies: 1346 | circular-json "^0.3.0" 1347 | del "^2.0.2" 1348 | graceful-fs "^4.1.2" 1349 | write "^0.2.1" 1350 | 1351 | flow-bin@^0.37.4: 1352 | version "0.37.4" 1353 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.37.4.tgz#3d8da2ef746e80e730d166e09040f4198969b76b" 1354 | 1355 | for-in@^0.1.5: 1356 | version "0.1.6" 1357 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1358 | 1359 | for-own@^0.1.4: 1360 | version "0.1.4" 1361 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1362 | dependencies: 1363 | for-in "^0.1.5" 1364 | 1365 | forever-agent@~0.6.1: 1366 | version "0.6.1" 1367 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1368 | 1369 | form-data@~2.1.1: 1370 | version "2.1.2" 1371 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1372 | dependencies: 1373 | asynckit "^0.4.0" 1374 | combined-stream "^1.0.5" 1375 | mime-types "^2.1.12" 1376 | 1377 | fs-readdir-recursive@^1.0.0: 1378 | version "1.0.0" 1379 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1380 | 1381 | fs.realpath@^1.0.0: 1382 | version "1.0.0" 1383 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1384 | 1385 | fsevents@^1.0.0: 1386 | version "1.0.15" 1387 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.15.tgz#fa63f590f3c2ad91275e4972a6cea545fb0aae44" 1388 | dependencies: 1389 | nan "^2.3.0" 1390 | node-pre-gyp "^0.6.29" 1391 | 1392 | fstream-ignore@~1.0.5: 1393 | version "1.0.5" 1394 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1395 | dependencies: 1396 | fstream "^1.0.0" 1397 | inherits "2" 1398 | minimatch "^3.0.0" 1399 | 1400 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1401 | version "1.0.10" 1402 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1403 | dependencies: 1404 | graceful-fs "^4.1.2" 1405 | inherits "~2.0.0" 1406 | mkdirp ">=0.5 0" 1407 | rimraf "2" 1408 | 1409 | function-bind@^1.0.2: 1410 | version "1.1.0" 1411 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1412 | 1413 | gauge@~2.7.1: 1414 | version "2.7.2" 1415 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.2.tgz#15cecc31b02d05345a5d6b0e171cdb3ad2307774" 1416 | dependencies: 1417 | aproba "^1.0.3" 1418 | console-control-strings "^1.0.0" 1419 | has-unicode "^2.0.0" 1420 | object-assign "^4.1.0" 1421 | signal-exit "^3.0.0" 1422 | string-width "^1.0.1" 1423 | strip-ansi "^3.0.1" 1424 | supports-color "^0.2.0" 1425 | wide-align "^1.1.0" 1426 | 1427 | generate-function@^2.0.0: 1428 | version "2.0.0" 1429 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1430 | 1431 | generate-object-property@^1.1.0: 1432 | version "1.2.0" 1433 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1434 | dependencies: 1435 | is-property "^1.0.0" 1436 | 1437 | get-caller-file@^1.0.1: 1438 | version "1.0.2" 1439 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1440 | 1441 | getpass@^0.1.1: 1442 | version "0.1.6" 1443 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1444 | dependencies: 1445 | assert-plus "^1.0.0" 1446 | 1447 | glob-base@^0.3.0: 1448 | version "0.3.0" 1449 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1450 | dependencies: 1451 | glob-parent "^2.0.0" 1452 | is-glob "^2.0.0" 1453 | 1454 | glob-parent@^2.0.0: 1455 | version "2.0.0" 1456 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1457 | dependencies: 1458 | is-glob "^2.0.0" 1459 | 1460 | glob@^5.0.5: 1461 | version "5.0.15" 1462 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1463 | dependencies: 1464 | inflight "^1.0.4" 1465 | inherits "2" 1466 | minimatch "2 || 3" 1467 | once "^1.3.0" 1468 | path-is-absolute "^1.0.0" 1469 | 1470 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 1471 | version "7.1.1" 1472 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1473 | dependencies: 1474 | fs.realpath "^1.0.0" 1475 | inflight "^1.0.4" 1476 | inherits "2" 1477 | minimatch "^3.0.2" 1478 | once "^1.3.0" 1479 | path-is-absolute "^1.0.0" 1480 | 1481 | globals@^9.0.0, globals@^9.14.0: 1482 | version "9.14.0" 1483 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034" 1484 | 1485 | globby@^5.0.0: 1486 | version "5.0.0" 1487 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1488 | dependencies: 1489 | array-union "^1.0.1" 1490 | arrify "^1.0.0" 1491 | glob "^7.0.3" 1492 | object-assign "^4.0.1" 1493 | pify "^2.0.0" 1494 | pinkie-promise "^2.0.0" 1495 | 1496 | graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6: 1497 | version "4.1.11" 1498 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1499 | 1500 | graceful-fs@~1: 1501 | version "1.2.3" 1502 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.2.3.tgz#15a4806a57547cb2d2dbf27f42e89a8c3451b364" 1503 | 1504 | "graceful-readlink@>= 1.0.0": 1505 | version "1.0.1" 1506 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1507 | 1508 | growly@^1.2.0: 1509 | version "1.3.0" 1510 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1511 | 1512 | handlebars@^4.0.3: 1513 | version "4.0.6" 1514 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 1515 | dependencies: 1516 | async "^1.4.0" 1517 | optimist "^0.6.1" 1518 | source-map "^0.4.4" 1519 | optionalDependencies: 1520 | uglify-js "^2.6" 1521 | 1522 | har-validator@~2.0.6: 1523 | version "2.0.6" 1524 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1525 | dependencies: 1526 | chalk "^1.1.1" 1527 | commander "^2.9.0" 1528 | is-my-json-valid "^2.12.4" 1529 | pinkie-promise "^2.0.0" 1530 | 1531 | has-ansi@^2.0.0: 1532 | version "2.0.0" 1533 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1534 | dependencies: 1535 | ansi-regex "^2.0.0" 1536 | 1537 | has-flag@^1.0.0: 1538 | version "1.0.0" 1539 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1540 | 1541 | has-unicode@^2.0.0: 1542 | version "2.0.1" 1543 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1544 | 1545 | has@^1.0.1: 1546 | version "1.0.1" 1547 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1548 | dependencies: 1549 | function-bind "^1.0.2" 1550 | 1551 | hawk@~3.1.3: 1552 | version "3.1.3" 1553 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1554 | dependencies: 1555 | boom "2.x.x" 1556 | cryptiles "2.x.x" 1557 | hoek "2.x.x" 1558 | sntp "1.x.x" 1559 | 1560 | hoek@2.x.x: 1561 | version "2.16.3" 1562 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1563 | 1564 | home-or-tmp@^2.0.0: 1565 | version "2.0.0" 1566 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1567 | dependencies: 1568 | os-homedir "^1.0.0" 1569 | os-tmpdir "^1.0.1" 1570 | 1571 | hosted-git-info@^2.1.4: 1572 | version "2.1.5" 1573 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" 1574 | 1575 | html-encoding-sniffer@^1.0.1: 1576 | version "1.0.1" 1577 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1578 | dependencies: 1579 | whatwg-encoding "^1.0.1" 1580 | 1581 | http-signature@~1.1.0: 1582 | version "1.1.1" 1583 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1584 | dependencies: 1585 | assert-plus "^0.2.0" 1586 | jsprim "^1.2.2" 1587 | sshpk "^1.7.0" 1588 | 1589 | iconv-lite@0.4.13: 1590 | version "0.4.13" 1591 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1592 | 1593 | iconv-lite@^0.4.13: 1594 | version "0.4.15" 1595 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 1596 | 1597 | ignore@^3.2.0: 1598 | version "3.2.0" 1599 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.0.tgz#8d88f03c3002a0ac52114db25d2c673b0bf1e435" 1600 | 1601 | imurmurhash@^0.1.4: 1602 | version "0.1.4" 1603 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1604 | 1605 | inflight@^1.0.4: 1606 | version "1.0.6" 1607 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1608 | dependencies: 1609 | once "^1.3.0" 1610 | wrappy "1" 1611 | 1612 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 1613 | version "2.0.3" 1614 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1615 | 1616 | ini@~1.3.0: 1617 | version "1.3.4" 1618 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1619 | 1620 | inquirer@^0.12.0: 1621 | version "0.12.0" 1622 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1623 | dependencies: 1624 | ansi-escapes "^1.1.0" 1625 | ansi-regex "^2.0.0" 1626 | chalk "^1.0.0" 1627 | cli-cursor "^1.0.1" 1628 | cli-width "^2.0.0" 1629 | figures "^1.3.5" 1630 | lodash "^4.3.0" 1631 | readline2 "^1.0.1" 1632 | run-async "^0.1.0" 1633 | rx-lite "^3.1.2" 1634 | string-width "^1.0.1" 1635 | strip-ansi "^3.0.0" 1636 | through "^2.3.6" 1637 | 1638 | interpret@^1.0.0: 1639 | version "1.0.1" 1640 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 1641 | 1642 | invariant@^2.2.0: 1643 | version "2.2.2" 1644 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1645 | dependencies: 1646 | loose-envify "^1.0.0" 1647 | 1648 | invert-kv@^1.0.0: 1649 | version "1.0.0" 1650 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1651 | 1652 | is-arrayish@^0.2.1: 1653 | version "0.2.1" 1654 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1655 | 1656 | is-binary-path@^1.0.0: 1657 | version "1.0.1" 1658 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1659 | dependencies: 1660 | binary-extensions "^1.0.0" 1661 | 1662 | is-buffer@^1.0.2: 1663 | version "1.1.4" 1664 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1665 | 1666 | is-builtin-module@^1.0.0: 1667 | version "1.0.0" 1668 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1669 | dependencies: 1670 | builtin-modules "^1.0.0" 1671 | 1672 | is-ci@^1.0.9: 1673 | version "1.0.10" 1674 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1675 | dependencies: 1676 | ci-info "^1.0.0" 1677 | 1678 | is-dotfile@^1.0.0: 1679 | version "1.0.2" 1680 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1681 | 1682 | is-equal-shallow@^0.1.3: 1683 | version "0.1.3" 1684 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1685 | dependencies: 1686 | is-primitive "^2.0.0" 1687 | 1688 | is-extendable@^0.1.1: 1689 | version "0.1.1" 1690 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1691 | 1692 | is-extglob@^1.0.0: 1693 | version "1.0.0" 1694 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1695 | 1696 | is-finite@^1.0.0: 1697 | version "1.0.2" 1698 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1699 | dependencies: 1700 | number-is-nan "^1.0.0" 1701 | 1702 | is-fullwidth-code-point@^1.0.0: 1703 | version "1.0.0" 1704 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1705 | dependencies: 1706 | number-is-nan "^1.0.0" 1707 | 1708 | is-fullwidth-code-point@^2.0.0: 1709 | version "2.0.0" 1710 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1711 | 1712 | is-glob@^2.0.0, is-glob@^2.0.1: 1713 | version "2.0.1" 1714 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1715 | dependencies: 1716 | is-extglob "^1.0.0" 1717 | 1718 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 1719 | version "2.15.0" 1720 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 1721 | dependencies: 1722 | generate-function "^2.0.0" 1723 | generate-object-property "^1.1.0" 1724 | jsonpointer "^4.0.0" 1725 | xtend "^4.0.0" 1726 | 1727 | is-number@^2.0.2, is-number@^2.1.0: 1728 | version "2.1.0" 1729 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1730 | dependencies: 1731 | kind-of "^3.0.2" 1732 | 1733 | is-path-cwd@^1.0.0: 1734 | version "1.0.0" 1735 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1736 | 1737 | is-path-in-cwd@^1.0.0: 1738 | version "1.0.0" 1739 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1740 | dependencies: 1741 | is-path-inside "^1.0.0" 1742 | 1743 | is-path-inside@^1.0.0: 1744 | version "1.0.0" 1745 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1746 | dependencies: 1747 | path-is-inside "^1.0.1" 1748 | 1749 | is-posix-bracket@^0.1.0: 1750 | version "0.1.1" 1751 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1752 | 1753 | is-primitive@^2.0.0: 1754 | version "2.0.0" 1755 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1756 | 1757 | is-property@^1.0.0: 1758 | version "1.0.2" 1759 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1760 | 1761 | is-resolvable@^1.0.0: 1762 | version "1.0.0" 1763 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1764 | dependencies: 1765 | tryit "^1.0.1" 1766 | 1767 | is-typedarray@~1.0.0: 1768 | version "1.0.0" 1769 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1770 | 1771 | is-utf8@^0.2.0: 1772 | version "0.2.1" 1773 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1774 | 1775 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1776 | version "1.0.0" 1777 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1778 | 1779 | isexe@^1.1.1: 1780 | version "1.1.2" 1781 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 1782 | 1783 | isobject@^2.0.0: 1784 | version "2.1.0" 1785 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1786 | dependencies: 1787 | isarray "1.0.0" 1788 | 1789 | isstream@~0.1.2: 1790 | version "0.1.2" 1791 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1792 | 1793 | istanbul-api@^1.1.0-alpha.1: 1794 | version "1.1.0" 1795 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.0.tgz#fb3f62edd5bfc6ae09da09453ded6e10ae7e483b" 1796 | dependencies: 1797 | async "^2.1.4" 1798 | fileset "^2.0.2" 1799 | istanbul-lib-coverage "^1.0.0" 1800 | istanbul-lib-hook "^1.0.0-alpha.4" 1801 | istanbul-lib-instrument "^1.3.0" 1802 | istanbul-lib-report "^1.0.0-alpha.3" 1803 | istanbul-lib-source-maps "^1.1.0" 1804 | istanbul-reports "^1.0.0" 1805 | js-yaml "^3.7.0" 1806 | mkdirp "^0.5.1" 1807 | once "^1.4.0" 1808 | 1809 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.0.0-alpha, istanbul-lib-coverage@^1.0.0-alpha.0: 1810 | version "1.0.0" 1811 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.0.tgz#c3f9b6d226da12424064cce87fce0fb57fdfa7a2" 1812 | 1813 | istanbul-lib-hook@^1.0.0-alpha.4: 1814 | version "1.0.0-alpha.4" 1815 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.0-alpha.4.tgz#8c5bb9f6fbd8526e0ae6cf639af28266906b938f" 1816 | dependencies: 1817 | append-transform "^0.3.0" 1818 | 1819 | istanbul-lib-instrument@^1.1.1, istanbul-lib-instrument@^1.3.0: 1820 | version "1.3.0" 1821 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.3.0.tgz#19f0a973397454989b98330333063a5b56df0e58" 1822 | dependencies: 1823 | babel-generator "^6.18.0" 1824 | babel-template "^6.16.0" 1825 | babel-traverse "^6.18.0" 1826 | babel-types "^6.18.0" 1827 | babylon "^6.13.0" 1828 | istanbul-lib-coverage "^1.0.0" 1829 | semver "^5.3.0" 1830 | 1831 | istanbul-lib-instrument@^1.4.2: 1832 | version "1.4.2" 1833 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.4.2.tgz#0e2fdfac93c1dabf2e31578637dc78a19089f43e" 1834 | dependencies: 1835 | babel-generator "^6.18.0" 1836 | babel-template "^6.16.0" 1837 | babel-traverse "^6.18.0" 1838 | babel-types "^6.18.0" 1839 | babylon "^6.13.0" 1840 | istanbul-lib-coverage "^1.0.0" 1841 | semver "^5.3.0" 1842 | 1843 | istanbul-lib-report@^1.0.0-alpha.3: 1844 | version "1.0.0-alpha.3" 1845 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0-alpha.3.tgz#32d5f6ec7f33ca3a602209e278b2e6ff143498af" 1846 | dependencies: 1847 | async "^1.4.2" 1848 | istanbul-lib-coverage "^1.0.0-alpha" 1849 | mkdirp "^0.5.1" 1850 | path-parse "^1.0.5" 1851 | rimraf "^2.4.3" 1852 | supports-color "^3.1.2" 1853 | 1854 | istanbul-lib-source-maps@^1.1.0: 1855 | version "1.1.0" 1856 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.1.0.tgz#9d429218f35b823560ea300a96ff0c3bbdab785f" 1857 | dependencies: 1858 | istanbul-lib-coverage "^1.0.0-alpha.0" 1859 | mkdirp "^0.5.1" 1860 | rimraf "^2.4.4" 1861 | source-map "^0.5.3" 1862 | 1863 | istanbul-reports@^1.0.0: 1864 | version "1.0.0" 1865 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.0.tgz#24b4eb2b1d29d50f103b369bd422f6e640aa0777" 1866 | dependencies: 1867 | handlebars "^4.0.3" 1868 | 1869 | jest-changed-files@^17.0.2: 1870 | version "17.0.2" 1871 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-17.0.2.tgz#f5657758736996f590a51b87e5c9369d904ba7b7" 1872 | 1873 | jest-cli@^18.1.0: 1874 | version "18.1.0" 1875 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-18.1.0.tgz#5ead36ecad420817c2c9baa2aa7574f63257b3d6" 1876 | dependencies: 1877 | ansi-escapes "^1.4.0" 1878 | callsites "^2.0.0" 1879 | chalk "^1.1.1" 1880 | graceful-fs "^4.1.6" 1881 | is-ci "^1.0.9" 1882 | istanbul-api "^1.1.0-alpha.1" 1883 | istanbul-lib-coverage "^1.0.0" 1884 | istanbul-lib-instrument "^1.1.1" 1885 | jest-changed-files "^17.0.2" 1886 | jest-config "^18.1.0" 1887 | jest-environment-jsdom "^18.1.0" 1888 | jest-file-exists "^17.0.0" 1889 | jest-haste-map "^18.1.0" 1890 | jest-jasmine2 "^18.1.0" 1891 | jest-mock "^18.0.0" 1892 | jest-resolve "^18.1.0" 1893 | jest-resolve-dependencies "^18.1.0" 1894 | jest-runtime "^18.1.0" 1895 | jest-snapshot "^18.1.0" 1896 | jest-util "^18.1.0" 1897 | json-stable-stringify "^1.0.0" 1898 | node-notifier "^4.6.1" 1899 | sane "~1.4.1" 1900 | strip-ansi "^3.0.1" 1901 | throat "^3.0.0" 1902 | which "^1.1.1" 1903 | worker-farm "^1.3.1" 1904 | yargs "^6.3.0" 1905 | 1906 | jest-config@^18.1.0: 1907 | version "18.1.0" 1908 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-18.1.0.tgz#6111740a6d48aab86ff5a9e6ab0b98bd993b6ff4" 1909 | dependencies: 1910 | chalk "^1.1.1" 1911 | jest-environment-jsdom "^18.1.0" 1912 | jest-environment-node "^18.1.0" 1913 | jest-jasmine2 "^18.1.0" 1914 | jest-mock "^18.0.0" 1915 | jest-resolve "^18.1.0" 1916 | jest-util "^18.1.0" 1917 | json-stable-stringify "^1.0.0" 1918 | 1919 | jest-diff@^18.1.0: 1920 | version "18.1.0" 1921 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-18.1.0.tgz#4ff79e74dd988c139195b365dc65d87f606f4803" 1922 | dependencies: 1923 | chalk "^1.1.3" 1924 | diff "^3.0.0" 1925 | jest-matcher-utils "^18.1.0" 1926 | pretty-format "^18.1.0" 1927 | 1928 | jest-environment-jsdom@^18.1.0: 1929 | version "18.1.0" 1930 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-18.1.0.tgz#18b42f0c4ea2bae9f36cab3639b1e8f8c384e24e" 1931 | dependencies: 1932 | jest-mock "^18.0.0" 1933 | jest-util "^18.1.0" 1934 | jsdom "^9.9.1" 1935 | 1936 | jest-environment-node@^18.1.0: 1937 | version "18.1.0" 1938 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-18.1.0.tgz#4d6797572c8dda99acf5fae696eb62945547c779" 1939 | dependencies: 1940 | jest-mock "^18.0.0" 1941 | jest-util "^18.1.0" 1942 | 1943 | jest-file-exists@^17.0.0: 1944 | version "17.0.0" 1945 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-17.0.0.tgz#7f63eb73a1c43a13f461be261768b45af2cdd169" 1946 | 1947 | jest-haste-map@^18.1.0: 1948 | version "18.1.0" 1949 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-18.1.0.tgz#06839c74b770a40c1a106968851df8d281c08375" 1950 | dependencies: 1951 | fb-watchman "^1.9.0" 1952 | graceful-fs "^4.1.6" 1953 | micromatch "^2.3.11" 1954 | sane "~1.4.1" 1955 | worker-farm "^1.3.1" 1956 | 1957 | jest-jasmine2@^18.1.0: 1958 | version "18.1.0" 1959 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-18.1.0.tgz#094e104c2c189708766c77263bb2aecb5860a80b" 1960 | dependencies: 1961 | graceful-fs "^4.1.6" 1962 | jest-matcher-utils "^18.1.0" 1963 | jest-matchers "^18.1.0" 1964 | jest-snapshot "^18.1.0" 1965 | jest-util "^18.1.0" 1966 | 1967 | jest-matcher-utils@^18.1.0: 1968 | version "18.1.0" 1969 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-18.1.0.tgz#1ac4651955ee2a60cef1e7fcc98cdfd773c0f932" 1970 | dependencies: 1971 | chalk "^1.1.3" 1972 | pretty-format "^18.1.0" 1973 | 1974 | jest-matchers@^18.1.0: 1975 | version "18.1.0" 1976 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-18.1.0.tgz#0341484bf87a1fd0bac0a4d2c899e2b77a3f1ead" 1977 | dependencies: 1978 | jest-diff "^18.1.0" 1979 | jest-matcher-utils "^18.1.0" 1980 | jest-util "^18.1.0" 1981 | pretty-format "^18.1.0" 1982 | 1983 | jest-mock@^18.0.0: 1984 | version "18.0.0" 1985 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-18.0.0.tgz#5c248846ea33fa558b526f5312ab4a6765e489b3" 1986 | 1987 | jest-resolve-dependencies@^18.1.0: 1988 | version "18.1.0" 1989 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-18.1.0.tgz#8134fb5caf59c9ed842fe0152ab01c52711f1bbb" 1990 | dependencies: 1991 | jest-file-exists "^17.0.0" 1992 | jest-resolve "^18.1.0" 1993 | 1994 | jest-resolve@^18.1.0: 1995 | version "18.1.0" 1996 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-18.1.0.tgz#6800accb536658c906cd5e29de412b1ab9ac249b" 1997 | dependencies: 1998 | browser-resolve "^1.11.2" 1999 | jest-file-exists "^17.0.0" 2000 | jest-haste-map "^18.1.0" 2001 | resolve "^1.2.0" 2002 | 2003 | jest-runtime@^18.1.0: 2004 | version "18.1.0" 2005 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-18.1.0.tgz#3abfd687175b21fc3b85a2b8064399e997859922" 2006 | dependencies: 2007 | babel-core "^6.0.0" 2008 | babel-jest "^18.0.0" 2009 | babel-plugin-istanbul "^3.0.0" 2010 | chalk "^1.1.3" 2011 | graceful-fs "^4.1.6" 2012 | jest-config "^18.1.0" 2013 | jest-file-exists "^17.0.0" 2014 | jest-haste-map "^18.1.0" 2015 | jest-mock "^18.0.0" 2016 | jest-resolve "^18.1.0" 2017 | jest-snapshot "^18.1.0" 2018 | jest-util "^18.1.0" 2019 | json-stable-stringify "^1.0.0" 2020 | micromatch "^2.3.11" 2021 | yargs "^6.3.0" 2022 | 2023 | jest-snapshot@^18.1.0: 2024 | version "18.1.0" 2025 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-18.1.0.tgz#55b96d2ee639c9bce76f87f2a3fd40b71c7a5916" 2026 | dependencies: 2027 | jest-diff "^18.1.0" 2028 | jest-file-exists "^17.0.0" 2029 | jest-matcher-utils "^18.1.0" 2030 | jest-util "^18.1.0" 2031 | natural-compare "^1.4.0" 2032 | pretty-format "^18.1.0" 2033 | 2034 | jest-util@^18.1.0: 2035 | version "18.1.0" 2036 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-18.1.0.tgz#3a99c32114ab17f84be094382527006e6d4bfc6a" 2037 | dependencies: 2038 | chalk "^1.1.1" 2039 | diff "^3.0.0" 2040 | graceful-fs "^4.1.6" 2041 | jest-file-exists "^17.0.0" 2042 | jest-mock "^18.0.0" 2043 | mkdirp "^0.5.1" 2044 | 2045 | jest@^18.1.0: 2046 | version "18.1.0" 2047 | resolved "https://registry.yarnpkg.com/jest/-/jest-18.1.0.tgz#bcebf1e203dee5c2ad2091c805300a343d9e6c7d" 2048 | dependencies: 2049 | jest-cli "^18.1.0" 2050 | 2051 | jodid25519@^1.0.0: 2052 | version "1.0.2" 2053 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2054 | dependencies: 2055 | jsbn "~0.1.0" 2056 | 2057 | js-tokens@^2.0.0: 2058 | version "2.0.0" 2059 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" 2060 | 2061 | js-yaml@^3.5.1, js-yaml@^3.7.0: 2062 | version "3.7.0" 2063 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 2064 | dependencies: 2065 | argparse "^1.0.7" 2066 | esprima "^2.6.0" 2067 | 2068 | jsbn@~0.1.0: 2069 | version "0.1.0" 2070 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 2071 | 2072 | jsdom@^9.9.1: 2073 | version "9.9.1" 2074 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.9.1.tgz#84f3972ad394ab963233af8725211bce4d01bfd5" 2075 | dependencies: 2076 | abab "^1.0.0" 2077 | acorn "^2.4.0" 2078 | acorn-globals "^1.0.4" 2079 | array-equal "^1.0.0" 2080 | content-type-parser "^1.0.1" 2081 | cssom ">= 0.3.0 < 0.4.0" 2082 | cssstyle ">= 0.2.36 < 0.3.0" 2083 | escodegen "^1.6.1" 2084 | html-encoding-sniffer "^1.0.1" 2085 | iconv-lite "^0.4.13" 2086 | nwmatcher ">= 1.3.9 < 2.0.0" 2087 | parse5 "^1.5.1" 2088 | request "^2.55.0" 2089 | sax "^1.1.4" 2090 | symbol-tree ">= 3.1.0 < 4.0.0" 2091 | tough-cookie "^2.3.1" 2092 | webidl-conversions "^3.0.1" 2093 | whatwg-encoding "^1.0.1" 2094 | whatwg-url "^4.1.0" 2095 | xml-name-validator ">= 2.0.1 < 3.0.0" 2096 | 2097 | jsesc@^1.3.0: 2098 | version "1.3.0" 2099 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2100 | 2101 | jsesc@~0.5.0: 2102 | version "0.5.0" 2103 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2104 | 2105 | json-schema@0.2.3: 2106 | version "0.2.3" 2107 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2108 | 2109 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2110 | version "1.0.1" 2111 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2112 | dependencies: 2113 | jsonify "~0.0.0" 2114 | 2115 | json-stringify-safe@~5.0.1: 2116 | version "5.0.1" 2117 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2118 | 2119 | json5@^0.5.0: 2120 | version "0.5.1" 2121 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2122 | 2123 | jsonify@~0.0.0: 2124 | version "0.0.0" 2125 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2126 | 2127 | jsonpointer@^4.0.0: 2128 | version "4.0.0" 2129 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5" 2130 | 2131 | jsprim@^1.2.2: 2132 | version "1.3.1" 2133 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 2134 | dependencies: 2135 | extsprintf "1.0.2" 2136 | json-schema "0.2.3" 2137 | verror "1.3.6" 2138 | 2139 | kind-of@^3.0.2: 2140 | version "3.0.4" 2141 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.0.4.tgz#7b8ecf18a4e17f8269d73b501c9f232c96887a74" 2142 | dependencies: 2143 | is-buffer "^1.0.2" 2144 | 2145 | lazy-cache@^1.0.3: 2146 | version "1.0.4" 2147 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2148 | 2149 | lcid@^1.0.0: 2150 | version "1.0.0" 2151 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2152 | dependencies: 2153 | invert-kv "^1.0.0" 2154 | 2155 | levn@^0.3.0, levn@~0.3.0: 2156 | version "0.3.0" 2157 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2158 | dependencies: 2159 | prelude-ls "~1.1.2" 2160 | type-check "~0.3.2" 2161 | 2162 | load-json-file@^1.0.0: 2163 | version "1.1.0" 2164 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2165 | dependencies: 2166 | graceful-fs "^4.1.2" 2167 | parse-json "^2.2.0" 2168 | pify "^2.0.0" 2169 | pinkie-promise "^2.0.0" 2170 | strip-bom "^2.0.0" 2171 | 2172 | lodash._arraycopy@^3.0.0: 2173 | version "3.0.0" 2174 | resolved "https://registry.yarnpkg.com/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz#76e7b7c1f1fb92547374878a562ed06a3e50f6e1" 2175 | 2176 | lodash._arrayeach@^3.0.0: 2177 | version "3.0.0" 2178 | resolved "https://registry.yarnpkg.com/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz#bab156b2a90d3f1bbd5c653403349e5e5933ef9e" 2179 | 2180 | lodash._baseassign@^3.0.0: 2181 | version "3.2.0" 2182 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 2183 | dependencies: 2184 | lodash._basecopy "^3.0.0" 2185 | lodash.keys "^3.0.0" 2186 | 2187 | lodash._baseclone@^3.0.0: 2188 | version "3.3.0" 2189 | resolved "https://registry.yarnpkg.com/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz#303519bf6393fe7e42f34d8b630ef7794e3542b7" 2190 | dependencies: 2191 | lodash._arraycopy "^3.0.0" 2192 | lodash._arrayeach "^3.0.0" 2193 | lodash._baseassign "^3.0.0" 2194 | lodash._basefor "^3.0.0" 2195 | lodash.isarray "^3.0.0" 2196 | lodash.keys "^3.0.0" 2197 | 2198 | lodash._basecopy@^3.0.0: 2199 | version "3.0.1" 2200 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 2201 | 2202 | lodash._basefor@^3.0.0: 2203 | version "3.0.3" 2204 | resolved "https://registry.yarnpkg.com/lodash._basefor/-/lodash._basefor-3.0.3.tgz#7550b4e9218ef09fad24343b612021c79b4c20c2" 2205 | 2206 | lodash._bindcallback@^3.0.0: 2207 | version "3.0.1" 2208 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 2209 | 2210 | lodash._getnative@^3.0.0: 2211 | version "3.9.1" 2212 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2213 | 2214 | lodash.assign@^4.2.0: 2215 | version "4.2.0" 2216 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 2217 | 2218 | lodash.clonedeep@^3.0.0: 2219 | version "3.0.2" 2220 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-3.0.2.tgz#a0a1e40d82a5ea89ff5b147b8444ed63d92827db" 2221 | dependencies: 2222 | lodash._baseclone "^3.0.0" 2223 | lodash._bindcallback "^3.0.0" 2224 | 2225 | lodash.cond@^4.3.0: 2226 | version "4.5.2" 2227 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2228 | 2229 | lodash.isarguments@^3.0.0: 2230 | version "3.1.0" 2231 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2232 | 2233 | lodash.isarray@^3.0.0: 2234 | version "3.0.4" 2235 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2236 | 2237 | lodash.keys@^3.0.0: 2238 | version "3.1.2" 2239 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2240 | dependencies: 2241 | lodash._getnative "^3.0.0" 2242 | lodash.isarguments "^3.0.0" 2243 | lodash.isarray "^3.0.0" 2244 | 2245 | lodash.pickby@^4.6.0: 2246 | version "4.6.0" 2247 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff" 2248 | 2249 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.2.0, lodash@^4.3.0: 2250 | version "4.17.2" 2251 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.2.tgz#34a3055babe04ce42467b607d700072c7ff6bf42" 2252 | 2253 | longest@^1.0.1: 2254 | version "1.0.1" 2255 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2256 | 2257 | loose-envify@^1.0.0: 2258 | version "1.3.0" 2259 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8" 2260 | dependencies: 2261 | js-tokens "^2.0.0" 2262 | 2263 | makeerror@1.0.x: 2264 | version "1.0.11" 2265 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2266 | dependencies: 2267 | tmpl "1.0.x" 2268 | 2269 | marked-terminal@^1.6.2: 2270 | version "1.7.0" 2271 | resolved "https://registry.yarnpkg.com/marked-terminal/-/marked-terminal-1.7.0.tgz#c8c460881c772c7604b64367007ee5f77f125904" 2272 | dependencies: 2273 | cardinal "^1.0.0" 2274 | chalk "^1.1.3" 2275 | cli-table "^0.3.1" 2276 | lodash.assign "^4.2.0" 2277 | node-emoji "^1.4.1" 2278 | 2279 | marked@^0.3.6: 2280 | version "0.3.6" 2281 | resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.6.tgz#b2c6c618fccece4ef86c4fc6cb8a7cbf5aeda8d7" 2282 | 2283 | merge@^1.1.3: 2284 | version "1.2.0" 2285 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2286 | 2287 | micromatch@^2.1.5, micromatch@^2.3.11: 2288 | version "2.3.11" 2289 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2290 | dependencies: 2291 | arr-diff "^2.0.0" 2292 | array-unique "^0.2.1" 2293 | braces "^1.8.2" 2294 | expand-brackets "^0.1.4" 2295 | extglob "^0.3.1" 2296 | filename-regex "^2.0.0" 2297 | is-extglob "^1.0.0" 2298 | is-glob "^2.0.1" 2299 | kind-of "^3.0.2" 2300 | normalize-path "^2.0.1" 2301 | object.omit "^2.0.0" 2302 | parse-glob "^3.0.4" 2303 | regex-cache "^0.4.2" 2304 | 2305 | mime-db@~1.25.0: 2306 | version "1.25.0" 2307 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.25.0.tgz#c18dbd7c73a5dbf6f44a024dc0d165a1e7b1c392" 2308 | 2309 | mime-types@^2.1.12, mime-types@~2.1.7: 2310 | version "2.1.13" 2311 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.13.tgz#e07aaa9c6c6b9a7ca3012c69003ad25a39e92a88" 2312 | dependencies: 2313 | mime-db "~1.25.0" 2314 | 2315 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3: 2316 | version "3.0.3" 2317 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2318 | dependencies: 2319 | brace-expansion "^1.0.0" 2320 | 2321 | minimist@0.0.8, minimist@~0.0.1: 2322 | version "0.0.8" 2323 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2324 | 2325 | minimist@^1.1.1, minimist@^1.2.0: 2326 | version "1.2.0" 2327 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2328 | 2329 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: 2330 | version "0.5.1" 2331 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2332 | dependencies: 2333 | minimist "0.0.8" 2334 | 2335 | ms@0.7.1: 2336 | version "0.7.1" 2337 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2338 | 2339 | ms@0.7.2: 2340 | version "0.7.2" 2341 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2342 | 2343 | mute-stream@0.0.5: 2344 | version "0.0.5" 2345 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2346 | 2347 | nan@^2.3.0: 2348 | version "2.4.0" 2349 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232" 2350 | 2351 | natural-compare@^1.4.0: 2352 | version "1.4.0" 2353 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2354 | 2355 | node-emoji@^1.4.1: 2356 | version "1.4.3" 2357 | resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.4.3.tgz#5272f70b823c4df6d7c39f84fd8203f35b3e5d36" 2358 | dependencies: 2359 | string.prototype.codepointat "^0.2.0" 2360 | 2361 | node-int64@^0.4.0: 2362 | version "0.4.0" 2363 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2364 | 2365 | node-notifier@^4.6.1: 2366 | version "4.6.1" 2367 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-4.6.1.tgz#056d14244f3dcc1ceadfe68af9cff0c5473a33f3" 2368 | dependencies: 2369 | cli-usage "^0.1.1" 2370 | growly "^1.2.0" 2371 | lodash.clonedeep "^3.0.0" 2372 | minimist "^1.1.1" 2373 | semver "^5.1.0" 2374 | shellwords "^0.1.0" 2375 | which "^1.0.5" 2376 | 2377 | node-pre-gyp@^0.6.29: 2378 | version "0.6.32" 2379 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.32.tgz#fc452b376e7319b3d255f5f34853ef6fd8fe1fd5" 2380 | dependencies: 2381 | mkdirp "~0.5.1" 2382 | nopt "~3.0.6" 2383 | npmlog "^4.0.1" 2384 | rc "~1.1.6" 2385 | request "^2.79.0" 2386 | rimraf "~2.5.4" 2387 | semver "~5.3.0" 2388 | tar "~2.2.1" 2389 | tar-pack "~3.3.0" 2390 | 2391 | nopt@~3.0.6: 2392 | version "3.0.6" 2393 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2394 | dependencies: 2395 | abbrev "1" 2396 | 2397 | normalize-package-data@^2.3.2: 2398 | version "2.3.5" 2399 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 2400 | dependencies: 2401 | hosted-git-info "^2.1.4" 2402 | is-builtin-module "^1.0.0" 2403 | semver "2 || 3 || 4 || 5" 2404 | validate-npm-package-license "^3.0.1" 2405 | 2406 | normalize-path@^2.0.1: 2407 | version "2.0.1" 2408 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2409 | 2410 | npmlog@^4.0.1: 2411 | version "4.0.1" 2412 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.1.tgz#d14f503b4cd79710375553004ba96e6662fbc0b8" 2413 | dependencies: 2414 | are-we-there-yet "~1.1.2" 2415 | console-control-strings "~1.1.0" 2416 | gauge "~2.7.1" 2417 | set-blocking "~2.0.0" 2418 | 2419 | number-is-nan@^1.0.0: 2420 | version "1.0.1" 2421 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2422 | 2423 | "nwmatcher@>= 1.3.9 < 2.0.0": 2424 | version "1.3.9" 2425 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 2426 | 2427 | oauth-sign@~0.8.1: 2428 | version "0.8.2" 2429 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2430 | 2431 | object-assign@^4.0.1, object-assign@^4.1.0: 2432 | version "4.1.0" 2433 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 2434 | 2435 | object.omit@^2.0.0: 2436 | version "2.0.1" 2437 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2438 | dependencies: 2439 | for-own "^0.1.4" 2440 | is-extendable "^0.1.1" 2441 | 2442 | once@^1.3.0, once@^1.4.0: 2443 | version "1.4.0" 2444 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2445 | dependencies: 2446 | wrappy "1" 2447 | 2448 | once@~1.3.3: 2449 | version "1.3.3" 2450 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2451 | dependencies: 2452 | wrappy "1" 2453 | 2454 | onetime@^1.0.0: 2455 | version "1.1.0" 2456 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2457 | 2458 | optimist@^0.6.1: 2459 | version "0.6.1" 2460 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2461 | dependencies: 2462 | minimist "~0.0.1" 2463 | wordwrap "~0.0.2" 2464 | 2465 | optionator@^0.8.1, optionator@^0.8.2: 2466 | version "0.8.2" 2467 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2468 | dependencies: 2469 | deep-is "~0.1.3" 2470 | fast-levenshtein "~2.0.4" 2471 | levn "~0.3.0" 2472 | prelude-ls "~1.1.2" 2473 | type-check "~0.3.2" 2474 | wordwrap "~1.0.0" 2475 | 2476 | os-homedir@^1.0.0: 2477 | version "1.0.2" 2478 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2479 | 2480 | os-locale@^1.4.0: 2481 | version "1.4.0" 2482 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2483 | dependencies: 2484 | lcid "^1.0.0" 2485 | 2486 | os-tmpdir@^1.0.1: 2487 | version "1.0.2" 2488 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2489 | 2490 | output-file-sync@^1.1.0: 2491 | version "1.1.2" 2492 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2493 | dependencies: 2494 | graceful-fs "^4.1.4" 2495 | mkdirp "^0.5.1" 2496 | object-assign "^4.1.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 | parse-json@^2.2.0: 2508 | version "2.2.0" 2509 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2510 | dependencies: 2511 | error-ex "^1.2.0" 2512 | 2513 | parse5@^1.5.1: 2514 | version "1.5.1" 2515 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2516 | 2517 | path-exists@^2.0.0: 2518 | version "2.1.0" 2519 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2520 | dependencies: 2521 | pinkie-promise "^2.0.0" 2522 | 2523 | path-is-absolute@^1.0.0: 2524 | version "1.0.1" 2525 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2526 | 2527 | path-is-inside@^1.0.1: 2528 | version "1.0.2" 2529 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2530 | 2531 | path-parse@^1.0.5: 2532 | version "1.0.5" 2533 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2534 | 2535 | path-type@^1.0.0: 2536 | version "1.1.0" 2537 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2538 | dependencies: 2539 | graceful-fs "^4.1.2" 2540 | pify "^2.0.0" 2541 | pinkie-promise "^2.0.0" 2542 | 2543 | pify@^2.0.0: 2544 | version "2.3.0" 2545 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2546 | 2547 | pinkie-promise@^2.0.0: 2548 | version "2.0.1" 2549 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2550 | dependencies: 2551 | pinkie "^2.0.0" 2552 | 2553 | pinkie@^2.0.0: 2554 | version "2.0.4" 2555 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2556 | 2557 | pkg-dir@^1.0.0: 2558 | version "1.0.0" 2559 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2560 | dependencies: 2561 | find-up "^1.0.0" 2562 | 2563 | pkg-up@^1.0.0: 2564 | version "1.0.0" 2565 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 2566 | dependencies: 2567 | find-up "^1.0.0" 2568 | 2569 | pluralize@^1.2.1: 2570 | version "1.2.1" 2571 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2572 | 2573 | prelude-ls@~1.1.2: 2574 | version "1.1.2" 2575 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2576 | 2577 | preserve@^0.2.0: 2578 | version "0.2.0" 2579 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2580 | 2581 | pretty-format@^18.1.0: 2582 | version "18.1.0" 2583 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-18.1.0.tgz#fb65a86f7a7f9194963eee91865c1bcf1039e284" 2584 | dependencies: 2585 | ansi-styles "^2.2.1" 2586 | 2587 | private@^0.1.6, private@~0.1.5: 2588 | version "0.1.6" 2589 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 2590 | 2591 | process-nextick-args@~1.0.6: 2592 | version "1.0.7" 2593 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2594 | 2595 | progress@^1.1.8: 2596 | version "1.1.8" 2597 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2598 | 2599 | prr@~0.0.0: 2600 | version "0.0.0" 2601 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2602 | 2603 | punycode@^1.4.1: 2604 | version "1.4.1" 2605 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2606 | 2607 | qs@~6.3.0: 2608 | version "6.3.0" 2609 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 2610 | 2611 | randomatic@^1.1.3: 2612 | version "1.1.6" 2613 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2614 | dependencies: 2615 | is-number "^2.0.2" 2616 | kind-of "^3.0.2" 2617 | 2618 | rc@~1.1.6: 2619 | version "1.1.6" 2620 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 2621 | dependencies: 2622 | deep-extend "~0.4.0" 2623 | ini "~1.3.0" 2624 | minimist "^1.2.0" 2625 | strip-json-comments "~1.0.4" 2626 | 2627 | read-pkg-up@^1.0.1: 2628 | version "1.0.1" 2629 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2630 | dependencies: 2631 | find-up "^1.0.0" 2632 | read-pkg "^1.0.0" 2633 | 2634 | read-pkg@^1.0.0: 2635 | version "1.1.0" 2636 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2637 | dependencies: 2638 | load-json-file "^1.0.0" 2639 | normalize-package-data "^2.3.2" 2640 | path-type "^1.0.0" 2641 | 2642 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@~2.1.4: 2643 | version "2.1.5" 2644 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 2645 | dependencies: 2646 | buffer-shims "^1.0.0" 2647 | core-util-is "~1.0.0" 2648 | inherits "~2.0.1" 2649 | isarray "~1.0.0" 2650 | process-nextick-args "~1.0.6" 2651 | string_decoder "~0.10.x" 2652 | util-deprecate "~1.0.1" 2653 | 2654 | readable-stream@^2.0.2, readable-stream@~2.0.0: 2655 | version "2.0.6" 2656 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 2657 | dependencies: 2658 | core-util-is "~1.0.0" 2659 | inherits "~2.0.1" 2660 | isarray "~1.0.0" 2661 | process-nextick-args "~1.0.6" 2662 | string_decoder "~0.10.x" 2663 | util-deprecate "~1.0.1" 2664 | 2665 | readdirp@^2.0.0: 2666 | version "2.1.0" 2667 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2668 | dependencies: 2669 | graceful-fs "^4.1.2" 2670 | minimatch "^3.0.2" 2671 | readable-stream "^2.0.2" 2672 | set-immediate-shim "^1.0.1" 2673 | 2674 | readline2@^1.0.1: 2675 | version "1.0.1" 2676 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2677 | dependencies: 2678 | code-point-at "^1.0.0" 2679 | is-fullwidth-code-point "^1.0.0" 2680 | mute-stream "0.0.5" 2681 | 2682 | rechoir@^0.6.2: 2683 | version "0.6.2" 2684 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2685 | dependencies: 2686 | resolve "^1.1.6" 2687 | 2688 | redeyed@~1.0.0: 2689 | version "1.0.1" 2690 | resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-1.0.1.tgz#e96c193b40c0816b00aec842698e61185e55498a" 2691 | dependencies: 2692 | esprima "~3.0.0" 2693 | 2694 | regenerate@^1.2.1: 2695 | version "1.3.2" 2696 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2697 | 2698 | regenerator-runtime@^0.10.0: 2699 | version "0.10.1" 2700 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb" 2701 | 2702 | regenerator-runtime@^0.9.5: 2703 | version "0.9.6" 2704 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz#d33eb95d0d2001a4be39659707c51b0cb71ce029" 2705 | 2706 | regex-cache@^0.4.2: 2707 | version "0.4.3" 2708 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2709 | dependencies: 2710 | is-equal-shallow "^0.1.3" 2711 | is-primitive "^2.0.0" 2712 | 2713 | regexpu-core@^2.0.0: 2714 | version "2.0.0" 2715 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2716 | dependencies: 2717 | regenerate "^1.2.1" 2718 | regjsgen "^0.2.0" 2719 | regjsparser "^0.1.4" 2720 | 2721 | regjsgen@^0.2.0: 2722 | version "0.2.0" 2723 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2724 | 2725 | regjsparser@^0.1.4: 2726 | version "0.1.5" 2727 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2728 | dependencies: 2729 | jsesc "~0.5.0" 2730 | 2731 | repeat-element@^1.1.2: 2732 | version "1.1.2" 2733 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2734 | 2735 | repeat-string@^1.5.2: 2736 | version "1.6.1" 2737 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2738 | 2739 | repeating@^2.0.0: 2740 | version "2.0.1" 2741 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2742 | dependencies: 2743 | is-finite "^1.0.0" 2744 | 2745 | request@>=2.42.0, request@^2.55.0, request@^2.79.0: 2746 | version "2.79.0" 2747 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 2748 | dependencies: 2749 | aws-sign2 "~0.6.0" 2750 | aws4 "^1.2.1" 2751 | caseless "~0.11.0" 2752 | combined-stream "~1.0.5" 2753 | extend "~3.0.0" 2754 | forever-agent "~0.6.1" 2755 | form-data "~2.1.1" 2756 | har-validator "~2.0.6" 2757 | hawk "~3.1.3" 2758 | http-signature "~1.1.0" 2759 | is-typedarray "~1.0.0" 2760 | isstream "~0.1.2" 2761 | json-stringify-safe "~5.0.1" 2762 | mime-types "~2.1.7" 2763 | oauth-sign "~0.8.1" 2764 | qs "~6.3.0" 2765 | stringstream "~0.0.4" 2766 | tough-cookie "~2.3.0" 2767 | tunnel-agent "~0.4.1" 2768 | uuid "^3.0.0" 2769 | 2770 | require-directory@^2.1.1: 2771 | version "2.1.1" 2772 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2773 | 2774 | require-main-filename@^1.0.1: 2775 | version "1.0.1" 2776 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2777 | 2778 | require-uncached@^1.0.2: 2779 | version "1.0.3" 2780 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2781 | dependencies: 2782 | caller-path "^0.1.0" 2783 | resolve-from "^1.0.0" 2784 | 2785 | resolve-from@^1.0.0: 2786 | version "1.0.1" 2787 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2788 | 2789 | resolve@1.1.7, resolve@^1.1.6: 2790 | version "1.1.7" 2791 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2792 | 2793 | resolve@^1.2.0: 2794 | version "1.2.0" 2795 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2.0.tgz#9589c3f2f6149d1417a40becc1663db6ec6bc26c" 2796 | 2797 | restore-cursor@^1.0.1: 2798 | version "1.0.1" 2799 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2800 | dependencies: 2801 | exit-hook "^1.0.0" 2802 | onetime "^1.0.0" 2803 | 2804 | right-align@^0.1.1: 2805 | version "0.1.3" 2806 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2807 | dependencies: 2808 | align-text "^0.1.1" 2809 | 2810 | rimraf@2, rimraf@^2.2.8, rimraf@^2.4.3, rimraf@^2.4.4, rimraf@^2.5.4, rimraf@~2.5.1, rimraf@~2.5.4: 2811 | version "2.5.4" 2812 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 2813 | dependencies: 2814 | glob "^7.0.5" 2815 | 2816 | rimraf@~2.1.4: 2817 | version "2.1.4" 2818 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.1.4.tgz#5a6eb62eeda068f51ede50f29b3e5cd22f3d9bb2" 2819 | optionalDependencies: 2820 | graceful-fs "~1" 2821 | 2822 | run-async@^0.1.0: 2823 | version "0.1.0" 2824 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 2825 | dependencies: 2826 | once "^1.3.0" 2827 | 2828 | rx-lite@^3.1.2: 2829 | version "3.1.2" 2830 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 2831 | 2832 | sane@~1.4.1: 2833 | version "1.4.1" 2834 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.4.1.tgz#88f763d74040f5f0c256b6163db399bf110ac715" 2835 | dependencies: 2836 | exec-sh "^0.2.0" 2837 | fb-watchman "^1.8.0" 2838 | minimatch "^3.0.2" 2839 | minimist "^1.1.1" 2840 | walker "~1.0.5" 2841 | watch "~0.10.0" 2842 | 2843 | sax@^1.1.4: 2844 | version "1.2.1" 2845 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a" 2846 | 2847 | "semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.3.0, semver@~5.3.0: 2848 | version "5.3.0" 2849 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2850 | 2851 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2852 | version "2.0.0" 2853 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2854 | 2855 | set-immediate-shim@^1.0.1: 2856 | version "1.0.1" 2857 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2858 | 2859 | shelljs@^0.7.5: 2860 | version "0.7.5" 2861 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.5.tgz#2eef7a50a21e1ccf37da00df767ec69e30ad0675" 2862 | dependencies: 2863 | glob "^7.0.0" 2864 | interpret "^1.0.0" 2865 | rechoir "^0.6.2" 2866 | 2867 | shellwords@^0.1.0: 2868 | version "0.1.0" 2869 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 2870 | 2871 | signal-exit@^3.0.0: 2872 | version "3.0.2" 2873 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2874 | 2875 | slash@^1.0.0: 2876 | version "1.0.0" 2877 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2878 | 2879 | slice-ansi@0.0.4: 2880 | version "0.0.4" 2881 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2882 | 2883 | sntp@1.x.x: 2884 | version "1.0.9" 2885 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2886 | dependencies: 2887 | hoek "2.x.x" 2888 | 2889 | source-map-support@^0.4.2: 2890 | version "0.4.6" 2891 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.6.tgz#32552aa64b458392a85eab3b0b5ee61527167aeb" 2892 | dependencies: 2893 | source-map "^0.5.3" 2894 | 2895 | source-map@^0.4.4: 2896 | version "0.4.4" 2897 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2898 | dependencies: 2899 | amdefine ">=0.0.4" 2900 | 2901 | source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.1: 2902 | version "0.5.6" 2903 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2904 | 2905 | source-map@~0.2.0: 2906 | version "0.2.0" 2907 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 2908 | dependencies: 2909 | amdefine ">=0.0.4" 2910 | 2911 | spdx-correct@~1.0.0: 2912 | version "1.0.2" 2913 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2914 | dependencies: 2915 | spdx-license-ids "^1.0.2" 2916 | 2917 | spdx-expression-parse@~1.0.0: 2918 | version "1.0.4" 2919 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2920 | 2921 | spdx-license-ids@^1.0.2: 2922 | version "1.2.2" 2923 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2924 | 2925 | sprintf-js@~1.0.2: 2926 | version "1.0.3" 2927 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2928 | 2929 | sshpk@^1.7.0: 2930 | version "1.10.1" 2931 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0" 2932 | dependencies: 2933 | asn1 "~0.2.3" 2934 | assert-plus "^1.0.0" 2935 | dashdash "^1.12.0" 2936 | getpass "^0.1.1" 2937 | optionalDependencies: 2938 | bcrypt-pbkdf "^1.0.0" 2939 | ecc-jsbn "~0.1.1" 2940 | jodid25519 "^1.0.0" 2941 | jsbn "~0.1.0" 2942 | tweetnacl "~0.14.0" 2943 | 2944 | string-width@^1.0.1, string-width@^1.0.2: 2945 | version "1.0.2" 2946 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2947 | dependencies: 2948 | code-point-at "^1.0.0" 2949 | is-fullwidth-code-point "^1.0.0" 2950 | strip-ansi "^3.0.0" 2951 | 2952 | string-width@^2.0.0: 2953 | version "2.0.0" 2954 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 2955 | dependencies: 2956 | is-fullwidth-code-point "^2.0.0" 2957 | strip-ansi "^3.0.0" 2958 | 2959 | string.prototype.codepointat@^0.2.0: 2960 | version "0.2.0" 2961 | resolved "https://registry.yarnpkg.com/string.prototype.codepointat/-/string.prototype.codepointat-0.2.0.tgz#6b26e9bd3afcaa7be3b4269b526de1b82000ac78" 2962 | 2963 | string_decoder@~0.10.x: 2964 | version "0.10.31" 2965 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2966 | 2967 | stringstream@~0.0.4: 2968 | version "0.0.5" 2969 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2970 | 2971 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2972 | version "3.0.1" 2973 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2974 | dependencies: 2975 | ansi-regex "^2.0.0" 2976 | 2977 | strip-bom@^2.0.0: 2978 | version "2.0.0" 2979 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2980 | dependencies: 2981 | is-utf8 "^0.2.0" 2982 | 2983 | strip-bom@^3.0.0: 2984 | version "3.0.0" 2985 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2986 | 2987 | strip-json-comments@~1.0.4: 2988 | version "1.0.4" 2989 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 2990 | 2991 | strip-json-comments@~2.0.1: 2992 | version "2.0.1" 2993 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2994 | 2995 | supports-color@^0.2.0: 2996 | version "0.2.0" 2997 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a" 2998 | 2999 | supports-color@^2.0.0: 3000 | version "2.0.0" 3001 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3002 | 3003 | supports-color@^3.1.2: 3004 | version "3.1.2" 3005 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 3006 | dependencies: 3007 | has-flag "^1.0.0" 3008 | 3009 | "symbol-tree@>= 3.1.0 < 4.0.0": 3010 | version "3.1.4" 3011 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.1.4.tgz#02b279348d337debc39694c5c95f882d448a312a" 3012 | 3013 | table@^3.7.8: 3014 | version "3.8.3" 3015 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3016 | dependencies: 3017 | ajv "^4.7.0" 3018 | ajv-keywords "^1.0.0" 3019 | chalk "^1.1.1" 3020 | lodash "^4.0.0" 3021 | slice-ansi "0.0.4" 3022 | string-width "^2.0.0" 3023 | 3024 | tar-pack@~3.3.0: 3025 | version "3.3.0" 3026 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 3027 | dependencies: 3028 | debug "~2.2.0" 3029 | fstream "~1.0.10" 3030 | fstream-ignore "~1.0.5" 3031 | once "~1.3.3" 3032 | readable-stream "~2.1.4" 3033 | rimraf "~2.5.1" 3034 | tar "~2.2.1" 3035 | uid-number "~0.0.6" 3036 | 3037 | tar@~2.2.1: 3038 | version "2.2.1" 3039 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3040 | dependencies: 3041 | block-stream "*" 3042 | fstream "^1.0.2" 3043 | inherits "2" 3044 | 3045 | temp@~0.5.1: 3046 | version "0.5.1" 3047 | resolved "https://registry.yarnpkg.com/temp/-/temp-0.5.1.tgz#77ab19c79aa7b593cbe4fac2441768cad987b8df" 3048 | dependencies: 3049 | rimraf "~2.1.4" 3050 | 3051 | test-exclude@^3.3.0: 3052 | version "3.3.0" 3053 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-3.3.0.tgz#7a17ca1239988c98367b0621456dbb7d4bc38977" 3054 | dependencies: 3055 | arrify "^1.0.1" 3056 | micromatch "^2.3.11" 3057 | object-assign "^4.1.0" 3058 | read-pkg-up "^1.0.1" 3059 | require-main-filename "^1.0.1" 3060 | 3061 | text-table@~0.2.0: 3062 | version "0.2.0" 3063 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3064 | 3065 | throat@^3.0.0: 3066 | version "3.0.0" 3067 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 3068 | 3069 | through@^2.3.6: 3070 | version "2.3.8" 3071 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3072 | 3073 | tmpl@1.0.x: 3074 | version "1.0.4" 3075 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3076 | 3077 | to-fast-properties@^1.0.1: 3078 | version "1.0.2" 3079 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3080 | 3081 | tough-cookie@^2.3.1, tough-cookie@~2.3.0: 3082 | version "2.3.2" 3083 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3084 | dependencies: 3085 | punycode "^1.4.1" 3086 | 3087 | tr46@~0.0.3: 3088 | version "0.0.3" 3089 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3090 | 3091 | tryit@^1.0.1: 3092 | version "1.0.3" 3093 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3094 | 3095 | tunnel-agent@~0.4.1: 3096 | version "0.4.3" 3097 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3098 | 3099 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3100 | version "0.14.4" 3101 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.4.tgz#8c9dbfb52795686f166cd2023794bcf103d13c2b" 3102 | 3103 | type-check@~0.3.2: 3104 | version "0.3.2" 3105 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3106 | dependencies: 3107 | prelude-ls "~1.1.2" 3108 | 3109 | typedarray@~0.0.5: 3110 | version "0.0.6" 3111 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3112 | 3113 | uglify-js@^2.6: 3114 | version "2.7.5" 3115 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8" 3116 | dependencies: 3117 | async "~0.2.6" 3118 | source-map "~0.5.1" 3119 | uglify-to-browserify "~1.0.0" 3120 | yargs "~3.10.0" 3121 | 3122 | uglify-to-browserify@~1.0.0: 3123 | version "1.0.2" 3124 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3125 | 3126 | uid-number@~0.0.6: 3127 | version "0.0.6" 3128 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3129 | 3130 | urlgrey@>=0.4.0: 3131 | version "0.4.4" 3132 | resolved "https://registry.yarnpkg.com/urlgrey/-/urlgrey-0.4.4.tgz#892fe95960805e85519f1cd4389f2cb4cbb7652f" 3133 | 3134 | user-home@^1.1.1: 3135 | version "1.1.1" 3136 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3137 | 3138 | user-home@^2.0.0: 3139 | version "2.0.0" 3140 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3141 | dependencies: 3142 | os-homedir "^1.0.0" 3143 | 3144 | util-deprecate@~1.0.1: 3145 | version "1.0.2" 3146 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3147 | 3148 | uuid@^3.0.0: 3149 | version "3.0.1" 3150 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3151 | 3152 | v8flags@^2.0.10: 3153 | version "2.0.11" 3154 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 3155 | dependencies: 3156 | user-home "^1.1.1" 3157 | 3158 | validate-npm-package-license@^3.0.1: 3159 | version "3.0.1" 3160 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3161 | dependencies: 3162 | spdx-correct "~1.0.0" 3163 | spdx-expression-parse "~1.0.0" 3164 | 3165 | verror@1.3.6: 3166 | version "1.3.6" 3167 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3168 | dependencies: 3169 | extsprintf "1.0.2" 3170 | 3171 | walker@~1.0.5: 3172 | version "1.0.7" 3173 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3174 | dependencies: 3175 | makeerror "1.0.x" 3176 | 3177 | watch@~0.10.0: 3178 | version "0.10.0" 3179 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 3180 | 3181 | webidl-conversions@^3.0.0, webidl-conversions@^3.0.1: 3182 | version "3.0.1" 3183 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3184 | 3185 | whatwg-encoding@^1.0.1: 3186 | version "1.0.1" 3187 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3188 | dependencies: 3189 | iconv-lite "0.4.13" 3190 | 3191 | whatwg-url@^4.1.0: 3192 | version "4.3.0" 3193 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.3.0.tgz#92aaee21f4f2a642074357d70ef8500a7cbb171a" 3194 | dependencies: 3195 | tr46 "~0.0.3" 3196 | webidl-conversions "^3.0.0" 3197 | 3198 | which-module@^1.0.0: 3199 | version "1.0.0" 3200 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3201 | 3202 | which@^1.0.5, which@^1.1.1: 3203 | version "1.2.12" 3204 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" 3205 | dependencies: 3206 | isexe "^1.1.1" 3207 | 3208 | wide-align@^1.1.0: 3209 | version "1.1.0" 3210 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3211 | dependencies: 3212 | string-width "^1.0.1" 3213 | 3214 | window-size@0.1.0: 3215 | version "0.1.0" 3216 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3217 | 3218 | window-size@^0.2.0: 3219 | version "0.2.0" 3220 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 3221 | 3222 | wordwrap@0.0.2: 3223 | version "0.0.2" 3224 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3225 | 3226 | wordwrap@~0.0.2: 3227 | version "0.0.3" 3228 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3229 | 3230 | wordwrap@~1.0.0: 3231 | version "1.0.0" 3232 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3233 | 3234 | worker-farm@^1.3.1: 3235 | version "1.3.1" 3236 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 3237 | dependencies: 3238 | errno ">=0.1.1 <0.2.0-0" 3239 | xtend ">=4.0.0 <4.1.0-0" 3240 | 3241 | wrap-ansi@^2.0.0: 3242 | version "2.1.0" 3243 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3244 | dependencies: 3245 | string-width "^1.0.1" 3246 | strip-ansi "^3.0.1" 3247 | 3248 | wrappy@1: 3249 | version "1.0.2" 3250 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3251 | 3252 | write@^0.2.1: 3253 | version "0.2.1" 3254 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3255 | dependencies: 3256 | mkdirp "^0.5.1" 3257 | 3258 | "xml-name-validator@>= 2.0.1 < 3.0.0": 3259 | version "2.0.1" 3260 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3261 | 3262 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0: 3263 | version "4.0.1" 3264 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3265 | 3266 | y18n@^3.2.1: 3267 | version "3.2.1" 3268 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3269 | 3270 | yargs-parser@^4.2.0: 3271 | version "4.2.0" 3272 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.0.tgz#6ced869cd05a3dca6a1eaee38b68aeed4b0b4101" 3273 | dependencies: 3274 | camelcase "^3.0.0" 3275 | 3276 | yargs@^6.3.0: 3277 | version "6.5.0" 3278 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.5.0.tgz#a902e23a1f0fe912b2a03f6131b7ed740c9718ff" 3279 | dependencies: 3280 | camelcase "^3.0.0" 3281 | cliui "^3.2.0" 3282 | decamelize "^1.1.1" 3283 | get-caller-file "^1.0.1" 3284 | os-locale "^1.4.0" 3285 | read-pkg-up "^1.0.1" 3286 | require-directory "^2.1.1" 3287 | require-main-filename "^1.0.1" 3288 | set-blocking "^2.0.0" 3289 | string-width "^1.0.2" 3290 | which-module "^1.0.0" 3291 | window-size "^0.2.0" 3292 | y18n "^3.2.1" 3293 | yargs-parser "^4.2.0" 3294 | 3295 | yargs@~3.10.0: 3296 | version "3.10.0" 3297 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3298 | dependencies: 3299 | camelcase "^1.0.2" 3300 | cliui "^2.1.0" 3301 | decamelize "^1.0.0" 3302 | window-size "0.1.0" 3303 | --------------------------------------------------------------------------------