├── examples ├── src │ ├── components │ │ ├── App │ │ │ ├── App.css │ │ │ ├── index.js │ │ │ └── App.js │ │ ├── Basic │ │ │ ├── index.js │ │ │ └── Basic.js │ │ ├── Combined │ │ │ ├── index.js │ │ │ └── Combined.js │ │ └── Pagination │ │ │ ├── index.js │ │ │ └── Pagination.js │ ├── index.css │ ├── store │ │ ├── reducers.js │ │ └── createStore.js │ └── index.js ├── README.md ├── public │ ├── manifest.json │ └── index.html └── package.json ├── API.md ├── src ├── index.js ├── utils.js ├── reducer.js ├── actions.js └── quest.js ├── .travis.yml ├── .gitignore ├── .babelrc ├── specs ├── utils.spec.js ├── mapping.spec.js ├── specUtils.js ├── setup.spec.js ├── redux.spec.js └── resolving.spec.js ├── webpack.config.build.js ├── package.json ├── README.md └── yarn.lock /examples/src/components/App/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- 1 | # API Reference 2 | 3 | Todo 4 | -------------------------------------------------------------------------------- /examples/src/components/App/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './App'; 2 | -------------------------------------------------------------------------------- /examples/src/components/Basic/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Basic'; 2 | -------------------------------------------------------------------------------- /examples/src/components/Combined/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Combined'; 2 | -------------------------------------------------------------------------------- /examples/src/components/Pagination/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Pagination'; 2 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './quest'; 2 | export { default as reducer } from './reducer'; 3 | -------------------------------------------------------------------------------- /examples/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | padding: 0; 4 | font-family: sans-serif; 5 | } 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | cache: 4 | yarn: true 5 | directories: 6 | - node_modules 7 | node_js: 8 | - '6' 9 | script: 10 | - yarn test 11 | -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- 1 | # redux-quest examples 2 | 3 | To run the examples: 4 | 5 | ```sh 6 | git clone https://github.com/djgrant/react-quest.git 7 | cd examples 8 | npm install 9 | npm start 10 | ``` 11 | -------------------------------------------------------------------------------- /examples/src/store/reducers.js: -------------------------------------------------------------------------------- 1 | import { combineReducers } from 'redux'; 2 | import { reducer as questReducer } from 'react-quest'; 3 | 4 | const reducer = combineReducers({ 5 | _data_: questReducer 6 | }); 7 | 8 | export default reducer; 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See http://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | node_modules 5 | 6 | # testing 7 | /coverage 8 | 9 | # production 10 | lib 11 | 12 | # misc 13 | .DS_Store 14 | .env 15 | npm-debug.log* 16 | yarn-debug.log* 17 | yarn-error.log* 18 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "build": { 4 | "presets": [ 5 | "react", 6 | "stage-3", 7 | [ 8 | "latest", 9 | { 10 | "es2015": { "modules": false } 11 | } 12 | ] 13 | ] 14 | }, 15 | "test": { 16 | "presets": ["react", "stage-3", "latest"] 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- 1 | import { compose } from 'redux'; 2 | import mapProps from 'recompose/mapProps'; 3 | 4 | export const omit = (toRemove = []) => obj => 5 | Object.keys(obj).filter(key => !toRemove.includes(key)).reduce( 6 | (result, key) => ({ 7 | ...result, 8 | [key]: obj[key] 9 | }), 10 | {} 11 | ); 12 | 13 | export const omitProps = compose(mapProps, omit); 14 | -------------------------------------------------------------------------------- /examples/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "react-quest", 3 | "name": "react-quest Example App", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "192x192", 8 | "type": "image/png" 9 | } 10 | ], 11 | "start_url": "./index.html", 12 | "display": "standalone", 13 | "theme_color": "#000000", 14 | "background_color": "#ffffff" 15 | } 16 | -------------------------------------------------------------------------------- /examples/src/store/createStore.js: -------------------------------------------------------------------------------- 1 | import { createStore, applyMiddleware, compose } from 'redux'; 2 | import thunk from 'redux-thunk'; 3 | import reducers from './reducers'; 4 | 5 | export default () => 6 | createStore( 7 | reducers, 8 | compose( 9 | applyMiddleware(thunk), 10 | typeof window !== 'undefined' && window.__REDUX_DEVTOOLS_EXTENSION__ 11 | ? window.__REDUX_DEVTOOLS_EXTENSION__() 12 | : i => i 13 | ) 14 | ); 15 | -------------------------------------------------------------------------------- /examples/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import { BrowserRouter } from 'react-router-dom'; 4 | import { Provider } from 'react-redux'; 5 | import createStore from './store/createStore'; 6 | import App from './components/App'; 7 | import './index.css'; 8 | 9 | const store = createStore(); 10 | 11 | ReactDOM.render( 12 | 13 | 14 | 15 | 16 | , 17 | document.getElementById('root') 18 | ); 19 | -------------------------------------------------------------------------------- /examples/src/components/Basic/Basic.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import quest from 'react-quest'; 3 | 4 | const postsResolver = { 5 | key: 'posts', 6 | get: () => 7 | Promise.resolve([ 8 | { id: 1, title: 'Post 1' }, 9 | { id: 2, title: 'Post 2' }, 10 | { id: 3, title: 'Post 3' } 11 | ]) 12 | }; 13 | 14 | const enhance = quest({ 15 | resolver: postsResolver 16 | }); 17 | 18 | const Posts = ({ posts, loadMore }) => ( 19 |
20 | {posts.data 21 | ? posts.data.map(post =>

{post.title}

) 22 | :

Loading posts...

} 23 |
24 | ); 25 | 26 | export default enhance(Posts); 27 | -------------------------------------------------------------------------------- /examples/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-quest-example", 3 | "version": "0.1.0", 4 | "dependencies": { 5 | "lodash": "^4.17.4", 6 | "react": "^15.6.1", 7 | "react-dom": "^15.6.1", 8 | "react-quest": "^0.10.0", 9 | "react-redux": "^5.0.5", 10 | "react-router-dom": "^4.1.1", 11 | "recompose": "^0.23.5", 12 | "redux": "^3.7.0", 13 | "redux-thunk": "^2.2.0" 14 | }, 15 | "devDependencies": { 16 | "react-scripts": "1.0.7" 17 | }, 18 | "scripts": { 19 | "start": "react-scripts start", 20 | "build": "react-scripts build", 21 | "test": "react-scripts test --env=jsdom", 22 | "eject": "react-scripts eject" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /specs/utils.spec.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { shallow } from 'enzyme'; 3 | import { omit, omitProps } from '../src/utils'; 4 | 5 | describe('omit', function() { 6 | it('should omit object properties', function() { 7 | expect(omit(['a'])({ a: 1, b: 2 })).toEqual({ b: 2 }); 8 | }); 9 | }); 10 | 11 | describe('omitProps', function() { 12 | it('should omit component props', function() { 13 | var testProps = { 14 | 'data-a': 1, 15 | 'data-b': () => 2, 16 | 'data-c': '3' 17 | }; 18 | 19 | var Enhanced = omitProps(['data-a', 'data-b'])('div'); 20 | var wrapper = shallow(); 21 | 22 | expect(wrapper.props()).toEqual({ 'data-c': '3' }); 23 | }); 24 | }); 25 | -------------------------------------------------------------------------------- /examples/src/components/App/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { Link, Route } from 'react-router-dom'; 3 | import Basic from '../Basic'; 4 | import Pagination from '../Pagination'; 5 | import Combined from '../Combined'; 6 | import './App.css'; 7 | 8 | class App extends Component { 9 | render() { 10 | return ( 11 |
12 | 17 | 18 | 19 | 20 |
21 | ); 22 | } 23 | } 24 | 25 | export default App; 26 | -------------------------------------------------------------------------------- /webpack.config.build.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | 3 | const babelLoader = { 4 | test: /\.js$/, 5 | exclude: 'node_modules', 6 | loader: 'babel-loader' 7 | }; 8 | 9 | const externalLibs = { 10 | react: { 11 | root: 'React', 12 | commonjs2: 'react', 13 | commonjs: 'react', 14 | amd: 'react' 15 | }, 16 | redux: { 17 | root: 'redux', 18 | commonjs2: 'redux', 19 | commonjs: 'redux', 20 | amd: 'redux' 21 | }, 22 | 'react-redux': { 23 | root: 'ReactRedux', 24 | commonjs2: 'react-redux', 25 | commonjs: 'react-redux', 26 | amd: 'react-redux' 27 | } 28 | }; 29 | 30 | module.exports = { 31 | entry: './src/index.js', 32 | output: { 33 | path: path.resolve(__dirname, 'lib'), 34 | filename: 'index.umd.js', 35 | library: 'ReduxQuest', 36 | libraryTarget: 'umd' 37 | }, 38 | module: { 39 | loaders: [babelLoader] 40 | }, 41 | externals: externalLibs 42 | }; 43 | -------------------------------------------------------------------------------- /src/reducer.js: -------------------------------------------------------------------------------- 1 | import { types } from './actions'; 2 | 3 | export var defaultState = { 4 | loading: false, 5 | ready: false, 6 | reverted: false, 7 | error: null, 8 | data: null 9 | }; 10 | 11 | export default function reducer(state = {}, action) { 12 | if (action.type === types.fetching) { 13 | return { 14 | ...state, 15 | [action.key]: { 16 | ...defaultState, 17 | ...state[action.key], 18 | loading: true, 19 | ready: false 20 | } 21 | }; 22 | } 23 | 24 | if (action.type === types.fetched) { 25 | return { 26 | ...state, 27 | [action.key]: { 28 | loading: false, 29 | ready: true, 30 | reverted: action.reverted || false, 31 | error: action.error || null, 32 | data: action.data || null 33 | } 34 | }; 35 | } 36 | 37 | return state; 38 | } 39 | // 40 | // function quest(state = defaultState, action) { 41 | // 42 | // } 43 | -------------------------------------------------------------------------------- /examples/src/components/Combined/Combined.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import quest from 'react-quest'; 3 | import { compose } from 'redux'; 4 | 5 | const relatedResolver = { 6 | key: 'related', 7 | get: () => 8 | Promise.resolve({ 9 | id: 1, 10 | description: 'Some other resource', 11 | relatedArticles: [3, 9, 18] 12 | }) 13 | }; 14 | 15 | const articlesResolver = { 16 | key: 'articles', 17 | get: query => 18 | Promise.resolve( 19 | query.ids.map(id => ({ 20 | id, 21 | title: `Article ${id}` 22 | })) 23 | ) 24 | }; 25 | 26 | const enhance = compose( 27 | quest({ 28 | resolver: relatedResolver 29 | }), 30 | quest({ 31 | resolver: articlesResolver, 32 | fetchOnce: props => 33 | props.related.data && props.related.data.relatedArticles, 34 | query: props => ({ 35 | ids: props.related.data.relatedArticles 36 | }) 37 | }) 38 | ); 39 | 40 | const Combined = ({ related, articles }) => 41 |
42 | {articles.data && 43 | articles.data.map(post => 44 |

45 | {post.title} 46 |

47 | )} 48 |
; 49 | 50 | export default enhance(Combined); 51 | -------------------------------------------------------------------------------- /specs/mapping.spec.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { compose } from 'redux'; 3 | import withProps from 'recompose/withProps'; 4 | import quest from '../src'; 5 | import { getHocProps } from './specUtils'; 6 | const { objectContaining, anything } = expect; 7 | 8 | describe('quest: mapping data', function() { 9 | const itemsResolver = { 10 | key: 'items', 11 | get: () => Promise.resolve([1, 2, 3]) 12 | }; 13 | 14 | it('mapData transform the resolved data', async function() { 15 | const hoc = quest({ 16 | resolver: itemsResolver, 17 | mapData: items => ({ 18 | firstItem: items[0] 19 | }) 20 | }); 21 | 22 | const props = await getHocProps(hoc); 23 | const actual = props.items.data; 24 | const expected = objectContaining({ firstItem: 1 }); 25 | 26 | expect(actual).toEqual(expected); 27 | }); 28 | 29 | it('mapToProps maps data to props', async function() { 30 | const hoc = compose( 31 | withProps({ 32 | test: 1 33 | }), 34 | quest({ 35 | resolver: itemsResolver, 36 | mapToProps: (items, ownProps) => ({ 37 | firstItem: items[0], 38 | test: ownProps.test 39 | }) 40 | }) 41 | ); 42 | 43 | const actual = await getHocProps(hoc); 44 | const expected = objectContaining({ firstItem: 1, test: 1 }); 45 | 46 | expect(actual).toEqual(expected); 47 | }); 48 | 49 | it.skip('mapToProps maps resolver methods to props', function() {}); 50 | }); 51 | -------------------------------------------------------------------------------- /src/actions.js: -------------------------------------------------------------------------------- 1 | export const types = { 2 | fetching: '@quest/FETCHING_DATA', 3 | fetched: '@quest/FETCHED_DATA' 4 | }; 5 | 6 | export function startQuest(key, resolverMethod) { 7 | return (dispatch, getState) => { 8 | dispatch({ type: types.fetching, key }); 9 | 10 | const dispatcher = { 11 | update: (data, ...args) => { 12 | dispatch(resolveQuest(key, data, ...args)); 13 | return data; 14 | } 15 | }; 16 | 17 | const getCurrentData = () => getState()._data_[key].data; 18 | 19 | const onResolution = data => { 20 | dispatch(resolveQuest(key, data)); 21 | return data; 22 | }; 23 | 24 | const onRejection = () => { 25 | var currentData = getCurrentData(); 26 | dispatch(resolveQuest(key, currentData, { reverted: true })); 27 | return currentData; 28 | }; 29 | 30 | let updater = resolverMethod(); 31 | let updates = []; 32 | 33 | if (typeof updater === 'function') { 34 | updates = updates.concat(updater(dispatcher, getCurrentData)); 35 | updates.map(update => Promise.resolve(update).catch(onRejection)); 36 | } else { 37 | updates = updates.concat(updater); 38 | updates.map(update => 39 | Promise.resolve(update).then(onResolution).catch(onRejection) 40 | ); 41 | } 42 | 43 | return Promise.all(updates).then(results => results[results.length - 1]); 44 | }; 45 | } 46 | 47 | export function resolveQuest(key, data, options = {}) { 48 | return { type: types.fetched, key, data, ...options }; 49 | } 50 | -------------------------------------------------------------------------------- /examples/src/components/Pagination/Pagination.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import quest from 'react-quest'; 3 | import compose from 'recompose/compose'; 4 | import withHandlers from 'recompose/withHandlers'; 5 | import range from 'lodash/range'; 6 | 7 | const postsResolver = { 8 | key: 'posts', 9 | get: query => { 10 | if (query.first) { 11 | return Promise.resolve( 12 | range(1, query.first).map(page => ({ 13 | id: page, 14 | title: `Post ${page}` 15 | })) 16 | ); 17 | } 18 | if (query.next) { 19 | return (dispatch, getCurrentPosts) => { 20 | const currentPosts = getCurrentPosts(); 21 | const startIndex = currentPosts.length + 1; 22 | return Promise.resolve( 23 | range(startIndex, startIndex + query.next).map(page => ({ 24 | id: page, 25 | title: `Post ${page}` 26 | })) 27 | ).then(newPosts => { 28 | return dispatch.update([...currentPosts, ...newPosts]); 29 | }); 30 | }; 31 | } 32 | } 33 | }; 34 | 35 | const enhance = compose( 36 | quest({ 37 | resolver: postsResolver, 38 | query: { 39 | first: 5 40 | } 41 | }), 42 | withHandlers({ 43 | loadMore: props => event => 44 | props.posts.get({ 45 | next: 5 46 | }) 47 | }) 48 | ); 49 | 50 | const Posts = ({ posts, loadMore }) => 51 |
52 | {posts.data 53 | ? posts.data.map(post => 54 |

55 | {post.title} 56 |

57 | ) 58 | :

Loading posts...

} 59 | 60 |
; 61 | 62 | export default enhance(Posts); 63 | -------------------------------------------------------------------------------- /examples/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 11 | 12 | 13 | 22 | React App 23 | 24 | 25 | 28 |
29 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /specs/specUtils.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { compose, createStore, combineReducers, applyMiddleware } from 'redux'; 3 | import { mount as _mount } from 'enzyme'; 4 | import { Provider } from 'react-redux'; 5 | import thunk from 'redux-thunk'; 6 | import { reducer as questReducer } from '../src'; 7 | 8 | export const createTestStore = preloadedState => 9 | createStore( 10 | combineReducers({ 11 | _data_: questReducer 12 | }), 13 | preloadedState, 14 | applyMiddleware(thunk) 15 | ); 16 | 17 | export const withStore = store => App => () => ( 18 | 19 | 20 | 21 | ); 22 | 23 | export const mount = node => 24 | new Promise(resolve => { 25 | const mounted = _mount(node); 26 | setTimeout(() => resolve(mounted), 0); 27 | }); 28 | 29 | export const delay = (interval = 0) => 30 | new Promise(resolve => { 31 | setTimeout(() => resolve(), interval); 32 | }); 33 | 34 | export const mountHoc = async (hoc, props, store) => { 35 | const Hoc = hoc(() => null); 36 | await mount( 37 | 38 | 39 | 40 | ); 41 | }; 42 | 43 | export const getHocProps = async (hoc, props, store) => { 44 | let result; 45 | const HocWithPropsCatcher = hoc(props => { 46 | result = props; 47 | return null; 48 | }); 49 | await mount( 50 | 51 | 52 | 53 | ); 54 | return result; 55 | }; 56 | 57 | export const Items = props => { 58 | if (props.items.loading) return
Loading
; 59 | if (props.items.error) return
Error
; 60 | return
{JSON.stringify(props.items.data)}
; 61 | }; 62 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-quest", 3 | "description": "Declarative data fetching for universal Redux apps", 4 | "author": "Daniel Grant", 5 | "version": "0.10.2", 6 | "license": "MIT", 7 | "repository": { 8 | "type": "git", 9 | "url": "https://github.com/djgrant/react-quest" 10 | }, 11 | "scripts": { 12 | "test": "BABEL_ENV=test jest", 13 | "dev": "BABEL_ENV=test jest --watch", 14 | "build": "npm run build:umd && npm run build:es", 15 | "build:umd": "BABEL_ENV=build webpack --config webpack.config.build.js", 16 | "build:es": "BABEL_ENV=build babel src --out-dir lib --ignore spec.js,test.js" 17 | }, 18 | "main": "lib/index.umd.js", 19 | "module": "lib/index.js", 20 | "files": [ 21 | "lib" 22 | ], 23 | "dependencies": { 24 | "invariant": "^2.2.2", 25 | "recompose": "^0.22.0" 26 | }, 27 | "devDependencies": { 28 | "babel-cli": "^6.24.1", 29 | "babel-core": "^6.25.0", 30 | "babel-jest": "^20.0.3", 31 | "babel-loader": "^7.1.1", 32 | "babel-polyfill": "^6.23.0", 33 | "babel-preset-latest": "^6.22.0", 34 | "babel-preset-react": "^6.24.1", 35 | "babel-preset-stage-3": "^6.24.1", 36 | "enzyme": "^2.7.1", 37 | "jest": "^20.0.4", 38 | "react": "^15.4.2", 39 | "react-addons-test-utils": "^15.4.2", 40 | "react-dom": "^15.4.2", 41 | "react-redux": "^5.0.2", 42 | "redux": "^3.6.0", 43 | "redux-thunk": "^2.2.0", 44 | "webpack": "^2.2.1" 45 | }, 46 | "peerDependencies": { 47 | "react": "^0.14.0 || ^15.0.0-0", 48 | "react-redux": "^4.0.0 || ^5.0.0", 49 | "redux": "^2.0.0 || ^3.0.0", 50 | "redux-thunk": "^1.0.0 || ^2.0.0" 51 | }, 52 | "keywords": [ 53 | "redux", 54 | "async", 55 | "declarative", 56 | "data", 57 | "fetching", 58 | "ssr" 59 | ] 60 | } 61 | -------------------------------------------------------------------------------- /specs/setup.spec.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { compose } from 'redux'; 3 | import { mount } from 'enzyme'; 4 | import quest from '../src'; 5 | import { reducer as questReducer } from '../src'; 6 | import { createTestStore, withStore, Items } from './specUtils'; 7 | 8 | describe('quest: setup', function() { 9 | const store = createTestStore(); 10 | 11 | it('requires a resolver', function() { 12 | expect(() => { 13 | quest(); 14 | }).toThrow(); 15 | }); 16 | 17 | it('requires a resolver key', function() { 18 | const resolverNoKey = { key: 'items' }; 19 | const resolverInvalidKey = { key: () => 'items' }; 20 | 21 | expect(() => { 22 | quest({ resolver: resolverNoKey }); 23 | }).toThrow(); 24 | 25 | expect(() => { 26 | quest({ resolver: resolverInvalidKey }); 27 | }).toThrow(); 28 | }); 29 | 30 | it('requires a resolver getter', function() { 31 | const resolverNoGetter = { key: 'items' }; 32 | const resolverInvalidGetter = { key: 'items', get: 'invalid' }; 33 | 34 | expect(() => { 35 | quest({ resolver: resolverNoGetter }); 36 | }).toThrow(); 37 | 38 | expect(() => { 39 | quest({ resolver: resolverInvalidGetter }); 40 | }).toThrow(); 41 | }); 42 | 43 | it('returns a function', function() { 44 | const testResolver = { 45 | key: 'items', 46 | get: () => {} 47 | }; 48 | const actual = typeof quest({ resolver: testResolver }); 49 | const expected = 'function'; 50 | expect(actual).toEqual(expected); 51 | }); 52 | 53 | it('registers the resolver key as a state field', function() { 54 | const itemsResolver = { 55 | key: 'items', 56 | get: () => [1, 2, 3] 57 | }; 58 | 59 | const ItemsWithData = compose( 60 | withStore(store), 61 | quest({ resolver: itemsResolver }) 62 | )(Items); 63 | 64 | mount(); 65 | var state = store.getState()._data_; 66 | expect(state).toHaveProperty('items'); 67 | }); 68 | }); 69 | -------------------------------------------------------------------------------- /specs/redux.spec.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { shallow } from 'enzyme'; 3 | import { reducer } from '../src'; 4 | import { 5 | types, 6 | startQuest, 7 | resolveQuest, 8 | rejectQuest, 9 | revertQuest 10 | } from '../src/actions'; 11 | 12 | describe('actions', function() { 13 | it('should create an action to resolve a quest', function() { 14 | const actual = resolveQuest('items', [1, 2, 3]); 15 | const expected = { 16 | type: types.fetched, 17 | key: 'items', 18 | data: [1, 2, 3] 19 | }; 20 | expect(actual).toEqual(expected); 21 | }); 22 | }); 23 | 24 | describe('async actions', function() { 25 | const mockDispatch = jest.fn(); 26 | const mockGetState = () => ({ 27 | _data_: { 28 | items: { 29 | data: [1, 2, 3] 30 | } 31 | } 32 | }); 33 | 34 | afterEach(function() { 35 | mockDispatch.mockReset(); 36 | }); 37 | 38 | it('should create an action to start a quest', async function() { 39 | const getter = () => Promise.resolve([1, 2, 3, 4]); 40 | const thunk = startQuest('items', getter); 41 | const result = await thunk(mockDispatch, mockGetState); 42 | 43 | expect(mockDispatch).toBeCalledWith({ 44 | type: types.fetching, 45 | key: 'items' 46 | }); 47 | 48 | expect(mockDispatch).toBeCalledWith({ 49 | type: types.fetched, 50 | key: 'items', 51 | data: [1, 2, 3, 4] 52 | }); 53 | 54 | expect(result).toEqual([1, 2, 3, 4]); 55 | }); 56 | 57 | it('should handle an array of promises', async function() { 58 | const getter = () => [ 59 | Promise.resolve([1, 2, 3, 4]), 60 | Promise.resolve([1, 2, 3, 4, 5]) 61 | ]; 62 | const thunk = startQuest('items', getter); 63 | const result = await thunk(mockDispatch, mockGetState); 64 | 65 | expect(mockDispatch).toHaveBeenCalledTimes(3); 66 | expect(result).toEqual([1, 2, 3, 4, 5]); 67 | }); 68 | 69 | it('should handle thunks that return plain data', async function() { 70 | const getter = () => (dispatch, getCurrentData) => [ 71 | dispatch.update([1, 2, 3, 4]), 72 | dispatch.update([1, 2, 3, 4, 5]) 73 | ]; 74 | const thunk = startQuest('items', getter); 75 | const result = await thunk(mockDispatch, mockGetState); 76 | 77 | expect(result).toEqual([1, 2, 3, 4, 5]); 78 | }); 79 | 80 | it('should handle thunks that return promises', async function() { 81 | const getter = () => (dispatch, getCurrentData) => [ 82 | Promise.resolve().then(() => dispatch.update([1, 2, 3, 4])), 83 | Promise.resolve().then(() => dispatch.update([1, 2, 3, 4, 5])) 84 | ]; 85 | const thunk = startQuest('items', getter); 86 | const result = await thunk(mockDispatch, mockGetState); 87 | 88 | expect(result).toEqual([1, 2, 3, 4, 5]); 89 | }); 90 | 91 | it('should revert the data if a promise rejects', async function() { 92 | const getter = () => [Promise.resolve([1, 2, 3, 4]), Promise.reject()]; 93 | const thunk = startQuest('items', getter); 94 | const result = await thunk(mockDispatch, mockGetState).catch(err => {}); 95 | 96 | expect(mockDispatch).toBeCalledWith({ 97 | type: types.fetched, 98 | key: 'items', 99 | data: [1, 2, 3], 100 | reverted: true 101 | }); 102 | 103 | expect(result).toEqual(undefined); 104 | }); 105 | }); 106 | 107 | describe('reducer', function() { 108 | it('should add a key to the state', function() { 109 | const state = reducer({}, { key: 'items', type: types.fetching }); 110 | expect(state).toHaveProperty('items'); 111 | }); 112 | }); 113 | -------------------------------------------------------------------------------- /specs/resolving.spec.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { compose } from 'redux'; 3 | import withProps from 'recompose/withProps'; 4 | import withHandlers from 'recompose/withHandlers'; 5 | import quest from '../src'; 6 | import { 7 | mount, 8 | getHocProps, 9 | mountHoc, 10 | withStore, 11 | delay, 12 | createTestStore 13 | } from './specUtils'; 14 | const { objectContaining, anything } = expect; 15 | 16 | describe('quest: resolving data', function() { 17 | const resolveGet = jest.fn(); 18 | const resolveUpdate = jest.fn(); 19 | const testResolver = { 20 | key: 'test', 21 | get: resolveGet, 22 | update: resolveUpdate 23 | }; 24 | const itemsResolver = { 25 | key: 'items', 26 | get: () => Promise.resolve([1, 2, 3]), 27 | create: num => (dispatch, getCurrent) => 28 | Promise.resolve().then(() => dispatch.update([...getCurrent(), num])), 29 | update: num => (dispatch, getCurrent) => [ 30 | dispatch.update([...getCurrent(), num]), 31 | new Promise(resolve => 32 | setTimeout(() => resolve(num, num + 1), 100) 33 | ).then(newNum => dispatch.update([...getCurrent(), newNum])) 34 | ] 35 | }; 36 | 37 | afterEach(function() { 38 | resolveGet.mockClear(); 39 | resolveUpdate.mockClear(); 40 | }); 41 | 42 | it('passes a query to the resolver', async function() { 43 | const hoc = quest({ 44 | resolver: testResolver, 45 | query: 'test query' 46 | }); 47 | 48 | await mountHoc(hoc); 49 | const args = resolveGet.mock.calls[0]; 50 | expect(args[0]).toEqual('test query'); 51 | }); 52 | 53 | it('resolves thunks', async function() { 54 | const resolver = { 55 | key: 'asyncTest', 56 | get(query) { 57 | return (dispatch, getCurrentData) => 58 | new Promise(resolve => 59 | setTimeout(() => resolve(query.data)) 60 | ).then(data => 61 | dispatch.update({ 62 | ...getCurrentData(), 63 | ...data 64 | }) 65 | ); 66 | } 67 | }; 68 | 69 | const hoc = compose( 70 | quest({ 71 | resolver: resolver, 72 | query: { data: { a: 1 } } 73 | }), 74 | quest({ 75 | resolver: resolver, 76 | query: { data: { b: 2 } } 77 | }) 78 | ); 79 | 80 | const store = createTestStore({ _data_: { asyncTest: { data: {} } } }); 81 | await mountHoc(hoc, {}, store); 82 | await delay(10); 83 | 84 | const data = store.getState()._data_.asyncTest.data; 85 | expect(data).toEqual({ a: 1, b: 2 }); 86 | }); 87 | 88 | it('maps the default query before passing it to the get method', async function() { 89 | const hoc = compose( 90 | withProps({ 91 | testHeader: 'test header' 92 | }), 93 | quest({ 94 | resolver: testResolver, 95 | query: 'test query', 96 | mapQuery: (query, props) => ({ 97 | headers: { 98 | testHeader: props.testHeader 99 | }, 100 | data: query 101 | }) 102 | }) 103 | ); 104 | 105 | await mountHoc(hoc); 106 | const expected = { 107 | headers: { 108 | testHeader: 'test header' 109 | }, 110 | data: 'test query' 111 | }; 112 | const args = resolveGet.mock.calls[0]; 113 | expect(args[0]).toEqual(expected); 114 | }); 115 | 116 | it('maps queries before passing them to mutation methods', async function() { 117 | const Button = compose( 118 | withStore(), 119 | withProps({ 120 | testHeader: 'test header' 121 | }), 122 | quest({ 123 | resolver: testResolver, 124 | mapQuery: (query, props) => ({ 125 | headers: { 126 | testHeader: props.testHeader 127 | }, 128 | data: query 129 | }) 130 | }), 131 | withHandlers({ 132 | update: props => e => props.test.update('test query') 133 | }) 134 | )(props => { 135 | return 373 | } 374 | } 375 | 376 | export default quest({ resolver: postsResolver })(NewPost); 377 | ``` 378 | 379 | ### Updating remote data 380 | 381 | Calling the create method in the previous example creates a new post on the server but we still need to display the post that the user created in the UI. 382 | 383 | To update the local data store, return a promise that resolves with updated collection from the resolver's mutation method: 384 | 385 | ```js 386 | const postsResolver = { 387 | ... 388 | create(post) { 389 | return fetch(POST_API_URL, { 390 | method: 'POST', 391 | body: JSON.stringify(post) 392 | }) 393 | .then(response => { 394 | // once the server has created the new post 395 | // get the latest collection of posts again 396 | if (response.status === 201) { 397 | // send another GET request and return a promise 398 | // that resolves with the final data 399 | return postsResolver.get(); 400 | } 401 | }); 402 | } 403 | }; 404 | 405 | class NewPost extends Component { 406 | handleSubmit(e) { 407 | const post = e.data; 408 | this.props.posts.create(post); 409 | } 410 | render() { 411 | return 412 | } 413 | } 414 | 415 | export default quest({ resolver: postsResolver })(NewPost); 416 | ``` 417 | 418 | In the above example we execute a second request to the API to fetch the updated resource. If however the response body of the POST request contains the complete updated collection of posts we could resolve the promise with that data instead, saving an extra round trip to the API: 419 | 420 | ```js 421 | const postsResolver = { 422 | ... 423 | create(post) { 424 | return fetch(POST_API_URL, { 425 | method: 'POST', 426 | body: JSON.stringify(post) 427 | }).then(r => r.json()); 428 | } 429 | }; 430 | ``` 431 | 432 | There are times when in order to form a complete update you'll need access to the data in the local store (say, for example, if your server responds with just the created resource and you need to add it to the existing collection). 433 | 434 | When getting existing data it is important to ensure that your update is dispatched immediately after to avoid the data you retrieved going stale. This means you must pull the latest data out of the store and in the same tick of the event loop dispatch your update. To do this wrap your update (promise) in a thunk, which takes a `dispatch` and `getCurrentData` function. This approach allows react-quest to turn control of dispatching updates over to the resolver (and you, the developer), to guarantee that you only ever update the store with the latest data. 435 | 436 | For more details on why this is necessary see https://github.com/djgrant/react-quest/pull/4. 437 | 438 | ```js 439 | const postsResolver = { 440 | ... 441 | create: post => (dispatch, getCurrentPosts) => { 442 | return fetch(POST_API_URL, { 443 | method: 'POST', 444 | body: JSON.stringify(post) 445 | }) 446 | .then(r => r.json()) 447 | .then(newPost => dispatch.update([...getCurrentPosts(), newPost])); 448 | } 449 | }; 450 | ``` 451 | 452 | ### Performing optimistic updates 453 | 454 | Suppose we want to immediately update the local data store, even before it has been created on the server? We can perform an optimistic update by, instead of returning a single promise from our mutation handler, returning _an array_ of promises. Each promise represents an update task and the local data store is updated with the result of each promise as it resolves. As a fail safe mechanism, if any of the promises reject then all updates are reverted. 455 | 456 | As a fail safe mechanism, if a promise rejects, any updates from promises that were resolved prior in the cycle will get reverted. 457 | 458 | Let's start with a simple example for this technique: 459 | 460 | ```js 461 | const numberResolver = { 462 | ... 463 | create(number) { 464 | // the first promise will resolve with the data we hope to add 465 | const optimisticUpdate = Promise.resolve(number); 466 | 467 | // the second promise will resolve with the actual data 468 | const serverUpdate = new Promise(resolve => { 469 | // mock an IO operation 470 | setTimeout(() => { 471 | resolve(2); 472 | }, 100); 473 | }); 474 | 475 | // return both promises in an array 476 | return [optimisticUpdate, serverUpdate] 477 | } 478 | } 479 | 480 | ``` 481 | 482 | In this example the local store is first updated with `number` and then 100ms later it is updated with `2`. 483 | 484 | Returning to our posts example, we can update the local store first with the user input using a promise that immediately resolves (the optimistic update), and then with the real data from the server. To add just a little extra complexity to the example, let's also handle cases where the server update fails. In such an event, we'd need to revert the effect of the optimistic update and resolve the server update with the original posts collection. 485 | 486 | ```js 487 | const postsResolver = { 488 | ... 489 | create: post => (dispatch, getCurrentPosts) => { 490 | const optimisticUpdate = Promise.resolve(newPosts); 491 | 492 | const serverUpdate = fetch(POST_API_URL, { 493 | method: 'POST', 494 | body: JSON.stringify(post) 495 | }) 496 | .then(response => { 497 | if (response.status !== 201) { 498 | // our optimism didn't pay off this time as 499 | // the resource wasn't created on the server 500 | // resolve this promise with the original data to revert the first update 501 | return currentPosts; 502 | } 503 | return response.json(); 504 | }) 505 | .then(newPost => dispatch.update([...getCurrentPosts(), newPost])) 506 | .catch(err => { 507 | console.log('Create post failed with error ', err) 508 | // If the promise rejects the fail safe mechanism 509 | // will revert all previous updates in this cycle 510 | }); 511 | 512 | return [optimisticUpdate, serverUpdate]; 513 | } 514 | }; 515 | ``` 516 | 517 | ## Credits 518 | 519 | react-quest was inspired by a few projects in particular: 520 | - [Relay](https://facebook.github.io/relay/), which introduced the idea of colocating data queries and components 521 | - [Apollo](http://dev.apollodata.com/), whose React client proved the versatility of redux as a local cache 522 | - [react-jobs](https://github.com/ctrlplusb/react-jobs), which influenced the design of the quest higher order components 523 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | abbrev@1: 10 | version "1.1.0" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 12 | 13 | acorn-dynamic-import@^2.0.0: 14 | version "2.0.1" 15 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.1.tgz#23f671eb6e650dab277fef477c321b1178a8cca2" 16 | dependencies: 17 | acorn "^4.0.3" 18 | 19 | acorn-globals@^3.1.0: 20 | version "3.1.0" 21 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 22 | dependencies: 23 | acorn "^4.0.4" 24 | 25 | acorn@^4.0.3, acorn@^4.0.4: 26 | version "4.0.11" 27 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 28 | 29 | ajv-keywords@^1.1.1: 30 | version "1.5.1" 31 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 32 | 33 | ajv@^4.7.0: 34 | version "4.11.3" 35 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.3.tgz#ce30bdb90d1254f762c75af915fb3a63e7183d22" 36 | dependencies: 37 | co "^4.6.0" 38 | json-stable-stringify "^1.0.1" 39 | 40 | align-text@^0.1.1, align-text@^0.1.3: 41 | version "0.1.4" 42 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 43 | dependencies: 44 | kind-of "^3.0.2" 45 | longest "^1.0.1" 46 | repeat-string "^1.5.2" 47 | 48 | amdefine@>=0.0.4: 49 | version "1.0.1" 50 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 51 | 52 | ansi-escapes@^1.4.0: 53 | version "1.4.0" 54 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 55 | 56 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 57 | version "2.1.1" 58 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 59 | 60 | ansi-styles@^2.2.1: 61 | version "2.2.1" 62 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 63 | 64 | ansi-styles@^3.0.0: 65 | version "3.1.0" 66 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.1.0.tgz#09c202d5c917ec23188caa5c9cb9179cd9547750" 67 | dependencies: 68 | color-convert "^1.0.0" 69 | 70 | anymatch@^1.3.0: 71 | version "1.3.0" 72 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 73 | dependencies: 74 | arrify "^1.0.0" 75 | micromatch "^2.1.5" 76 | 77 | append-transform@^0.4.0: 78 | version "0.4.0" 79 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 80 | dependencies: 81 | default-require-extensions "^1.0.0" 82 | 83 | aproba@^1.0.3: 84 | version "1.1.1" 85 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 86 | 87 | are-we-there-yet@~1.1.2: 88 | version "1.1.2" 89 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 90 | dependencies: 91 | delegates "^1.0.0" 92 | readable-stream "^2.0.0 || ^1.1.13" 93 | 94 | argparse@^1.0.7: 95 | version "1.0.9" 96 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 97 | dependencies: 98 | sprintf-js "~1.0.2" 99 | 100 | arr-diff@^2.0.0: 101 | version "2.0.0" 102 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 103 | dependencies: 104 | arr-flatten "^1.0.1" 105 | 106 | arr-flatten@^1.0.1: 107 | version "1.0.1" 108 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 109 | 110 | array-equal@^1.0.0: 111 | version "1.0.0" 112 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 113 | 114 | array-unique@^0.2.1: 115 | version "0.2.1" 116 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 117 | 118 | arrify@^1.0.0, arrify@^1.0.1: 119 | version "1.0.1" 120 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 121 | 122 | asap@~2.0.3: 123 | version "2.0.5" 124 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 125 | 126 | asn1.js@^4.0.0: 127 | version "4.9.1" 128 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" 129 | dependencies: 130 | bn.js "^4.0.0" 131 | inherits "^2.0.1" 132 | minimalistic-assert "^1.0.0" 133 | 134 | asn1@~0.2.3: 135 | version "0.2.3" 136 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 137 | 138 | assert-plus@^0.2.0: 139 | version "0.2.0" 140 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 141 | 142 | assert-plus@^1.0.0: 143 | version "1.0.0" 144 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 145 | 146 | assert@^1.1.1: 147 | version "1.4.1" 148 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 149 | dependencies: 150 | util "0.10.3" 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: 157 | version "1.5.2" 158 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 159 | 160 | async@^2.1.2, 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.6.0" 180 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 181 | 182 | babel-cli@^6.24.1: 183 | version "6.24.1" 184 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" 185 | dependencies: 186 | babel-core "^6.24.1" 187 | babel-polyfill "^6.23.0" 188 | babel-register "^6.24.1" 189 | babel-runtime "^6.22.0" 190 | commander "^2.8.1" 191 | convert-source-map "^1.1.0" 192 | fs-readdir-recursive "^1.0.0" 193 | glob "^7.0.0" 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.6.1" 202 | 203 | babel-code-frame@^6.22.0: 204 | version "6.22.0" 205 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 206 | dependencies: 207 | chalk "^1.1.0" 208 | esutils "^2.0.2" 209 | js-tokens "^3.0.0" 210 | 211 | babel-core@^6.0.0, babel-core@^6.24.1, babel-core@^6.25.0: 212 | version "6.25.0" 213 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" 214 | dependencies: 215 | babel-code-frame "^6.22.0" 216 | babel-generator "^6.25.0" 217 | babel-helpers "^6.24.1" 218 | babel-messages "^6.23.0" 219 | babel-register "^6.24.1" 220 | babel-runtime "^6.22.0" 221 | babel-template "^6.25.0" 222 | babel-traverse "^6.25.0" 223 | babel-types "^6.25.0" 224 | babylon "^6.17.2" 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-generator@^6.18.0, babel-generator@^6.25.0: 236 | version "6.25.0" 237 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" 238 | dependencies: 239 | babel-messages "^6.23.0" 240 | babel-runtime "^6.22.0" 241 | babel-types "^6.25.0" 242 | detect-indent "^4.0.0" 243 | jsesc "^1.3.0" 244 | lodash "^4.2.0" 245 | source-map "^0.5.0" 246 | trim-right "^1.0.1" 247 | 248 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 249 | version "6.24.1" 250 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 251 | dependencies: 252 | babel-helper-explode-assignable-expression "^6.24.1" 253 | babel-runtime "^6.22.0" 254 | babel-types "^6.24.1" 255 | 256 | babel-helper-builder-react-jsx@^6.24.1: 257 | version "6.24.1" 258 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz#0ad7917e33c8d751e646daca4e77cc19377d2cbc" 259 | dependencies: 260 | babel-runtime "^6.22.0" 261 | babel-types "^6.24.1" 262 | esutils "^2.0.0" 263 | 264 | babel-helper-call-delegate@^6.22.0: 265 | version "6.22.0" 266 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef" 267 | dependencies: 268 | babel-helper-hoist-variables "^6.22.0" 269 | babel-runtime "^6.22.0" 270 | babel-traverse "^6.22.0" 271 | babel-types "^6.22.0" 272 | 273 | babel-helper-define-map@^6.23.0: 274 | version "6.23.0" 275 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.23.0.tgz#1444f960c9691d69a2ced6a205315f8fd00804e7" 276 | dependencies: 277 | babel-helper-function-name "^6.23.0" 278 | babel-runtime "^6.22.0" 279 | babel-types "^6.23.0" 280 | lodash "^4.2.0" 281 | 282 | babel-helper-explode-assignable-expression@^6.24.1: 283 | version "6.24.1" 284 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 285 | dependencies: 286 | babel-runtime "^6.22.0" 287 | babel-traverse "^6.24.1" 288 | babel-types "^6.24.1" 289 | 290 | babel-helper-function-name@^6.22.0, babel-helper-function-name@^6.23.0: 291 | version "6.23.0" 292 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.23.0.tgz#25742d67175c8903dbe4b6cb9d9e1fcb8dcf23a6" 293 | dependencies: 294 | babel-helper-get-function-arity "^6.22.0" 295 | babel-runtime "^6.22.0" 296 | babel-template "^6.23.0" 297 | babel-traverse "^6.23.0" 298 | babel-types "^6.23.0" 299 | 300 | babel-helper-function-name@^6.24.1: 301 | version "6.24.1" 302 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 303 | dependencies: 304 | babel-helper-get-function-arity "^6.24.1" 305 | babel-runtime "^6.22.0" 306 | babel-template "^6.24.1" 307 | babel-traverse "^6.24.1" 308 | babel-types "^6.24.1" 309 | 310 | babel-helper-get-function-arity@^6.22.0: 311 | version "6.22.0" 312 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce" 313 | dependencies: 314 | babel-runtime "^6.22.0" 315 | babel-types "^6.22.0" 316 | 317 | babel-helper-get-function-arity@^6.24.1: 318 | version "6.24.1" 319 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 320 | dependencies: 321 | babel-runtime "^6.22.0" 322 | babel-types "^6.24.1" 323 | 324 | babel-helper-hoist-variables@^6.22.0: 325 | version "6.22.0" 326 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72" 327 | dependencies: 328 | babel-runtime "^6.22.0" 329 | babel-types "^6.22.0" 330 | 331 | babel-helper-optimise-call-expression@^6.23.0: 332 | version "6.23.0" 333 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.23.0.tgz#f3ee7eed355b4282138b33d02b78369e470622f5" 334 | dependencies: 335 | babel-runtime "^6.22.0" 336 | babel-types "^6.23.0" 337 | 338 | babel-helper-regex@^6.22.0: 339 | version "6.22.0" 340 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d" 341 | dependencies: 342 | babel-runtime "^6.22.0" 343 | babel-types "^6.22.0" 344 | lodash "^4.2.0" 345 | 346 | babel-helper-remap-async-to-generator@^6.24.1: 347 | version "6.24.1" 348 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 349 | dependencies: 350 | babel-helper-function-name "^6.24.1" 351 | babel-runtime "^6.22.0" 352 | babel-template "^6.24.1" 353 | babel-traverse "^6.24.1" 354 | babel-types "^6.24.1" 355 | 356 | babel-helper-replace-supers@^6.22.0, babel-helper-replace-supers@^6.23.0: 357 | version "6.23.0" 358 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.23.0.tgz#eeaf8ad9b58ec4337ca94223bacdca1f8d9b4bfd" 359 | dependencies: 360 | babel-helper-optimise-call-expression "^6.23.0" 361 | babel-messages "^6.23.0" 362 | babel-runtime "^6.22.0" 363 | babel-template "^6.23.0" 364 | babel-traverse "^6.23.0" 365 | babel-types "^6.23.0" 366 | 367 | babel-helpers@^6.24.1: 368 | version "6.24.1" 369 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 370 | dependencies: 371 | babel-runtime "^6.22.0" 372 | babel-template "^6.24.1" 373 | 374 | babel-jest@^20.0.3: 375 | version "20.0.3" 376 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 377 | dependencies: 378 | babel-core "^6.0.0" 379 | babel-plugin-istanbul "^4.0.0" 380 | babel-preset-jest "^20.0.3" 381 | 382 | babel-loader@^7.1.1: 383 | version "7.1.1" 384 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.1.tgz#b87134c8b12e3e4c2a94e0546085bc680a2b8488" 385 | dependencies: 386 | find-cache-dir "^1.0.0" 387 | loader-utils "^1.0.2" 388 | mkdirp "^0.5.1" 389 | 390 | babel-messages@^6.23.0: 391 | version "6.23.0" 392 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 393 | dependencies: 394 | babel-runtime "^6.22.0" 395 | 396 | babel-plugin-check-es2015-constants@^6.22.0: 397 | version "6.22.0" 398 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 399 | dependencies: 400 | babel-runtime "^6.22.0" 401 | 402 | babel-plugin-istanbul@^4.0.0: 403 | version "4.1.4" 404 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 405 | dependencies: 406 | find-up "^2.1.0" 407 | istanbul-lib-instrument "^1.7.2" 408 | test-exclude "^4.1.1" 409 | 410 | babel-plugin-jest-hoist@^20.0.3: 411 | version "20.0.3" 412 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 413 | 414 | babel-plugin-syntax-async-functions@^6.8.0: 415 | version "6.13.0" 416 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 417 | 418 | babel-plugin-syntax-async-generators@^6.5.0: 419 | version "6.13.0" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 421 | 422 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 423 | version "6.13.0" 424 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 425 | 426 | babel-plugin-syntax-flow@^6.18.0: 427 | version "6.18.0" 428 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 429 | 430 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 431 | version "6.18.0" 432 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 433 | 434 | babel-plugin-syntax-object-rest-spread@^6.8.0: 435 | version "6.13.0" 436 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 437 | 438 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 439 | version "6.22.0" 440 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 441 | 442 | babel-plugin-transform-async-generator-functions@^6.24.1: 443 | version "6.24.1" 444 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 445 | dependencies: 446 | babel-helper-remap-async-to-generator "^6.24.1" 447 | babel-plugin-syntax-async-generators "^6.5.0" 448 | babel-runtime "^6.22.0" 449 | 450 | babel-plugin-transform-async-to-generator@^6.22.0, babel-plugin-transform-async-to-generator@^6.24.1: 451 | version "6.24.1" 452 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 453 | dependencies: 454 | babel-helper-remap-async-to-generator "^6.24.1" 455 | babel-plugin-syntax-async-functions "^6.8.0" 456 | babel-runtime "^6.22.0" 457 | 458 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 459 | version "6.22.0" 460 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 461 | dependencies: 462 | babel-runtime "^6.22.0" 463 | 464 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 465 | version "6.22.0" 466 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 467 | dependencies: 468 | babel-runtime "^6.22.0" 469 | 470 | babel-plugin-transform-es2015-block-scoping@^6.22.0: 471 | version "6.23.0" 472 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.23.0.tgz#e48895cf0b375be148cd7c8879b422707a053b51" 473 | dependencies: 474 | babel-runtime "^6.22.0" 475 | babel-template "^6.23.0" 476 | babel-traverse "^6.23.0" 477 | babel-types "^6.23.0" 478 | lodash "^4.2.0" 479 | 480 | babel-plugin-transform-es2015-classes@^6.22.0: 481 | version "6.23.0" 482 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.23.0.tgz#49b53f326202a2fd1b3bbaa5e2edd8a4f78643c1" 483 | dependencies: 484 | babel-helper-define-map "^6.23.0" 485 | babel-helper-function-name "^6.23.0" 486 | babel-helper-optimise-call-expression "^6.23.0" 487 | babel-helper-replace-supers "^6.23.0" 488 | babel-messages "^6.23.0" 489 | babel-runtime "^6.22.0" 490 | babel-template "^6.23.0" 491 | babel-traverse "^6.23.0" 492 | babel-types "^6.23.0" 493 | 494 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 495 | version "6.22.0" 496 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7" 497 | dependencies: 498 | babel-runtime "^6.22.0" 499 | babel-template "^6.22.0" 500 | 501 | babel-plugin-transform-es2015-destructuring@^6.22.0: 502 | version "6.23.0" 503 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 504 | dependencies: 505 | babel-runtime "^6.22.0" 506 | 507 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 508 | version "6.22.0" 509 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b" 510 | dependencies: 511 | babel-runtime "^6.22.0" 512 | babel-types "^6.22.0" 513 | 514 | babel-plugin-transform-es2015-for-of@^6.22.0: 515 | version "6.23.0" 516 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 517 | dependencies: 518 | babel-runtime "^6.22.0" 519 | 520 | babel-plugin-transform-es2015-function-name@^6.22.0: 521 | version "6.22.0" 522 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" 523 | dependencies: 524 | babel-helper-function-name "^6.22.0" 525 | babel-runtime "^6.22.0" 526 | babel-types "^6.22.0" 527 | 528 | babel-plugin-transform-es2015-literals@^6.22.0: 529 | version "6.22.0" 530 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 531 | dependencies: 532 | babel-runtime "^6.22.0" 533 | 534 | babel-plugin-transform-es2015-modules-amd@^6.22.0: 535 | version "6.22.0" 536 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.22.0.tgz#bf69cd34889a41c33d90dfb740e0091ccff52f21" 537 | dependencies: 538 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 539 | babel-runtime "^6.22.0" 540 | babel-template "^6.22.0" 541 | 542 | babel-plugin-transform-es2015-modules-commonjs@^6.22.0: 543 | version "6.23.0" 544 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.23.0.tgz#cba7aa6379fb7ec99250e6d46de2973aaffa7b92" 545 | dependencies: 546 | babel-plugin-transform-strict-mode "^6.22.0" 547 | babel-runtime "^6.22.0" 548 | babel-template "^6.23.0" 549 | babel-types "^6.23.0" 550 | 551 | babel-plugin-transform-es2015-modules-systemjs@^6.22.0: 552 | version "6.23.0" 553 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.23.0.tgz#ae3469227ffac39b0310d90fec73bfdc4f6317b0" 554 | dependencies: 555 | babel-helper-hoist-variables "^6.22.0" 556 | babel-runtime "^6.22.0" 557 | babel-template "^6.23.0" 558 | 559 | babel-plugin-transform-es2015-modules-umd@^6.22.0: 560 | version "6.23.0" 561 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.23.0.tgz#8d284ae2e19ed8fe21d2b1b26d6e7e0fcd94f0f1" 562 | dependencies: 563 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 564 | babel-runtime "^6.22.0" 565 | babel-template "^6.23.0" 566 | 567 | babel-plugin-transform-es2015-object-super@^6.22.0: 568 | version "6.22.0" 569 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc" 570 | dependencies: 571 | babel-helper-replace-supers "^6.22.0" 572 | babel-runtime "^6.22.0" 573 | 574 | babel-plugin-transform-es2015-parameters@^6.22.0: 575 | version "6.23.0" 576 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz#3a2aabb70c8af945d5ce386f1a4250625a83ae3b" 577 | dependencies: 578 | babel-helper-call-delegate "^6.22.0" 579 | babel-helper-get-function-arity "^6.22.0" 580 | babel-runtime "^6.22.0" 581 | babel-template "^6.23.0" 582 | babel-traverse "^6.23.0" 583 | babel-types "^6.23.0" 584 | 585 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 586 | version "6.22.0" 587 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723" 588 | dependencies: 589 | babel-runtime "^6.22.0" 590 | babel-types "^6.22.0" 591 | 592 | babel-plugin-transform-es2015-spread@^6.22.0: 593 | version "6.22.0" 594 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 595 | dependencies: 596 | babel-runtime "^6.22.0" 597 | 598 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 599 | version "6.22.0" 600 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" 601 | dependencies: 602 | babel-helper-regex "^6.22.0" 603 | babel-runtime "^6.22.0" 604 | babel-types "^6.22.0" 605 | 606 | babel-plugin-transform-es2015-template-literals@^6.22.0: 607 | version "6.22.0" 608 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 609 | dependencies: 610 | babel-runtime "^6.22.0" 611 | 612 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 613 | version "6.23.0" 614 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 615 | dependencies: 616 | babel-runtime "^6.22.0" 617 | 618 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 619 | version "6.22.0" 620 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" 621 | dependencies: 622 | babel-helper-regex "^6.22.0" 623 | babel-runtime "^6.22.0" 624 | regexpu-core "^2.0.0" 625 | 626 | babel-plugin-transform-exponentiation-operator@^6.22.0, babel-plugin-transform-exponentiation-operator@^6.24.1: 627 | version "6.24.1" 628 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 629 | dependencies: 630 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 631 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 632 | babel-runtime "^6.22.0" 633 | 634 | babel-plugin-transform-flow-strip-types@^6.22.0: 635 | version "6.22.0" 636 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 637 | dependencies: 638 | babel-plugin-syntax-flow "^6.18.0" 639 | babel-runtime "^6.22.0" 640 | 641 | babel-plugin-transform-object-rest-spread@^6.22.0: 642 | version "6.23.0" 643 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 644 | dependencies: 645 | babel-plugin-syntax-object-rest-spread "^6.8.0" 646 | babel-runtime "^6.22.0" 647 | 648 | babel-plugin-transform-react-display-name@^6.23.0: 649 | version "6.23.0" 650 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37" 651 | dependencies: 652 | babel-runtime "^6.22.0" 653 | 654 | babel-plugin-transform-react-jsx-self@^6.22.0: 655 | version "6.22.0" 656 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 657 | dependencies: 658 | babel-plugin-syntax-jsx "^6.8.0" 659 | babel-runtime "^6.22.0" 660 | 661 | babel-plugin-transform-react-jsx-source@^6.22.0: 662 | version "6.22.0" 663 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 664 | dependencies: 665 | babel-plugin-syntax-jsx "^6.8.0" 666 | babel-runtime "^6.22.0" 667 | 668 | babel-plugin-transform-react-jsx@^6.24.1: 669 | version "6.24.1" 670 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 671 | dependencies: 672 | babel-helper-builder-react-jsx "^6.24.1" 673 | babel-plugin-syntax-jsx "^6.8.0" 674 | babel-runtime "^6.22.0" 675 | 676 | babel-plugin-transform-regenerator@^6.22.0: 677 | version "6.22.0" 678 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6" 679 | dependencies: 680 | regenerator-transform "0.9.8" 681 | 682 | babel-plugin-transform-strict-mode@^6.22.0: 683 | version "6.22.0" 684 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c" 685 | dependencies: 686 | babel-runtime "^6.22.0" 687 | babel-types "^6.22.0" 688 | 689 | babel-polyfill@^6.23.0: 690 | version "6.23.0" 691 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 692 | dependencies: 693 | babel-runtime "^6.22.0" 694 | core-js "^2.4.0" 695 | regenerator-runtime "^0.10.0" 696 | 697 | babel-preset-es2015@^6.22.0: 698 | version "6.22.0" 699 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.22.0.tgz#af5a98ecb35eb8af764ad8a5a05eb36dc4386835" 700 | dependencies: 701 | babel-plugin-check-es2015-constants "^6.22.0" 702 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 703 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 704 | babel-plugin-transform-es2015-block-scoping "^6.22.0" 705 | babel-plugin-transform-es2015-classes "^6.22.0" 706 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 707 | babel-plugin-transform-es2015-destructuring "^6.22.0" 708 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 709 | babel-plugin-transform-es2015-for-of "^6.22.0" 710 | babel-plugin-transform-es2015-function-name "^6.22.0" 711 | babel-plugin-transform-es2015-literals "^6.22.0" 712 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 713 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 714 | babel-plugin-transform-es2015-modules-systemjs "^6.22.0" 715 | babel-plugin-transform-es2015-modules-umd "^6.22.0" 716 | babel-plugin-transform-es2015-object-super "^6.22.0" 717 | babel-plugin-transform-es2015-parameters "^6.22.0" 718 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 719 | babel-plugin-transform-es2015-spread "^6.22.0" 720 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 721 | babel-plugin-transform-es2015-template-literals "^6.22.0" 722 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 723 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 724 | babel-plugin-transform-regenerator "^6.22.0" 725 | 726 | babel-preset-es2016@^6.22.0: 727 | version "6.22.0" 728 | resolved "https://registry.yarnpkg.com/babel-preset-es2016/-/babel-preset-es2016-6.22.0.tgz#b061aaa3983d40c9fbacfa3743b5df37f336156c" 729 | dependencies: 730 | babel-plugin-transform-exponentiation-operator "^6.22.0" 731 | 732 | babel-preset-es2017@^6.22.0: 733 | version "6.22.0" 734 | resolved "https://registry.yarnpkg.com/babel-preset-es2017/-/babel-preset-es2017-6.22.0.tgz#de2f9da5a30c50d293fb54a0ba15d6ddc573f0f2" 735 | dependencies: 736 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 737 | babel-plugin-transform-async-to-generator "^6.22.0" 738 | 739 | babel-preset-flow@^6.23.0: 740 | version "6.23.0" 741 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 742 | dependencies: 743 | babel-plugin-transform-flow-strip-types "^6.22.0" 744 | 745 | babel-preset-jest@^20.0.3: 746 | version "20.0.3" 747 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 748 | dependencies: 749 | babel-plugin-jest-hoist "^20.0.3" 750 | 751 | babel-preset-latest@^6.22.0: 752 | version "6.22.0" 753 | resolved "https://registry.yarnpkg.com/babel-preset-latest/-/babel-preset-latest-6.22.0.tgz#47b800531350a3dc69126e8c375a40655cd1eeff" 754 | dependencies: 755 | babel-preset-es2015 "^6.22.0" 756 | babel-preset-es2016 "^6.22.0" 757 | babel-preset-es2017 "^6.22.0" 758 | 759 | babel-preset-react@^6.24.1: 760 | version "6.24.1" 761 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 762 | dependencies: 763 | babel-plugin-syntax-jsx "^6.3.13" 764 | babel-plugin-transform-react-display-name "^6.23.0" 765 | babel-plugin-transform-react-jsx "^6.24.1" 766 | babel-plugin-transform-react-jsx-self "^6.22.0" 767 | babel-plugin-transform-react-jsx-source "^6.22.0" 768 | babel-preset-flow "^6.23.0" 769 | 770 | babel-preset-stage-3@^6.24.1: 771 | version "6.24.1" 772 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 773 | dependencies: 774 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 775 | babel-plugin-transform-async-generator-functions "^6.24.1" 776 | babel-plugin-transform-async-to-generator "^6.24.1" 777 | babel-plugin-transform-exponentiation-operator "^6.24.1" 778 | babel-plugin-transform-object-rest-spread "^6.22.0" 779 | 780 | babel-register@^6.24.1: 781 | version "6.24.1" 782 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 783 | dependencies: 784 | babel-core "^6.24.1" 785 | babel-runtime "^6.22.0" 786 | core-js "^2.4.0" 787 | home-or-tmp "^2.0.0" 788 | lodash "^4.2.0" 789 | mkdirp "^0.5.1" 790 | source-map-support "^0.4.2" 791 | 792 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 793 | version "6.22.0" 794 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.22.0.tgz#1cf8b4ac67c77a4ddb0db2ae1f74de52ac4ca611" 795 | dependencies: 796 | core-js "^2.4.0" 797 | regenerator-runtime "^0.10.0" 798 | 799 | babel-template@^6.16.0, babel-template@^6.22.0, babel-template@^6.23.0, babel-template@^6.24.1, babel-template@^6.25.0: 800 | version "6.25.0" 801 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" 802 | dependencies: 803 | babel-runtime "^6.22.0" 804 | babel-traverse "^6.25.0" 805 | babel-types "^6.25.0" 806 | babylon "^6.17.2" 807 | lodash "^4.2.0" 808 | 809 | babel-traverse@^6.18.0, babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.24.1, babel-traverse@^6.25.0: 810 | version "6.25.0" 811 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" 812 | dependencies: 813 | babel-code-frame "^6.22.0" 814 | babel-messages "^6.23.0" 815 | babel-runtime "^6.22.0" 816 | babel-types "^6.25.0" 817 | babylon "^6.17.2" 818 | debug "^2.2.0" 819 | globals "^9.0.0" 820 | invariant "^2.2.0" 821 | lodash "^4.2.0" 822 | 823 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23.0, babel-types@^6.24.1, babel-types@^6.25.0: 824 | version "6.25.0" 825 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" 826 | dependencies: 827 | babel-runtime "^6.22.0" 828 | esutils "^2.0.2" 829 | lodash "^4.2.0" 830 | to-fast-properties "^1.0.1" 831 | 832 | babylon@^6.17.2, babylon@^6.17.4: 833 | version "6.17.4" 834 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 835 | 836 | balanced-match@^0.4.1: 837 | version "0.4.2" 838 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 839 | 840 | base64-js@^1.0.2: 841 | version "1.2.0" 842 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 843 | 844 | bcrypt-pbkdf@^1.0.0: 845 | version "1.0.1" 846 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 847 | dependencies: 848 | tweetnacl "^0.14.3" 849 | 850 | big.js@^3.1.3: 851 | version "3.1.3" 852 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 853 | 854 | binary-extensions@^1.0.0: 855 | version "1.8.0" 856 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 857 | 858 | block-stream@*: 859 | version "0.0.9" 860 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 861 | dependencies: 862 | inherits "~2.0.0" 863 | 864 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 865 | version "4.11.6" 866 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" 867 | 868 | boolbase@~1.0.0: 869 | version "1.0.0" 870 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 871 | 872 | boom@2.x.x: 873 | version "2.10.1" 874 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 875 | dependencies: 876 | hoek "2.x.x" 877 | 878 | brace-expansion@^1.0.0: 879 | version "1.1.6" 880 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 881 | dependencies: 882 | balanced-match "^0.4.1" 883 | concat-map "0.0.1" 884 | 885 | braces@^1.8.2: 886 | version "1.8.5" 887 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 888 | dependencies: 889 | expand-range "^1.8.1" 890 | preserve "^0.2.0" 891 | repeat-element "^1.1.2" 892 | 893 | brorand@^1.0.1: 894 | version "1.0.7" 895 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.0.7.tgz#6677fa5e4901bdbf9c9ec2a748e28dca407a9bfc" 896 | 897 | browser-resolve@^1.11.2: 898 | version "1.11.2" 899 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 900 | dependencies: 901 | resolve "1.1.7" 902 | 903 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 904 | version "1.0.6" 905 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 906 | dependencies: 907 | buffer-xor "^1.0.2" 908 | cipher-base "^1.0.0" 909 | create-hash "^1.1.0" 910 | evp_bytestokey "^1.0.0" 911 | inherits "^2.0.1" 912 | 913 | browserify-cipher@^1.0.0: 914 | version "1.0.0" 915 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 916 | dependencies: 917 | browserify-aes "^1.0.4" 918 | browserify-des "^1.0.0" 919 | evp_bytestokey "^1.0.0" 920 | 921 | browserify-des@^1.0.0: 922 | version "1.0.0" 923 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 924 | dependencies: 925 | cipher-base "^1.0.1" 926 | des.js "^1.0.0" 927 | inherits "^2.0.1" 928 | 929 | browserify-rsa@^4.0.0: 930 | version "4.0.1" 931 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 932 | dependencies: 933 | bn.js "^4.1.0" 934 | randombytes "^2.0.1" 935 | 936 | browserify-sign@^4.0.0: 937 | version "4.0.0" 938 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.0.tgz#10773910c3c206d5420a46aad8694f820b85968f" 939 | dependencies: 940 | bn.js "^4.1.1" 941 | browserify-rsa "^4.0.0" 942 | create-hash "^1.1.0" 943 | create-hmac "^1.1.2" 944 | elliptic "^6.0.0" 945 | inherits "^2.0.1" 946 | parse-asn1 "^5.0.0" 947 | 948 | browserify-zlib@^0.1.4: 949 | version "0.1.4" 950 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 951 | dependencies: 952 | pako "~0.2.0" 953 | 954 | bser@1.0.2: 955 | version "1.0.2" 956 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 957 | dependencies: 958 | node-int64 "^0.4.0" 959 | 960 | bser@^2.0.0: 961 | version "2.0.0" 962 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 963 | dependencies: 964 | node-int64 "^0.4.0" 965 | 966 | buffer-shims@^1.0.0: 967 | version "1.0.0" 968 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 969 | 970 | buffer-xor@^1.0.2: 971 | version "1.0.3" 972 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 973 | 974 | buffer@^4.3.0: 975 | version "4.9.1" 976 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 977 | dependencies: 978 | base64-js "^1.0.2" 979 | ieee754 "^1.1.4" 980 | isarray "^1.0.0" 981 | 982 | builtin-modules@^1.0.0: 983 | version "1.1.1" 984 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 985 | 986 | builtin-status-codes@^3.0.0: 987 | version "3.0.0" 988 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 989 | 990 | callsites@^2.0.0: 991 | version "2.0.0" 992 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 993 | 994 | camelcase@^1.0.2: 995 | version "1.2.1" 996 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 997 | 998 | camelcase@^3.0.0: 999 | version "3.0.0" 1000 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 1001 | 1002 | caseless@~0.11.0: 1003 | version "0.11.0" 1004 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 1005 | 1006 | center-align@^0.1.1: 1007 | version "0.1.3" 1008 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 1009 | dependencies: 1010 | align-text "^0.1.3" 1011 | lazy-cache "^1.0.3" 1012 | 1013 | chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 1014 | version "1.1.3" 1015 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1016 | dependencies: 1017 | ansi-styles "^2.2.1" 1018 | escape-string-regexp "^1.0.2" 1019 | has-ansi "^2.0.0" 1020 | strip-ansi "^3.0.0" 1021 | supports-color "^2.0.0" 1022 | 1023 | change-emitter@^0.1.2: 1024 | version "0.1.2" 1025 | resolved "https://registry.yarnpkg.com/change-emitter/-/change-emitter-0.1.2.tgz#6b88ca4d5d864e516f913421b11899a860aee8db" 1026 | 1027 | cheerio@^0.22.0: 1028 | version "0.22.0" 1029 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" 1030 | dependencies: 1031 | css-select "~1.2.0" 1032 | dom-serializer "~0.1.0" 1033 | entities "~1.1.1" 1034 | htmlparser2 "^3.9.1" 1035 | lodash.assignin "^4.0.9" 1036 | lodash.bind "^4.1.4" 1037 | lodash.defaults "^4.0.1" 1038 | lodash.filter "^4.4.0" 1039 | lodash.flatten "^4.2.0" 1040 | lodash.foreach "^4.3.0" 1041 | lodash.map "^4.4.0" 1042 | lodash.merge "^4.4.0" 1043 | lodash.pick "^4.2.1" 1044 | lodash.reduce "^4.4.0" 1045 | lodash.reject "^4.4.0" 1046 | lodash.some "^4.4.0" 1047 | 1048 | chokidar@^1.4.3, chokidar@^1.6.1: 1049 | version "1.6.1" 1050 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 1051 | dependencies: 1052 | anymatch "^1.3.0" 1053 | async-each "^1.0.0" 1054 | glob-parent "^2.0.0" 1055 | inherits "^2.0.1" 1056 | is-binary-path "^1.0.0" 1057 | is-glob "^2.0.0" 1058 | path-is-absolute "^1.0.0" 1059 | readdirp "^2.0.0" 1060 | optionalDependencies: 1061 | fsevents "^1.0.0" 1062 | 1063 | ci-info@^1.0.0: 1064 | version "1.0.0" 1065 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 1066 | 1067 | cipher-base@^1.0.0, cipher-base@^1.0.1: 1068 | version "1.0.3" 1069 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" 1070 | dependencies: 1071 | inherits "^2.0.1" 1072 | 1073 | cliui@^2.1.0: 1074 | version "2.1.0" 1075 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1076 | dependencies: 1077 | center-align "^0.1.1" 1078 | right-align "^0.1.1" 1079 | wordwrap "0.0.2" 1080 | 1081 | cliui@^3.2.0: 1082 | version "3.2.0" 1083 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1084 | dependencies: 1085 | string-width "^1.0.1" 1086 | strip-ansi "^3.0.1" 1087 | wrap-ansi "^2.0.0" 1088 | 1089 | co@^4.6.0: 1090 | version "4.6.0" 1091 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1092 | 1093 | code-point-at@^1.0.0: 1094 | version "1.1.0" 1095 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1096 | 1097 | color-convert@^1.0.0: 1098 | version "1.9.0" 1099 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 1100 | dependencies: 1101 | color-name "^1.1.1" 1102 | 1103 | color-name@^1.1.1: 1104 | version "1.1.2" 1105 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 1106 | 1107 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1108 | version "1.0.5" 1109 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1110 | dependencies: 1111 | delayed-stream "~1.0.0" 1112 | 1113 | commander@^2.8.1, commander@^2.9.0: 1114 | version "2.9.0" 1115 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1116 | dependencies: 1117 | graceful-readlink ">= 1.0.0" 1118 | 1119 | commondir@^1.0.1: 1120 | version "1.0.1" 1121 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1122 | 1123 | concat-map@0.0.1: 1124 | version "0.0.1" 1125 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1126 | 1127 | console-browserify@^1.1.0: 1128 | version "1.1.0" 1129 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 1130 | dependencies: 1131 | date-now "^0.1.4" 1132 | 1133 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1134 | version "1.1.0" 1135 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1136 | 1137 | constants-browserify@^1.0.0: 1138 | version "1.0.0" 1139 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 1140 | 1141 | content-type-parser@^1.0.1: 1142 | version "1.0.1" 1143 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 1144 | 1145 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 1146 | version "1.4.0" 1147 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.4.0.tgz#e3dad195bf61bfe13a7a3c73e9876ec14a0268f3" 1148 | 1149 | core-js@^1.0.0: 1150 | version "1.2.7" 1151 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1152 | 1153 | core-js@^2.4.0: 1154 | version "2.4.1" 1155 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1156 | 1157 | core-util-is@~1.0.0: 1158 | version "1.0.2" 1159 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1160 | 1161 | create-ecdh@^4.0.0: 1162 | version "4.0.0" 1163 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 1164 | dependencies: 1165 | bn.js "^4.1.0" 1166 | elliptic "^6.0.0" 1167 | 1168 | create-hash@^1.1.0, create-hash@^1.1.1: 1169 | version "1.1.2" 1170 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad" 1171 | dependencies: 1172 | cipher-base "^1.0.1" 1173 | inherits "^2.0.1" 1174 | ripemd160 "^1.0.0" 1175 | sha.js "^2.3.6" 1176 | 1177 | create-hmac@^1.1.0, create-hmac@^1.1.2: 1178 | version "1.1.4" 1179 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" 1180 | dependencies: 1181 | create-hash "^1.1.0" 1182 | inherits "^2.0.1" 1183 | 1184 | cryptiles@2.x.x: 1185 | version "2.0.5" 1186 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1187 | dependencies: 1188 | boom "2.x.x" 1189 | 1190 | crypto-browserify@^3.11.0: 1191 | version "3.11.0" 1192 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" 1193 | dependencies: 1194 | browserify-cipher "^1.0.0" 1195 | browserify-sign "^4.0.0" 1196 | create-ecdh "^4.0.0" 1197 | create-hash "^1.1.0" 1198 | create-hmac "^1.1.0" 1199 | diffie-hellman "^5.0.0" 1200 | inherits "^2.0.1" 1201 | pbkdf2 "^3.0.3" 1202 | public-encrypt "^4.0.0" 1203 | randombytes "^2.0.0" 1204 | 1205 | css-select@~1.2.0: 1206 | version "1.2.0" 1207 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" 1208 | dependencies: 1209 | boolbase "~1.0.0" 1210 | css-what "2.1" 1211 | domutils "1.5.1" 1212 | nth-check "~1.0.1" 1213 | 1214 | css-what@2.1: 1215 | version "2.1.0" 1216 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" 1217 | 1218 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 1219 | version "0.3.2" 1220 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1221 | 1222 | "cssstyle@>= 0.2.37 < 0.3.0": 1223 | version "0.2.37" 1224 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1225 | dependencies: 1226 | cssom "0.3.x" 1227 | 1228 | dashdash@^1.12.0: 1229 | version "1.14.1" 1230 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1231 | dependencies: 1232 | assert-plus "^1.0.0" 1233 | 1234 | date-now@^0.1.4: 1235 | version "0.1.4" 1236 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1237 | 1238 | debug@^2.1.1, debug@^2.2.0: 1239 | version "2.6.1" 1240 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351" 1241 | dependencies: 1242 | ms "0.7.2" 1243 | 1244 | debug@^2.6.3: 1245 | version "2.6.8" 1246 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1247 | dependencies: 1248 | ms "2.0.0" 1249 | 1250 | debug@~2.2.0: 1251 | version "2.2.0" 1252 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1253 | dependencies: 1254 | ms "0.7.1" 1255 | 1256 | decamelize@^1.0.0, decamelize@^1.1.1: 1257 | version "1.2.0" 1258 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1259 | 1260 | deep-extend@~0.4.0: 1261 | version "0.4.1" 1262 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1263 | 1264 | deep-is@~0.1.3: 1265 | version "0.1.3" 1266 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1267 | 1268 | default-require-extensions@^1.0.0: 1269 | version "1.0.0" 1270 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1271 | dependencies: 1272 | strip-bom "^2.0.0" 1273 | 1274 | define-properties@^1.1.2: 1275 | version "1.1.2" 1276 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1277 | dependencies: 1278 | foreach "^2.0.5" 1279 | object-keys "^1.0.8" 1280 | 1281 | delayed-stream@~1.0.0: 1282 | version "1.0.0" 1283 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1284 | 1285 | delegates@^1.0.0: 1286 | version "1.0.0" 1287 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1288 | 1289 | des.js@^1.0.0: 1290 | version "1.0.0" 1291 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1292 | dependencies: 1293 | inherits "^2.0.1" 1294 | minimalistic-assert "^1.0.0" 1295 | 1296 | detect-indent@^4.0.0: 1297 | version "4.0.0" 1298 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1299 | dependencies: 1300 | repeating "^2.0.0" 1301 | 1302 | diff@^3.2.0: 1303 | version "3.3.0" 1304 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.0.tgz#056695150d7aa93237ca7e378ac3b1682b7963b9" 1305 | 1306 | diffie-hellman@^5.0.0: 1307 | version "5.0.2" 1308 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1309 | dependencies: 1310 | bn.js "^4.1.0" 1311 | miller-rabin "^4.0.0" 1312 | randombytes "^2.0.0" 1313 | 1314 | dom-serializer@0, dom-serializer@~0.1.0: 1315 | version "0.1.0" 1316 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 1317 | dependencies: 1318 | domelementtype "~1.1.1" 1319 | entities "~1.1.1" 1320 | 1321 | domain-browser@^1.1.1: 1322 | version "1.1.7" 1323 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1324 | 1325 | domelementtype@1, domelementtype@^1.3.0: 1326 | version "1.3.0" 1327 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 1328 | 1329 | domelementtype@~1.1.1: 1330 | version "1.1.3" 1331 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 1332 | 1333 | domhandler@^2.3.0: 1334 | version "2.3.0" 1335 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.3.0.tgz#2de59a0822d5027fabff6f032c2b25a2a8abe738" 1336 | dependencies: 1337 | domelementtype "1" 1338 | 1339 | domutils@1.5.1, domutils@^1.5.1: 1340 | version "1.5.1" 1341 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 1342 | dependencies: 1343 | dom-serializer "0" 1344 | domelementtype "1" 1345 | 1346 | ecc-jsbn@~0.1.1: 1347 | version "0.1.1" 1348 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1349 | dependencies: 1350 | jsbn "~0.1.0" 1351 | 1352 | elliptic@^6.0.0: 1353 | version "6.3.3" 1354 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.3.3.tgz#5482d9646d54bcb89fd7d994fc9e2e9568876e3f" 1355 | dependencies: 1356 | bn.js "^4.4.0" 1357 | brorand "^1.0.1" 1358 | hash.js "^1.0.0" 1359 | inherits "^2.0.1" 1360 | 1361 | emojis-list@^2.0.0: 1362 | version "2.1.0" 1363 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1364 | 1365 | encoding@^0.1.11: 1366 | version "0.1.12" 1367 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1368 | dependencies: 1369 | iconv-lite "~0.4.13" 1370 | 1371 | enhanced-resolve@^3.0.0: 1372 | version "3.1.0" 1373 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.1.0.tgz#9f4b626f577245edcf4b2ad83d86e17f4f421dec" 1374 | dependencies: 1375 | graceful-fs "^4.1.2" 1376 | memory-fs "^0.4.0" 1377 | object-assign "^4.0.1" 1378 | tapable "^0.2.5" 1379 | 1380 | entities@^1.1.1, entities@~1.1.1: 1381 | version "1.1.1" 1382 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 1383 | 1384 | enzyme@^2.7.1: 1385 | version "2.7.1" 1386 | resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-2.7.1.tgz#76370e1d99e91f73091bb8c4314b7c128cc2d621" 1387 | dependencies: 1388 | cheerio "^0.22.0" 1389 | function.prototype.name "^1.0.0" 1390 | is-subset "^0.1.1" 1391 | lodash "^4.17.2" 1392 | object-is "^1.0.1" 1393 | object.assign "^4.0.4" 1394 | object.entries "^1.0.3" 1395 | object.values "^1.0.3" 1396 | uuid "^2.0.3" 1397 | 1398 | "errno@>=0.1.1 <0.2.0-0", errno@^0.1.3: 1399 | version "0.1.4" 1400 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1401 | dependencies: 1402 | prr "~0.0.0" 1403 | 1404 | error-ex@^1.2.0: 1405 | version "1.3.0" 1406 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 1407 | dependencies: 1408 | is-arrayish "^0.2.1" 1409 | 1410 | es-abstract@^1.6.1: 1411 | version "1.7.0" 1412 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 1413 | dependencies: 1414 | es-to-primitive "^1.1.1" 1415 | function-bind "^1.1.0" 1416 | is-callable "^1.1.3" 1417 | is-regex "^1.0.3" 1418 | 1419 | es-to-primitive@^1.1.1: 1420 | version "1.1.1" 1421 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1422 | dependencies: 1423 | is-callable "^1.1.1" 1424 | is-date-object "^1.0.1" 1425 | is-symbol "^1.0.1" 1426 | 1427 | escape-string-regexp@^1.0.2: 1428 | version "1.0.5" 1429 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1430 | 1431 | escodegen@^1.6.1: 1432 | version "1.8.1" 1433 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1434 | dependencies: 1435 | esprima "^2.7.1" 1436 | estraverse "^1.9.1" 1437 | esutils "^2.0.2" 1438 | optionator "^0.8.1" 1439 | optionalDependencies: 1440 | source-map "~0.2.0" 1441 | 1442 | esprima@^2.7.1: 1443 | version "2.7.3" 1444 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1445 | 1446 | esprima@^3.1.1: 1447 | version "3.1.3" 1448 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1449 | 1450 | estraverse@^1.9.1: 1451 | version "1.9.3" 1452 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1453 | 1454 | esutils@^2.0.0, esutils@^2.0.2: 1455 | version "2.0.2" 1456 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1457 | 1458 | events@^1.0.0: 1459 | version "1.1.1" 1460 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1461 | 1462 | evp_bytestokey@^1.0.0: 1463 | version "1.0.0" 1464 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" 1465 | dependencies: 1466 | create-hash "^1.1.1" 1467 | 1468 | exec-sh@^0.2.0: 1469 | version "0.2.0" 1470 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1471 | dependencies: 1472 | merge "^1.1.3" 1473 | 1474 | expand-brackets@^0.1.4: 1475 | version "0.1.5" 1476 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1477 | dependencies: 1478 | is-posix-bracket "^0.1.0" 1479 | 1480 | expand-range@^1.8.1: 1481 | version "1.8.2" 1482 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1483 | dependencies: 1484 | fill-range "^2.1.0" 1485 | 1486 | extend@~3.0.0: 1487 | version "3.0.0" 1488 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1489 | 1490 | extglob@^0.3.1: 1491 | version "0.3.2" 1492 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1493 | dependencies: 1494 | is-extglob "^1.0.0" 1495 | 1496 | extsprintf@1.0.2: 1497 | version "1.0.2" 1498 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1499 | 1500 | fast-levenshtein@~2.0.4: 1501 | version "2.0.6" 1502 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1503 | 1504 | fb-watchman@^1.8.0: 1505 | version "1.9.2" 1506 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1507 | dependencies: 1508 | bser "1.0.2" 1509 | 1510 | fb-watchman@^2.0.0: 1511 | version "2.0.0" 1512 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1513 | dependencies: 1514 | bser "^2.0.0" 1515 | 1516 | fbjs@^0.8.1, fbjs@^0.8.4: 1517 | version "0.8.9" 1518 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.9.tgz#180247fbd347dcc9004517b904f865400a0c8f14" 1519 | dependencies: 1520 | core-js "^1.0.0" 1521 | isomorphic-fetch "^2.1.1" 1522 | loose-envify "^1.0.0" 1523 | object-assign "^4.1.0" 1524 | promise "^7.1.1" 1525 | setimmediate "^1.0.5" 1526 | ua-parser-js "^0.7.9" 1527 | 1528 | filename-regex@^2.0.0: 1529 | version "2.0.0" 1530 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1531 | 1532 | fileset@^2.0.2: 1533 | version "2.0.3" 1534 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1535 | dependencies: 1536 | glob "^7.0.3" 1537 | minimatch "^3.0.3" 1538 | 1539 | fill-range@^2.1.0: 1540 | version "2.2.3" 1541 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1542 | dependencies: 1543 | is-number "^2.1.0" 1544 | isobject "^2.0.0" 1545 | randomatic "^1.1.3" 1546 | repeat-element "^1.1.2" 1547 | repeat-string "^1.5.2" 1548 | 1549 | find-cache-dir@^1.0.0: 1550 | version "1.0.0" 1551 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" 1552 | dependencies: 1553 | commondir "^1.0.1" 1554 | make-dir "^1.0.0" 1555 | pkg-dir "^2.0.0" 1556 | 1557 | find-up@^1.0.0: 1558 | version "1.1.2" 1559 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1560 | dependencies: 1561 | path-exists "^2.0.0" 1562 | pinkie-promise "^2.0.0" 1563 | 1564 | find-up@^2.1.0: 1565 | version "2.1.0" 1566 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1567 | dependencies: 1568 | locate-path "^2.0.0" 1569 | 1570 | for-in@^0.1.5: 1571 | version "0.1.6" 1572 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1573 | 1574 | for-own@^0.1.4: 1575 | version "0.1.4" 1576 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1577 | dependencies: 1578 | for-in "^0.1.5" 1579 | 1580 | foreach@^2.0.5: 1581 | version "2.0.5" 1582 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1583 | 1584 | forever-agent@~0.6.1: 1585 | version "0.6.1" 1586 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1587 | 1588 | form-data@~2.1.1: 1589 | version "2.1.2" 1590 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1591 | dependencies: 1592 | asynckit "^0.4.0" 1593 | combined-stream "^1.0.5" 1594 | mime-types "^2.1.12" 1595 | 1596 | fs-readdir-recursive@^1.0.0: 1597 | version "1.0.0" 1598 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1599 | 1600 | fs.realpath@^1.0.0: 1601 | version "1.0.0" 1602 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1603 | 1604 | fsevents@^1.0.0: 1605 | version "1.0.17" 1606 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.17.tgz#8537f3f12272678765b4fd6528c0f1f66f8f4558" 1607 | dependencies: 1608 | nan "^2.3.0" 1609 | node-pre-gyp "^0.6.29" 1610 | 1611 | fstream-ignore@~1.0.5: 1612 | version "1.0.5" 1613 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1614 | dependencies: 1615 | fstream "^1.0.0" 1616 | inherits "2" 1617 | minimatch "^3.0.0" 1618 | 1619 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1620 | version "1.0.10" 1621 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1622 | dependencies: 1623 | graceful-fs "^4.1.2" 1624 | inherits "~2.0.0" 1625 | mkdirp ">=0.5 0" 1626 | rimraf "2" 1627 | 1628 | function-bind@^1.0.2, function-bind@^1.1.0: 1629 | version "1.1.0" 1630 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1631 | 1632 | function.prototype.name@^1.0.0: 1633 | version "1.0.0" 1634 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.0.0.tgz#5f523ca64e491a5f95aba80cc1e391080a14482e" 1635 | dependencies: 1636 | define-properties "^1.1.2" 1637 | function-bind "^1.1.0" 1638 | is-callable "^1.1.2" 1639 | 1640 | gauge@~2.7.1: 1641 | version "2.7.3" 1642 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 1643 | dependencies: 1644 | aproba "^1.0.3" 1645 | console-control-strings "^1.0.0" 1646 | has-unicode "^2.0.0" 1647 | object-assign "^4.1.0" 1648 | signal-exit "^3.0.0" 1649 | string-width "^1.0.1" 1650 | strip-ansi "^3.0.1" 1651 | wide-align "^1.1.0" 1652 | 1653 | generate-function@^2.0.0: 1654 | version "2.0.0" 1655 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1656 | 1657 | generate-object-property@^1.1.0: 1658 | version "1.2.0" 1659 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1660 | dependencies: 1661 | is-property "^1.0.0" 1662 | 1663 | get-caller-file@^1.0.1: 1664 | version "1.0.2" 1665 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1666 | 1667 | getpass@^0.1.1: 1668 | version "0.1.6" 1669 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1670 | dependencies: 1671 | assert-plus "^1.0.0" 1672 | 1673 | glob-base@^0.3.0: 1674 | version "0.3.0" 1675 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1676 | dependencies: 1677 | glob-parent "^2.0.0" 1678 | is-glob "^2.0.0" 1679 | 1680 | glob-parent@^2.0.0: 1681 | version "2.0.0" 1682 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1683 | dependencies: 1684 | is-glob "^2.0.0" 1685 | 1686 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: 1687 | version "7.1.1" 1688 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1689 | dependencies: 1690 | fs.realpath "^1.0.0" 1691 | inflight "^1.0.4" 1692 | inherits "2" 1693 | minimatch "^3.0.2" 1694 | once "^1.3.0" 1695 | path-is-absolute "^1.0.0" 1696 | 1697 | globals@^9.0.0: 1698 | version "9.15.0" 1699 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.15.0.tgz#7a5d8fd865e69de910b090b15a87772f9423c5de" 1700 | 1701 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1702 | version "4.1.11" 1703 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1704 | 1705 | "graceful-readlink@>= 1.0.0": 1706 | version "1.0.1" 1707 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1708 | 1709 | growly@^1.3.0: 1710 | version "1.3.0" 1711 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1712 | 1713 | handlebars@^4.0.3: 1714 | version "4.0.6" 1715 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 1716 | dependencies: 1717 | async "^1.4.0" 1718 | optimist "^0.6.1" 1719 | source-map "^0.4.4" 1720 | optionalDependencies: 1721 | uglify-js "^2.6" 1722 | 1723 | har-validator@~2.0.6: 1724 | version "2.0.6" 1725 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1726 | dependencies: 1727 | chalk "^1.1.1" 1728 | commander "^2.9.0" 1729 | is-my-json-valid "^2.12.4" 1730 | pinkie-promise "^2.0.0" 1731 | 1732 | has-ansi@^2.0.0: 1733 | version "2.0.0" 1734 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1735 | dependencies: 1736 | ansi-regex "^2.0.0" 1737 | 1738 | has-flag@^1.0.0: 1739 | version "1.0.0" 1740 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1741 | 1742 | has-unicode@^2.0.0: 1743 | version "2.0.1" 1744 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1745 | 1746 | has@^1.0.1: 1747 | version "1.0.1" 1748 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1749 | dependencies: 1750 | function-bind "^1.0.2" 1751 | 1752 | hash.js@^1.0.0: 1753 | version "1.0.3" 1754 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" 1755 | dependencies: 1756 | inherits "^2.0.1" 1757 | 1758 | hawk@~3.1.3: 1759 | version "3.1.3" 1760 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1761 | dependencies: 1762 | boom "2.x.x" 1763 | cryptiles "2.x.x" 1764 | hoek "2.x.x" 1765 | sntp "1.x.x" 1766 | 1767 | hoek@2.x.x: 1768 | version "2.16.3" 1769 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1770 | 1771 | hoist-non-react-statics@^1.0.0, hoist-non-react-statics@^1.0.3: 1772 | version "1.2.0" 1773 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz#aa448cf0986d55cc40773b17174b7dd066cb7cfb" 1774 | 1775 | home-or-tmp@^2.0.0: 1776 | version "2.0.0" 1777 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1778 | dependencies: 1779 | os-homedir "^1.0.0" 1780 | os-tmpdir "^1.0.1" 1781 | 1782 | hosted-git-info@^2.1.4: 1783 | version "2.2.0" 1784 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.2.0.tgz#7a0d097863d886c0fabbdcd37bf1758d8becf8a5" 1785 | 1786 | html-encoding-sniffer@^1.0.1: 1787 | version "1.0.1" 1788 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1789 | dependencies: 1790 | whatwg-encoding "^1.0.1" 1791 | 1792 | htmlparser2@^3.9.1: 1793 | version "3.9.2" 1794 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338" 1795 | dependencies: 1796 | domelementtype "^1.3.0" 1797 | domhandler "^2.3.0" 1798 | domutils "^1.5.1" 1799 | entities "^1.1.1" 1800 | inherits "^2.0.1" 1801 | readable-stream "^2.0.2" 1802 | 1803 | http-signature@~1.1.0: 1804 | version "1.1.1" 1805 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1806 | dependencies: 1807 | assert-plus "^0.2.0" 1808 | jsprim "^1.2.2" 1809 | sshpk "^1.7.0" 1810 | 1811 | https-browserify@0.0.1: 1812 | version "0.0.1" 1813 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 1814 | 1815 | iconv-lite@0.4.13: 1816 | version "0.4.13" 1817 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1818 | 1819 | iconv-lite@~0.4.13: 1820 | version "0.4.15" 1821 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 1822 | 1823 | ieee754@^1.1.4: 1824 | version "1.1.8" 1825 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1826 | 1827 | indexof@0.0.1: 1828 | version "0.0.1" 1829 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1830 | 1831 | inflight@^1.0.4: 1832 | version "1.0.6" 1833 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1834 | dependencies: 1835 | once "^1.3.0" 1836 | wrappy "1" 1837 | 1838 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 1839 | version "2.0.3" 1840 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1841 | 1842 | inherits@2.0.1: 1843 | version "2.0.1" 1844 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1845 | 1846 | ini@~1.3.0: 1847 | version "1.3.4" 1848 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1849 | 1850 | interpret@^1.0.0: 1851 | version "1.0.1" 1852 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 1853 | 1854 | invariant@^2.0.0, invariant@^2.2.0, invariant@^2.2.2: 1855 | version "2.2.2" 1856 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1857 | dependencies: 1858 | loose-envify "^1.0.0" 1859 | 1860 | invert-kv@^1.0.0: 1861 | version "1.0.0" 1862 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1863 | 1864 | is-arrayish@^0.2.1: 1865 | version "0.2.1" 1866 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1867 | 1868 | is-binary-path@^1.0.0: 1869 | version "1.0.1" 1870 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1871 | dependencies: 1872 | binary-extensions "^1.0.0" 1873 | 1874 | is-buffer@^1.0.2: 1875 | version "1.1.4" 1876 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1877 | 1878 | is-builtin-module@^1.0.0: 1879 | version "1.0.0" 1880 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1881 | dependencies: 1882 | builtin-modules "^1.0.0" 1883 | 1884 | is-callable@^1.1.1, is-callable@^1.1.2, is-callable@^1.1.3: 1885 | version "1.1.3" 1886 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1887 | 1888 | is-ci@^1.0.10: 1889 | version "1.0.10" 1890 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1891 | dependencies: 1892 | ci-info "^1.0.0" 1893 | 1894 | is-date-object@^1.0.1: 1895 | version "1.0.1" 1896 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1897 | 1898 | is-dotfile@^1.0.0: 1899 | version "1.0.2" 1900 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1901 | 1902 | is-equal-shallow@^0.1.3: 1903 | version "0.1.3" 1904 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1905 | dependencies: 1906 | is-primitive "^2.0.0" 1907 | 1908 | is-extendable@^0.1.1: 1909 | version "0.1.1" 1910 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1911 | 1912 | is-extglob@^1.0.0: 1913 | version "1.0.0" 1914 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1915 | 1916 | is-finite@^1.0.0: 1917 | version "1.0.2" 1918 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1919 | dependencies: 1920 | number-is-nan "^1.0.0" 1921 | 1922 | is-fullwidth-code-point@^1.0.0: 1923 | version "1.0.0" 1924 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1925 | dependencies: 1926 | number-is-nan "^1.0.0" 1927 | 1928 | is-glob@^2.0.0, is-glob@^2.0.1: 1929 | version "2.0.1" 1930 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1931 | dependencies: 1932 | is-extglob "^1.0.0" 1933 | 1934 | is-my-json-valid@^2.12.4: 1935 | version "2.15.0" 1936 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 1937 | dependencies: 1938 | generate-function "^2.0.0" 1939 | generate-object-property "^1.1.0" 1940 | jsonpointer "^4.0.0" 1941 | xtend "^4.0.0" 1942 | 1943 | is-number@^2.0.2, is-number@^2.1.0: 1944 | version "2.1.0" 1945 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1946 | dependencies: 1947 | kind-of "^3.0.2" 1948 | 1949 | is-posix-bracket@^0.1.0: 1950 | version "0.1.1" 1951 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1952 | 1953 | is-primitive@^2.0.0: 1954 | version "2.0.0" 1955 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1956 | 1957 | is-property@^1.0.0: 1958 | version "1.0.2" 1959 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1960 | 1961 | is-regex@^1.0.3: 1962 | version "1.0.3" 1963 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.3.tgz#0d55182bddf9f2fde278220aec3a75642c908637" 1964 | 1965 | is-stream@^1.0.1: 1966 | version "1.1.0" 1967 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1968 | 1969 | is-subset@^0.1.1: 1970 | version "0.1.1" 1971 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" 1972 | 1973 | is-symbol@^1.0.1: 1974 | version "1.0.1" 1975 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1976 | 1977 | is-typedarray@~1.0.0: 1978 | version "1.0.0" 1979 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1980 | 1981 | is-utf8@^0.2.0: 1982 | version "0.2.1" 1983 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1984 | 1985 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1986 | version "1.0.0" 1987 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1988 | 1989 | isexe@^2.0.0: 1990 | version "2.0.0" 1991 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1992 | 1993 | isobject@^2.0.0: 1994 | version "2.1.0" 1995 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1996 | dependencies: 1997 | isarray "1.0.0" 1998 | 1999 | isomorphic-fetch@^2.1.1: 2000 | version "2.2.1" 2001 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 2002 | dependencies: 2003 | node-fetch "^1.0.1" 2004 | whatwg-fetch ">=0.10.0" 2005 | 2006 | isstream@~0.1.2: 2007 | version "0.1.2" 2008 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2009 | 2010 | istanbul-api@^1.1.1: 2011 | version "1.1.10" 2012 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.10.tgz#f27e5e7125c8de13f6a80661af78f512e5439b2b" 2013 | dependencies: 2014 | async "^2.1.4" 2015 | fileset "^2.0.2" 2016 | istanbul-lib-coverage "^1.1.1" 2017 | istanbul-lib-hook "^1.0.7" 2018 | istanbul-lib-instrument "^1.7.3" 2019 | istanbul-lib-report "^1.1.1" 2020 | istanbul-lib-source-maps "^1.2.1" 2021 | istanbul-reports "^1.1.1" 2022 | js-yaml "^3.7.0" 2023 | mkdirp "^0.5.1" 2024 | once "^1.4.0" 2025 | 2026 | istanbul-lib-coverage@^1.0.0-alpha.0, istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 2027 | version "1.1.1" 2028 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 2029 | 2030 | istanbul-lib-hook@^1.0.7: 2031 | version "1.0.7" 2032 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 2033 | dependencies: 2034 | append-transform "^0.4.0" 2035 | 2036 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.7.3: 2037 | version "1.7.3" 2038 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.3.tgz#925b239163eabdd68cc4048f52c2fa4f899ecfa7" 2039 | dependencies: 2040 | babel-generator "^6.18.0" 2041 | babel-template "^6.16.0" 2042 | babel-traverse "^6.18.0" 2043 | babel-types "^6.18.0" 2044 | babylon "^6.17.4" 2045 | istanbul-lib-coverage "^1.1.1" 2046 | semver "^5.3.0" 2047 | 2048 | istanbul-lib-report@^1.1.1: 2049 | version "1.1.1" 2050 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 2051 | dependencies: 2052 | istanbul-lib-coverage "^1.1.1" 2053 | mkdirp "^0.5.1" 2054 | path-parse "^1.0.5" 2055 | supports-color "^3.1.2" 2056 | 2057 | istanbul-lib-source-maps@^1.1.0: 2058 | version "1.1.0" 2059 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.1.0.tgz#9d429218f35b823560ea300a96ff0c3bbdab785f" 2060 | dependencies: 2061 | istanbul-lib-coverage "^1.0.0-alpha.0" 2062 | mkdirp "^0.5.1" 2063 | rimraf "^2.4.4" 2064 | source-map "^0.5.3" 2065 | 2066 | istanbul-lib-source-maps@^1.2.1: 2067 | version "1.2.1" 2068 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 2069 | dependencies: 2070 | debug "^2.6.3" 2071 | istanbul-lib-coverage "^1.1.1" 2072 | mkdirp "^0.5.1" 2073 | rimraf "^2.6.1" 2074 | source-map "^0.5.3" 2075 | 2076 | istanbul-reports@^1.1.1: 2077 | version "1.1.1" 2078 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.1.tgz#042be5c89e175bc3f86523caab29c014e77fee4e" 2079 | dependencies: 2080 | handlebars "^4.0.3" 2081 | 2082 | jest-changed-files@^20.0.3: 2083 | version "20.0.3" 2084 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 2085 | 2086 | jest-cli@^20.0.4: 2087 | version "20.0.4" 2088 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 2089 | dependencies: 2090 | ansi-escapes "^1.4.0" 2091 | callsites "^2.0.0" 2092 | chalk "^1.1.3" 2093 | graceful-fs "^4.1.11" 2094 | is-ci "^1.0.10" 2095 | istanbul-api "^1.1.1" 2096 | istanbul-lib-coverage "^1.0.1" 2097 | istanbul-lib-instrument "^1.4.2" 2098 | istanbul-lib-source-maps "^1.1.0" 2099 | jest-changed-files "^20.0.3" 2100 | jest-config "^20.0.4" 2101 | jest-docblock "^20.0.3" 2102 | jest-environment-jsdom "^20.0.3" 2103 | jest-haste-map "^20.0.4" 2104 | jest-jasmine2 "^20.0.4" 2105 | jest-message-util "^20.0.3" 2106 | jest-regex-util "^20.0.3" 2107 | jest-resolve-dependencies "^20.0.3" 2108 | jest-runtime "^20.0.4" 2109 | jest-snapshot "^20.0.3" 2110 | jest-util "^20.0.3" 2111 | micromatch "^2.3.11" 2112 | node-notifier "^5.0.2" 2113 | pify "^2.3.0" 2114 | slash "^1.0.0" 2115 | string-length "^1.0.1" 2116 | throat "^3.0.0" 2117 | which "^1.2.12" 2118 | worker-farm "^1.3.1" 2119 | yargs "^7.0.2" 2120 | 2121 | jest-config@^20.0.4: 2122 | version "20.0.4" 2123 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 2124 | dependencies: 2125 | chalk "^1.1.3" 2126 | glob "^7.1.1" 2127 | jest-environment-jsdom "^20.0.3" 2128 | jest-environment-node "^20.0.3" 2129 | jest-jasmine2 "^20.0.4" 2130 | jest-matcher-utils "^20.0.3" 2131 | jest-regex-util "^20.0.3" 2132 | jest-resolve "^20.0.4" 2133 | jest-validate "^20.0.3" 2134 | pretty-format "^20.0.3" 2135 | 2136 | jest-diff@^20.0.3: 2137 | version "20.0.3" 2138 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 2139 | dependencies: 2140 | chalk "^1.1.3" 2141 | diff "^3.2.0" 2142 | jest-matcher-utils "^20.0.3" 2143 | pretty-format "^20.0.3" 2144 | 2145 | jest-docblock@^20.0.3: 2146 | version "20.0.3" 2147 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 2148 | 2149 | jest-environment-jsdom@^20.0.3: 2150 | version "20.0.3" 2151 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 2152 | dependencies: 2153 | jest-mock "^20.0.3" 2154 | jest-util "^20.0.3" 2155 | jsdom "^9.12.0" 2156 | 2157 | jest-environment-node@^20.0.3: 2158 | version "20.0.3" 2159 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 2160 | dependencies: 2161 | jest-mock "^20.0.3" 2162 | jest-util "^20.0.3" 2163 | 2164 | jest-haste-map@^20.0.4: 2165 | version "20.0.4" 2166 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.4.tgz#653eb55c889ce3c021f7b94693f20a4159badf03" 2167 | dependencies: 2168 | fb-watchman "^2.0.0" 2169 | graceful-fs "^4.1.11" 2170 | jest-docblock "^20.0.3" 2171 | micromatch "^2.3.11" 2172 | sane "~1.6.0" 2173 | worker-farm "^1.3.1" 2174 | 2175 | jest-jasmine2@^20.0.4: 2176 | version "20.0.4" 2177 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 2178 | dependencies: 2179 | chalk "^1.1.3" 2180 | graceful-fs "^4.1.11" 2181 | jest-diff "^20.0.3" 2182 | jest-matcher-utils "^20.0.3" 2183 | jest-matchers "^20.0.3" 2184 | jest-message-util "^20.0.3" 2185 | jest-snapshot "^20.0.3" 2186 | once "^1.4.0" 2187 | p-map "^1.1.1" 2188 | 2189 | jest-matcher-utils@^20.0.3: 2190 | version "20.0.3" 2191 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 2192 | dependencies: 2193 | chalk "^1.1.3" 2194 | pretty-format "^20.0.3" 2195 | 2196 | jest-matchers@^20.0.3: 2197 | version "20.0.3" 2198 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 2199 | dependencies: 2200 | jest-diff "^20.0.3" 2201 | jest-matcher-utils "^20.0.3" 2202 | jest-message-util "^20.0.3" 2203 | jest-regex-util "^20.0.3" 2204 | 2205 | jest-message-util@^20.0.3: 2206 | version "20.0.3" 2207 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 2208 | dependencies: 2209 | chalk "^1.1.3" 2210 | micromatch "^2.3.11" 2211 | slash "^1.0.0" 2212 | 2213 | jest-mock@^20.0.3: 2214 | version "20.0.3" 2215 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 2216 | 2217 | jest-regex-util@^20.0.3: 2218 | version "20.0.3" 2219 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 2220 | 2221 | jest-resolve-dependencies@^20.0.3: 2222 | version "20.0.3" 2223 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 2224 | dependencies: 2225 | jest-regex-util "^20.0.3" 2226 | 2227 | jest-resolve@^20.0.4: 2228 | version "20.0.4" 2229 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 2230 | dependencies: 2231 | browser-resolve "^1.11.2" 2232 | is-builtin-module "^1.0.0" 2233 | resolve "^1.3.2" 2234 | 2235 | jest-runtime@^20.0.4: 2236 | version "20.0.4" 2237 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 2238 | dependencies: 2239 | babel-core "^6.0.0" 2240 | babel-jest "^20.0.3" 2241 | babel-plugin-istanbul "^4.0.0" 2242 | chalk "^1.1.3" 2243 | convert-source-map "^1.4.0" 2244 | graceful-fs "^4.1.11" 2245 | jest-config "^20.0.4" 2246 | jest-haste-map "^20.0.4" 2247 | jest-regex-util "^20.0.3" 2248 | jest-resolve "^20.0.4" 2249 | jest-util "^20.0.3" 2250 | json-stable-stringify "^1.0.1" 2251 | micromatch "^2.3.11" 2252 | strip-bom "3.0.0" 2253 | yargs "^7.0.2" 2254 | 2255 | jest-snapshot@^20.0.3: 2256 | version "20.0.3" 2257 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 2258 | dependencies: 2259 | chalk "^1.1.3" 2260 | jest-diff "^20.0.3" 2261 | jest-matcher-utils "^20.0.3" 2262 | jest-util "^20.0.3" 2263 | natural-compare "^1.4.0" 2264 | pretty-format "^20.0.3" 2265 | 2266 | jest-util@^20.0.3: 2267 | version "20.0.3" 2268 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 2269 | dependencies: 2270 | chalk "^1.1.3" 2271 | graceful-fs "^4.1.11" 2272 | jest-message-util "^20.0.3" 2273 | jest-mock "^20.0.3" 2274 | jest-validate "^20.0.3" 2275 | leven "^2.1.0" 2276 | mkdirp "^0.5.1" 2277 | 2278 | jest-validate@^20.0.3: 2279 | version "20.0.3" 2280 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 2281 | dependencies: 2282 | chalk "^1.1.3" 2283 | jest-matcher-utils "^20.0.3" 2284 | leven "^2.1.0" 2285 | pretty-format "^20.0.3" 2286 | 2287 | jest@^20.0.4: 2288 | version "20.0.4" 2289 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 2290 | dependencies: 2291 | jest-cli "^20.0.4" 2292 | 2293 | jodid25519@^1.0.0: 2294 | version "1.0.2" 2295 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2296 | dependencies: 2297 | jsbn "~0.1.0" 2298 | 2299 | js-tokens@^3.0.0: 2300 | version "3.0.1" 2301 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2302 | 2303 | js-yaml@^3.7.0: 2304 | version "3.8.1" 2305 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.1.tgz#782ba50200be7b9e5a8537001b7804db3ad02628" 2306 | dependencies: 2307 | argparse "^1.0.7" 2308 | esprima "^3.1.1" 2309 | 2310 | jsbn@~0.1.0: 2311 | version "0.1.1" 2312 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2313 | 2314 | jsdom@^9.12.0: 2315 | version "9.12.0" 2316 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2317 | dependencies: 2318 | abab "^1.0.3" 2319 | acorn "^4.0.4" 2320 | acorn-globals "^3.1.0" 2321 | array-equal "^1.0.0" 2322 | content-type-parser "^1.0.1" 2323 | cssom ">= 0.3.2 < 0.4.0" 2324 | cssstyle ">= 0.2.37 < 0.3.0" 2325 | escodegen "^1.6.1" 2326 | html-encoding-sniffer "^1.0.1" 2327 | nwmatcher ">= 1.3.9 < 2.0.0" 2328 | parse5 "^1.5.1" 2329 | request "^2.79.0" 2330 | sax "^1.2.1" 2331 | symbol-tree "^3.2.1" 2332 | tough-cookie "^2.3.2" 2333 | webidl-conversions "^4.0.0" 2334 | whatwg-encoding "^1.0.1" 2335 | whatwg-url "^4.3.0" 2336 | xml-name-validator "^2.0.1" 2337 | 2338 | jsesc@^1.3.0: 2339 | version "1.3.0" 2340 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2341 | 2342 | jsesc@~0.5.0: 2343 | version "0.5.0" 2344 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2345 | 2346 | json-loader@^0.5.4: 2347 | version "0.5.4" 2348 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de" 2349 | 2350 | json-schema@0.2.3: 2351 | version "0.2.3" 2352 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2353 | 2354 | json-stable-stringify@^1.0.1: 2355 | version "1.0.1" 2356 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2357 | dependencies: 2358 | jsonify "~0.0.0" 2359 | 2360 | json-stringify-safe@~5.0.1: 2361 | version "5.0.1" 2362 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2363 | 2364 | json5@^0.5.0: 2365 | version "0.5.1" 2366 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2367 | 2368 | jsonify@~0.0.0: 2369 | version "0.0.0" 2370 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2371 | 2372 | jsonpointer@^4.0.0: 2373 | version "4.0.1" 2374 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2375 | 2376 | jsprim@^1.2.2: 2377 | version "1.3.1" 2378 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 2379 | dependencies: 2380 | extsprintf "1.0.2" 2381 | json-schema "0.2.3" 2382 | verror "1.3.6" 2383 | 2384 | kind-of@^3.0.2: 2385 | version "3.1.0" 2386 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 2387 | dependencies: 2388 | is-buffer "^1.0.2" 2389 | 2390 | lazy-cache@^1.0.3: 2391 | version "1.0.4" 2392 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2393 | 2394 | lcid@^1.0.0: 2395 | version "1.0.0" 2396 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2397 | dependencies: 2398 | invert-kv "^1.0.0" 2399 | 2400 | leven@^2.1.0: 2401 | version "2.1.0" 2402 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2403 | 2404 | levn@~0.3.0: 2405 | version "0.3.0" 2406 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2407 | dependencies: 2408 | prelude-ls "~1.1.2" 2409 | type-check "~0.3.2" 2410 | 2411 | load-json-file@^1.0.0: 2412 | version "1.1.0" 2413 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2414 | dependencies: 2415 | graceful-fs "^4.1.2" 2416 | parse-json "^2.2.0" 2417 | pify "^2.0.0" 2418 | pinkie-promise "^2.0.0" 2419 | strip-bom "^2.0.0" 2420 | 2421 | loader-runner@^2.3.0: 2422 | version "2.3.0" 2423 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 2424 | 2425 | loader-utils@^0.2.16: 2426 | version "0.2.16" 2427 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.16.tgz#f08632066ed8282835dff88dfb52704765adee6d" 2428 | dependencies: 2429 | big.js "^3.1.3" 2430 | emojis-list "^2.0.0" 2431 | json5 "^0.5.0" 2432 | object-assign "^4.0.1" 2433 | 2434 | loader-utils@^1.0.2: 2435 | version "1.1.0" 2436 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 2437 | dependencies: 2438 | big.js "^3.1.3" 2439 | emojis-list "^2.0.0" 2440 | json5 "^0.5.0" 2441 | 2442 | locate-path@^2.0.0: 2443 | version "2.0.0" 2444 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2445 | dependencies: 2446 | p-locate "^2.0.0" 2447 | path-exists "^3.0.0" 2448 | 2449 | lodash-es@^4.2.0, lodash-es@^4.2.1: 2450 | version "4.17.4" 2451 | resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.4.tgz#dcc1d7552e150a0640073ba9cb31d70f032950e7" 2452 | 2453 | lodash.assignin@^4.0.9: 2454 | version "4.2.0" 2455 | resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" 2456 | 2457 | lodash.bind@^4.1.4: 2458 | version "4.2.1" 2459 | resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" 2460 | 2461 | lodash.defaults@^4.0.1: 2462 | version "4.2.0" 2463 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" 2464 | 2465 | lodash.filter@^4.4.0: 2466 | version "4.6.0" 2467 | resolved "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" 2468 | 2469 | lodash.flatten@^4.2.0: 2470 | version "4.4.0" 2471 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 2472 | 2473 | lodash.foreach@^4.3.0: 2474 | version "4.5.0" 2475 | resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" 2476 | 2477 | lodash.map@^4.4.0: 2478 | version "4.6.0" 2479 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" 2480 | 2481 | lodash.merge@^4.4.0: 2482 | version "4.6.0" 2483 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 2484 | 2485 | lodash.pick@^4.2.1: 2486 | version "4.4.0" 2487 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" 2488 | 2489 | lodash.reduce@^4.4.0: 2490 | version "4.6.0" 2491 | resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" 2492 | 2493 | lodash.reject@^4.4.0: 2494 | version "4.6.0" 2495 | resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" 2496 | 2497 | lodash.some@^4.4.0: 2498 | version "4.6.0" 2499 | resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" 2500 | 2501 | lodash@^4.14.0, lodash@^4.17.2, lodash@^4.2.0, lodash@^4.2.1: 2502 | version "4.17.4" 2503 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2504 | 2505 | longest@^1.0.1: 2506 | version "1.0.1" 2507 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2508 | 2509 | loose-envify@^1.0.0, loose-envify@^1.1.0: 2510 | version "1.3.1" 2511 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2512 | dependencies: 2513 | js-tokens "^3.0.0" 2514 | 2515 | make-dir@^1.0.0: 2516 | version "1.0.0" 2517 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978" 2518 | dependencies: 2519 | pify "^2.3.0" 2520 | 2521 | makeerror@1.0.x: 2522 | version "1.0.11" 2523 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2524 | dependencies: 2525 | tmpl "1.0.x" 2526 | 2527 | memory-fs@^0.4.0, memory-fs@~0.4.1: 2528 | version "0.4.1" 2529 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 2530 | dependencies: 2531 | errno "^0.1.3" 2532 | readable-stream "^2.0.1" 2533 | 2534 | merge@^1.1.3: 2535 | version "1.2.0" 2536 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2537 | 2538 | micromatch@^2.1.5, micromatch@^2.3.11: 2539 | version "2.3.11" 2540 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2541 | dependencies: 2542 | arr-diff "^2.0.0" 2543 | array-unique "^0.2.1" 2544 | braces "^1.8.2" 2545 | expand-brackets "^0.1.4" 2546 | extglob "^0.3.1" 2547 | filename-regex "^2.0.0" 2548 | is-extglob "^1.0.0" 2549 | is-glob "^2.0.1" 2550 | kind-of "^3.0.2" 2551 | normalize-path "^2.0.1" 2552 | object.omit "^2.0.0" 2553 | parse-glob "^3.0.4" 2554 | regex-cache "^0.4.2" 2555 | 2556 | miller-rabin@^4.0.0: 2557 | version "4.0.0" 2558 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 2559 | dependencies: 2560 | bn.js "^4.0.0" 2561 | brorand "^1.0.1" 2562 | 2563 | mime-db@~1.26.0: 2564 | version "1.26.0" 2565 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 2566 | 2567 | mime-types@^2.1.12, mime-types@~2.1.7: 2568 | version "2.1.14" 2569 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 2570 | dependencies: 2571 | mime-db "~1.26.0" 2572 | 2573 | minimalistic-assert@^1.0.0: 2574 | version "1.0.0" 2575 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 2576 | 2577 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3: 2578 | version "3.0.3" 2579 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2580 | dependencies: 2581 | brace-expansion "^1.0.0" 2582 | 2583 | minimist@0.0.8, minimist@~0.0.1: 2584 | version "0.0.8" 2585 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2586 | 2587 | minimist@^1.1.1, minimist@^1.2.0: 2588 | version "1.2.0" 2589 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2590 | 2591 | "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: 2592 | version "0.5.1" 2593 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2594 | dependencies: 2595 | minimist "0.0.8" 2596 | 2597 | ms@0.7.1: 2598 | version "0.7.1" 2599 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2600 | 2601 | ms@0.7.2: 2602 | version "0.7.2" 2603 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2604 | 2605 | ms@2.0.0: 2606 | version "2.0.0" 2607 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2608 | 2609 | nan@^2.3.0: 2610 | version "2.5.1" 2611 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 2612 | 2613 | natural-compare@^1.4.0: 2614 | version "1.4.0" 2615 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2616 | 2617 | node-fetch@^1.0.1: 2618 | version "1.6.3" 2619 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" 2620 | dependencies: 2621 | encoding "^0.1.11" 2622 | is-stream "^1.0.1" 2623 | 2624 | node-int64@^0.4.0: 2625 | version "0.4.0" 2626 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2627 | 2628 | node-libs-browser@^2.0.0: 2629 | version "2.0.0" 2630 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646" 2631 | dependencies: 2632 | assert "^1.1.1" 2633 | browserify-zlib "^0.1.4" 2634 | buffer "^4.3.0" 2635 | console-browserify "^1.1.0" 2636 | constants-browserify "^1.0.0" 2637 | crypto-browserify "^3.11.0" 2638 | domain-browser "^1.1.1" 2639 | events "^1.0.0" 2640 | https-browserify "0.0.1" 2641 | os-browserify "^0.2.0" 2642 | path-browserify "0.0.0" 2643 | process "^0.11.0" 2644 | punycode "^1.2.4" 2645 | querystring-es3 "^0.2.0" 2646 | readable-stream "^2.0.5" 2647 | stream-browserify "^2.0.1" 2648 | stream-http "^2.3.1" 2649 | string_decoder "^0.10.25" 2650 | timers-browserify "^2.0.2" 2651 | tty-browserify "0.0.0" 2652 | url "^0.11.0" 2653 | util "^0.10.3" 2654 | vm-browserify "0.0.4" 2655 | 2656 | node-notifier@^5.0.2: 2657 | version "5.1.2" 2658 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2659 | dependencies: 2660 | growly "^1.3.0" 2661 | semver "^5.3.0" 2662 | shellwords "^0.1.0" 2663 | which "^1.2.12" 2664 | 2665 | node-pre-gyp@^0.6.29: 2666 | version "0.6.33" 2667 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.33.tgz#640ac55198f6a925972e0c16c4ac26a034d5ecc9" 2668 | dependencies: 2669 | mkdirp "~0.5.1" 2670 | nopt "~3.0.6" 2671 | npmlog "^4.0.1" 2672 | rc "~1.1.6" 2673 | request "^2.79.0" 2674 | rimraf "~2.5.4" 2675 | semver "~5.3.0" 2676 | tar "~2.2.1" 2677 | tar-pack "~3.3.0" 2678 | 2679 | nopt@~3.0.6: 2680 | version "3.0.6" 2681 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2682 | dependencies: 2683 | abbrev "1" 2684 | 2685 | normalize-package-data@^2.3.2: 2686 | version "2.3.5" 2687 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 2688 | dependencies: 2689 | hosted-git-info "^2.1.4" 2690 | is-builtin-module "^1.0.0" 2691 | semver "2 || 3 || 4 || 5" 2692 | validate-npm-package-license "^3.0.1" 2693 | 2694 | normalize-path@^2.0.1: 2695 | version "2.0.1" 2696 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2697 | 2698 | npmlog@^4.0.1: 2699 | version "4.0.2" 2700 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 2701 | dependencies: 2702 | are-we-there-yet "~1.1.2" 2703 | console-control-strings "~1.1.0" 2704 | gauge "~2.7.1" 2705 | set-blocking "~2.0.0" 2706 | 2707 | nth-check@~1.0.1: 2708 | version "1.0.1" 2709 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" 2710 | dependencies: 2711 | boolbase "~1.0.0" 2712 | 2713 | number-is-nan@^1.0.0: 2714 | version "1.0.1" 2715 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2716 | 2717 | "nwmatcher@>= 1.3.9 < 2.0.0": 2718 | version "1.3.9" 2719 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 2720 | 2721 | oauth-sign@~0.8.1: 2722 | version "0.8.2" 2723 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2724 | 2725 | object-assign@^4.0.1, object-assign@^4.1.0: 2726 | version "4.1.1" 2727 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2728 | 2729 | object-is@^1.0.1: 2730 | version "1.0.1" 2731 | resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.1.tgz#0aa60ec9989a0b3ed795cf4d06f62cf1ad6539b6" 2732 | 2733 | object-keys@^1.0.10, object-keys@^1.0.8: 2734 | version "1.0.11" 2735 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2736 | 2737 | object.assign@^4.0.4: 2738 | version "4.0.4" 2739 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc" 2740 | dependencies: 2741 | define-properties "^1.1.2" 2742 | function-bind "^1.1.0" 2743 | object-keys "^1.0.10" 2744 | 2745 | object.entries@^1.0.3: 2746 | version "1.0.4" 2747 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.0.4.tgz#1bf9a4dd2288f5b33f3a993d257661f05d161a5f" 2748 | dependencies: 2749 | define-properties "^1.1.2" 2750 | es-abstract "^1.6.1" 2751 | function-bind "^1.1.0" 2752 | has "^1.0.1" 2753 | 2754 | object.omit@^2.0.0: 2755 | version "2.0.1" 2756 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2757 | dependencies: 2758 | for-own "^0.1.4" 2759 | is-extendable "^0.1.1" 2760 | 2761 | object.values@^1.0.3: 2762 | version "1.0.4" 2763 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.0.4.tgz#e524da09b4f66ff05df457546ec72ac99f13069a" 2764 | dependencies: 2765 | define-properties "^1.1.2" 2766 | es-abstract "^1.6.1" 2767 | function-bind "^1.1.0" 2768 | has "^1.0.1" 2769 | 2770 | once@^1.3.0, once@^1.4.0: 2771 | version "1.4.0" 2772 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2773 | dependencies: 2774 | wrappy "1" 2775 | 2776 | once@~1.3.3: 2777 | version "1.3.3" 2778 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2779 | dependencies: 2780 | wrappy "1" 2781 | 2782 | optimist@^0.6.1: 2783 | version "0.6.1" 2784 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2785 | dependencies: 2786 | minimist "~0.0.1" 2787 | wordwrap "~0.0.2" 2788 | 2789 | optionator@^0.8.1: 2790 | version "0.8.2" 2791 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2792 | dependencies: 2793 | deep-is "~0.1.3" 2794 | fast-levenshtein "~2.0.4" 2795 | levn "~0.3.0" 2796 | prelude-ls "~1.1.2" 2797 | type-check "~0.3.2" 2798 | wordwrap "~1.0.0" 2799 | 2800 | os-browserify@^0.2.0: 2801 | version "0.2.1" 2802 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 2803 | 2804 | os-homedir@^1.0.0: 2805 | version "1.0.2" 2806 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2807 | 2808 | os-locale@^1.4.0: 2809 | version "1.4.0" 2810 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2811 | dependencies: 2812 | lcid "^1.0.0" 2813 | 2814 | os-tmpdir@^1.0.1: 2815 | version "1.0.2" 2816 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2817 | 2818 | output-file-sync@^1.1.0: 2819 | version "1.1.2" 2820 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2821 | dependencies: 2822 | graceful-fs "^4.1.4" 2823 | mkdirp "^0.5.1" 2824 | object-assign "^4.1.0" 2825 | 2826 | p-limit@^1.1.0: 2827 | version "1.1.0" 2828 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2829 | 2830 | p-locate@^2.0.0: 2831 | version "2.0.0" 2832 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2833 | dependencies: 2834 | p-limit "^1.1.0" 2835 | 2836 | p-map@^1.1.1: 2837 | version "1.1.1" 2838 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 2839 | 2840 | pako@~0.2.0: 2841 | version "0.2.9" 2842 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 2843 | 2844 | parse-asn1@^5.0.0: 2845 | version "5.0.0" 2846 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.0.0.tgz#35060f6d5015d37628c770f4e091a0b5a278bc23" 2847 | dependencies: 2848 | asn1.js "^4.0.0" 2849 | browserify-aes "^1.0.0" 2850 | create-hash "^1.1.0" 2851 | evp_bytestokey "^1.0.0" 2852 | pbkdf2 "^3.0.3" 2853 | 2854 | parse-glob@^3.0.4: 2855 | version "3.0.4" 2856 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2857 | dependencies: 2858 | glob-base "^0.3.0" 2859 | is-dotfile "^1.0.0" 2860 | is-extglob "^1.0.0" 2861 | is-glob "^2.0.0" 2862 | 2863 | parse-json@^2.2.0: 2864 | version "2.2.0" 2865 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2866 | dependencies: 2867 | error-ex "^1.2.0" 2868 | 2869 | parse5@^1.5.1: 2870 | version "1.5.1" 2871 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2872 | 2873 | path-browserify@0.0.0: 2874 | version "0.0.0" 2875 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2876 | 2877 | path-exists@^2.0.0: 2878 | version "2.1.0" 2879 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2880 | dependencies: 2881 | pinkie-promise "^2.0.0" 2882 | 2883 | path-exists@^3.0.0: 2884 | version "3.0.0" 2885 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2886 | 2887 | path-is-absolute@^1.0.0: 2888 | version "1.0.1" 2889 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2890 | 2891 | path-parse@^1.0.5: 2892 | version "1.0.5" 2893 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2894 | 2895 | path-type@^1.0.0: 2896 | version "1.1.0" 2897 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2898 | dependencies: 2899 | graceful-fs "^4.1.2" 2900 | pify "^2.0.0" 2901 | pinkie-promise "^2.0.0" 2902 | 2903 | pbkdf2@^3.0.3: 2904 | version "3.0.9" 2905 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693" 2906 | dependencies: 2907 | create-hmac "^1.1.2" 2908 | 2909 | pify@^2.0.0, pify@^2.3.0: 2910 | version "2.3.0" 2911 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2912 | 2913 | pinkie-promise@^2.0.0: 2914 | version "2.0.1" 2915 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2916 | dependencies: 2917 | pinkie "^2.0.0" 2918 | 2919 | pinkie@^2.0.0: 2920 | version "2.0.4" 2921 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2922 | 2923 | pkg-dir@^2.0.0: 2924 | version "2.0.0" 2925 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2926 | dependencies: 2927 | find-up "^2.1.0" 2928 | 2929 | prelude-ls@~1.1.2: 2930 | version "1.1.2" 2931 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2932 | 2933 | preserve@^0.2.0: 2934 | version "0.2.0" 2935 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2936 | 2937 | pretty-format@^20.0.3: 2938 | version "20.0.3" 2939 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 2940 | dependencies: 2941 | ansi-regex "^2.1.1" 2942 | ansi-styles "^3.0.0" 2943 | 2944 | private@^0.1.6: 2945 | version "0.1.7" 2946 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2947 | 2948 | process-nextick-args@~1.0.6: 2949 | version "1.0.7" 2950 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2951 | 2952 | process@^0.11.0: 2953 | version "0.11.9" 2954 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" 2955 | 2956 | promise@^7.1.1: 2957 | version "7.1.1" 2958 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 2959 | dependencies: 2960 | asap "~2.0.3" 2961 | 2962 | prr@~0.0.0: 2963 | version "0.0.0" 2964 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2965 | 2966 | public-encrypt@^4.0.0: 2967 | version "4.0.0" 2968 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 2969 | dependencies: 2970 | bn.js "^4.1.0" 2971 | browserify-rsa "^4.0.0" 2972 | create-hash "^1.1.0" 2973 | parse-asn1 "^5.0.0" 2974 | randombytes "^2.0.1" 2975 | 2976 | punycode@1.3.2: 2977 | version "1.3.2" 2978 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2979 | 2980 | punycode@^1.2.4, punycode@^1.4.1: 2981 | version "1.4.1" 2982 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2983 | 2984 | qs@~6.3.0: 2985 | version "6.3.0" 2986 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 2987 | 2988 | querystring-es3@^0.2.0: 2989 | version "0.2.1" 2990 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2991 | 2992 | querystring@0.2.0: 2993 | version "0.2.0" 2994 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2995 | 2996 | randomatic@^1.1.3: 2997 | version "1.1.6" 2998 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2999 | dependencies: 3000 | is-number "^2.0.2" 3001 | kind-of "^3.0.2" 3002 | 3003 | randombytes@^2.0.0, randombytes@^2.0.1: 3004 | version "2.0.3" 3005 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" 3006 | 3007 | rc@~1.1.6: 3008 | version "1.1.6" 3009 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 3010 | dependencies: 3011 | deep-extend "~0.4.0" 3012 | ini "~1.3.0" 3013 | minimist "^1.2.0" 3014 | strip-json-comments "~1.0.4" 3015 | 3016 | react-addons-test-utils@^15.4.2: 3017 | version "15.4.2" 3018 | resolved "https://registry.yarnpkg.com/react-addons-test-utils/-/react-addons-test-utils-15.4.2.tgz#93bcaa718fcae7360d42e8fb1c09756cc36302a2" 3019 | dependencies: 3020 | fbjs "^0.8.4" 3021 | object-assign "^4.1.0" 3022 | 3023 | react-dom@^15.4.2: 3024 | version "15.4.2" 3025 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.4.2.tgz#015363f05b0a1fd52ae9efdd3a0060d90695208f" 3026 | dependencies: 3027 | fbjs "^0.8.1" 3028 | loose-envify "^1.1.0" 3029 | object-assign "^4.1.0" 3030 | 3031 | react-redux@^5.0.2: 3032 | version "5.0.2" 3033 | resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-5.0.2.tgz#3d9878f5f71c6fafcd45de1fbb162ea31f389814" 3034 | dependencies: 3035 | hoist-non-react-statics "^1.0.3" 3036 | invariant "^2.0.0" 3037 | lodash "^4.2.0" 3038 | lodash-es "^4.2.0" 3039 | loose-envify "^1.1.0" 3040 | 3041 | react@^15.4.2: 3042 | version "15.4.2" 3043 | resolved "https://registry.yarnpkg.com/react/-/react-15.4.2.tgz#41f7991b26185392ba9bae96c8889e7e018397ef" 3044 | dependencies: 3045 | fbjs "^0.8.4" 3046 | loose-envify "^1.1.0" 3047 | object-assign "^4.1.0" 3048 | 3049 | read-pkg-up@^1.0.1: 3050 | version "1.0.1" 3051 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3052 | dependencies: 3053 | find-up "^1.0.0" 3054 | read-pkg "^1.0.0" 3055 | 3056 | read-pkg@^1.0.0: 3057 | version "1.1.0" 3058 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3059 | dependencies: 3060 | load-json-file "^1.0.0" 3061 | normalize-package-data "^2.3.2" 3062 | path-type "^1.0.0" 3063 | 3064 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.1.0: 3065 | version "2.2.2" 3066 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 3067 | dependencies: 3068 | buffer-shims "^1.0.0" 3069 | core-util-is "~1.0.0" 3070 | inherits "~2.0.1" 3071 | isarray "~1.0.0" 3072 | process-nextick-args "~1.0.6" 3073 | string_decoder "~0.10.x" 3074 | util-deprecate "~1.0.1" 3075 | 3076 | readable-stream@~2.1.4: 3077 | version "2.1.5" 3078 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 3079 | dependencies: 3080 | buffer-shims "^1.0.0" 3081 | core-util-is "~1.0.0" 3082 | inherits "~2.0.1" 3083 | isarray "~1.0.0" 3084 | process-nextick-args "~1.0.6" 3085 | string_decoder "~0.10.x" 3086 | util-deprecate "~1.0.1" 3087 | 3088 | readdirp@^2.0.0: 3089 | version "2.1.0" 3090 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3091 | dependencies: 3092 | graceful-fs "^4.1.2" 3093 | minimatch "^3.0.2" 3094 | readable-stream "^2.0.2" 3095 | set-immediate-shim "^1.0.1" 3096 | 3097 | recompose@^0.22.0: 3098 | version "0.22.0" 3099 | resolved "https://registry.yarnpkg.com/recompose/-/recompose-0.22.0.tgz#f099d18385882ca41d9eec891718dadddc3204ef" 3100 | dependencies: 3101 | change-emitter "^0.1.2" 3102 | fbjs "^0.8.1" 3103 | hoist-non-react-statics "^1.0.0" 3104 | symbol-observable "^1.0.4" 3105 | 3106 | redux-thunk@^2.2.0: 3107 | version "2.2.0" 3108 | resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.2.0.tgz#e615a16e16b47a19a515766133d1e3e99b7852e5" 3109 | 3110 | redux@^3.6.0: 3111 | version "3.6.0" 3112 | resolved "https://registry.yarnpkg.com/redux/-/redux-3.6.0.tgz#887c2b3d0b9bd86eca2be70571c27654c19e188d" 3113 | dependencies: 3114 | lodash "^4.2.1" 3115 | lodash-es "^4.2.1" 3116 | loose-envify "^1.1.0" 3117 | symbol-observable "^1.0.2" 3118 | 3119 | regenerate@^1.2.1: 3120 | version "1.3.2" 3121 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3122 | 3123 | regenerator-runtime@^0.10.0: 3124 | version "0.10.1" 3125 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb" 3126 | 3127 | regenerator-transform@0.9.8: 3128 | version "0.9.8" 3129 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 3130 | dependencies: 3131 | babel-runtime "^6.18.0" 3132 | babel-types "^6.19.0" 3133 | private "^0.1.6" 3134 | 3135 | regex-cache@^0.4.2: 3136 | version "0.4.3" 3137 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3138 | dependencies: 3139 | is-equal-shallow "^0.1.3" 3140 | is-primitive "^2.0.0" 3141 | 3142 | regexpu-core@^2.0.0: 3143 | version "2.0.0" 3144 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3145 | dependencies: 3146 | regenerate "^1.2.1" 3147 | regjsgen "^0.2.0" 3148 | regjsparser "^0.1.4" 3149 | 3150 | regjsgen@^0.2.0: 3151 | version "0.2.0" 3152 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3153 | 3154 | regjsparser@^0.1.4: 3155 | version "0.1.5" 3156 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3157 | dependencies: 3158 | jsesc "~0.5.0" 3159 | 3160 | repeat-element@^1.1.2: 3161 | version "1.1.2" 3162 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3163 | 3164 | repeat-string@^1.5.2: 3165 | version "1.6.1" 3166 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3167 | 3168 | repeating@^2.0.0: 3169 | version "2.0.1" 3170 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3171 | dependencies: 3172 | is-finite "^1.0.0" 3173 | 3174 | request@^2.79.0: 3175 | version "2.79.0" 3176 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 3177 | dependencies: 3178 | aws-sign2 "~0.6.0" 3179 | aws4 "^1.2.1" 3180 | caseless "~0.11.0" 3181 | combined-stream "~1.0.5" 3182 | extend "~3.0.0" 3183 | forever-agent "~0.6.1" 3184 | form-data "~2.1.1" 3185 | har-validator "~2.0.6" 3186 | hawk "~3.1.3" 3187 | http-signature "~1.1.0" 3188 | is-typedarray "~1.0.0" 3189 | isstream "~0.1.2" 3190 | json-stringify-safe "~5.0.1" 3191 | mime-types "~2.1.7" 3192 | oauth-sign "~0.8.1" 3193 | qs "~6.3.0" 3194 | stringstream "~0.0.4" 3195 | tough-cookie "~2.3.0" 3196 | tunnel-agent "~0.4.1" 3197 | uuid "^3.0.0" 3198 | 3199 | require-directory@^2.1.1: 3200 | version "2.1.1" 3201 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3202 | 3203 | require-main-filename@^1.0.1: 3204 | version "1.0.1" 3205 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3206 | 3207 | resolve@1.1.7: 3208 | version "1.1.7" 3209 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3210 | 3211 | resolve@^1.3.2: 3212 | version "1.3.3" 3213 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 3214 | dependencies: 3215 | path-parse "^1.0.5" 3216 | 3217 | right-align@^0.1.1: 3218 | version "0.1.3" 3219 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3220 | dependencies: 3221 | align-text "^0.1.1" 3222 | 3223 | rimraf@2, rimraf@^2.6.1: 3224 | version "2.6.1" 3225 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3226 | dependencies: 3227 | glob "^7.0.5" 3228 | 3229 | rimraf@^2.4.4, rimraf@~2.5.1, rimraf@~2.5.4: 3230 | version "2.5.4" 3231 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 3232 | dependencies: 3233 | glob "^7.0.5" 3234 | 3235 | ripemd160@^1.0.0: 3236 | version "1.0.1" 3237 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" 3238 | 3239 | sane@~1.6.0: 3240 | version "1.6.0" 3241 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 3242 | dependencies: 3243 | anymatch "^1.3.0" 3244 | exec-sh "^0.2.0" 3245 | fb-watchman "^1.8.0" 3246 | minimatch "^3.0.2" 3247 | minimist "^1.1.1" 3248 | walker "~1.0.5" 3249 | watch "~0.10.0" 3250 | 3251 | sax@^1.2.1: 3252 | version "1.2.2" 3253 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 3254 | 3255 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@~5.3.0: 3256 | version "5.3.0" 3257 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3258 | 3259 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3260 | version "2.0.0" 3261 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3262 | 3263 | set-immediate-shim@^1.0.1: 3264 | version "1.0.1" 3265 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3266 | 3267 | setimmediate@^1.0.4, setimmediate@^1.0.5: 3268 | version "1.0.5" 3269 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3270 | 3271 | sha.js@^2.3.6: 3272 | version "2.4.8" 3273 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 3274 | dependencies: 3275 | inherits "^2.0.1" 3276 | 3277 | shellwords@^0.1.0: 3278 | version "0.1.0" 3279 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 3280 | 3281 | signal-exit@^3.0.0: 3282 | version "3.0.2" 3283 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3284 | 3285 | slash@^1.0.0: 3286 | version "1.0.0" 3287 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3288 | 3289 | sntp@1.x.x: 3290 | version "1.0.9" 3291 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3292 | dependencies: 3293 | hoek "2.x.x" 3294 | 3295 | source-list-map@~0.1.7: 3296 | version "0.1.8" 3297 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" 3298 | 3299 | source-map-support@^0.4.2: 3300 | version "0.4.11" 3301 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.11.tgz#647f939978b38535909530885303daf23279f322" 3302 | dependencies: 3303 | source-map "^0.5.3" 3304 | 3305 | source-map@^0.4.4: 3306 | version "0.4.4" 3307 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3308 | dependencies: 3309 | amdefine ">=0.0.4" 3310 | 3311 | source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.1, source-map@~0.5.3: 3312 | version "0.5.6" 3313 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3314 | 3315 | source-map@~0.2.0: 3316 | version "0.2.0" 3317 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3318 | dependencies: 3319 | amdefine ">=0.0.4" 3320 | 3321 | spdx-correct@~1.0.0: 3322 | version "1.0.2" 3323 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3324 | dependencies: 3325 | spdx-license-ids "^1.0.2" 3326 | 3327 | spdx-expression-parse@~1.0.0: 3328 | version "1.0.4" 3329 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3330 | 3331 | spdx-license-ids@^1.0.2: 3332 | version "1.2.2" 3333 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3334 | 3335 | sprintf-js@~1.0.2: 3336 | version "1.0.3" 3337 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3338 | 3339 | sshpk@^1.7.0: 3340 | version "1.10.2" 3341 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.2.tgz#d5a804ce22695515638e798dbe23273de070a5fa" 3342 | dependencies: 3343 | asn1 "~0.2.3" 3344 | assert-plus "^1.0.0" 3345 | dashdash "^1.12.0" 3346 | getpass "^0.1.1" 3347 | optionalDependencies: 3348 | bcrypt-pbkdf "^1.0.0" 3349 | ecc-jsbn "~0.1.1" 3350 | jodid25519 "^1.0.0" 3351 | jsbn "~0.1.0" 3352 | tweetnacl "~0.14.0" 3353 | 3354 | stream-browserify@^2.0.1: 3355 | version "2.0.1" 3356 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3357 | dependencies: 3358 | inherits "~2.0.1" 3359 | readable-stream "^2.0.2" 3360 | 3361 | stream-http@^2.3.1: 3362 | version "2.6.3" 3363 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.6.3.tgz#4c3ddbf9635968ea2cfd4e48d43de5def2625ac3" 3364 | dependencies: 3365 | builtin-status-codes "^3.0.0" 3366 | inherits "^2.0.1" 3367 | readable-stream "^2.1.0" 3368 | to-arraybuffer "^1.0.0" 3369 | xtend "^4.0.0" 3370 | 3371 | string-length@^1.0.1: 3372 | version "1.0.1" 3373 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 3374 | dependencies: 3375 | strip-ansi "^3.0.0" 3376 | 3377 | string-width@^1.0.1, string-width@^1.0.2: 3378 | version "1.0.2" 3379 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3380 | dependencies: 3381 | code-point-at "^1.0.0" 3382 | is-fullwidth-code-point "^1.0.0" 3383 | strip-ansi "^3.0.0" 3384 | 3385 | string_decoder@^0.10.25, string_decoder@~0.10.x: 3386 | version "0.10.31" 3387 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3388 | 3389 | stringstream@~0.0.4: 3390 | version "0.0.5" 3391 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3392 | 3393 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3394 | version "3.0.1" 3395 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3396 | dependencies: 3397 | ansi-regex "^2.0.0" 3398 | 3399 | strip-bom@3.0.0: 3400 | version "3.0.0" 3401 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3402 | 3403 | strip-bom@^2.0.0: 3404 | version "2.0.0" 3405 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3406 | dependencies: 3407 | is-utf8 "^0.2.0" 3408 | 3409 | strip-json-comments@~1.0.4: 3410 | version "1.0.4" 3411 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 3412 | 3413 | supports-color@^2.0.0: 3414 | version "2.0.0" 3415 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3416 | 3417 | supports-color@^3.1.0, supports-color@^3.1.2: 3418 | version "3.2.3" 3419 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3420 | dependencies: 3421 | has-flag "^1.0.0" 3422 | 3423 | symbol-observable@^1.0.2, symbol-observable@^1.0.4: 3424 | version "1.0.4" 3425 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3426 | 3427 | symbol-tree@^3.2.1: 3428 | version "3.2.2" 3429 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3430 | 3431 | tapable@^0.2.5, tapable@~0.2.5: 3432 | version "0.2.6" 3433 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.6.tgz#206be8e188860b514425375e6f1ae89bfb01fd8d" 3434 | 3435 | tar-pack@~3.3.0: 3436 | version "3.3.0" 3437 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 3438 | dependencies: 3439 | debug "~2.2.0" 3440 | fstream "~1.0.10" 3441 | fstream-ignore "~1.0.5" 3442 | once "~1.3.3" 3443 | readable-stream "~2.1.4" 3444 | rimraf "~2.5.1" 3445 | tar "~2.2.1" 3446 | uid-number "~0.0.6" 3447 | 3448 | tar@~2.2.1: 3449 | version "2.2.1" 3450 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3451 | dependencies: 3452 | block-stream "*" 3453 | fstream "^1.0.2" 3454 | inherits "2" 3455 | 3456 | test-exclude@^4.1.1: 3457 | version "4.1.1" 3458 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 3459 | dependencies: 3460 | arrify "^1.0.1" 3461 | micromatch "^2.3.11" 3462 | object-assign "^4.1.0" 3463 | read-pkg-up "^1.0.1" 3464 | require-main-filename "^1.0.1" 3465 | 3466 | throat@^3.0.0: 3467 | version "3.0.0" 3468 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 3469 | 3470 | timers-browserify@^2.0.2: 3471 | version "2.0.2" 3472 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86" 3473 | dependencies: 3474 | setimmediate "^1.0.4" 3475 | 3476 | tmpl@1.0.x: 3477 | version "1.0.4" 3478 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3479 | 3480 | to-arraybuffer@^1.0.0: 3481 | version "1.0.1" 3482 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3483 | 3484 | to-fast-properties@^1.0.1: 3485 | version "1.0.2" 3486 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3487 | 3488 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 3489 | version "2.3.2" 3490 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3491 | dependencies: 3492 | punycode "^1.4.1" 3493 | 3494 | tr46@~0.0.3: 3495 | version "0.0.3" 3496 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3497 | 3498 | trim-right@^1.0.1: 3499 | version "1.0.1" 3500 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3501 | 3502 | tty-browserify@0.0.0: 3503 | version "0.0.0" 3504 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3505 | 3506 | tunnel-agent@~0.4.1: 3507 | version "0.4.3" 3508 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3509 | 3510 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3511 | version "0.14.5" 3512 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3513 | 3514 | type-check@~0.3.2: 3515 | version "0.3.2" 3516 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3517 | dependencies: 3518 | prelude-ls "~1.1.2" 3519 | 3520 | ua-parser-js@^0.7.9: 3521 | version "0.7.12" 3522 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 3523 | 3524 | uglify-js@^2.6, uglify-js@^2.7.5: 3525 | version "2.7.5" 3526 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8" 3527 | dependencies: 3528 | async "~0.2.6" 3529 | source-map "~0.5.1" 3530 | uglify-to-browserify "~1.0.0" 3531 | yargs "~3.10.0" 3532 | 3533 | uglify-to-browserify@~1.0.0: 3534 | version "1.0.2" 3535 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3536 | 3537 | uid-number@~0.0.6: 3538 | version "0.0.6" 3539 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3540 | 3541 | url@^0.11.0: 3542 | version "0.11.0" 3543 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3544 | dependencies: 3545 | punycode "1.3.2" 3546 | querystring "0.2.0" 3547 | 3548 | user-home@^1.1.1: 3549 | version "1.1.1" 3550 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3551 | 3552 | util-deprecate@~1.0.1: 3553 | version "1.0.2" 3554 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3555 | 3556 | util@0.10.3, util@^0.10.3: 3557 | version "0.10.3" 3558 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3559 | dependencies: 3560 | inherits "2.0.1" 3561 | 3562 | uuid@^2.0.3: 3563 | version "2.0.3" 3564 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3565 | 3566 | uuid@^3.0.0: 3567 | version "3.0.1" 3568 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3569 | 3570 | v8flags@^2.0.10: 3571 | version "2.1.1" 3572 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3573 | dependencies: 3574 | user-home "^1.1.1" 3575 | 3576 | validate-npm-package-license@^3.0.1: 3577 | version "3.0.1" 3578 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3579 | dependencies: 3580 | spdx-correct "~1.0.0" 3581 | spdx-expression-parse "~1.0.0" 3582 | 3583 | verror@1.3.6: 3584 | version "1.3.6" 3585 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3586 | dependencies: 3587 | extsprintf "1.0.2" 3588 | 3589 | vm-browserify@0.0.4: 3590 | version "0.0.4" 3591 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 3592 | dependencies: 3593 | indexof "0.0.1" 3594 | 3595 | walker@~1.0.5: 3596 | version "1.0.7" 3597 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3598 | dependencies: 3599 | makeerror "1.0.x" 3600 | 3601 | watch@~0.10.0: 3602 | version "0.10.0" 3603 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 3604 | 3605 | watchpack@^1.2.0: 3606 | version "1.2.1" 3607 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.2.1.tgz#01efa80c5c29e5c56ba55d6f5470a35b6402f0b2" 3608 | dependencies: 3609 | async "^2.1.2" 3610 | chokidar "^1.4.3" 3611 | graceful-fs "^4.1.2" 3612 | 3613 | webidl-conversions@^3.0.0: 3614 | version "3.0.1" 3615 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3616 | 3617 | webidl-conversions@^4.0.0: 3618 | version "4.0.0" 3619 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.0.tgz#0a8c727ae4e5649687b7742368dcfbf13ed40118" 3620 | 3621 | webpack-sources@^0.1.4: 3622 | version "0.1.4" 3623 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.1.4.tgz#ccc2c817e08e5fa393239412690bb481821393cd" 3624 | dependencies: 3625 | source-list-map "~0.1.7" 3626 | source-map "~0.5.3" 3627 | 3628 | webpack@^2.2.1: 3629 | version "2.2.1" 3630 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.2.1.tgz#7bb1d72ae2087dd1a4af526afec15eed17dda475" 3631 | dependencies: 3632 | acorn "^4.0.4" 3633 | acorn-dynamic-import "^2.0.0" 3634 | ajv "^4.7.0" 3635 | ajv-keywords "^1.1.1" 3636 | async "^2.1.2" 3637 | enhanced-resolve "^3.0.0" 3638 | interpret "^1.0.0" 3639 | json-loader "^0.5.4" 3640 | loader-runner "^2.3.0" 3641 | loader-utils "^0.2.16" 3642 | memory-fs "~0.4.1" 3643 | mkdirp "~0.5.0" 3644 | node-libs-browser "^2.0.0" 3645 | source-map "^0.5.3" 3646 | supports-color "^3.1.0" 3647 | tapable "~0.2.5" 3648 | uglify-js "^2.7.5" 3649 | watchpack "^1.2.0" 3650 | webpack-sources "^0.1.4" 3651 | yargs "^6.0.0" 3652 | 3653 | whatwg-encoding@^1.0.1: 3654 | version "1.0.1" 3655 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3656 | dependencies: 3657 | iconv-lite "0.4.13" 3658 | 3659 | whatwg-fetch@>=0.10.0: 3660 | version "2.0.2" 3661 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.2.tgz#fe294d1d89e36c5be8b3195057f2e4bc74fc980e" 3662 | 3663 | whatwg-url@^4.3.0: 3664 | version "4.3.0" 3665 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.3.0.tgz#92aaee21f4f2a642074357d70ef8500a7cbb171a" 3666 | dependencies: 3667 | tr46 "~0.0.3" 3668 | webidl-conversions "^3.0.0" 3669 | 3670 | which-module@^1.0.0: 3671 | version "1.0.0" 3672 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3673 | 3674 | which@^1.2.12: 3675 | version "1.2.14" 3676 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3677 | dependencies: 3678 | isexe "^2.0.0" 3679 | 3680 | wide-align@^1.1.0: 3681 | version "1.1.0" 3682 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3683 | dependencies: 3684 | string-width "^1.0.1" 3685 | 3686 | window-size@0.1.0: 3687 | version "0.1.0" 3688 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3689 | 3690 | wordwrap@0.0.2, wordwrap@~0.0.2: 3691 | version "0.0.2" 3692 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3693 | 3694 | wordwrap@~1.0.0: 3695 | version "1.0.0" 3696 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3697 | 3698 | worker-farm@^1.3.1: 3699 | version "1.3.1" 3700 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 3701 | dependencies: 3702 | errno ">=0.1.1 <0.2.0-0" 3703 | xtend ">=4.0.0 <4.1.0-0" 3704 | 3705 | wrap-ansi@^2.0.0: 3706 | version "2.1.0" 3707 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3708 | dependencies: 3709 | string-width "^1.0.1" 3710 | strip-ansi "^3.0.1" 3711 | 3712 | wrappy@1: 3713 | version "1.0.2" 3714 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3715 | 3716 | xml-name-validator@^2.0.1: 3717 | version "2.0.1" 3718 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3719 | 3720 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0: 3721 | version "4.0.1" 3722 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3723 | 3724 | y18n@^3.2.1: 3725 | version "3.2.1" 3726 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3727 | 3728 | yargs-parser@^4.2.0: 3729 | version "4.2.1" 3730 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 3731 | dependencies: 3732 | camelcase "^3.0.0" 3733 | 3734 | yargs-parser@^5.0.0: 3735 | version "5.0.0" 3736 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 3737 | dependencies: 3738 | camelcase "^3.0.0" 3739 | 3740 | yargs@^6.0.0: 3741 | version "6.6.0" 3742 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 3743 | dependencies: 3744 | camelcase "^3.0.0" 3745 | cliui "^3.2.0" 3746 | decamelize "^1.1.1" 3747 | get-caller-file "^1.0.1" 3748 | os-locale "^1.4.0" 3749 | read-pkg-up "^1.0.1" 3750 | require-directory "^2.1.1" 3751 | require-main-filename "^1.0.1" 3752 | set-blocking "^2.0.0" 3753 | string-width "^1.0.2" 3754 | which-module "^1.0.0" 3755 | y18n "^3.2.1" 3756 | yargs-parser "^4.2.0" 3757 | 3758 | yargs@^7.0.2: 3759 | version "7.1.0" 3760 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 3761 | dependencies: 3762 | camelcase "^3.0.0" 3763 | cliui "^3.2.0" 3764 | decamelize "^1.1.1" 3765 | get-caller-file "^1.0.1" 3766 | os-locale "^1.4.0" 3767 | read-pkg-up "^1.0.1" 3768 | require-directory "^2.1.1" 3769 | require-main-filename "^1.0.1" 3770 | set-blocking "^2.0.0" 3771 | string-width "^1.0.2" 3772 | which-module "^1.0.0" 3773 | y18n "^3.2.1" 3774 | yargs-parser "^5.0.0" 3775 | 3776 | yargs@~3.10.0: 3777 | version "3.10.0" 3778 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3779 | dependencies: 3780 | camelcase "^1.0.2" 3781 | cliui "^2.1.0" 3782 | decamelize "^1.0.0" 3783 | window-size "0.1.0" 3784 | --------------------------------------------------------------------------------