├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json ├── src ├── components │ ├── graphiql.js │ ├── provider.js │ └── query.js ├── helpers │ └── refresh.js ├── index.js ├── quick-graphql │ ├── execute.js │ ├── index.js │ └── parse.js ├── redux │ ├── actions.js │ ├── reducer.js │ └── selectors.js └── utils │ └── promises.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ "es2017", "react" ], 3 | "plugins": [ "transform-class-properties", "transform-object-rest-spread", "transform-es2015-modules-commonjs" ] 4 | } 5 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "extends": [ 4 | "eslint:recommended", 5 | "plugin:import/recommended", 6 | "plugin:react/recommended" 7 | ], 8 | "parserOptions": { 9 | "ecmaVersion": 6, 10 | "sourceType": "module", 11 | "ecmaFeatures": { 12 | "jsx": true, 13 | "experimentalObjectRestSpread": true 14 | } 15 | }, 16 | "env": { 17 | "browser": true, 18 | "mocha": true, 19 | "node": true, 20 | "es6": true 21 | }, 22 | "rules": { 23 | "valid-jsdoc": 2, 24 | "react/jsx-uses-react": 1, 25 | "react/jsx-no-undef": 2, 26 | "react/jsx-wrap-multilines": 2 27 | }, 28 | "plugins": [ 29 | "import", 30 | "react" 31 | ] 32 | } 33 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | node_modules 3 | dist -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .babelrc 2 | .eslintrc 3 | test 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017 Riad Benguella 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | react-graphql-redux 2 | =================== 3 | 4 | This library allows you to use GraphQL to query your Redux store. 5 | This library is in its early stages, feel free to send any PR. 6 | 7 | Details about this library in this [blog post](https://riad.blog/2017/01/07/graphql-is-not-only-for-backend-react-redux/) 8 | 9 | Usage 10 | ----- 11 | 12 | 1- Create a GraphQL schema and resolver to match your data: 13 | 14 | ```js 15 | const createGraph = store => { 16 | const schema = buildSchema(` 17 | type Query { 18 | hello( name: String ): String 19 | } 20 | `); 21 | 22 | const root = { 23 | hello: ({ name }) => `Hello ${name}!` 24 | }; 25 | 26 | return { schema, root }; 27 | }; 28 | ``` 29 | 30 | 2- Wrap your React Root Component using `GraphProvider` 31 | 32 | ```js 33 | import { GraphProvider } from 'react-graphql-redux'; 34 | 35 | const store = // create your Redux store 36 | const { schema, root } = createGraph( store ); 37 | 38 | render( 39 | 40 | 41 | 42 | ); 43 | ``` 44 | 45 | 3- Start using the `query` Higher Order Component to provide data as a prop to your components 46 | 47 | ```js 48 | import { query } from 'react-graphql-redux'; 49 | 50 | const MyComponent = ({ data }) => { 51 | return ( 52 |
{ data && data.hello }
53 | ); 54 | }; 55 | 56 | export default query( '{ hello( name: "Riad" ) }' )( MyComponent ); 57 | ``` 58 | 59 | Notice that now, components just **declares** the data they need without worrying how it's fetched and extracted from the state. 60 | 61 | Using Redux Selectors in your Resolvers 62 | --------------------------------------- 63 | 64 | In the example above, the function responsible of returning the data : `({ name }) => Hello ${name}!` is called **a resolver**. In this example, it just concats hello with the name arg. 65 | But the main purpose of these resolvers will be to retrieve data from the state by calling Redux Selectors. 66 | 67 | Say we have a `getTodos` selector which will retrieve todos from the store. The corresponding resolver could be: 68 | 69 | ```js 70 | import { getTodos } from './selectors'; 71 | 72 | const createGraph = store => { 73 | const schema = buildSchema(` 74 | type Todo { 75 | id: Int 76 | text: String 77 | done: Boolean 78 | } 79 | 80 | type Query { 81 | todos: [Todo] 82 | // Other root query nodes 83 | } 84 | `); 85 | 86 | const root = { 87 | todos: () => { 88 | const state = store.getState(); 89 | return getTodos(state); 90 | } 91 | // Other resolvers here 92 | }; 93 | 94 | return { schema, root }; 95 | }; 96 | ``` 97 | 98 | Fetch Data From the server 99 | -------------------------- 100 | 101 | Resolvers are also responsible of triggering Redux action creators to fetch the desired data. 102 | 103 | For example, if we have a`fetchTodos` action creator we should call to fetch the todos, and we want to refresh this data if it has not been fetched on the last 5 minutes, we could write: 104 | 105 | ```js 106 | import { refreshWhenExpired } from 'react-graphql-redux'; 107 | import { fetchTodos } from './actions'; 108 | 109 | const createGraph = store => { 110 | // .... 111 | 112 | const root = { 113 | todos: () => { 114 | const timeout = 5 * 60 * 1000; 115 | const resolverIdentifier = 'fetch-todos'; 116 | refreshWhenExpired(store, resolverIdentifier, {}, timeout, () => { 117 | store.dispatch(fetchTodos()); 118 | }); 119 | const state = store.getState(); 120 | return getTodos(state); 121 | } 122 | // Other resolvers here 123 | }; 124 | 125 | // ... 126 | ``` 127 | 128 | But, to be able to use the refresh helpers provided by the library (like `refreshWhenExpired`), make sure to include the `graphReducer` to your store. 129 | 130 | ```js 131 | import { graphReducer } from 'react-graphql-redux'; 132 | 133 | const myReduxReducer = combineReducers({ 134 | graphqlResolvers: graphReducer, 135 | // Add your other reducers here 136 | }); 137 | ``` 138 | 139 | More 140 | ---- 141 | 142 | * The query can be computed using component props (use a funciton instead of string for the first `query` arg) 143 | * You can use graphql variables in your queries (the second `arg` of `query`) 144 | * If you want to refresh the data on each new `query` used, it's possible 145 | * You can use `GraphiQL` to test/explore your graph 146 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-graphql-redux", 3 | "version": "0.0.1", 4 | "description": "use GraphQL to query your Redux store.", 5 | "main": "dist/index.js", 6 | "scripts": { 7 | "lint": "eslint src", 8 | "compile": "rimraf lib && BABEL_ENV=commonjs babel -d dist/ src/", 9 | "prepublish": "npm run test && npm run compile", 10 | "unit": "mocha --compilers js:babel-register --recursive test", 11 | "test": "npm run lint", 12 | "changelog": "conventional-changelog -i CHANGELOG.md -w -r 0 -p angular" 13 | }, 14 | "repository": { 15 | "type": "git", 16 | "url": "git+https://github.com/youknowriad/react-graphql-redux.git" 17 | }, 18 | "author": "Riad Benguella ", 19 | "license": "MIT", 20 | "bugs": { 21 | "url": "https://github.com/youknowriad/react-graphql-redux/issues" 22 | }, 23 | "homepage": "https://github.com/youknowriad/react-r#readme", 24 | "devDependencies": { 25 | "babel": "^6.5.2", 26 | "babel-cli": "^6.18.0", 27 | "babel-eslint": "^7.1.1", 28 | "babel-plugin-transform-class-properties": "^6.19.0", 29 | "babel-plugin-transform-es2015-modules-commonjs": "^6.18.0", 30 | "babel-plugin-transform-object-rest-spread": "^6.20.2", 31 | "babel-preset-es2017": "^6.16.0", 32 | "babel-register": "^6.18.0", 33 | "eslint": "^3.12.2", 34 | "eslint-plugin-import": "^2.2.0", 35 | "eslint-plugin-react": "^6.8.0", 36 | "expect": "^1.20.2", 37 | "graphql": "^0.8.2", 38 | "graphiql": "^0.8.1", 39 | "mocha": "^3.2.0", 40 | "react": "^15.4.1", 41 | "react-dom": "^15.4.1", 42 | "redux": "^3.6.0", 43 | "rimraf": "^2.5.4" 44 | }, 45 | "peerDependencies": { 46 | "graphql": "^0.8.2", 47 | "graphiql": "^0.8.1", 48 | "react": "^0.14.0 || ^15.0.0-0", 49 | "react-dom": "^15.4.1", 50 | "redux": "^2.0.0 || ^3.0.0" 51 | }, 52 | "dependencies": { 53 | "babel-preset-react": "^6.16.0", 54 | "lodash": "^4.17.4" 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /src/components/graphiql.js: -------------------------------------------------------------------------------- 1 | import React, { Component, PropTypes } from 'react'; 2 | import GraphiQL from 'graphiql'; 3 | import { graphql } from 'graphql'; 4 | 5 | export default class GraphiQLWrapper extends Component { 6 | static contextTypes = { 7 | graph: PropTypes.object.isRequired 8 | }; 9 | 10 | fetch = ( { query, variables } ) => { 11 | return graphql( this.context.graph.schema, query, this.context.graph.root, { uid: this.uid }, variables ); 12 | }; 13 | 14 | render() { 15 | return ( 16 | 17 | ); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/components/provider.js: -------------------------------------------------------------------------------- 1 | import { Component, PropTypes, Children } from 'react'; 2 | 3 | export default class GraphProvider extends Component { 4 | static propTypes = { 5 | store: PropTypes.object.isRequired, 6 | schema: PropTypes.object.isRequired, 7 | root: PropTypes.object.isRequired, 8 | children: PropTypes.element.isRequired 9 | }; 10 | 11 | static childContextTypes = { 12 | graph: PropTypes.object.isRequired 13 | }; 14 | 15 | getChildContext() { 16 | return { graph: this.graph }; 17 | } 18 | 19 | constructor( props, context ) { 20 | super( props, context ); 21 | const { store, root, schema } = props; 22 | this.graph = { store, root, schema }; 23 | } 24 | 25 | render() { 26 | return Children.only( this.props.children ); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/components/query.js: -------------------------------------------------------------------------------- 1 | import React, { Component, PropTypes } from 'react'; 2 | import { isString, uniqueId, throttle } from 'lodash'; 3 | import { graphql } from 'graphql'; 4 | import { quickGraphql, parse } from '../quick-graphql'; 5 | import { makePromiseCancelable } from '../utils/promises'; 6 | import { clearRequests } from '../redux/actions'; 7 | 8 | const THROTTLE_DELAY = 50; 9 | 10 | const query = ( mapPropsToQuery, mapPropsToVariables = () => ( {} ) ) => ( WrappedComponent ) => { 11 | return class GraphQueryComponent extends Component { 12 | state = { 13 | data: null, 14 | errors: null 15 | }; 16 | 17 | uid = uniqueId(); 18 | 19 | static contextTypes = { 20 | graph: PropTypes.object 21 | }; 22 | 23 | constructor( props, context ) { 24 | super( props, context ); 25 | this.buildQuery( props ); 26 | } 27 | 28 | componentDidMount() { 29 | const throttledRequest = throttle( this.request, THROTTLE_DELAY, { leading: true } ); 30 | this.unsubscribe = this.context.graph.store.subscribe( throttledRequest ); 31 | this.request(); 32 | } 33 | 34 | componentWillUnmount() { 35 | this.cancelRequest(); 36 | this.unsubscribe && this.unsubscribe(); 37 | this.context.graph.store.dispatch( clearRequests( this.uid ) ); 38 | } 39 | 40 | componentWillReceiveProps( newProps ) { 41 | this.buildQuery( newProps ); 42 | this.request(); 43 | } 44 | 45 | buildQuery( props ) { 46 | if ( isString( mapPropsToQuery ) ) { 47 | this.query = mapPropsToQuery; 48 | } else { 49 | this.query = mapPropsToQuery( props ); 50 | } 51 | this.variables = mapPropsToVariables( props ); 52 | this.parsedQuery = parse( this.query, this.variables ); 53 | } 54 | 55 | cancelRequest() { 56 | this.cancelRequestPromise && this.cancelRequestPromise(); 57 | } 58 | 59 | request = () => { 60 | this.cancelRequest(); 61 | const cancelablePromise = makePromiseCancelable( this.triggerGraphRequest() ); 62 | this.cancelRequestPromise = cancelablePromise.cancel; 63 | cancelablePromise.promise 64 | .then( results => { 65 | this.setState( results ); 66 | this.cancelRequestPromise = false; 67 | } ) 68 | .catch( () => {} ); // avoid console warnings 69 | }; 70 | 71 | triggerGraphRequest() { 72 | if ( process.env.NODE_ENV === 'development' ) { 73 | return graphql( this.context.graph.schema, this.query, this.context.graph.root, { uid: this.uid }, this.variables ); 74 | } 75 | 76 | return quickGraphql( this.parsedQuery, this.context.graph.root, { uid: this.uid } ); 77 | } 78 | 79 | render() { 80 | return ( 81 | 82 | ); 83 | } 84 | }; 85 | }; 86 | 87 | export default query; 88 | -------------------------------------------------------------------------------- /src/helpers/refresh.js: -------------------------------------------------------------------------------- 1 | import { getRequest, getRequestIgnoringUid } from '../redux/selectors'; 2 | import { addRequest, removeRequest } from '../redux/actions'; 3 | 4 | export const refreshByUid = ( store, uid, type, options, triggerRequest ) => { 5 | const state = store.getState(); 6 | const request = getRequest( state, uid, type, options ); 7 | if ( ! request ) { 8 | store.dispatch( addRequest( uid, type, options ) ); 9 | triggerRequest(); 10 | } 11 | }; 12 | 13 | export const refreshWhenExpired = ( store, type, options, timeout, triggerRequest ) => { 14 | const state = store.getState(); 15 | const request = getRequestIgnoringUid( state, type, options ); 16 | const refresh = ! request || ( Date.now() - request.createdAt >= timeout ); 17 | 18 | if ( refresh ) { 19 | if ( request ) { 20 | store.dispatch( removeRequest( request.uid, type, options ) ); 21 | } 22 | store.dispatch( addRequest( '', type, options ) ); 23 | triggerRequest(); 24 | } 25 | }; 26 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | export { default as query } from './components/query'; 2 | export { default as GraphProvider } from './components/provider'; 3 | export { default as GraphiQL } from './components/graphiql'; 4 | export { default as GraphReducer } from './redux/reducer'; 5 | export * from './helpers/refresh'; 6 | -------------------------------------------------------------------------------- /src/quick-graphql/execute.js: -------------------------------------------------------------------------------- 1 | import { isArray, isPlainObject, isFunction } from 'lodash'; 2 | 3 | const resolveNode = ( node, resolver, context ) => { 4 | let resolved = resolver; 5 | if ( isFunction( resolver ) ) { 6 | resolved = resolver( node.arguments, context ); 7 | } 8 | if ( isPlainObject( resolved ) ) { 9 | return resolveNodes( node.nodes, resolved, context ); // eslint-disable-line no-use-before-define 10 | } 11 | if ( isArray( resolved ) ) { 12 | return resolved.map( 13 | resolvedItem => resolveNodes( node.nodes, resolvedItem, context ) // eslint-disable-line no-use-before-define 14 | ); 15 | } 16 | return resolved; 17 | }; 18 | 19 | const resolveNodes = ( nodes, resolvers = {}, context ) => { 20 | return nodes.reduce( ( memo, node ) => { 21 | memo[ node.name ] = resolveNode( node, resolvers[ node.name ], context ); 22 | return memo; 23 | }, {} ); 24 | }; 25 | 26 | export default ( query, rootResolver, context ) => 27 | new Promise( ( resolve ) => { 28 | const data = resolveNodes( query.nodes, rootResolver, context ); 29 | resolve( { data } ); 30 | } ); 31 | -------------------------------------------------------------------------------- /src/quick-graphql/index.js: -------------------------------------------------------------------------------- 1 | export { default as quickGraphql } from './execute'; 2 | export { default as parse } from './parse'; 3 | -------------------------------------------------------------------------------- /src/quick-graphql/parse.js: -------------------------------------------------------------------------------- 1 | import { parse, visit } from 'graphql'; 2 | 3 | export default ( queryString, variables ) => { 4 | const ast = parse( queryString ); 5 | 6 | const parsed = visit( ast, { 7 | Document: { leave: node => node.definitions[ 0 ] }, 8 | OperationDefinition: { leave: node => { 9 | return { 10 | nodes: node.selectionSet 11 | }; 12 | } }, 13 | SelectionSet: { leave: node => node.selections }, 14 | Field: { leave: node => { 15 | return { 16 | name: node.name.value, 17 | nodes: node.selectionSet, 18 | arguments: node.arguments.reduce( ( memo, arg ) => { 19 | memo[ arg.name ] = arg.value; 20 | return memo; 21 | }, {} ) 22 | }; 23 | } }, 24 | Argument: { leave: node => { 25 | return { 26 | name: node.name.value, 27 | value: node.value 28 | }; 29 | } }, 30 | Variable: { leave: node => variables[ node.name.value ] }, 31 | ObjectValue: { leave: node => { 32 | return node.fields.reduce( ( memo, field ) => { 33 | memo[ field.name ] = field.value; 34 | return memo; 35 | }, {} ); 36 | } }, 37 | ObjectField: { leave: node => { 38 | return { 39 | name: node.name.value, 40 | value: node.value 41 | }; 42 | } }, 43 | StringValue: { leave: node => node.value }, 44 | IntValue: { leave: node => parseInt( node.value, 10 ) }, 45 | BooleanValue: { leave: node => node.value }, 46 | NullValue: { leave: () => null }, 47 | FloatValue: { leave: node => parseFloat( node.value ) }, 48 | ListValue: { leave: node => node.values }, 49 | } ); 50 | 51 | return parsed; 52 | }; 53 | -------------------------------------------------------------------------------- /src/redux/actions.js: -------------------------------------------------------------------------------- 1 | export const GRAPH_RESOLVER_REQUEST_ADD = 'GRAPH_RESOLVER_REQUEST_ADD'; 2 | export const GRAPHQL_RESOLVER_REQUEST_CLEAR = 'GRAPHQL_RESOLVER_REQUEST_CLEAR'; 3 | export const GRAPH_RESOLVER_REQUEST_REMOVE = 'GRAPH_RESOLVER_REQUEST_REMOVE'; 4 | 5 | export function addRequest( uid, type, options = {} ) { 6 | const createdAt = Date.now(); 7 | 8 | return { 9 | type: GRAPH_RESOLVER_REQUEST_ADD, 10 | payload: { 11 | uid, 12 | type, 13 | options, 14 | createdAt 15 | } 16 | }; 17 | } 18 | 19 | export function removeRequest( uid, type, options = {} ) { 20 | return { 21 | type: GRAPH_RESOLVER_REQUEST_REMOVE, 22 | payload: { 23 | uid, 24 | type, 25 | options 26 | } 27 | }; 28 | } 29 | 30 | export function clearRequests( uid ) { 31 | return { 32 | type: GRAPHQL_RESOLVER_REQUEST_CLEAR, 33 | payload: uid 34 | }; 35 | } 36 | -------------------------------------------------------------------------------- /src/redux/reducer.js: -------------------------------------------------------------------------------- 1 | import { filter, omit } from 'lodash'; 2 | import { GRAPH_RESOLVER_REQUEST_ADD, GRAPH_RESOLVER_REQUEST_REMOVE, GRAPHQL_RESOLVER_REQUEST_CLEAR } from './actions'; 3 | 4 | const handleAdd = ( state, { payload: { uid, type, options, createdAt } } ) => { 5 | const optionsSerialization = JSON.stringify( options ); 6 | return { 7 | ...state, 8 | [ uid ]: [ 9 | ...( state[ uid ] ? state[ uid ] : [] ), 10 | { type, options: optionsSerialization, createdAt } 11 | ] 12 | }; 13 | } 14 | 15 | const handleRemove = ( state, { payload: { uid, type, options } } ) => { 16 | const optionsSerialization = JSON.stringify( options ); 17 | return { 18 | ...state, 19 | [ uid ]: filter( state[ uid ], request => { 20 | return request.type !== type || request.options !== optionsSerialization; 21 | } ) 22 | }; 23 | }; 24 | 25 | const handleClear = ( state, { payload: uid } ) => { 26 | return omit( state, [ uid ] ); 27 | }; 28 | 29 | const reducer = ( state = {}, action ) => { 30 | switch ( action.type ) { 31 | case GRAPH_RESOLVER_REQUEST_ADD: 32 | return handleAdd( state, action ); 33 | case GRAPH_RESOLVER_REQUEST_REMOVE: 34 | return handleRemove( state, action ); 35 | case GRAPHQL_RESOLVER_REQUEST_CLEAR: 36 | return handleClear( state, action ); 37 | default: 38 | return state; 39 | } 40 | } 41 | 42 | export default reducer; 43 | -------------------------------------------------------------------------------- /src/redux/selectors.js: -------------------------------------------------------------------------------- 1 | import { find, flatten, get, values } from 'lodash'; 2 | 3 | export const getRequest = ( state, uid, type, options = {} ) => { 4 | const optionsSerialization = JSON.stringify( options ); 5 | return find( get( state.graphqlResolvers, [ uid ], [] ), request => { 6 | return request.type === type && request.options === optionsSerialization; 7 | } ); 8 | }; 9 | 10 | export const getRequestIgnoringUid = ( state, type, options = {} ) => { 11 | const optionsSerialization = JSON.stringify( options ); 12 | return find( flatten( values( state.graphqlResolvers ) ), request => { 13 | return request.type === type && request.options === optionsSerialization; 14 | } ); 15 | }; 16 | -------------------------------------------------------------------------------- /src/utils/promises.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Takes a promise and transform it to a cancelable promise by adding a "cancel" method 3 | * @param {Promise} promise Promise to make cancelable 4 | * @return {Promise} Cancelble promise 5 | */ 6 | export const makePromiseCancelable = promise => { 7 | let hasCanceled_ = false; 8 | const wrappedPromise = new Promise( ( resolve, reject ) => { 9 | promise.then( val => 10 | hasCanceled_ ? reject( { isCanceled: true } ) : resolve( val ) 11 | ); 12 | promise.catch( error => 13 | hasCanceled_ ? reject( { isCanceled: true } ) : reject( error ) 14 | ); 15 | } ); 16 | 17 | return { 18 | promise: wrappedPromise, 19 | cancel() { 20 | hasCanceled_ = true; 21 | }, 22 | }; 23 | }; 24 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.0.9" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 8 | 9 | acorn-jsx@^3.0.0, acorn-jsx@^3.0.1: 10 | version "3.0.1" 11 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 12 | dependencies: 13 | acorn "^3.0.4" 14 | 15 | acorn@^3.0.4: 16 | version "3.3.0" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 18 | 19 | acorn@^4.0.1: 20 | version "4.0.4" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a" 22 | 23 | ajv-keywords@^1.0.0: 24 | version "1.5.0" 25 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.0.tgz#c11e6859eafff83e0dafc416929472eca946aa2c" 26 | 27 | ajv@^4.7.0: 28 | version "4.10.4" 29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.10.4.tgz#c0974dd00b3464984892d6010aa9c2c945933254" 30 | dependencies: 31 | co "^4.6.0" 32 | json-stable-stringify "^1.0.1" 33 | 34 | ansi-escapes@^1.1.0: 35 | version "1.4.0" 36 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 37 | 38 | ansi-regex@^2.0.0: 39 | version "2.0.0" 40 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 41 | 42 | ansi-styles@^2.2.1: 43 | version "2.2.1" 44 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 45 | 46 | anymatch@^1.3.0: 47 | version "1.3.0" 48 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 49 | dependencies: 50 | arrify "^1.0.0" 51 | micromatch "^2.1.5" 52 | 53 | aproba@^1.0.3: 54 | version "1.0.4" 55 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 56 | 57 | are-we-there-yet@~1.1.2: 58 | version "1.1.2" 59 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 60 | dependencies: 61 | delegates "^1.0.0" 62 | readable-stream "^2.0.0 || ^1.1.13" 63 | 64 | argparse@^1.0.7: 65 | version "1.0.9" 66 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 67 | dependencies: 68 | sprintf-js "~1.0.2" 69 | 70 | arr-diff@^2.0.0: 71 | version "2.0.0" 72 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 73 | dependencies: 74 | arr-flatten "^1.0.1" 75 | 76 | arr-flatten@^1.0.1: 77 | version "1.0.1" 78 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 79 | 80 | array-union@^1.0.1: 81 | version "1.0.2" 82 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 83 | dependencies: 84 | array-uniq "^1.0.1" 85 | 86 | array-uniq@^1.0.1: 87 | version "1.0.3" 88 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 89 | 90 | array-unique@^0.2.1: 91 | version "0.2.1" 92 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 93 | 94 | arrify@^1.0.0: 95 | version "1.0.1" 96 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 97 | 98 | asap@~2.0.3: 99 | version "2.0.5" 100 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 101 | 102 | asn1@~0.2.3: 103 | version "0.2.3" 104 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 105 | 106 | assert-plus@^0.2.0: 107 | version "0.2.0" 108 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 109 | 110 | assert-plus@^1.0.0: 111 | version "1.0.0" 112 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 113 | 114 | async-each@^1.0.0: 115 | version "1.0.1" 116 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 117 | 118 | asynckit@^0.4.0: 119 | version "0.4.0" 120 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 121 | 122 | aws-sign2@~0.6.0: 123 | version "0.6.0" 124 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 125 | 126 | aws4@^1.2.1: 127 | version "1.5.0" 128 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 129 | 130 | babel-cli@^6.18.0: 131 | version "6.18.0" 132 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.18.0.tgz#92117f341add9dead90f6fa7d0a97c0cc08ec186" 133 | dependencies: 134 | babel-core "^6.18.0" 135 | babel-polyfill "^6.16.0" 136 | babel-register "^6.18.0" 137 | babel-runtime "^6.9.0" 138 | commander "^2.8.1" 139 | convert-source-map "^1.1.0" 140 | fs-readdir-recursive "^1.0.0" 141 | glob "^5.0.5" 142 | lodash "^4.2.0" 143 | output-file-sync "^1.1.0" 144 | path-is-absolute "^1.0.0" 145 | slash "^1.0.0" 146 | source-map "^0.5.0" 147 | v8flags "^2.0.10" 148 | optionalDependencies: 149 | chokidar "^1.0.0" 150 | 151 | babel-code-frame@^6.16.0, babel-code-frame@^6.20.0: 152 | version "6.20.0" 153 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.20.0.tgz#b968f839090f9a8bc6d41938fb96cb84f7387b26" 154 | dependencies: 155 | chalk "^1.1.0" 156 | esutils "^2.0.2" 157 | js-tokens "^2.0.0" 158 | 159 | babel-core@^6.18.0: 160 | version "6.21.0" 161 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.21.0.tgz#75525480c21c803f826ef3867d22c19f080a3724" 162 | dependencies: 163 | babel-code-frame "^6.20.0" 164 | babel-generator "^6.21.0" 165 | babel-helpers "^6.16.0" 166 | babel-messages "^6.8.0" 167 | babel-register "^6.18.0" 168 | babel-runtime "^6.20.0" 169 | babel-template "^6.16.0" 170 | babel-traverse "^6.21.0" 171 | babel-types "^6.21.0" 172 | babylon "^6.11.0" 173 | convert-source-map "^1.1.0" 174 | debug "^2.1.1" 175 | json5 "^0.5.0" 176 | lodash "^4.2.0" 177 | minimatch "^3.0.2" 178 | path-is-absolute "^1.0.0" 179 | private "^0.1.6" 180 | slash "^1.0.0" 181 | source-map "^0.5.0" 182 | 183 | babel-eslint@^7.1.1: 184 | version "7.1.1" 185 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.1.1.tgz#8a6a884f085aa7060af69cfc77341c2f99370fb2" 186 | dependencies: 187 | babel-code-frame "^6.16.0" 188 | babel-traverse "^6.15.0" 189 | babel-types "^6.15.0" 190 | babylon "^6.13.0" 191 | lodash.pickby "^4.6.0" 192 | 193 | babel-generator@^6.21.0: 194 | version "6.21.0" 195 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.21.0.tgz#605f1269c489a1c75deeca7ea16d43d4656c8494" 196 | dependencies: 197 | babel-messages "^6.8.0" 198 | babel-runtime "^6.20.0" 199 | babel-types "^6.21.0" 200 | detect-indent "^4.0.0" 201 | jsesc "^1.3.0" 202 | lodash "^4.2.0" 203 | source-map "^0.5.0" 204 | 205 | babel-helper-builder-react-jsx@^6.8.0: 206 | version "6.21.1" 207 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.21.1.tgz#c4a24208655be9dc1cccf14d366da176f20645e4" 208 | dependencies: 209 | babel-runtime "^6.9.0" 210 | babel-types "^6.21.0" 211 | esutils "^2.0.0" 212 | lodash "^4.2.0" 213 | 214 | babel-helper-function-name@^6.18.0: 215 | version "6.18.0" 216 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz#68ec71aeba1f3e28b2a6f0730190b754a9bf30e6" 217 | dependencies: 218 | babel-helper-get-function-arity "^6.18.0" 219 | babel-runtime "^6.0.0" 220 | babel-template "^6.8.0" 221 | babel-traverse "^6.18.0" 222 | babel-types "^6.18.0" 223 | 224 | babel-helper-get-function-arity@^6.18.0: 225 | version "6.18.0" 226 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.18.0.tgz#a5b19695fd3f9cdfc328398b47dafcd7094f9f24" 227 | dependencies: 228 | babel-runtime "^6.0.0" 229 | babel-types "^6.18.0" 230 | 231 | babel-helper-remap-async-to-generator@^6.16.0: 232 | version "6.20.3" 233 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.20.3.tgz#9dd3b396f13e35ef63e538098500adc24c63c4e7" 234 | dependencies: 235 | babel-helper-function-name "^6.18.0" 236 | babel-runtime "^6.20.0" 237 | babel-template "^6.16.0" 238 | babel-traverse "^6.20.0" 239 | babel-types "^6.20.0" 240 | 241 | babel-helpers@^6.16.0: 242 | version "6.16.0" 243 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.16.0.tgz#1095ec10d99279460553e67eb3eee9973d3867e3" 244 | dependencies: 245 | babel-runtime "^6.0.0" 246 | babel-template "^6.16.0" 247 | 248 | babel-messages@^6.8.0: 249 | version "6.8.0" 250 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9" 251 | dependencies: 252 | babel-runtime "^6.0.0" 253 | 254 | babel-plugin-syntax-async-functions@^6.8.0: 255 | version "6.13.0" 256 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 257 | 258 | babel-plugin-syntax-class-properties@^6.8.0: 259 | version "6.13.0" 260 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 261 | 262 | babel-plugin-syntax-flow@^6.18.0, babel-plugin-syntax-flow@^6.3.13: 263 | version "6.18.0" 264 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 265 | 266 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 267 | version "6.18.0" 268 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 269 | 270 | babel-plugin-syntax-object-rest-spread@^6.8.0: 271 | version "6.13.0" 272 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 273 | 274 | babel-plugin-syntax-trailing-function-commas@^6.8.0: 275 | version "6.20.0" 276 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.20.0.tgz#442835e19179f45b87e92d477d70b9f1f18b5c4f" 277 | 278 | babel-plugin-transform-async-to-generator@^6.16.0: 279 | version "6.16.0" 280 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.16.0.tgz#19ec36cb1486b59f9f468adfa42ce13908ca2999" 281 | dependencies: 282 | babel-helper-remap-async-to-generator "^6.16.0" 283 | babel-plugin-syntax-async-functions "^6.8.0" 284 | babel-runtime "^6.0.0" 285 | 286 | babel-plugin-transform-class-properties@^6.19.0: 287 | version "6.19.0" 288 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.19.0.tgz#1274b349abaadc835164e2004f4a2444a2788d5f" 289 | dependencies: 290 | babel-helper-function-name "^6.18.0" 291 | babel-plugin-syntax-class-properties "^6.8.0" 292 | babel-runtime "^6.9.1" 293 | babel-template "^6.15.0" 294 | 295 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 296 | version "6.18.0" 297 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz#c15ae5bb11b32a0abdcc98a5837baa4ee8d67bcc" 298 | dependencies: 299 | babel-plugin-transform-strict-mode "^6.18.0" 300 | babel-runtime "^6.0.0" 301 | babel-template "^6.16.0" 302 | babel-types "^6.18.0" 303 | 304 | babel-plugin-transform-flow-strip-types@^6.3.13: 305 | version "6.21.0" 306 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.21.0.tgz#2eea3f8b5bb234339b47283feac155cfb237b948" 307 | dependencies: 308 | babel-plugin-syntax-flow "^6.18.0" 309 | babel-runtime "^6.0.0" 310 | 311 | babel-plugin-transform-object-rest-spread@^6.20.2: 312 | version "6.20.2" 313 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.20.2.tgz#e816c55bba77b14c16365d87e2ae48c8fd18fc2e" 314 | dependencies: 315 | babel-plugin-syntax-object-rest-spread "^6.8.0" 316 | babel-runtime "^6.20.0" 317 | 318 | babel-plugin-transform-react-display-name@^6.3.13: 319 | version "6.8.0" 320 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.8.0.tgz#f7a084977383d728bdbdc2835bba0159577f660e" 321 | dependencies: 322 | babel-runtime "^6.0.0" 323 | 324 | babel-plugin-transform-react-jsx-self@^6.11.0: 325 | version "6.11.0" 326 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.11.0.tgz#605c9450c1429f97a930f7e1dfe3f0d9d0dbd0f4" 327 | dependencies: 328 | babel-plugin-syntax-jsx "^6.8.0" 329 | babel-runtime "^6.9.0" 330 | 331 | babel-plugin-transform-react-jsx-source@^6.3.13: 332 | version "6.9.0" 333 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.9.0.tgz#af684a05c2067a86e0957d4f343295ccf5dccf00" 334 | dependencies: 335 | babel-plugin-syntax-jsx "^6.8.0" 336 | babel-runtime "^6.9.0" 337 | 338 | babel-plugin-transform-react-jsx@^6.3.13: 339 | version "6.8.0" 340 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.8.0.tgz#94759942f70af18c617189aa7f3593f1644a71ab" 341 | dependencies: 342 | babel-helper-builder-react-jsx "^6.8.0" 343 | babel-plugin-syntax-jsx "^6.8.0" 344 | babel-runtime "^6.0.0" 345 | 346 | babel-plugin-transform-strict-mode@^6.18.0: 347 | version "6.18.0" 348 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.18.0.tgz#df7cf2991fe046f44163dcd110d5ca43bc652b9d" 349 | dependencies: 350 | babel-runtime "^6.0.0" 351 | babel-types "^6.18.0" 352 | 353 | babel-polyfill@^6.16.0: 354 | version "6.20.0" 355 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.20.0.tgz#de4a371006139e20990aac0be367d398331204e7" 356 | dependencies: 357 | babel-runtime "^6.20.0" 358 | core-js "^2.4.0" 359 | regenerator-runtime "^0.10.0" 360 | 361 | babel-preset-es2017@^6.16.0: 362 | version "6.16.0" 363 | resolved "https://registry.yarnpkg.com/babel-preset-es2017/-/babel-preset-es2017-6.16.0.tgz#536c6287778a758948ddd092b466b6ef50b786fa" 364 | dependencies: 365 | babel-plugin-syntax-trailing-function-commas "^6.8.0" 366 | babel-plugin-transform-async-to-generator "^6.16.0" 367 | 368 | babel-preset-react@^6.16.0: 369 | version "6.16.0" 370 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.16.0.tgz#aa117d60de0928607e343c4828906e4661824316" 371 | dependencies: 372 | babel-plugin-syntax-flow "^6.3.13" 373 | babel-plugin-syntax-jsx "^6.3.13" 374 | babel-plugin-transform-flow-strip-types "^6.3.13" 375 | babel-plugin-transform-react-display-name "^6.3.13" 376 | babel-plugin-transform-react-jsx "^6.3.13" 377 | babel-plugin-transform-react-jsx-self "^6.11.0" 378 | babel-plugin-transform-react-jsx-source "^6.3.13" 379 | 380 | babel-register@^6.18.0: 381 | version "6.18.0" 382 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.18.0.tgz#892e2e03865078dd90ad2c715111ec4449b32a68" 383 | dependencies: 384 | babel-core "^6.18.0" 385 | babel-runtime "^6.11.6" 386 | core-js "^2.4.0" 387 | home-or-tmp "^2.0.0" 388 | lodash "^4.2.0" 389 | mkdirp "^0.5.1" 390 | source-map-support "^0.4.2" 391 | 392 | babel-runtime@^6.0.0, babel-runtime@^6.11.6, babel-runtime@^6.20.0, babel-runtime@^6.9.0, babel-runtime@^6.9.1: 393 | version "6.20.0" 394 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.20.0.tgz#87300bdcf4cd770f09bf0048c64204e17806d16f" 395 | dependencies: 396 | core-js "^2.4.0" 397 | regenerator-runtime "^0.10.0" 398 | 399 | babel-template@^6.15.0, babel-template@^6.16.0, babel-template@^6.8.0: 400 | version "6.16.0" 401 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca" 402 | dependencies: 403 | babel-runtime "^6.9.0" 404 | babel-traverse "^6.16.0" 405 | babel-types "^6.16.0" 406 | babylon "^6.11.0" 407 | lodash "^4.2.0" 408 | 409 | babel-traverse@^6.15.0, babel-traverse@^6.16.0, babel-traverse@^6.18.0, babel-traverse@^6.20.0, babel-traverse@^6.21.0: 410 | version "6.21.0" 411 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.21.0.tgz#69c6365804f1a4f69eb1213f85b00a818b8c21ad" 412 | dependencies: 413 | babel-code-frame "^6.20.0" 414 | babel-messages "^6.8.0" 415 | babel-runtime "^6.20.0" 416 | babel-types "^6.21.0" 417 | babylon "^6.11.0" 418 | debug "^2.2.0" 419 | globals "^9.0.0" 420 | invariant "^2.2.0" 421 | lodash "^4.2.0" 422 | 423 | babel-types@^6.15.0, babel-types@^6.16.0, babel-types@^6.18.0, babel-types@^6.20.0, babel-types@^6.21.0: 424 | version "6.21.0" 425 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.21.0.tgz#314b92168891ef6d3806b7f7a917fdf87c11a4b2" 426 | dependencies: 427 | babel-runtime "^6.20.0" 428 | esutils "^2.0.2" 429 | lodash "^4.2.0" 430 | to-fast-properties "^1.0.1" 431 | 432 | babel@^6.5.2: 433 | version "6.5.2" 434 | resolved "https://registry.yarnpkg.com/babel/-/babel-6.5.2.tgz#59140607438270920047ff56f02b2d8630c2d129" 435 | 436 | babylon@^6.11.0, babylon@^6.13.0: 437 | version "6.14.1" 438 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.14.1.tgz#956275fab72753ad9b3435d7afe58f8bf0a29815" 439 | 440 | balanced-match@^0.4.1: 441 | version "0.4.2" 442 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 443 | 444 | bcrypt-pbkdf@^1.0.0: 445 | version "1.0.0" 446 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 447 | dependencies: 448 | tweetnacl "^0.14.3" 449 | 450 | binary-extensions@^1.0.0: 451 | version "1.8.0" 452 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 453 | 454 | block-stream@*: 455 | version "0.0.9" 456 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 457 | dependencies: 458 | inherits "~2.0.0" 459 | 460 | boom@2.x.x: 461 | version "2.10.1" 462 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 463 | dependencies: 464 | hoek "2.x.x" 465 | 466 | brace-expansion@^1.0.0: 467 | version "1.1.6" 468 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 469 | dependencies: 470 | balanced-match "^0.4.1" 471 | concat-map "0.0.1" 472 | 473 | braces@^1.8.2: 474 | version "1.8.5" 475 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 476 | dependencies: 477 | expand-range "^1.8.1" 478 | preserve "^0.2.0" 479 | repeat-element "^1.1.2" 480 | 481 | browser-stdout@1.3.0: 482 | version "1.3.0" 483 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 484 | 485 | buffer-shims@^1.0.0: 486 | version "1.0.0" 487 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 488 | 489 | builtin-modules@^1.1.1: 490 | version "1.1.1" 491 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 492 | 493 | caller-path@^0.1.0: 494 | version "0.1.0" 495 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 496 | dependencies: 497 | callsites "^0.2.0" 498 | 499 | callsites@^0.2.0: 500 | version "0.2.0" 501 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 502 | 503 | caseless@~0.11.0: 504 | version "0.11.0" 505 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 506 | 507 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 508 | version "1.1.3" 509 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 510 | dependencies: 511 | ansi-styles "^2.2.1" 512 | escape-string-regexp "^1.0.2" 513 | has-ansi "^2.0.0" 514 | strip-ansi "^3.0.0" 515 | supports-color "^2.0.0" 516 | 517 | chokidar@^1.0.0: 518 | version "1.6.1" 519 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 520 | dependencies: 521 | anymatch "^1.3.0" 522 | async-each "^1.0.0" 523 | glob-parent "^2.0.0" 524 | inherits "^2.0.1" 525 | is-binary-path "^1.0.0" 526 | is-glob "^2.0.0" 527 | path-is-absolute "^1.0.0" 528 | readdirp "^2.0.0" 529 | optionalDependencies: 530 | fsevents "^1.0.0" 531 | 532 | circular-json@^0.3.1: 533 | version "0.3.1" 534 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 535 | 536 | cli-cursor@^1.0.1: 537 | version "1.0.2" 538 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 539 | dependencies: 540 | restore-cursor "^1.0.1" 541 | 542 | cli-width@^2.0.0: 543 | version "2.1.0" 544 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 545 | 546 | co@^4.6.0: 547 | version "4.6.0" 548 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 549 | 550 | code-point-at@^1.0.0: 551 | version "1.1.0" 552 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 553 | 554 | codemirror-graphql@^0.5.9: 555 | version "0.5.9" 556 | resolved "https://registry.yarnpkg.com/codemirror-graphql/-/codemirror-graphql-0.5.9.tgz#b5ca2a84bd0deae7660c726f7feba15149bac8fd" 557 | 558 | codemirror@^5.15.2: 559 | version "5.22.0" 560 | resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.22.0.tgz#281ec76ed991ef24db4071fdf4deb746e80bff18" 561 | 562 | combined-stream@^1.0.5, combined-stream@~1.0.5: 563 | version "1.0.5" 564 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 565 | dependencies: 566 | delayed-stream "~1.0.0" 567 | 568 | commander@2.9.0, commander@^2.8.1, commander@^2.9.0: 569 | version "2.9.0" 570 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 571 | dependencies: 572 | graceful-readlink ">= 1.0.0" 573 | 574 | concat-map@0.0.1: 575 | version "0.0.1" 576 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 577 | 578 | concat-stream@^1.4.6: 579 | version "1.6.0" 580 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 581 | dependencies: 582 | inherits "^2.0.3" 583 | readable-stream "^2.2.2" 584 | typedarray "^0.0.6" 585 | 586 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 587 | version "1.1.0" 588 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 589 | 590 | contains-path@^0.1.0: 591 | version "0.1.0" 592 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 593 | 594 | convert-source-map@^1.1.0: 595 | version "1.3.0" 596 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 597 | 598 | core-js@^1.0.0: 599 | version "1.2.7" 600 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 601 | 602 | core-js@^2.4.0: 603 | version "2.4.1" 604 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 605 | 606 | core-util-is@~1.0.0: 607 | version "1.0.2" 608 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 609 | 610 | cryptiles@2.x.x: 611 | version "2.0.5" 612 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 613 | dependencies: 614 | boom "2.x.x" 615 | 616 | d@^0.1.1, d@~0.1.1: 617 | version "0.1.1" 618 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" 619 | dependencies: 620 | es5-ext "~0.10.2" 621 | 622 | dashdash@^1.12.0: 623 | version "1.14.1" 624 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 625 | dependencies: 626 | assert-plus "^1.0.0" 627 | 628 | debug@2.2.0, debug@^2.1.1, debug@^2.2.0, debug@~2.2.0: 629 | version "2.2.0" 630 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 631 | dependencies: 632 | ms "0.7.1" 633 | 634 | deep-extend@~0.4.0: 635 | version "0.4.1" 636 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 637 | 638 | deep-is@~0.1.3: 639 | version "0.1.3" 640 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 641 | 642 | define-properties@^1.1.2, define-properties@~1.1.2: 643 | version "1.1.2" 644 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 645 | dependencies: 646 | foreach "^2.0.5" 647 | object-keys "^1.0.8" 648 | 649 | del@^2.0.2: 650 | version "2.2.2" 651 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 652 | dependencies: 653 | globby "^5.0.0" 654 | is-path-cwd "^1.0.0" 655 | is-path-in-cwd "^1.0.0" 656 | object-assign "^4.0.1" 657 | pify "^2.0.0" 658 | pinkie-promise "^2.0.0" 659 | rimraf "^2.2.8" 660 | 661 | delayed-stream@~1.0.0: 662 | version "1.0.0" 663 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 664 | 665 | delegates@^1.0.0: 666 | version "1.0.0" 667 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 668 | 669 | detect-indent@^4.0.0: 670 | version "4.0.0" 671 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 672 | dependencies: 673 | repeating "^2.0.0" 674 | 675 | diff@1.4.0: 676 | version "1.4.0" 677 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 678 | 679 | doctrine@1.5.0, doctrine@^1.2.2: 680 | version "1.5.0" 681 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 682 | dependencies: 683 | esutils "^2.0.2" 684 | isarray "^1.0.0" 685 | 686 | ecc-jsbn@~0.1.1: 687 | version "0.1.1" 688 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 689 | dependencies: 690 | jsbn "~0.1.0" 691 | 692 | encoding@^0.1.11: 693 | version "0.1.12" 694 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 695 | dependencies: 696 | iconv-lite "~0.4.13" 697 | 698 | es-abstract@^1.6.1: 699 | version "1.6.1" 700 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.6.1.tgz#bb8a2064120abcf928a086ea3d9043114285ec99" 701 | dependencies: 702 | es-to-primitive "^1.1.1" 703 | function-bind "^1.1.0" 704 | is-callable "^1.1.3" 705 | is-regex "^1.0.3" 706 | 707 | es-to-primitive@^1.1.1: 708 | version "1.1.1" 709 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 710 | dependencies: 711 | is-callable "^1.1.1" 712 | is-date-object "^1.0.1" 713 | is-symbol "^1.0.1" 714 | 715 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7: 716 | version "0.10.12" 717 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047" 718 | dependencies: 719 | es6-iterator "2" 720 | es6-symbol "~3.1" 721 | 722 | es6-iterator@2: 723 | version "2.0.0" 724 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac" 725 | dependencies: 726 | d "^0.1.1" 727 | es5-ext "^0.10.7" 728 | es6-symbol "3" 729 | 730 | es6-map@^0.1.3: 731 | version "0.1.4" 732 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897" 733 | dependencies: 734 | d "~0.1.1" 735 | es5-ext "~0.10.11" 736 | es6-iterator "2" 737 | es6-set "~0.1.3" 738 | es6-symbol "~3.1.0" 739 | event-emitter "~0.3.4" 740 | 741 | es6-set@~0.1.3: 742 | version "0.1.4" 743 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8" 744 | dependencies: 745 | d "~0.1.1" 746 | es5-ext "~0.10.11" 747 | es6-iterator "2" 748 | es6-symbol "3" 749 | event-emitter "~0.3.4" 750 | 751 | es6-symbol@3, es6-symbol@~3.1, es6-symbol@~3.1.0: 752 | version "3.1.0" 753 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa" 754 | dependencies: 755 | d "~0.1.1" 756 | es5-ext "~0.10.11" 757 | 758 | es6-weak-map@^2.0.1: 759 | version "2.0.1" 760 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81" 761 | dependencies: 762 | d "^0.1.1" 763 | es5-ext "^0.10.8" 764 | es6-iterator "2" 765 | es6-symbol "3" 766 | 767 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 768 | version "1.0.5" 769 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 770 | 771 | escope@^3.6.0: 772 | version "3.6.0" 773 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 774 | dependencies: 775 | es6-map "^0.1.3" 776 | es6-weak-map "^2.0.1" 777 | esrecurse "^4.1.0" 778 | estraverse "^4.1.1" 779 | 780 | eslint-import-resolver-node@^0.2.0: 781 | version "0.2.3" 782 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 783 | dependencies: 784 | debug "^2.2.0" 785 | object-assign "^4.0.1" 786 | resolve "^1.1.6" 787 | 788 | eslint-module-utils@^2.0.0: 789 | version "2.0.0" 790 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce" 791 | dependencies: 792 | debug "2.2.0" 793 | pkg-dir "^1.0.0" 794 | 795 | eslint-plugin-import@^2.2.0: 796 | version "2.2.0" 797 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e" 798 | dependencies: 799 | builtin-modules "^1.1.1" 800 | contains-path "^0.1.0" 801 | debug "^2.2.0" 802 | doctrine "1.5.0" 803 | eslint-import-resolver-node "^0.2.0" 804 | eslint-module-utils "^2.0.0" 805 | has "^1.0.1" 806 | lodash.cond "^4.3.0" 807 | minimatch "^3.0.3" 808 | pkg-up "^1.0.0" 809 | 810 | eslint-plugin-react@^6.8.0: 811 | version "6.8.0" 812 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.8.0.tgz#741ab5438a094532e5ce1bbb935d6832356f492d" 813 | dependencies: 814 | doctrine "^1.2.2" 815 | jsx-ast-utils "^1.3.4" 816 | 817 | eslint@^3.12.2: 818 | version "3.12.2" 819 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.12.2.tgz#6be5a9aa29658252abd7f91e9132bab1f26f3c34" 820 | dependencies: 821 | babel-code-frame "^6.16.0" 822 | chalk "^1.1.3" 823 | concat-stream "^1.4.6" 824 | debug "^2.1.1" 825 | doctrine "^1.2.2" 826 | escope "^3.6.0" 827 | espree "^3.3.1" 828 | estraverse "^4.2.0" 829 | esutils "^2.0.2" 830 | file-entry-cache "^2.0.0" 831 | glob "^7.0.3" 832 | globals "^9.14.0" 833 | ignore "^3.2.0" 834 | imurmurhash "^0.1.4" 835 | inquirer "^0.12.0" 836 | is-my-json-valid "^2.10.0" 837 | is-resolvable "^1.0.0" 838 | js-yaml "^3.5.1" 839 | json-stable-stringify "^1.0.0" 840 | levn "^0.3.0" 841 | lodash "^4.0.0" 842 | mkdirp "^0.5.0" 843 | natural-compare "^1.4.0" 844 | optionator "^0.8.2" 845 | path-is-inside "^1.0.1" 846 | pluralize "^1.2.1" 847 | progress "^1.1.8" 848 | require-uncached "^1.0.2" 849 | shelljs "^0.7.5" 850 | strip-bom "^3.0.0" 851 | strip-json-comments "~1.0.1" 852 | table "^3.7.8" 853 | text-table "~0.2.0" 854 | user-home "^2.0.0" 855 | 856 | espree@^3.3.1: 857 | version "3.3.2" 858 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.3.2.tgz#dbf3fadeb4ecb4d4778303e50103b3d36c88b89c" 859 | dependencies: 860 | acorn "^4.0.1" 861 | acorn-jsx "^3.0.0" 862 | 863 | esprima@^2.6.0: 864 | version "2.7.3" 865 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 866 | 867 | esrecurse@^4.1.0: 868 | version "4.1.0" 869 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 870 | dependencies: 871 | estraverse "~4.1.0" 872 | object-assign "^4.0.1" 873 | 874 | estraverse@^4.1.1, estraverse@^4.2.0: 875 | version "4.2.0" 876 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 877 | 878 | estraverse@~4.1.0: 879 | version "4.1.1" 880 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 881 | 882 | esutils@^2.0.0, esutils@^2.0.2: 883 | version "2.0.2" 884 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 885 | 886 | event-emitter@~0.3.4: 887 | version "0.3.4" 888 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5" 889 | dependencies: 890 | d "~0.1.1" 891 | es5-ext "~0.10.7" 892 | 893 | exit-hook@^1.0.0: 894 | version "1.1.1" 895 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 896 | 897 | expand-brackets@^0.1.4: 898 | version "0.1.5" 899 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 900 | dependencies: 901 | is-posix-bracket "^0.1.0" 902 | 903 | expand-range@^1.8.1: 904 | version "1.8.2" 905 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 906 | dependencies: 907 | fill-range "^2.1.0" 908 | 909 | expect@^1.20.2: 910 | version "1.20.2" 911 | resolved "https://registry.yarnpkg.com/expect/-/expect-1.20.2.tgz#d458fe4c56004036bae3232416a3f6361f04f965" 912 | dependencies: 913 | define-properties "~1.1.2" 914 | has "^1.0.1" 915 | is-equal "^1.5.1" 916 | is-regex "^1.0.3" 917 | object-inspect "^1.1.0" 918 | object-keys "^1.0.9" 919 | tmatch "^2.0.1" 920 | 921 | extend@~3.0.0: 922 | version "3.0.0" 923 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 924 | 925 | extglob@^0.3.1: 926 | version "0.3.2" 927 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 928 | dependencies: 929 | is-extglob "^1.0.0" 930 | 931 | extsprintf@1.0.2: 932 | version "1.0.2" 933 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 934 | 935 | fast-levenshtein@~2.0.4: 936 | version "2.0.6" 937 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 938 | 939 | fbjs@^0.8.1, fbjs@^0.8.4: 940 | version "0.8.8" 941 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.8.tgz#02f1b6e0ea0d46c24e0b51a2d24df069563a5ad6" 942 | dependencies: 943 | core-js "^1.0.0" 944 | isomorphic-fetch "^2.1.1" 945 | loose-envify "^1.0.0" 946 | object-assign "^4.1.0" 947 | promise "^7.1.1" 948 | setimmediate "^1.0.5" 949 | ua-parser-js "^0.7.9" 950 | 951 | figures@^1.3.5: 952 | version "1.7.0" 953 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 954 | dependencies: 955 | escape-string-regexp "^1.0.5" 956 | object-assign "^4.1.0" 957 | 958 | file-entry-cache@^2.0.0: 959 | version "2.0.0" 960 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 961 | dependencies: 962 | flat-cache "^1.2.1" 963 | object-assign "^4.0.1" 964 | 965 | filename-regex@^2.0.0: 966 | version "2.0.0" 967 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 968 | 969 | fill-range@^2.1.0: 970 | version "2.2.3" 971 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 972 | dependencies: 973 | is-number "^2.1.0" 974 | isobject "^2.0.0" 975 | randomatic "^1.1.3" 976 | repeat-element "^1.1.2" 977 | repeat-string "^1.5.2" 978 | 979 | find-up@^1.0.0: 980 | version "1.1.2" 981 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 982 | dependencies: 983 | path-exists "^2.0.0" 984 | pinkie-promise "^2.0.0" 985 | 986 | flat-cache@^1.2.1: 987 | version "1.2.2" 988 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 989 | dependencies: 990 | circular-json "^0.3.1" 991 | del "^2.0.2" 992 | graceful-fs "^4.1.2" 993 | write "^0.2.1" 994 | 995 | for-in@^0.1.5: 996 | version "0.1.6" 997 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 998 | 999 | for-own@^0.1.4: 1000 | version "0.1.4" 1001 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1002 | dependencies: 1003 | for-in "^0.1.5" 1004 | 1005 | foreach@^2.0.5: 1006 | version "2.0.5" 1007 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1008 | 1009 | forever-agent@~0.6.1: 1010 | version "0.6.1" 1011 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1012 | 1013 | form-data@~2.1.1: 1014 | version "2.1.2" 1015 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1016 | dependencies: 1017 | asynckit "^0.4.0" 1018 | combined-stream "^1.0.5" 1019 | mime-types "^2.1.12" 1020 | 1021 | fs-readdir-recursive@^1.0.0: 1022 | version "1.0.0" 1023 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1024 | 1025 | fs.realpath@^1.0.0: 1026 | version "1.0.0" 1027 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1028 | 1029 | fsevents@^1.0.0: 1030 | version "1.0.17" 1031 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.17.tgz#8537f3f12272678765b4fd6528c0f1f66f8f4558" 1032 | dependencies: 1033 | nan "^2.3.0" 1034 | node-pre-gyp "^0.6.29" 1035 | 1036 | fstream-ignore@~1.0.5: 1037 | version "1.0.5" 1038 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1039 | dependencies: 1040 | fstream "^1.0.0" 1041 | inherits "2" 1042 | minimatch "^3.0.0" 1043 | 1044 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1045 | version "1.0.10" 1046 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1047 | dependencies: 1048 | graceful-fs "^4.1.2" 1049 | inherits "~2.0.0" 1050 | mkdirp ">=0.5 0" 1051 | rimraf "2" 1052 | 1053 | function-bind@^1.0.2, function-bind@^1.1.0: 1054 | version "1.1.0" 1055 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1056 | 1057 | gauge@~2.7.1: 1058 | version "2.7.2" 1059 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.2.tgz#15cecc31b02d05345a5d6b0e171cdb3ad2307774" 1060 | dependencies: 1061 | aproba "^1.0.3" 1062 | console-control-strings "^1.0.0" 1063 | has-unicode "^2.0.0" 1064 | object-assign "^4.1.0" 1065 | signal-exit "^3.0.0" 1066 | string-width "^1.0.1" 1067 | strip-ansi "^3.0.1" 1068 | supports-color "^0.2.0" 1069 | wide-align "^1.1.0" 1070 | 1071 | generate-function@^2.0.0: 1072 | version "2.0.0" 1073 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1074 | 1075 | generate-object-property@^1.1.0: 1076 | version "1.2.0" 1077 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1078 | dependencies: 1079 | is-property "^1.0.0" 1080 | 1081 | getpass@^0.1.1: 1082 | version "0.1.6" 1083 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1084 | dependencies: 1085 | assert-plus "^1.0.0" 1086 | 1087 | glob-base@^0.3.0: 1088 | version "0.3.0" 1089 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1090 | dependencies: 1091 | glob-parent "^2.0.0" 1092 | is-glob "^2.0.0" 1093 | 1094 | glob-parent@^2.0.0: 1095 | version "2.0.0" 1096 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1097 | dependencies: 1098 | is-glob "^2.0.0" 1099 | 1100 | glob@7.0.5: 1101 | version "7.0.5" 1102 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.5.tgz#b4202a69099bbb4d292a7c1b95b6682b67ebdc95" 1103 | dependencies: 1104 | fs.realpath "^1.0.0" 1105 | inflight "^1.0.4" 1106 | inherits "2" 1107 | minimatch "^3.0.2" 1108 | once "^1.3.0" 1109 | path-is-absolute "^1.0.0" 1110 | 1111 | glob@^5.0.5: 1112 | version "5.0.15" 1113 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1114 | dependencies: 1115 | inflight "^1.0.4" 1116 | inherits "2" 1117 | minimatch "2 || 3" 1118 | once "^1.3.0" 1119 | path-is-absolute "^1.0.0" 1120 | 1121 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 1122 | version "7.1.1" 1123 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1124 | dependencies: 1125 | fs.realpath "^1.0.0" 1126 | inflight "^1.0.4" 1127 | inherits "2" 1128 | minimatch "^3.0.2" 1129 | once "^1.3.0" 1130 | path-is-absolute "^1.0.0" 1131 | 1132 | globals@^9.0.0, globals@^9.14.0: 1133 | version "9.14.0" 1134 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034" 1135 | 1136 | globby@^5.0.0: 1137 | version "5.0.0" 1138 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1139 | dependencies: 1140 | array-union "^1.0.1" 1141 | arrify "^1.0.0" 1142 | glob "^7.0.3" 1143 | object-assign "^4.0.1" 1144 | pify "^2.0.0" 1145 | pinkie-promise "^2.0.0" 1146 | 1147 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1148 | version "4.1.11" 1149 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1150 | 1151 | "graceful-readlink@>= 1.0.0": 1152 | version "1.0.1" 1153 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1154 | 1155 | graphiql@^0.8.1: 1156 | version "0.8.1" 1157 | resolved "https://registry.yarnpkg.com/graphiql/-/graphiql-0.8.1.tgz#3bb65ea5dc44e251650af61a9e478e00707e6ee2" 1158 | dependencies: 1159 | codemirror "^5.15.2" 1160 | codemirror-graphql "^0.5.9" 1161 | marked "^0.3.5" 1162 | 1163 | graphql@^0.8.2: 1164 | version "0.8.2" 1165 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.8.2.tgz#eb1bb524b38104bbf2c9157f9abc67db2feba7d2" 1166 | dependencies: 1167 | iterall "1.0.2" 1168 | 1169 | growl@1.9.2: 1170 | version "1.9.2" 1171 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1172 | 1173 | har-validator@~2.0.6: 1174 | version "2.0.6" 1175 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1176 | dependencies: 1177 | chalk "^1.1.1" 1178 | commander "^2.9.0" 1179 | is-my-json-valid "^2.12.4" 1180 | pinkie-promise "^2.0.0" 1181 | 1182 | has-ansi@^2.0.0: 1183 | version "2.0.0" 1184 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1185 | dependencies: 1186 | ansi-regex "^2.0.0" 1187 | 1188 | has-flag@^1.0.0: 1189 | version "1.0.0" 1190 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1191 | 1192 | has-unicode@^2.0.0: 1193 | version "2.0.1" 1194 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1195 | 1196 | has@^1.0.1: 1197 | version "1.0.1" 1198 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1199 | dependencies: 1200 | function-bind "^1.0.2" 1201 | 1202 | hawk@~3.1.3: 1203 | version "3.1.3" 1204 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1205 | dependencies: 1206 | boom "2.x.x" 1207 | cryptiles "2.x.x" 1208 | hoek "2.x.x" 1209 | sntp "1.x.x" 1210 | 1211 | hoek@2.x.x: 1212 | version "2.16.3" 1213 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1214 | 1215 | home-or-tmp@^2.0.0: 1216 | version "2.0.0" 1217 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1218 | dependencies: 1219 | os-homedir "^1.0.0" 1220 | os-tmpdir "^1.0.1" 1221 | 1222 | http-signature@~1.1.0: 1223 | version "1.1.1" 1224 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1225 | dependencies: 1226 | assert-plus "^0.2.0" 1227 | jsprim "^1.2.2" 1228 | sshpk "^1.7.0" 1229 | 1230 | iconv-lite@~0.4.13: 1231 | version "0.4.15" 1232 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 1233 | 1234 | ignore@^3.2.0: 1235 | version "3.2.0" 1236 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.0.tgz#8d88f03c3002a0ac52114db25d2c673b0bf1e435" 1237 | 1238 | imurmurhash@^0.1.4: 1239 | version "0.1.4" 1240 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1241 | 1242 | inflight@^1.0.4: 1243 | version "1.0.6" 1244 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1245 | dependencies: 1246 | once "^1.3.0" 1247 | wrappy "1" 1248 | 1249 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1250 | version "2.0.3" 1251 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1252 | 1253 | ini@~1.3.0: 1254 | version "1.3.4" 1255 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1256 | 1257 | inquirer@^0.12.0: 1258 | version "0.12.0" 1259 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1260 | dependencies: 1261 | ansi-escapes "^1.1.0" 1262 | ansi-regex "^2.0.0" 1263 | chalk "^1.0.0" 1264 | cli-cursor "^1.0.1" 1265 | cli-width "^2.0.0" 1266 | figures "^1.3.5" 1267 | lodash "^4.3.0" 1268 | readline2 "^1.0.1" 1269 | run-async "^0.1.0" 1270 | rx-lite "^3.1.2" 1271 | string-width "^1.0.1" 1272 | strip-ansi "^3.0.0" 1273 | through "^2.3.6" 1274 | 1275 | interpret@^1.0.0: 1276 | version "1.0.1" 1277 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 1278 | 1279 | invariant@^2.2.0: 1280 | version "2.2.2" 1281 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1282 | dependencies: 1283 | loose-envify "^1.0.0" 1284 | 1285 | is-arrow-function@^2.0.3: 1286 | version "2.0.3" 1287 | resolved "https://registry.yarnpkg.com/is-arrow-function/-/is-arrow-function-2.0.3.tgz#29be2c2d8d9450852b8bbafb635ba7b8d8e87ec2" 1288 | dependencies: 1289 | is-callable "^1.0.4" 1290 | 1291 | is-binary-path@^1.0.0: 1292 | version "1.0.1" 1293 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1294 | dependencies: 1295 | binary-extensions "^1.0.0" 1296 | 1297 | is-boolean-object@^1.0.0: 1298 | version "1.0.0" 1299 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.0.tgz#98f8b28030684219a95f375cfbd88ce3405dff93" 1300 | 1301 | is-buffer@^1.0.2: 1302 | version "1.1.4" 1303 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1304 | 1305 | is-callable@^1.0.4, is-callable@^1.1.1, is-callable@^1.1.3: 1306 | version "1.1.3" 1307 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1308 | 1309 | is-date-object@^1.0.1: 1310 | version "1.0.1" 1311 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1312 | 1313 | is-dotfile@^1.0.0: 1314 | version "1.0.2" 1315 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1316 | 1317 | is-equal-shallow@^0.1.3: 1318 | version "0.1.3" 1319 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1320 | dependencies: 1321 | is-primitive "^2.0.0" 1322 | 1323 | is-equal@^1.5.1: 1324 | version "1.5.3" 1325 | resolved "https://registry.yarnpkg.com/is-equal/-/is-equal-1.5.3.tgz#05b7fa3a1122cbc71c1ef41ce0142d5532013b29" 1326 | dependencies: 1327 | has "^1.0.1" 1328 | is-arrow-function "^2.0.3" 1329 | is-boolean-object "^1.0.0" 1330 | is-callable "^1.1.3" 1331 | is-date-object "^1.0.1" 1332 | is-generator-function "^1.0.3" 1333 | is-number-object "^1.0.3" 1334 | is-regex "^1.0.3" 1335 | is-string "^1.0.4" 1336 | is-symbol "^1.0.1" 1337 | object.entries "^1.0.3" 1338 | 1339 | is-extendable@^0.1.1: 1340 | version "0.1.1" 1341 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1342 | 1343 | is-extglob@^1.0.0: 1344 | version "1.0.0" 1345 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1346 | 1347 | is-finite@^1.0.0: 1348 | version "1.0.2" 1349 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1350 | dependencies: 1351 | number-is-nan "^1.0.0" 1352 | 1353 | is-fullwidth-code-point@^1.0.0: 1354 | version "1.0.0" 1355 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1356 | dependencies: 1357 | number-is-nan "^1.0.0" 1358 | 1359 | is-fullwidth-code-point@^2.0.0: 1360 | version "2.0.0" 1361 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1362 | 1363 | is-generator-function@^1.0.3: 1364 | version "1.0.6" 1365 | resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.6.tgz#9e71653cd15fff341c79c4151460a131d31e9fc4" 1366 | 1367 | is-glob@^2.0.0, is-glob@^2.0.1: 1368 | version "2.0.1" 1369 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1370 | dependencies: 1371 | is-extglob "^1.0.0" 1372 | 1373 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 1374 | version "2.15.0" 1375 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 1376 | dependencies: 1377 | generate-function "^2.0.0" 1378 | generate-object-property "^1.1.0" 1379 | jsonpointer "^4.0.0" 1380 | xtend "^4.0.0" 1381 | 1382 | is-number-object@^1.0.3: 1383 | version "1.0.3" 1384 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.3.tgz#f265ab89a9f445034ef6aff15a8f00b00f551799" 1385 | 1386 | is-number@^2.0.2, is-number@^2.1.0: 1387 | version "2.1.0" 1388 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1389 | dependencies: 1390 | kind-of "^3.0.2" 1391 | 1392 | is-path-cwd@^1.0.0: 1393 | version "1.0.0" 1394 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1395 | 1396 | is-path-in-cwd@^1.0.0: 1397 | version "1.0.0" 1398 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1399 | dependencies: 1400 | is-path-inside "^1.0.0" 1401 | 1402 | is-path-inside@^1.0.0: 1403 | version "1.0.0" 1404 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1405 | dependencies: 1406 | path-is-inside "^1.0.1" 1407 | 1408 | is-posix-bracket@^0.1.0: 1409 | version "0.1.1" 1410 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1411 | 1412 | is-primitive@^2.0.0: 1413 | version "2.0.0" 1414 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1415 | 1416 | is-property@^1.0.0: 1417 | version "1.0.2" 1418 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1419 | 1420 | is-regex@^1.0.3: 1421 | version "1.0.3" 1422 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.3.tgz#0d55182bddf9f2fde278220aec3a75642c908637" 1423 | 1424 | is-resolvable@^1.0.0: 1425 | version "1.0.0" 1426 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1427 | dependencies: 1428 | tryit "^1.0.1" 1429 | 1430 | is-stream@^1.0.1: 1431 | version "1.1.0" 1432 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1433 | 1434 | is-string@^1.0.4: 1435 | version "1.0.4" 1436 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.4.tgz#cc3a9b69857d621e963725a24caeec873b826e64" 1437 | 1438 | is-symbol@^1.0.1: 1439 | version "1.0.1" 1440 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1441 | 1442 | is-typedarray@~1.0.0: 1443 | version "1.0.0" 1444 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1445 | 1446 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1447 | version "1.0.0" 1448 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1449 | 1450 | isobject@^2.0.0: 1451 | version "2.1.0" 1452 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1453 | dependencies: 1454 | isarray "1.0.0" 1455 | 1456 | isomorphic-fetch@^2.1.1: 1457 | version "2.2.1" 1458 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1459 | dependencies: 1460 | node-fetch "^1.0.1" 1461 | whatwg-fetch ">=0.10.0" 1462 | 1463 | isstream@~0.1.2: 1464 | version "0.1.2" 1465 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1466 | 1467 | iterall@1.0.2: 1468 | version "1.0.2" 1469 | resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.0.2.tgz#41a2e96ce9eda5e61c767ee5dc312373bb046e91" 1470 | 1471 | jodid25519@^1.0.0: 1472 | version "1.0.2" 1473 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1474 | dependencies: 1475 | jsbn "~0.1.0" 1476 | 1477 | js-tokens@^2.0.0: 1478 | version "2.0.0" 1479 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" 1480 | 1481 | js-yaml@^3.5.1: 1482 | version "3.7.0" 1483 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 1484 | dependencies: 1485 | argparse "^1.0.7" 1486 | esprima "^2.6.0" 1487 | 1488 | jsbn@~0.1.0: 1489 | version "0.1.0" 1490 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 1491 | 1492 | jsesc@^1.3.0: 1493 | version "1.3.0" 1494 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1495 | 1496 | json-schema@0.2.3: 1497 | version "0.2.3" 1498 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1499 | 1500 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 1501 | version "1.0.1" 1502 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1503 | dependencies: 1504 | jsonify "~0.0.0" 1505 | 1506 | json-stringify-safe@~5.0.1: 1507 | version "5.0.1" 1508 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1509 | 1510 | json3@3.3.2: 1511 | version "3.3.2" 1512 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1513 | 1514 | json5@^0.5.0: 1515 | version "0.5.1" 1516 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1517 | 1518 | jsonify@~0.0.0: 1519 | version "0.0.0" 1520 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1521 | 1522 | jsonpointer@^4.0.0: 1523 | version "4.0.1" 1524 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1525 | 1526 | jsprim@^1.2.2: 1527 | version "1.3.1" 1528 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 1529 | dependencies: 1530 | extsprintf "1.0.2" 1531 | json-schema "0.2.3" 1532 | verror "1.3.6" 1533 | 1534 | jsx-ast-utils@^1.3.4: 1535 | version "1.3.5" 1536 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.3.5.tgz#9ba6297198d9f754594d62e59496ffb923778dd4" 1537 | dependencies: 1538 | acorn-jsx "^3.0.1" 1539 | object-assign "^4.1.0" 1540 | 1541 | kind-of@^3.0.2: 1542 | version "3.1.0" 1543 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 1544 | dependencies: 1545 | is-buffer "^1.0.2" 1546 | 1547 | levn@^0.3.0, levn@~0.3.0: 1548 | version "0.3.0" 1549 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1550 | dependencies: 1551 | prelude-ls "~1.1.2" 1552 | type-check "~0.3.2" 1553 | 1554 | lodash-es@^4.2.1: 1555 | version "4.17.4" 1556 | resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.4.tgz#dcc1d7552e150a0640073ba9cb31d70f032950e7" 1557 | 1558 | lodash._baseassign@^3.0.0: 1559 | version "3.2.0" 1560 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1561 | dependencies: 1562 | lodash._basecopy "^3.0.0" 1563 | lodash.keys "^3.0.0" 1564 | 1565 | lodash._basecopy@^3.0.0: 1566 | version "3.0.1" 1567 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1568 | 1569 | lodash._basecreate@^3.0.0: 1570 | version "3.0.3" 1571 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 1572 | 1573 | lodash._getnative@^3.0.0: 1574 | version "3.9.1" 1575 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1576 | 1577 | lodash._isiterateecall@^3.0.0: 1578 | version "3.0.9" 1579 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1580 | 1581 | lodash.cond@^4.3.0: 1582 | version "4.5.2" 1583 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 1584 | 1585 | lodash.create@3.1.1: 1586 | version "3.1.1" 1587 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 1588 | dependencies: 1589 | lodash._baseassign "^3.0.0" 1590 | lodash._basecreate "^3.0.0" 1591 | lodash._isiterateecall "^3.0.0" 1592 | 1593 | lodash.isarguments@^3.0.0: 1594 | version "3.1.0" 1595 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1596 | 1597 | lodash.isarray@^3.0.0: 1598 | version "3.0.4" 1599 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1600 | 1601 | lodash.keys@^3.0.0: 1602 | version "3.1.2" 1603 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1604 | dependencies: 1605 | lodash._getnative "^3.0.0" 1606 | lodash.isarguments "^3.0.0" 1607 | lodash.isarray "^3.0.0" 1608 | 1609 | lodash.pickby@^4.6.0: 1610 | version "4.6.0" 1611 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff" 1612 | 1613 | lodash@^4.0.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0: 1614 | version "4.17.4" 1615 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1616 | 1617 | loose-envify@^1.0.0, loose-envify@^1.1.0: 1618 | version "1.3.0" 1619 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8" 1620 | dependencies: 1621 | js-tokens "^2.0.0" 1622 | 1623 | marked@^0.3.5: 1624 | version "0.3.6" 1625 | resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.6.tgz#b2c6c618fccece4ef86c4fc6cb8a7cbf5aeda8d7" 1626 | 1627 | micromatch@^2.1.5: 1628 | version "2.3.11" 1629 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1630 | dependencies: 1631 | arr-diff "^2.0.0" 1632 | array-unique "^0.2.1" 1633 | braces "^1.8.2" 1634 | expand-brackets "^0.1.4" 1635 | extglob "^0.3.1" 1636 | filename-regex "^2.0.0" 1637 | is-extglob "^1.0.0" 1638 | is-glob "^2.0.1" 1639 | kind-of "^3.0.2" 1640 | normalize-path "^2.0.1" 1641 | object.omit "^2.0.0" 1642 | parse-glob "^3.0.4" 1643 | regex-cache "^0.4.2" 1644 | 1645 | mime-db@~1.25.0: 1646 | version "1.25.0" 1647 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.25.0.tgz#c18dbd7c73a5dbf6f44a024dc0d165a1e7b1c392" 1648 | 1649 | mime-types@^2.1.12, mime-types@~2.1.7: 1650 | version "2.1.13" 1651 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.13.tgz#e07aaa9c6c6b9a7ca3012c69003ad25a39e92a88" 1652 | dependencies: 1653 | mime-db "~1.25.0" 1654 | 1655 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3: 1656 | version "3.0.3" 1657 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1658 | dependencies: 1659 | brace-expansion "^1.0.0" 1660 | 1661 | minimist@0.0.8: 1662 | version "0.0.8" 1663 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1664 | 1665 | minimist@^1.2.0: 1666 | version "1.2.0" 1667 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1668 | 1669 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: 1670 | version "0.5.1" 1671 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1672 | dependencies: 1673 | minimist "0.0.8" 1674 | 1675 | mocha@^3.2.0: 1676 | version "3.2.0" 1677 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.2.0.tgz#7dc4f45e5088075171a68896814e6ae9eb7a85e3" 1678 | dependencies: 1679 | browser-stdout "1.3.0" 1680 | commander "2.9.0" 1681 | debug "2.2.0" 1682 | diff "1.4.0" 1683 | escape-string-regexp "1.0.5" 1684 | glob "7.0.5" 1685 | growl "1.9.2" 1686 | json3 "3.3.2" 1687 | lodash.create "3.1.1" 1688 | mkdirp "0.5.1" 1689 | supports-color "3.1.2" 1690 | 1691 | ms@0.7.1: 1692 | version "0.7.1" 1693 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1694 | 1695 | mute-stream@0.0.5: 1696 | version "0.0.5" 1697 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 1698 | 1699 | nan@^2.3.0: 1700 | version "2.5.0" 1701 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.0.tgz#aa8f1e34531d807e9e27755b234b4a6ec0c152a8" 1702 | 1703 | natural-compare@^1.4.0: 1704 | version "1.4.0" 1705 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1706 | 1707 | node-fetch@^1.0.1: 1708 | version "1.6.3" 1709 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" 1710 | dependencies: 1711 | encoding "^0.1.11" 1712 | is-stream "^1.0.1" 1713 | 1714 | node-pre-gyp@^0.6.29: 1715 | version "0.6.32" 1716 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.32.tgz#fc452b376e7319b3d255f5f34853ef6fd8fe1fd5" 1717 | dependencies: 1718 | mkdirp "~0.5.1" 1719 | nopt "~3.0.6" 1720 | npmlog "^4.0.1" 1721 | rc "~1.1.6" 1722 | request "^2.79.0" 1723 | rimraf "~2.5.4" 1724 | semver "~5.3.0" 1725 | tar "~2.2.1" 1726 | tar-pack "~3.3.0" 1727 | 1728 | nopt@~3.0.6: 1729 | version "3.0.6" 1730 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1731 | dependencies: 1732 | abbrev "1" 1733 | 1734 | normalize-path@^2.0.1: 1735 | version "2.0.1" 1736 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 1737 | 1738 | npmlog@^4.0.1: 1739 | version "4.0.2" 1740 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 1741 | dependencies: 1742 | are-we-there-yet "~1.1.2" 1743 | console-control-strings "~1.1.0" 1744 | gauge "~2.7.1" 1745 | set-blocking "~2.0.0" 1746 | 1747 | number-is-nan@^1.0.0: 1748 | version "1.0.1" 1749 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1750 | 1751 | oauth-sign@~0.8.1: 1752 | version "0.8.2" 1753 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1754 | 1755 | object-assign@^4.0.1, object-assign@^4.1.0: 1756 | version "4.1.0" 1757 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 1758 | 1759 | object-inspect@^1.1.0: 1760 | version "1.2.1" 1761 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.2.1.tgz#3b62226eb8f6d441751c7d8f22a20ff80ac9dc3f" 1762 | 1763 | object-keys@^1.0.8, object-keys@^1.0.9: 1764 | version "1.0.11" 1765 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 1766 | 1767 | object.entries@^1.0.3: 1768 | version "1.0.4" 1769 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.0.4.tgz#1bf9a4dd2288f5b33f3a993d257661f05d161a5f" 1770 | dependencies: 1771 | define-properties "^1.1.2" 1772 | es-abstract "^1.6.1" 1773 | function-bind "^1.1.0" 1774 | has "^1.0.1" 1775 | 1776 | object.omit@^2.0.0: 1777 | version "2.0.1" 1778 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1779 | dependencies: 1780 | for-own "^0.1.4" 1781 | is-extendable "^0.1.1" 1782 | 1783 | once@^1.3.0: 1784 | version "1.4.0" 1785 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1786 | dependencies: 1787 | wrappy "1" 1788 | 1789 | once@~1.3.3: 1790 | version "1.3.3" 1791 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 1792 | dependencies: 1793 | wrappy "1" 1794 | 1795 | onetime@^1.0.0: 1796 | version "1.1.0" 1797 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 1798 | 1799 | optionator@^0.8.2: 1800 | version "0.8.2" 1801 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1802 | dependencies: 1803 | deep-is "~0.1.3" 1804 | fast-levenshtein "~2.0.4" 1805 | levn "~0.3.0" 1806 | prelude-ls "~1.1.2" 1807 | type-check "~0.3.2" 1808 | wordwrap "~1.0.0" 1809 | 1810 | os-homedir@^1.0.0: 1811 | version "1.0.2" 1812 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1813 | 1814 | os-tmpdir@^1.0.1: 1815 | version "1.0.2" 1816 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1817 | 1818 | output-file-sync@^1.1.0: 1819 | version "1.1.2" 1820 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1821 | dependencies: 1822 | graceful-fs "^4.1.4" 1823 | mkdirp "^0.5.1" 1824 | object-assign "^4.1.0" 1825 | 1826 | parse-glob@^3.0.4: 1827 | version "3.0.4" 1828 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1829 | dependencies: 1830 | glob-base "^0.3.0" 1831 | is-dotfile "^1.0.0" 1832 | is-extglob "^1.0.0" 1833 | is-glob "^2.0.0" 1834 | 1835 | path-exists@^2.0.0: 1836 | version "2.1.0" 1837 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1838 | dependencies: 1839 | pinkie-promise "^2.0.0" 1840 | 1841 | path-is-absolute@^1.0.0: 1842 | version "1.0.1" 1843 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1844 | 1845 | path-is-inside@^1.0.1: 1846 | version "1.0.2" 1847 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1848 | 1849 | pify@^2.0.0: 1850 | version "2.3.0" 1851 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1852 | 1853 | pinkie-promise@^2.0.0: 1854 | version "2.0.1" 1855 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1856 | dependencies: 1857 | pinkie "^2.0.0" 1858 | 1859 | pinkie@^2.0.0: 1860 | version "2.0.4" 1861 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1862 | 1863 | pkg-dir@^1.0.0: 1864 | version "1.0.0" 1865 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 1866 | dependencies: 1867 | find-up "^1.0.0" 1868 | 1869 | pkg-up@^1.0.0: 1870 | version "1.0.0" 1871 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 1872 | dependencies: 1873 | find-up "^1.0.0" 1874 | 1875 | pluralize@^1.2.1: 1876 | version "1.2.1" 1877 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 1878 | 1879 | prelude-ls@~1.1.2: 1880 | version "1.1.2" 1881 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1882 | 1883 | preserve@^0.2.0: 1884 | version "0.2.0" 1885 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1886 | 1887 | private@^0.1.6: 1888 | version "0.1.6" 1889 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 1890 | 1891 | process-nextick-args@~1.0.6: 1892 | version "1.0.7" 1893 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1894 | 1895 | progress@^1.1.8: 1896 | version "1.1.8" 1897 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 1898 | 1899 | promise@^7.1.1: 1900 | version "7.1.1" 1901 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 1902 | dependencies: 1903 | asap "~2.0.3" 1904 | 1905 | punycode@^1.4.1: 1906 | version "1.4.1" 1907 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1908 | 1909 | qs@~6.3.0: 1910 | version "6.3.0" 1911 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 1912 | 1913 | randomatic@^1.1.3: 1914 | version "1.1.6" 1915 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1916 | dependencies: 1917 | is-number "^2.0.2" 1918 | kind-of "^3.0.2" 1919 | 1920 | rc@~1.1.6: 1921 | version "1.1.6" 1922 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 1923 | dependencies: 1924 | deep-extend "~0.4.0" 1925 | ini "~1.3.0" 1926 | minimist "^1.2.0" 1927 | strip-json-comments "~1.0.4" 1928 | 1929 | react-dom@^15.4.1: 1930 | version "15.4.1" 1931 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.4.1.tgz#d54c913261aaedb17adc20410d029dcc18a1344a" 1932 | dependencies: 1933 | fbjs "^0.8.1" 1934 | loose-envify "^1.1.0" 1935 | object-assign "^4.1.0" 1936 | 1937 | react@^15.4.1: 1938 | version "15.4.1" 1939 | resolved "https://registry.yarnpkg.com/react/-/react-15.4.1.tgz#498e918602677a3983cd0fd206dfe700389a0dd6" 1940 | dependencies: 1941 | fbjs "^0.8.4" 1942 | loose-envify "^1.1.0" 1943 | object-assign "^4.1.0" 1944 | 1945 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.2.2: 1946 | version "2.2.2" 1947 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 1948 | dependencies: 1949 | buffer-shims "^1.0.0" 1950 | core-util-is "~1.0.0" 1951 | inherits "~2.0.1" 1952 | isarray "~1.0.0" 1953 | process-nextick-args "~1.0.6" 1954 | string_decoder "~0.10.x" 1955 | util-deprecate "~1.0.1" 1956 | 1957 | readable-stream@~2.1.4: 1958 | version "2.1.5" 1959 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 1960 | dependencies: 1961 | buffer-shims "^1.0.0" 1962 | core-util-is "~1.0.0" 1963 | inherits "~2.0.1" 1964 | isarray "~1.0.0" 1965 | process-nextick-args "~1.0.6" 1966 | string_decoder "~0.10.x" 1967 | util-deprecate "~1.0.1" 1968 | 1969 | readdirp@^2.0.0: 1970 | version "2.1.0" 1971 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1972 | dependencies: 1973 | graceful-fs "^4.1.2" 1974 | minimatch "^3.0.2" 1975 | readable-stream "^2.0.2" 1976 | set-immediate-shim "^1.0.1" 1977 | 1978 | readline2@^1.0.1: 1979 | version "1.0.1" 1980 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 1981 | dependencies: 1982 | code-point-at "^1.0.0" 1983 | is-fullwidth-code-point "^1.0.0" 1984 | mute-stream "0.0.5" 1985 | 1986 | rechoir@^0.6.2: 1987 | version "0.6.2" 1988 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 1989 | dependencies: 1990 | resolve "^1.1.6" 1991 | 1992 | redux@^3.6.0: 1993 | version "3.6.0" 1994 | resolved "https://registry.yarnpkg.com/redux/-/redux-3.6.0.tgz#887c2b3d0b9bd86eca2be70571c27654c19e188d" 1995 | dependencies: 1996 | lodash "^4.2.1" 1997 | lodash-es "^4.2.1" 1998 | loose-envify "^1.1.0" 1999 | symbol-observable "^1.0.2" 2000 | 2001 | regenerator-runtime@^0.10.0: 2002 | version "0.10.1" 2003 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb" 2004 | 2005 | regex-cache@^0.4.2: 2006 | version "0.4.3" 2007 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2008 | dependencies: 2009 | is-equal-shallow "^0.1.3" 2010 | is-primitive "^2.0.0" 2011 | 2012 | repeat-element@^1.1.2: 2013 | version "1.1.2" 2014 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2015 | 2016 | repeat-string@^1.5.2: 2017 | version "1.6.1" 2018 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2019 | 2020 | repeating@^2.0.0: 2021 | version "2.0.1" 2022 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2023 | dependencies: 2024 | is-finite "^1.0.0" 2025 | 2026 | request@^2.79.0: 2027 | version "2.79.0" 2028 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 2029 | dependencies: 2030 | aws-sign2 "~0.6.0" 2031 | aws4 "^1.2.1" 2032 | caseless "~0.11.0" 2033 | combined-stream "~1.0.5" 2034 | extend "~3.0.0" 2035 | forever-agent "~0.6.1" 2036 | form-data "~2.1.1" 2037 | har-validator "~2.0.6" 2038 | hawk "~3.1.3" 2039 | http-signature "~1.1.0" 2040 | is-typedarray "~1.0.0" 2041 | isstream "~0.1.2" 2042 | json-stringify-safe "~5.0.1" 2043 | mime-types "~2.1.7" 2044 | oauth-sign "~0.8.1" 2045 | qs "~6.3.0" 2046 | stringstream "~0.0.4" 2047 | tough-cookie "~2.3.0" 2048 | tunnel-agent "~0.4.1" 2049 | uuid "^3.0.0" 2050 | 2051 | require-uncached@^1.0.2: 2052 | version "1.0.3" 2053 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2054 | dependencies: 2055 | caller-path "^0.1.0" 2056 | resolve-from "^1.0.0" 2057 | 2058 | resolve-from@^1.0.0: 2059 | version "1.0.1" 2060 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2061 | 2062 | resolve@^1.1.6: 2063 | version "1.2.0" 2064 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2.0.tgz#9589c3f2f6149d1417a40becc1663db6ec6bc26c" 2065 | 2066 | restore-cursor@^1.0.1: 2067 | version "1.0.1" 2068 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2069 | dependencies: 2070 | exit-hook "^1.0.0" 2071 | onetime "^1.0.0" 2072 | 2073 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.4, rimraf@~2.5.1, rimraf@~2.5.4: 2074 | version "2.5.4" 2075 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 2076 | dependencies: 2077 | glob "^7.0.5" 2078 | 2079 | run-async@^0.1.0: 2080 | version "0.1.0" 2081 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 2082 | dependencies: 2083 | once "^1.3.0" 2084 | 2085 | rx-lite@^3.1.2: 2086 | version "3.1.2" 2087 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 2088 | 2089 | semver@~5.3.0: 2090 | version "5.3.0" 2091 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2092 | 2093 | set-blocking@~2.0.0: 2094 | version "2.0.0" 2095 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2096 | 2097 | set-immediate-shim@^1.0.1: 2098 | version "1.0.1" 2099 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2100 | 2101 | setimmediate@^1.0.5: 2102 | version "1.0.5" 2103 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2104 | 2105 | shelljs@^0.7.5: 2106 | version "0.7.5" 2107 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.5.tgz#2eef7a50a21e1ccf37da00df767ec69e30ad0675" 2108 | dependencies: 2109 | glob "^7.0.0" 2110 | interpret "^1.0.0" 2111 | rechoir "^0.6.2" 2112 | 2113 | signal-exit@^3.0.0: 2114 | version "3.0.2" 2115 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2116 | 2117 | slash@^1.0.0: 2118 | version "1.0.0" 2119 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2120 | 2121 | slice-ansi@0.0.4: 2122 | version "0.0.4" 2123 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2124 | 2125 | sntp@1.x.x: 2126 | version "1.0.9" 2127 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2128 | dependencies: 2129 | hoek "2.x.x" 2130 | 2131 | source-map-support@^0.4.2: 2132 | version "0.4.8" 2133 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.8.tgz#4871918d8a3af07289182e974e32844327b2e98b" 2134 | dependencies: 2135 | source-map "^0.5.3" 2136 | 2137 | source-map@^0.5.0, source-map@^0.5.3: 2138 | version "0.5.6" 2139 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2140 | 2141 | sprintf-js@~1.0.2: 2142 | version "1.0.3" 2143 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2144 | 2145 | sshpk@^1.7.0: 2146 | version "1.10.1" 2147 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0" 2148 | dependencies: 2149 | asn1 "~0.2.3" 2150 | assert-plus "^1.0.0" 2151 | dashdash "^1.12.0" 2152 | getpass "^0.1.1" 2153 | optionalDependencies: 2154 | bcrypt-pbkdf "^1.0.0" 2155 | ecc-jsbn "~0.1.1" 2156 | jodid25519 "^1.0.0" 2157 | jsbn "~0.1.0" 2158 | tweetnacl "~0.14.0" 2159 | 2160 | string-width@^1.0.1: 2161 | version "1.0.2" 2162 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2163 | dependencies: 2164 | code-point-at "^1.0.0" 2165 | is-fullwidth-code-point "^1.0.0" 2166 | strip-ansi "^3.0.0" 2167 | 2168 | string-width@^2.0.0: 2169 | version "2.0.0" 2170 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 2171 | dependencies: 2172 | is-fullwidth-code-point "^2.0.0" 2173 | strip-ansi "^3.0.0" 2174 | 2175 | string_decoder@~0.10.x: 2176 | version "0.10.31" 2177 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2178 | 2179 | stringstream@~0.0.4: 2180 | version "0.0.5" 2181 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2182 | 2183 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2184 | version "3.0.1" 2185 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2186 | dependencies: 2187 | ansi-regex "^2.0.0" 2188 | 2189 | strip-bom@^3.0.0: 2190 | version "3.0.0" 2191 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2192 | 2193 | strip-json-comments@~1.0.1, strip-json-comments@~1.0.4: 2194 | version "1.0.4" 2195 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 2196 | 2197 | supports-color@3.1.2: 2198 | version "3.1.2" 2199 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 2200 | dependencies: 2201 | has-flag "^1.0.0" 2202 | 2203 | supports-color@^0.2.0: 2204 | version "0.2.0" 2205 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a" 2206 | 2207 | supports-color@^2.0.0: 2208 | version "2.0.0" 2209 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2210 | 2211 | symbol-observable@^1.0.2: 2212 | version "1.0.4" 2213 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 2214 | 2215 | table@^3.7.8: 2216 | version "3.8.3" 2217 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 2218 | dependencies: 2219 | ajv "^4.7.0" 2220 | ajv-keywords "^1.0.0" 2221 | chalk "^1.1.1" 2222 | lodash "^4.0.0" 2223 | slice-ansi "0.0.4" 2224 | string-width "^2.0.0" 2225 | 2226 | tar-pack@~3.3.0: 2227 | version "3.3.0" 2228 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 2229 | dependencies: 2230 | debug "~2.2.0" 2231 | fstream "~1.0.10" 2232 | fstream-ignore "~1.0.5" 2233 | once "~1.3.3" 2234 | readable-stream "~2.1.4" 2235 | rimraf "~2.5.1" 2236 | tar "~2.2.1" 2237 | uid-number "~0.0.6" 2238 | 2239 | tar@~2.2.1: 2240 | version "2.2.1" 2241 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2242 | dependencies: 2243 | block-stream "*" 2244 | fstream "^1.0.2" 2245 | inherits "2" 2246 | 2247 | text-table@~0.2.0: 2248 | version "0.2.0" 2249 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2250 | 2251 | through@^2.3.6: 2252 | version "2.3.8" 2253 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2254 | 2255 | tmatch@^2.0.1: 2256 | version "2.0.1" 2257 | resolved "https://registry.yarnpkg.com/tmatch/-/tmatch-2.0.1.tgz#0c56246f33f30da1b8d3d72895abaf16660f38cf" 2258 | 2259 | to-fast-properties@^1.0.1: 2260 | version "1.0.2" 2261 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 2262 | 2263 | tough-cookie@~2.3.0: 2264 | version "2.3.2" 2265 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2266 | dependencies: 2267 | punycode "^1.4.1" 2268 | 2269 | tryit@^1.0.1: 2270 | version "1.0.3" 2271 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 2272 | 2273 | tunnel-agent@~0.4.1: 2274 | version "0.4.3" 2275 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 2276 | 2277 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2278 | version "0.14.5" 2279 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2280 | 2281 | type-check@~0.3.2: 2282 | version "0.3.2" 2283 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2284 | dependencies: 2285 | prelude-ls "~1.1.2" 2286 | 2287 | typedarray@^0.0.6: 2288 | version "0.0.6" 2289 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2290 | 2291 | ua-parser-js@^0.7.9: 2292 | version "0.7.12" 2293 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 2294 | 2295 | uid-number@~0.0.6: 2296 | version "0.0.6" 2297 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2298 | 2299 | user-home@^1.1.1: 2300 | version "1.1.1" 2301 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2302 | 2303 | user-home@^2.0.0: 2304 | version "2.0.0" 2305 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 2306 | dependencies: 2307 | os-homedir "^1.0.0" 2308 | 2309 | util-deprecate@~1.0.1: 2310 | version "1.0.2" 2311 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2312 | 2313 | uuid@^3.0.0: 2314 | version "3.0.1" 2315 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 2316 | 2317 | v8flags@^2.0.10: 2318 | version "2.0.11" 2319 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 2320 | dependencies: 2321 | user-home "^1.1.1" 2322 | 2323 | verror@1.3.6: 2324 | version "1.3.6" 2325 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2326 | dependencies: 2327 | extsprintf "1.0.2" 2328 | 2329 | whatwg-fetch@>=0.10.0: 2330 | version "2.0.1" 2331 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.1.tgz#078b9461bbe91cea73cbce8bb122a05f9e92b772" 2332 | 2333 | wide-align@^1.1.0: 2334 | version "1.1.0" 2335 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 2336 | dependencies: 2337 | string-width "^1.0.1" 2338 | 2339 | wordwrap@~1.0.0: 2340 | version "1.0.0" 2341 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2342 | 2343 | wrappy@1: 2344 | version "1.0.2" 2345 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2346 | 2347 | write@^0.2.1: 2348 | version "0.2.1" 2349 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 2350 | dependencies: 2351 | mkdirp "^0.5.1" 2352 | 2353 | xtend@^4.0.0: 2354 | version "4.0.1" 2355 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2356 | --------------------------------------------------------------------------------