├── .gitignore ├── .npmignore ├── src ├── index.js ├── withRouter.js ├── router.test.js ├── notFound.js ├── cliRouter.js ├── utils.js ├── route.js ├── withRouter.test.js ├── cliRouter.test.js ├── route.test.js ├── router.js ├── switch.js ├── switch.test.js └── utils.test.js ├── .babelrc ├── .circleci └── config.yml ├── package.json ├── README.md └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | node_modules/* 3 | *.log 4 | junit.xml 5 | reports/* 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src/* 2 | node_modules/* 3 | README.md 4 | .circleci/* 5 | reports/* 6 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | export { default as Router } from './router' 2 | export { default as Switch } from './switch' 3 | export { default as Route } from './route' 4 | export { default as withRouter } from './withRouter' 5 | export { default as CommandLineRouter } from './cliRouter' 6 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": [ 3 | ["transform-react-jsx", { "pragma": "h" }], 4 | "transform-class-properties", 5 | "transform-object-rest-spread", 6 | "transform-export-extensions" 7 | ], 8 | "presets": [["env", { "targets": { "node": "6" } }]] 9 | } 10 | -------------------------------------------------------------------------------- /src/withRouter.js: -------------------------------------------------------------------------------- 1 | import { h, Component } from 'ink' 2 | import PropTypes from 'prop-types' 3 | import makeSubscriber from 'ink-broadcast/dist/subscriber' 4 | 5 | const Subscriber = makeSubscriber('router') 6 | 7 | const withRouter = WrappedComponent => (props) => ( 8 | 9 | {(state = {}) => } 10 | 11 | ) 12 | 13 | export default withRouter 14 | -------------------------------------------------------------------------------- /src/router.test.js: -------------------------------------------------------------------------------- 1 | import { h, renderToString } from 'ink' 2 | import Router from './router' 3 | 4 | describe('', () => { 5 | describe('with default props', () => { 6 | it('should render without throwing an error', () => { 7 | expect(() => renderToString(Hello)).not.toThrow() 8 | }) 9 | 10 | it('should render the one child passed to it', () => { 11 | const actual = renderToString(Hello) 12 | expect(actual).toEqual('Hello') 13 | }) 14 | }) 15 | }) 16 | -------------------------------------------------------------------------------- /src/notFound.js: -------------------------------------------------------------------------------- 1 | import { h, Text, Indent } from 'ink' 2 | 3 | const NotFound = ({ location = {}, children = [] }) => ( 4 |
5 |
6 | 7 | Route not found! 8 | 9 |
10 |
11 |
12 | 13 | No route was found that matches the path:{' '} 14 | 15 | {location.pathname} 16 | 17 | 18 |
19 |
20 |
21 | 22 | Available Routes: 23 | 24 |
25 |
26 | 27 | {children.map(({ _props: { path, exact = false } }) => ( 28 |
29 | 30 | - {path}{' '} 31 | {exact && ( 32 | 33 | (exact) 34 | 35 | )} 36 | 37 |
38 | ))} 39 |
40 |
41 | ) 42 | 43 | export default NotFound 44 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | # Javascript Node CircleCI 2.0 configuration file 2 | # 3 | # Check https://circleci.com/docs/2.0/language-javascript/ for more details 4 | # 5 | version: 2 6 | jobs: 7 | build: 8 | docker: 9 | - image: circleci/node:6 10 | 11 | working_directory: ~/repo 12 | 13 | steps: 14 | - checkout 15 | 16 | # Download and cache dependencies 17 | - restore_cache: 18 | keys: 19 | - v1-dependencies-{{ checksum "package.json" }} 20 | # fallback to using the latest cache if no exact match is found 21 | - v1-dependencies- 22 | 23 | - run: yarn install 24 | 25 | - save_cache: 26 | paths: 27 | - node_modules 28 | key: v1-dependencies-{{ checksum "package.json" }} 29 | 30 | # run tests! 31 | - run: 32 | name: Run unit tests 33 | command: yarn test -- --runInBand --ci --testResultsProcessor="jest-junit" 34 | environment: 35 | JEST_JUNIT_OUTPUT: "reports/junit/js-test-results.xml" 36 | 37 | - store_test_results: 38 | path: reports/junit 39 | - store_artifacts: 40 | path: reports/junit 41 | -------------------------------------------------------------------------------- /src/cliRouter.js: -------------------------------------------------------------------------------- 1 | import { h, Component } from 'ink' 2 | import PropTypes from 'prop-types' 3 | import argParser from 'yargs-parser' 4 | import Router from './router' 5 | 6 | class CommandLineRouter extends Component { 7 | static propTypes = { 8 | args: PropTypes.arrayOf(PropTypes.string), 9 | options: PropTypes.object, 10 | initialEntries: PropTypes.arrayOf(PropTypes.string), 11 | initialIndex: PropTypes.number 12 | } 13 | 14 | static defaultProps = { 15 | args: process.argv.slice(2), 16 | initialEntries: [] 17 | } 18 | 19 | render({ 20 | args, 21 | options, 22 | initialEntries, 23 | initialIndex = initialEntries.length, 24 | ...restProps 25 | }) { 26 | const initialLocation = argsToLocation(argParser(args, options)) 27 | return ( 28 | 33 | ) 34 | } 35 | } 36 | 37 | const argsToLocation = ({ _: basePath, ...params }) => { 38 | const pathname = `/${basePath.join('/')}` 39 | return { pathname, state: params } 40 | } 41 | 42 | export default CommandLineRouter 43 | -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- 1 | import pathToRegExp from 'path-to-regexp' 2 | 3 | export const makeLocationMatcher = (path, exact) => { 4 | const pathKeys = [] 5 | const pathRegExp = pathToRegExp(path, pathKeys, { end: exact }) 6 | return (location = {}) => { 7 | if (!location || !location.pathname) { 8 | return null 9 | } 10 | const pathMatch = pathRegExp.exec(location.pathname) 11 | return pathMatch && transformPathMatch(pathMatch, location, pathKeys) 12 | } 13 | } 14 | 15 | export const transformPathMatch = ([path, ...match], location, keys) => { 16 | const pathParams = keys.reduce((acc, key, index) => { 17 | acc[key.name] = match[index] 18 | return acc 19 | }, {}) 20 | 21 | const queryParams = location.search.startsWith('?') 22 | ? parseQueryString(location.search.slice(1)) 23 | : {} 24 | 25 | const params = { ...pathParams, ...queryParams, ...location.state } 26 | 27 | return { path, params } 28 | } 29 | 30 | export const parseQueryString = query => 31 | query.split('&').reduce((acc, pair) => { 32 | if (!pair) return acc 33 | const [key, ...value] = pair.split('=') 34 | acc[key] = value.join('=') || true 35 | return acc 36 | }, {}) 37 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ink-router", 3 | "version": "0.6.0", 4 | "description": "Implementation of react-router for ink", 5 | "main": "dist/index.js", 6 | "homepage": "https://github.com/jimmed/ink-router", 7 | "bugs": "https://github.com/jimmed/ink-router/issues", 8 | "repository": { 9 | "url": "https://github.com/jimmed/ink-router", 10 | "type": "git" 11 | }, 12 | "author": "Jim O'Brien ", 13 | "license": "MIT", 14 | "scripts": { 15 | "build": "babel --out-dir dist src", 16 | "watch": "yarn run build --watch", 17 | "test": "jest src", 18 | "prepublishOnly": "yarn run test && yarn run build" 19 | }, 20 | "dependencies": { 21 | "history": "^4.7.2", 22 | "ink": "^0.4.1", 23 | "ink-broadcast": "^0.3.0", 24 | "path-to-regexp": "^2.1.0", 25 | "prop-types": "^15.6.0", 26 | "yargs-parser": "^9.0.2" 27 | }, 28 | "peerDependencies": { 29 | "ink": "^0.4.1" 30 | }, 31 | "devDependencies": { 32 | "babel-cli": "^6.26.0", 33 | "babel-jest": "^22.2.2", 34 | "babel-plugin-transform-class-properties": "^6.24.1", 35 | "babel-plugin-transform-export-extensions": "^6.22.0", 36 | "babel-plugin-transform-object-rest-spread": "^6.26.0", 37 | "babel-plugin-transform-react-jsx": "^6.24.1", 38 | "babel-preset-env": "^1.6.1", 39 | "jest": "^22.2.2", 40 | "jest-junit": "^3.6.0" 41 | }, 42 | "engines": { 43 | "node": ">=6" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /src/route.js: -------------------------------------------------------------------------------- 1 | import { h, Component } from 'ink' 2 | import PropTypes from 'prop-types' 3 | import withRouter from './withRouter' 4 | import { makeLocationMatcher } from './utils' 5 | 6 | export class Route extends Component { 7 | static propTypes = { 8 | path: PropTypes.string.isRequired, 9 | exact: PropTypes.bool, 10 | location: PropTypes.shape({ 11 | key: PropTypes.string, 12 | pathname: PropTypes.string 13 | }), 14 | history: PropTypes.object 15 | } 16 | 17 | static defaultProps = { 18 | path: '/', 19 | exact: false, 20 | location: {} 21 | } 22 | 23 | constructor(props, context) { 24 | super(props, context) 25 | this.setPathToMatch(props) 26 | this.state = { 27 | match: this.matchLocation(props.location) 28 | } 29 | } 30 | 31 | componentWillReceiveProps(newProps) { 32 | if ( 33 | newProps.path !== this.props.path || 34 | newProps.exact !== this.props.exact 35 | ) { 36 | this.setPathToMatch(newProps) 37 | } 38 | if (newProps.location.key !== this.props.location.key) { 39 | this.setLocation(newProps) 40 | } 41 | } 42 | 43 | setPathToMatch({ path, exact }) { 44 | this.matchLocation = makeLocationMatcher(path, exact) 45 | } 46 | 47 | setLocation({ location }) { 48 | this.setState({ match: this.matchLocation(location) }) 49 | } 50 | 51 | render({ location, history, component: Component }, { match }) { 52 | return ( 53 | match && 54 | ) 55 | } 56 | } 57 | 58 | export default withRouter(Route) 59 | -------------------------------------------------------------------------------- /src/withRouter.test.js: -------------------------------------------------------------------------------- 1 | import { h, Text, renderToString } from 'ink' 2 | import withRouter from './withRouter' 3 | import Router from './router' 4 | 5 | describe('withRouter', () => { 6 | describe('when wrapping a component', () => { 7 | let WrappedComponent 8 | beforeEach(() => { 9 | WrappedComponent = withRouter(() => {}) 10 | }) 11 | 12 | it('should return a function', () => { 13 | expect(typeof WrappedComponent).toBe('function') 14 | }) 15 | }) 16 | 17 | describe('when mounted outside of a Router context', () => { 18 | let WrappedComponent 19 | beforeEach(() => { 20 | WrappedComponent = withRouter(() => {}) 21 | }) 22 | 23 | it('should throw an error', () => { 24 | expect(() => { 25 | renderToString() 26 | }).toThrow(/must be rendered in the context/) 27 | }) 28 | }) 29 | 30 | describe('when mounted in a Router context', () => { 31 | let WrappedComponent 32 | let InnerComponent 33 | beforeEach(() => { 34 | InnerComponent = jest.fn(() => null) 35 | WrappedComponent = withRouter(InnerComponent) 36 | }) 37 | 38 | it('should pass a location prop', () => { 39 | const rendered = renderToString( 40 | 41 | 42 | 43 | ) 44 | expect(InnerComponent.mock.calls[0][0]).toMatchObject({ 45 | location: { 46 | pathname: '/' 47 | } 48 | }) 49 | }) 50 | 51 | it('should pass a history prop', () => { 52 | const rendered = renderToString( 53 | 54 | 55 | 56 | ) 57 | expect(InnerComponent.mock.calls[0][0]).toMatchObject({ 58 | history: { 59 | action: 'POP', 60 | location: { pathname: '/' } 61 | } 62 | }) 63 | }) 64 | }) 65 | }) 66 | -------------------------------------------------------------------------------- /src/cliRouter.test.js: -------------------------------------------------------------------------------- 1 | import { h, renderToString } from 'ink' 2 | import CommandLineRouter from './cliRouter' 3 | import Switch from './switch' 4 | import Route from './route' 5 | 6 | describe('', () => { 7 | describe('given an empty args array', () => { 8 | it('should render the component', () => { 9 | expect( 10 | renderToString( 11 | 12 | 'A'} /> 13 | 'B'} /> 14 | 15 | ) 16 | ).toBe('A') 17 | }) 18 | }) 19 | 20 | describe('given a shallow path array', () => { 21 | it('should render the component', () => { 22 | expect( 23 | renderToString( 24 | 25 | 'A'} /> 26 | 'B'} /> 27 | 28 | ) 29 | ).toBe('B') 30 | }) 31 | }) 32 | 33 | describe('given an deeper path array', () => { 34 | it('should render the component', () => { 35 | expect( 36 | renderToString( 37 | 38 | 'A'} /> 39 | 'B'} /> 40 | 41 | ) 42 | ).toBe('B') 43 | }) 44 | }) 45 | 46 | describe('given parameters', () => { 47 | it('should parse the parameters', () => { 48 | expect( 49 | renderToString( 50 | 51 | match.params.foo} 55 | /> 56 | 57 | ) 58 | ).toBe('bar') 59 | }) 60 | }) 61 | }) 62 | -------------------------------------------------------------------------------- /src/route.test.js: -------------------------------------------------------------------------------- 1 | import { h, renderToString } from 'ink' 2 | import Route from './route' 3 | import Router from './router' 4 | 5 | describe('', () => { 6 | describe('given a single route with default props', () => { 7 | it('should render the component', () => { 8 | const rendered = renderToString( 9 | 10 | 'Hello'} /> 11 | 12 | ) 13 | expect(rendered).toBe('Hello') 14 | }) 15 | }) 16 | 17 | describe('given multiple exact routes', () => { 18 | it('should match /', () => { 19 | expect( 20 | renderToString( 21 | 22 | 'A'} /> 23 | 'B'} /> 24 | 'C'} /> 25 | 26 | ) 27 | ).toBe('A') 28 | }) 29 | 30 | it('should match /B', () => { 31 | expect( 32 | renderToString( 33 | 34 | 'A'} /> 35 | 'B'} /> 36 | 'C'} /> 37 | 38 | ) 39 | ).toBe('B') 40 | }) 41 | 42 | it('should match /C', () => { 43 | expect( 44 | renderToString( 45 | 46 | 'A'} /> 47 | 'B'} /> 48 | 'C'} /> 49 | 50 | ) 51 | ).toBe('B') 52 | }) 53 | }) 54 | 55 | describe('given multiple inexact routes', () => { 56 | it('can match multiple', () => { 57 | expect( 58 | renderToString( 59 | 60 | 'A'} /> 61 | 'B'} /> 62 | 'C'} /> 63 | 64 | ) 65 | ).toBe('AB') 66 | }) 67 | }) 68 | }) 69 | -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- 1 | import { h, Component } from 'ink' 2 | import PropTypes from 'prop-types' 3 | import createHistory from 'history/createMemoryHistory' 4 | import makeBroadcaster from 'ink-broadcast/dist/broadcast' 5 | 6 | const Broadcast = makeBroadcaster('router') 7 | 8 | export default class Router extends Component { 9 | static propTypes = { 10 | initialEntries: PropTypes.arrayOf( 11 | PropTypes.oneOfType([ 12 | PropTypes.string, 13 | PropTypes.shape({ 14 | pathname: PropTypes.string.isRequired, 15 | search: PropTypes.string, 16 | hash: PropTypes.string, 17 | state: PropTypes.any, 18 | key: PropTypes.string 19 | }) 20 | ]) 21 | ), 22 | initialIndex: PropTypes.number, 23 | keyLength: PropTypes.number, 24 | getUserConfirmation: PropTypes.func, 25 | children: PropTypes.node.isRequired 26 | } 27 | 28 | static defaultProps = { 29 | initialEntries: ['/'], 30 | initialIndex: 0, 31 | keyLength: 6, 32 | getUserConfirmation: null 33 | } 34 | 35 | constructor(props, context) { 36 | super(props, context) 37 | this.history = createHistory({ 38 | initialEntries: props.initialEntries, 39 | initialIndex: props.initialIndex, 40 | keyLength: props.keyLength, 41 | getUserConfirmation: props.getUserConfirmation 42 | }) 43 | this.state = { location: this.history.location } 44 | } 45 | 46 | componentDidMount() { 47 | if (!this.historyUnlisten) { 48 | this.historyUnlisten = this.history.listen(this.handleHistoryAction) 49 | } 50 | } 51 | 52 | componentWillUnmount() { 53 | if (this.historyUnlisten) { 54 | this.historyUnlisten() 55 | } 56 | } 57 | 58 | handleHistoryAction = location => this.setState({ location }) 59 | 60 | compareStates = (prev, next) => prev.location.key === next.location.key 61 | 62 | render({ children }, { location }) { 63 | const broadcastValue = { location, history: this.history } 64 | return ( 65 | 66 | {children} 67 | 68 | ) 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /src/switch.js: -------------------------------------------------------------------------------- 1 | import { h, Text, Component } from 'ink' 2 | import PropTypes from 'prop-types' 3 | import { inspect } from 'util' 4 | import NotFound from './notFound' 5 | import withRouter from './withRouter' 6 | import { makeLocationMatcher } from './utils' 7 | 8 | class Switch extends Component { 9 | static propTypes = { 10 | children: PropTypes.arrayOf( 11 | PropTypes.shape({ 12 | _props: PropTypes.shape({ 13 | path: PropTypes.string, 14 | exact: PropTypes.bool 15 | }) 16 | }) 17 | ).isRequired, 18 | notFound: PropTypes.oneOfType([ 19 | PropTypes.func, 20 | PropTypes.instanceOf(Component) 21 | ]) 22 | } 23 | 24 | static defaultProps = { 25 | children: [], 26 | notFound: NotFound 27 | } 28 | 29 | constructor(props, context) { 30 | super(props, context) 31 | this.setPathsToMatch(props) 32 | this.state = this.matchLocation(props.location) 33 | } 34 | 35 | componentWillReceiveProps(newProps) { 36 | if (newProps.children !== this.props.children) { 37 | this.setPathsToMatch(newProps) 38 | } 39 | if ( 40 | !this.props.location || 41 | newProps.location.key !== this.props.location.key 42 | ) { 43 | this.setLocation(newProps) 44 | } 45 | } 46 | 47 | setPathsToMatch({ children }) { 48 | this.locationMatchers = children.map(({ _props: { path = '/', exact } }) => 49 | makeLocationMatcher(path, exact) 50 | ) 51 | } 52 | 53 | matchLocation(location) { 54 | return ( 55 | this.locationMatchers.reduce((found, matcher, matchIndex) => { 56 | if (found) return found 57 | const match = matcher(location) 58 | return match ? { match, matchIndex } : null 59 | }, null) || {} 60 | ) 61 | } 62 | 63 | setLocation({ location }) { 64 | this.setState(this.matchLocation(location)) 65 | } 66 | 67 | render( 68 | { children, location, history, notFound: NotFound }, 69 | { match, matchIndex } 70 | ) { 71 | if (!match) { 72 | return ( 73 | 74 | ) 75 | } 76 | return children[matchIndex] 77 | } 78 | } 79 | 80 | export default withRouter(Switch) 81 | -------------------------------------------------------------------------------- /src/switch.test.js: -------------------------------------------------------------------------------- 1 | import { h, renderToString } from 'ink' 2 | import Route from './route' 3 | import Switch from './switch' 4 | import Router from './router' 5 | 6 | describe('', () => { 7 | describe('given a single route with default props', () => { 8 | it('should render the component', () => { 9 | const rendered = renderToString( 10 | 11 | 12 | 'Hello'} /> 13 | 14 | 15 | ) 16 | expect(rendered).toBe('Hello') 17 | }) 18 | }) 19 | 20 | describe('given multiple exact routes', () => { 21 | it('should match /', () => { 22 | expect( 23 | renderToString( 24 | 25 | 26 | 'A'} /> 27 | 'B'} /> 28 | 'C'} /> 29 | 30 | 31 | ) 32 | ).toBe('A') 33 | }) 34 | 35 | it('should match /B', () => { 36 | expect( 37 | renderToString( 38 | 39 | 40 | 'A'} /> 41 | 'B'} /> 42 | 'C'} /> 43 | 44 | 45 | ) 46 | ).toBe('B') 47 | }) 48 | 49 | it('should match /C', () => { 50 | expect( 51 | renderToString( 52 | 53 | 54 | 'A'} /> 55 | 'B'} /> 56 | 'C'} /> 57 | 58 | 59 | ) 60 | ).toBe('B') 61 | }) 62 | }) 63 | 64 | describe('given multiple inexact routes', () => { 65 | it('can match multiple', () => { 66 | expect( 67 | renderToString( 68 | 69 | 70 | 'A'} /> 71 | 'B'} /> 72 | 'C'} /> 73 | 74 | 75 | ) 76 | ).toBe('B') 77 | }) 78 | }) 79 | }) 80 | -------------------------------------------------------------------------------- /src/utils.test.js: -------------------------------------------------------------------------------- 1 | import { 2 | makeLocationMatcher, 3 | parseQueryString 4 | } from './utils' 5 | 6 | const describeLocationMatcher = ({ 7 | description, 8 | path, 9 | exact = false, 10 | cases = [] 11 | }) => { 12 | describe(description, () => { 13 | let matcher 14 | beforeEach(() => { 15 | matcher = makeLocationMatcher(path, exact) 16 | }) 17 | afterEach(() => { 18 | matcher = null 19 | }) 20 | cases.forEach( 21 | ({ path, params = {}, search = '', hash = '', match = true }) => { 22 | it(`should${match ? '' : ' not'} match ${path}`, () => { 23 | const actual = matcher({ pathname: path, search, hash }) 24 | if (match) { 25 | expect(actual).toBeTruthy() 26 | expect(actual.params).toEqual(params) 27 | } else { 28 | expect(actual).toBe(null) 29 | } 30 | }) 31 | } 32 | ) 33 | }) 34 | } 35 | 36 | describe('makeLocationMatcher', () => { 37 | describeLocationMatcher({ 38 | description: 'given a simple path', 39 | path: '/', 40 | cases: [{ path: '/' }, { path: '/cats' }] 41 | }) 42 | describeLocationMatcher({ 43 | description: 'given a simple exact path', 44 | path: '/', 45 | exact: true, 46 | cases: [{ path: '/' }, { path: '/cats', match: false }] 47 | }) 48 | describeLocationMatcher({ 49 | description: 'given a path with parameters', 50 | path: '/cats/:catID', 51 | cases: [ 52 | { path: '/', match: false }, 53 | { path: '/cats', match: false }, 54 | { path: '/cats/bobby', params: { catID: 'bobby' } }, 55 | { path: '/cats/bootsy', params: { catID: 'bootsy' } } 56 | ] 57 | }) 58 | describeLocationMatcher({ 59 | description: 'given a simple path with a query string', 60 | path: '/cat', 61 | cases: [{ path: '/cat', search: '?name=bobby', params: { name: 'bobby' } }] 62 | }) 63 | describeLocationMatcher({ 64 | description: 'given a simple exact path with a query string', 65 | path: '/cat', 66 | exact: true, 67 | cases: [ 68 | { path: '/cat', search: '?name=bobby', params: { name: 'bobby' } }, 69 | { 70 | path: '/cat/stats', 71 | search: '?name=bobby', 72 | params: { name: 'bobby' }, 73 | match: false 74 | } 75 | ] 76 | }) 77 | describeLocationMatcher({ 78 | description: 'given a path with parameters and a query string', 79 | path: '/cats/:catID', 80 | cases: [ 81 | { 82 | path: '/cats/1', 83 | search: '?name=bobby', 84 | params: { catID: '1', name: 'bobby' } 85 | } 86 | ] 87 | }) 88 | }) 89 | 90 | describe('parseQueryString', () => { 91 | it('should return an empty object with an empty string', () => { 92 | const expected = {} 93 | const actual = parseQueryString('') 94 | expect(actual).toEqual(expected) 95 | }) 96 | 97 | it('should parse a set of simple variables', () => { 98 | const expected = { foo: 'bar', baz: 'quux' } 99 | const actual = parseQueryString('foo=bar&baz=quux') 100 | expect(actual).toEqual(expected) 101 | }) 102 | 103 | it('should return true for variables with no value', () => { 104 | const expected = { foo: 'bar', baz: true } 105 | const actual = parseQueryString('foo=bar&baz') 106 | expect(actual).toEqual(expected) 107 | }) 108 | 109 | it('should return true for variables with a trailing equals sign', () => { 110 | const expected = { foo: 'bar', baz: true } 111 | const actual = parseQueryString('foo=bar&baz=') 112 | expect(actual).toEqual(expected) 113 | }) 114 | }) 115 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ink-router 2 | 3 | An implementation of [react-router][react-router] for [ink][ink]. 4 | 5 | # Installation 6 | 7 | Using [yarn][yarn]: 8 | 9 | ``` 10 | $ yarn add ink-router 11 | ``` 12 | 13 | # Usage 14 | 15 | As much as possible, this project aims to match the behaviour of [react-router][react-router]. 16 | 17 | It exposes the following components (and higher-order component): 18 | 19 | ```js 20 | import { 21 | Router, 22 | CommandLineRouter, 23 | Route, 24 | Switch, 25 | withRouter 26 | } from 'ink-router' 27 | ``` 28 | 29 | ## `` 30 | 31 | Wraps your command-line application with a router context: 32 | 33 | ```js 34 | import { h, render } from 'ink' 35 | import { Router } from 'ink-router' 36 | 37 | render( 38 | 39 | 40 | 41 | ) 42 | ``` 43 | 44 | Accepts the following props: 45 | 46 | | Prop | Description | Default | 47 | |:----------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------|:-----------| 48 | | `initialEntries` | An array of URLs to populate the router history with | `['/']` | 49 | | `initialIndex` | The initial index in `initialEntries` at which navigation should begin | `0` | 50 | | `keyLength` | The length of `key` to generate to uniquely identify each route | `6` | 51 | | `children` | A single child element to render | _required_ | 52 | | `getUserConfirmation` | A function to use to confirm navigation.

**NOTE:** There is no `` component yet, and as such no need for `getUserConfirmation`. | _none_ | 53 | 54 | ## `` 55 | 56 | Provides an instance of Router, with its initial route set based on the arguments 57 | passed to the current process. In other words, it translates command-line arguments 58 | to a path that your application can use for routing, and other decisions. 59 | 60 | Command-line arguments are parsed using [yargs-parser][yargs-parser]. 61 | 62 | It accepts the same props as `Router`, with the following changes: 63 | 64 | | Prop | Description | Default | 65 | |:-----------------|:----------------------------------------------------------------------|:------------------------| 66 | | `args` | An array of arguments to parse and use as the initial route | `process.argv.slice(2)` | 67 | | `options` | An optional object of options to pass to [yargs-parser][yargs-parser] | _none_ | 68 | | `initialEntries` | An array of history entries to prepend to the initially derived route | `[]` | 69 | | `initialIndex` | As per `Router` | `initialEntries.length` | 70 | 71 | ## `` 72 | 73 | Just like in react-router, this allows you to control the rendering of a component, 74 | based on whether the specified path matches the current router location. 75 | 76 | ```js 77 | import { h, render } from 'ink' 78 | import { Router } from 'ink-router' 79 | import { HomeView, SettingsView } from './views' 80 | 81 | render( 82 | 83 |
84 | 85 | 86 |
87 |
88 | ) 89 | ``` 90 | 91 | Accepts the following props: 92 | 93 | | Prop | Description | Default | 94 | |:------------|:-------------------------------------------------------------------------------------------------|:-----------| 95 | | `path` | The path on which to match. Supports named parameters, as per [`path-to-regexp`][path-to-regexp] | `'/'` | 96 | | `exact` | If `true`, the component will only render if the path matches exactly. | `false` | 97 | | `component` | The component to render if the path matches | _required_ | 98 | 99 | **NOTE:** While react-router's `Route` component accepts 3 different ways to 100 | render an element, ink-router only supports one: the `component` prop. 101 | 102 | The rendered component will be passed the following properties: 103 | 104 | ```js 105 | // Assuming the following route matched 106 | 107 | 108 | // SettingsView will receive these props 109 | { 110 | match: { 111 | path: '/settings/accounts', // The exact path matched 112 | params: { 113 | settingsView: 'accounts' 114 | } 115 | }, 116 | location: { ... }, // An object containing the current location from history 117 | history: { ... }, // The history object from the router 118 | } 119 | ``` 120 | 121 | ## `` 122 | 123 | When given a set of `` as children, this component will only render 124 | the first that matches the current location. 125 | 126 | ```js 127 | import { h, render } from 'ink' 128 | import { CommandLineRouter, Switch, Route } from 'ink-router' 129 | import { HomeView, SettingsView } from './views' 130 | 131 | render( 132 | 133 | 134 | 135 | 136 | 137 | 138 | ) 139 | ``` 140 | 141 | ### Providing a fallback route 142 | 143 | In the above example, when the user supplies arguments of `not a route` to the command, the default 144 | fallback message is shown, providing information about the route supplied. 145 | 146 | [![Demo of Switch component](https://asciinema.org/a/i9FLuYX6aD9RGc8cdZ9N2MXYL.png)](https://asciinema.org/a/i9FLuYX6aD9RGc8cdZ9N2MXYL) 147 | 148 | You can override this message by providing a catch-all route as the last child 149 | of your ``: 150 | 151 | ```js 152 | import { h, render } from 'ink' 153 | import { CommandLineRouter, Switch, Route } from 'ink-router' 154 | import { HomeView, SettingsView, NotFoundView } from './views' 155 | 156 | render( 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | ) 165 | ``` 166 | 167 | Alternatively, you can pass the component to render as the `notFound` prop of your 168 | ``, although support for this may be removed in future: 169 | 170 | ```js 171 | import { h, render } from 'ink' 172 | import { CommandLineRouter, Switch, Route } from 'ink-router' 173 | import { HomeView, SettingsView, NotFoundView } from './views' 174 | 175 | render( 176 | 177 | 178 | 179 | 180 | 181 | 182 | ) 183 | ``` 184 | 185 | ## `withRouter(WrappedComponent)` 186 | 187 | A higher-order component that empowers a child component with router powers. 188 | 189 | Here's an example of a component that redirects after a few seconds: 190 | 191 | ```js 192 | import { h, Component, Text } from 'ink' 193 | import { withRouter } from 'ink-router' 194 | import PropTypes from 'prop-types' 195 | 196 | class RedirectAfterTime extends Component { 197 | static propTypes = { 198 | delay: PropTypes.number 199 | to: PropTypes.string.isRequired, 200 | history: PropTypes.shape({ 201 | replace: PropTypes.func 202 | }) 203 | } 204 | static defaultProps = { 205 | delay: 3000 206 | } 207 | componentDidMount() { 208 | this.timeout = setTimeout(this.redirect, this.props.delay) 209 | } 210 | componentWillUnmount() { 211 | clearTimeout(this.timeout) 212 | } 213 | redirect = () => { 214 | this.props.history.replace(this.props.to) 215 | } 216 | render() { 217 | return Redirecting shortly... 218 | } 219 | } 220 | 221 | export default withRouter(RedirectAfterTime) 222 | ``` 223 | 224 | [react-router]: https://github.com/ReactTraining/react-router 225 | [ink]: https://github.com/vadimdemedes/ink 226 | [yarn]: https://yarnpkg.com 227 | [path-to-regexp]: https://github.com/pillarjs/path-to-regexp 228 | [yargs-parser]: https://github.com/yargs/yargs-parser 229 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0-beta.35": 6 | version "7.0.0-beta.39" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.39.tgz#91c90bb65207fc5a55128cb54956ded39e850457" 8 | dependencies: 9 | chalk "^2.0.0" 10 | esutils "^2.0.2" 11 | js-tokens "^3.0.0" 12 | 13 | abab@^1.0.4: 14 | version "1.0.4" 15 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 16 | 17 | abbrev@1: 18 | version "1.1.1" 19 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 20 | 21 | acorn-globals@^4.1.0: 22 | version "4.1.0" 23 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538" 24 | dependencies: 25 | acorn "^5.0.0" 26 | 27 | acorn@^5.0.0, acorn@^5.3.0: 28 | version "5.4.1" 29 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.4.1.tgz#fdc58d9d17f4a4e98d102ded826a9b9759125102" 30 | 31 | ajv@^4.9.1: 32 | version "4.11.8" 33 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 34 | dependencies: 35 | co "^4.6.0" 36 | json-stable-stringify "^1.0.1" 37 | 38 | ajv@^5.1.0: 39 | version "5.5.2" 40 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 41 | dependencies: 42 | co "^4.6.0" 43 | fast-deep-equal "^1.0.0" 44 | fast-json-stable-stringify "^2.0.0" 45 | json-schema-traverse "^0.3.0" 46 | 47 | align-text@^0.1.1, align-text@^0.1.3: 48 | version "0.1.4" 49 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 50 | dependencies: 51 | kind-of "^3.0.2" 52 | longest "^1.0.1" 53 | repeat-string "^1.5.2" 54 | 55 | amdefine@>=0.0.4: 56 | version "1.0.1" 57 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 58 | 59 | ansi-escapes@^3.0.0: 60 | version "3.0.0" 61 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 62 | 63 | ansi-regex@^2.0.0: 64 | version "2.1.1" 65 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 66 | 67 | ansi-regex@^3.0.0: 68 | version "3.0.0" 69 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 70 | 71 | ansi-styles@^2.2.1: 72 | version "2.2.1" 73 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 74 | 75 | ansi-styles@^3.2.0: 76 | version "3.2.0" 77 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 78 | dependencies: 79 | color-convert "^1.9.0" 80 | 81 | anymatch@^1.3.0: 82 | version "1.3.2" 83 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 84 | dependencies: 85 | micromatch "^2.1.5" 86 | normalize-path "^2.0.0" 87 | 88 | append-transform@^0.4.0: 89 | version "0.4.0" 90 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 91 | dependencies: 92 | default-require-extensions "^1.0.0" 93 | 94 | aproba@^1.0.3: 95 | version "1.2.0" 96 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 97 | 98 | are-we-there-yet@~1.1.2: 99 | version "1.1.4" 100 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 101 | dependencies: 102 | delegates "^1.0.0" 103 | readable-stream "^2.0.6" 104 | 105 | argparse@^1.0.7: 106 | version "1.0.9" 107 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 108 | dependencies: 109 | sprintf-js "~1.0.2" 110 | 111 | arr-diff@^2.0.0: 112 | version "2.0.0" 113 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 114 | dependencies: 115 | arr-flatten "^1.0.1" 116 | 117 | arr-flatten@^1.0.1: 118 | version "1.1.0" 119 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 120 | 121 | array-equal@^1.0.0: 122 | version "1.0.0" 123 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 124 | 125 | array-unique@^0.2.1: 126 | version "0.2.1" 127 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 128 | 129 | arrify@^1.0.1: 130 | version "1.0.1" 131 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 132 | 133 | asap@~2.0.3: 134 | version "2.0.6" 135 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 136 | 137 | asn1@~0.2.3: 138 | version "0.2.3" 139 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 140 | 141 | assert-plus@1.0.0, assert-plus@^1.0.0: 142 | version "1.0.0" 143 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 144 | 145 | assert-plus@^0.2.0: 146 | version "0.2.0" 147 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 148 | 149 | astral-regex@^1.0.0: 150 | version "1.0.0" 151 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 152 | 153 | async-each@^1.0.0: 154 | version "1.0.1" 155 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 156 | 157 | async-limiter@~1.0.0: 158 | version "1.0.0" 159 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 160 | 161 | async@^1.4.0: 162 | version "1.5.2" 163 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 164 | 165 | async@^2.1.4: 166 | version "2.6.0" 167 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 168 | dependencies: 169 | lodash "^4.14.0" 170 | 171 | asynckit@^0.4.0: 172 | version "0.4.0" 173 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 174 | 175 | aws-sign2@~0.6.0: 176 | version "0.6.0" 177 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 178 | 179 | aws-sign2@~0.7.0: 180 | version "0.7.0" 181 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 182 | 183 | aws4@^1.2.1, aws4@^1.6.0: 184 | version "1.6.0" 185 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 186 | 187 | babel-cli@^6.26.0: 188 | version "6.26.0" 189 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 190 | dependencies: 191 | babel-core "^6.26.0" 192 | babel-polyfill "^6.26.0" 193 | babel-register "^6.26.0" 194 | babel-runtime "^6.26.0" 195 | commander "^2.11.0" 196 | convert-source-map "^1.5.0" 197 | fs-readdir-recursive "^1.0.0" 198 | glob "^7.1.2" 199 | lodash "^4.17.4" 200 | output-file-sync "^1.1.2" 201 | path-is-absolute "^1.0.1" 202 | slash "^1.0.0" 203 | source-map "^0.5.6" 204 | v8flags "^2.1.1" 205 | optionalDependencies: 206 | chokidar "^1.6.1" 207 | 208 | babel-code-frame@^6.26.0: 209 | version "6.26.0" 210 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 211 | dependencies: 212 | chalk "^1.1.3" 213 | esutils "^2.0.2" 214 | js-tokens "^3.0.2" 215 | 216 | babel-core@^6.0.0, babel-core@^6.26.0: 217 | version "6.26.0" 218 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 219 | dependencies: 220 | babel-code-frame "^6.26.0" 221 | babel-generator "^6.26.0" 222 | babel-helpers "^6.24.1" 223 | babel-messages "^6.23.0" 224 | babel-register "^6.26.0" 225 | babel-runtime "^6.26.0" 226 | babel-template "^6.26.0" 227 | babel-traverse "^6.26.0" 228 | babel-types "^6.26.0" 229 | babylon "^6.18.0" 230 | convert-source-map "^1.5.0" 231 | debug "^2.6.8" 232 | json5 "^0.5.1" 233 | lodash "^4.17.4" 234 | minimatch "^3.0.4" 235 | path-is-absolute "^1.0.1" 236 | private "^0.1.7" 237 | slash "^1.0.0" 238 | source-map "^0.5.6" 239 | 240 | babel-generator@^6.18.0, babel-generator@^6.26.0: 241 | version "6.26.1" 242 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 243 | dependencies: 244 | babel-messages "^6.23.0" 245 | babel-runtime "^6.26.0" 246 | babel-types "^6.26.0" 247 | detect-indent "^4.0.0" 248 | jsesc "^1.3.0" 249 | lodash "^4.17.4" 250 | source-map "^0.5.7" 251 | trim-right "^1.0.1" 252 | 253 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 254 | version "6.24.1" 255 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 256 | dependencies: 257 | babel-helper-explode-assignable-expression "^6.24.1" 258 | babel-runtime "^6.22.0" 259 | babel-types "^6.24.1" 260 | 261 | babel-helper-builder-react-jsx@^6.24.1: 262 | version "6.26.0" 263 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 264 | dependencies: 265 | babel-runtime "^6.26.0" 266 | babel-types "^6.26.0" 267 | esutils "^2.0.2" 268 | 269 | babel-helper-call-delegate@^6.24.1: 270 | version "6.24.1" 271 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 272 | dependencies: 273 | babel-helper-hoist-variables "^6.24.1" 274 | babel-runtime "^6.22.0" 275 | babel-traverse "^6.24.1" 276 | babel-types "^6.24.1" 277 | 278 | babel-helper-define-map@^6.24.1: 279 | version "6.26.0" 280 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 281 | dependencies: 282 | babel-helper-function-name "^6.24.1" 283 | babel-runtime "^6.26.0" 284 | babel-types "^6.26.0" 285 | lodash "^4.17.4" 286 | 287 | babel-helper-explode-assignable-expression@^6.24.1: 288 | version "6.24.1" 289 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 290 | dependencies: 291 | babel-runtime "^6.22.0" 292 | babel-traverse "^6.24.1" 293 | babel-types "^6.24.1" 294 | 295 | babel-helper-function-name@^6.24.1: 296 | version "6.24.1" 297 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 298 | dependencies: 299 | babel-helper-get-function-arity "^6.24.1" 300 | babel-runtime "^6.22.0" 301 | babel-template "^6.24.1" 302 | babel-traverse "^6.24.1" 303 | babel-types "^6.24.1" 304 | 305 | babel-helper-get-function-arity@^6.24.1: 306 | version "6.24.1" 307 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 308 | dependencies: 309 | babel-runtime "^6.22.0" 310 | babel-types "^6.24.1" 311 | 312 | babel-helper-hoist-variables@^6.24.1: 313 | version "6.24.1" 314 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 315 | dependencies: 316 | babel-runtime "^6.22.0" 317 | babel-types "^6.24.1" 318 | 319 | babel-helper-optimise-call-expression@^6.24.1: 320 | version "6.24.1" 321 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 322 | dependencies: 323 | babel-runtime "^6.22.0" 324 | babel-types "^6.24.1" 325 | 326 | babel-helper-regex@^6.24.1: 327 | version "6.26.0" 328 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 329 | dependencies: 330 | babel-runtime "^6.26.0" 331 | babel-types "^6.26.0" 332 | lodash "^4.17.4" 333 | 334 | babel-helper-remap-async-to-generator@^6.24.1: 335 | version "6.24.1" 336 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 337 | dependencies: 338 | babel-helper-function-name "^6.24.1" 339 | babel-runtime "^6.22.0" 340 | babel-template "^6.24.1" 341 | babel-traverse "^6.24.1" 342 | babel-types "^6.24.1" 343 | 344 | babel-helper-replace-supers@^6.24.1: 345 | version "6.24.1" 346 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 347 | dependencies: 348 | babel-helper-optimise-call-expression "^6.24.1" 349 | babel-messages "^6.23.0" 350 | babel-runtime "^6.22.0" 351 | babel-template "^6.24.1" 352 | babel-traverse "^6.24.1" 353 | babel-types "^6.24.1" 354 | 355 | babel-helpers@^6.24.1: 356 | version "6.24.1" 357 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 358 | dependencies: 359 | babel-runtime "^6.22.0" 360 | babel-template "^6.24.1" 361 | 362 | babel-jest@^22.2.2: 363 | version "22.2.2" 364 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-22.2.2.tgz#eda38dca284e32cc5257f96a9b51351975de4e04" 365 | dependencies: 366 | babel-plugin-istanbul "^4.1.5" 367 | babel-preset-jest "^22.2.0" 368 | 369 | babel-messages@^6.23.0: 370 | version "6.23.0" 371 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 372 | dependencies: 373 | babel-runtime "^6.22.0" 374 | 375 | babel-plugin-check-es2015-constants@^6.22.0: 376 | version "6.22.0" 377 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 378 | dependencies: 379 | babel-runtime "^6.22.0" 380 | 381 | babel-plugin-istanbul@^4.1.5: 382 | version "4.1.5" 383 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e" 384 | dependencies: 385 | find-up "^2.1.0" 386 | istanbul-lib-instrument "^1.7.5" 387 | test-exclude "^4.1.1" 388 | 389 | babel-plugin-jest-hoist@^22.2.0: 390 | version "22.2.0" 391 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-22.2.0.tgz#bd34f39d652406669713b8c89e23ef25c890b993" 392 | 393 | babel-plugin-syntax-async-functions@^6.8.0: 394 | version "6.13.0" 395 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 396 | 397 | babel-plugin-syntax-class-properties@^6.8.0: 398 | version "6.13.0" 399 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 400 | 401 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 402 | version "6.13.0" 403 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 404 | 405 | babel-plugin-syntax-export-extensions@^6.8.0: 406 | version "6.13.0" 407 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 408 | 409 | babel-plugin-syntax-jsx@^6.8.0: 410 | version "6.18.0" 411 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 412 | 413 | babel-plugin-syntax-object-rest-spread@^6.13.0, babel-plugin-syntax-object-rest-spread@^6.8.0: 414 | version "6.13.0" 415 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 416 | 417 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 418 | version "6.22.0" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 420 | 421 | babel-plugin-transform-async-to-generator@^6.22.0: 422 | version "6.24.1" 423 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 424 | dependencies: 425 | babel-helper-remap-async-to-generator "^6.24.1" 426 | babel-plugin-syntax-async-functions "^6.8.0" 427 | babel-runtime "^6.22.0" 428 | 429 | babel-plugin-transform-class-properties@^6.24.1: 430 | version "6.24.1" 431 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 432 | dependencies: 433 | babel-helper-function-name "^6.24.1" 434 | babel-plugin-syntax-class-properties "^6.8.0" 435 | babel-runtime "^6.22.0" 436 | babel-template "^6.24.1" 437 | 438 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 439 | version "6.22.0" 440 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 441 | dependencies: 442 | babel-runtime "^6.22.0" 443 | 444 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 445 | version "6.22.0" 446 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 447 | dependencies: 448 | babel-runtime "^6.22.0" 449 | 450 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 451 | version "6.26.0" 452 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 453 | dependencies: 454 | babel-runtime "^6.26.0" 455 | babel-template "^6.26.0" 456 | babel-traverse "^6.26.0" 457 | babel-types "^6.26.0" 458 | lodash "^4.17.4" 459 | 460 | babel-plugin-transform-es2015-classes@^6.23.0: 461 | version "6.24.1" 462 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 463 | dependencies: 464 | babel-helper-define-map "^6.24.1" 465 | babel-helper-function-name "^6.24.1" 466 | babel-helper-optimise-call-expression "^6.24.1" 467 | babel-helper-replace-supers "^6.24.1" 468 | babel-messages "^6.23.0" 469 | babel-runtime "^6.22.0" 470 | babel-template "^6.24.1" 471 | babel-traverse "^6.24.1" 472 | babel-types "^6.24.1" 473 | 474 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 475 | version "6.24.1" 476 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 477 | dependencies: 478 | babel-runtime "^6.22.0" 479 | babel-template "^6.24.1" 480 | 481 | babel-plugin-transform-es2015-destructuring@^6.23.0: 482 | version "6.23.0" 483 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 484 | dependencies: 485 | babel-runtime "^6.22.0" 486 | 487 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 488 | version "6.24.1" 489 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 490 | dependencies: 491 | babel-runtime "^6.22.0" 492 | babel-types "^6.24.1" 493 | 494 | babel-plugin-transform-es2015-for-of@^6.23.0: 495 | version "6.23.0" 496 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 497 | dependencies: 498 | babel-runtime "^6.22.0" 499 | 500 | babel-plugin-transform-es2015-function-name@^6.22.0: 501 | version "6.24.1" 502 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 503 | dependencies: 504 | babel-helper-function-name "^6.24.1" 505 | babel-runtime "^6.22.0" 506 | babel-types "^6.24.1" 507 | 508 | babel-plugin-transform-es2015-literals@^6.22.0: 509 | version "6.22.0" 510 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 511 | dependencies: 512 | babel-runtime "^6.22.0" 513 | 514 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 515 | version "6.24.1" 516 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 517 | dependencies: 518 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 519 | babel-runtime "^6.22.0" 520 | babel-template "^6.24.1" 521 | 522 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 523 | version "6.26.0" 524 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 525 | dependencies: 526 | babel-plugin-transform-strict-mode "^6.24.1" 527 | babel-runtime "^6.26.0" 528 | babel-template "^6.26.0" 529 | babel-types "^6.26.0" 530 | 531 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 532 | version "6.24.1" 533 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 534 | dependencies: 535 | babel-helper-hoist-variables "^6.24.1" 536 | babel-runtime "^6.22.0" 537 | babel-template "^6.24.1" 538 | 539 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 540 | version "6.24.1" 541 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 542 | dependencies: 543 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 544 | babel-runtime "^6.22.0" 545 | babel-template "^6.24.1" 546 | 547 | babel-plugin-transform-es2015-object-super@^6.22.0: 548 | version "6.24.1" 549 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 550 | dependencies: 551 | babel-helper-replace-supers "^6.24.1" 552 | babel-runtime "^6.22.0" 553 | 554 | babel-plugin-transform-es2015-parameters@^6.23.0: 555 | version "6.24.1" 556 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 557 | dependencies: 558 | babel-helper-call-delegate "^6.24.1" 559 | babel-helper-get-function-arity "^6.24.1" 560 | babel-runtime "^6.22.0" 561 | babel-template "^6.24.1" 562 | babel-traverse "^6.24.1" 563 | babel-types "^6.24.1" 564 | 565 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 566 | version "6.24.1" 567 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 568 | dependencies: 569 | babel-runtime "^6.22.0" 570 | babel-types "^6.24.1" 571 | 572 | babel-plugin-transform-es2015-spread@^6.22.0: 573 | version "6.22.0" 574 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 575 | dependencies: 576 | babel-runtime "^6.22.0" 577 | 578 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 579 | version "6.24.1" 580 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 581 | dependencies: 582 | babel-helper-regex "^6.24.1" 583 | babel-runtime "^6.22.0" 584 | babel-types "^6.24.1" 585 | 586 | babel-plugin-transform-es2015-template-literals@^6.22.0: 587 | version "6.22.0" 588 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 589 | dependencies: 590 | babel-runtime "^6.22.0" 591 | 592 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 593 | version "6.23.0" 594 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 595 | dependencies: 596 | babel-runtime "^6.22.0" 597 | 598 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 599 | version "6.24.1" 600 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 601 | dependencies: 602 | babel-helper-regex "^6.24.1" 603 | babel-runtime "^6.22.0" 604 | regexpu-core "^2.0.0" 605 | 606 | babel-plugin-transform-exponentiation-operator@^6.22.0: 607 | version "6.24.1" 608 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 609 | dependencies: 610 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 611 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 612 | babel-runtime "^6.22.0" 613 | 614 | babel-plugin-transform-export-extensions@^6.22.0: 615 | version "6.22.0" 616 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 617 | dependencies: 618 | babel-plugin-syntax-export-extensions "^6.8.0" 619 | babel-runtime "^6.22.0" 620 | 621 | babel-plugin-transform-object-rest-spread@^6.26.0: 622 | version "6.26.0" 623 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 624 | dependencies: 625 | babel-plugin-syntax-object-rest-spread "^6.8.0" 626 | babel-runtime "^6.26.0" 627 | 628 | babel-plugin-transform-react-jsx@^6.24.1: 629 | version "6.24.1" 630 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 631 | dependencies: 632 | babel-helper-builder-react-jsx "^6.24.1" 633 | babel-plugin-syntax-jsx "^6.8.0" 634 | babel-runtime "^6.22.0" 635 | 636 | babel-plugin-transform-regenerator@^6.22.0: 637 | version "6.26.0" 638 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 639 | dependencies: 640 | regenerator-transform "^0.10.0" 641 | 642 | babel-plugin-transform-strict-mode@^6.24.1: 643 | version "6.24.1" 644 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 645 | dependencies: 646 | babel-runtime "^6.22.0" 647 | babel-types "^6.24.1" 648 | 649 | babel-polyfill@^6.26.0: 650 | version "6.26.0" 651 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 652 | dependencies: 653 | babel-runtime "^6.26.0" 654 | core-js "^2.5.0" 655 | regenerator-runtime "^0.10.5" 656 | 657 | babel-preset-env@^1.6.1: 658 | version "1.6.1" 659 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 660 | dependencies: 661 | babel-plugin-check-es2015-constants "^6.22.0" 662 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 663 | babel-plugin-transform-async-to-generator "^6.22.0" 664 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 665 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 666 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 667 | babel-plugin-transform-es2015-classes "^6.23.0" 668 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 669 | babel-plugin-transform-es2015-destructuring "^6.23.0" 670 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 671 | babel-plugin-transform-es2015-for-of "^6.23.0" 672 | babel-plugin-transform-es2015-function-name "^6.22.0" 673 | babel-plugin-transform-es2015-literals "^6.22.0" 674 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 675 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 676 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 677 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 678 | babel-plugin-transform-es2015-object-super "^6.22.0" 679 | babel-plugin-transform-es2015-parameters "^6.23.0" 680 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 681 | babel-plugin-transform-es2015-spread "^6.22.0" 682 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 683 | babel-plugin-transform-es2015-template-literals "^6.22.0" 684 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 685 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 686 | babel-plugin-transform-exponentiation-operator "^6.22.0" 687 | babel-plugin-transform-regenerator "^6.22.0" 688 | browserslist "^2.1.2" 689 | invariant "^2.2.2" 690 | semver "^5.3.0" 691 | 692 | babel-preset-jest@^22.2.0: 693 | version "22.2.0" 694 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-22.2.0.tgz#f77b43f06ef4d8547214b2e206cc76a25c3ba0e2" 695 | dependencies: 696 | babel-plugin-jest-hoist "^22.2.0" 697 | babel-plugin-syntax-object-rest-spread "^6.13.0" 698 | 699 | babel-register@^6.26.0: 700 | version "6.26.0" 701 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 702 | dependencies: 703 | babel-core "^6.26.0" 704 | babel-runtime "^6.26.0" 705 | core-js "^2.5.0" 706 | home-or-tmp "^2.0.0" 707 | lodash "^4.17.4" 708 | mkdirp "^0.5.1" 709 | source-map-support "^0.4.15" 710 | 711 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 712 | version "6.26.0" 713 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 714 | dependencies: 715 | core-js "^2.4.0" 716 | regenerator-runtime "^0.11.0" 717 | 718 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 719 | version "6.26.0" 720 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 721 | dependencies: 722 | babel-runtime "^6.26.0" 723 | babel-traverse "^6.26.0" 724 | babel-types "^6.26.0" 725 | babylon "^6.18.0" 726 | lodash "^4.17.4" 727 | 728 | babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0: 729 | version "6.26.0" 730 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 731 | dependencies: 732 | babel-code-frame "^6.26.0" 733 | babel-messages "^6.23.0" 734 | babel-runtime "^6.26.0" 735 | babel-types "^6.26.0" 736 | babylon "^6.18.0" 737 | debug "^2.6.8" 738 | globals "^9.18.0" 739 | invariant "^2.2.2" 740 | lodash "^4.17.4" 741 | 742 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 743 | version "6.26.0" 744 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 745 | dependencies: 746 | babel-runtime "^6.26.0" 747 | esutils "^2.0.2" 748 | lodash "^4.17.4" 749 | to-fast-properties "^1.0.3" 750 | 751 | babylon@^6.18.0: 752 | version "6.18.0" 753 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 754 | 755 | balanced-match@^1.0.0: 756 | version "1.0.0" 757 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 758 | 759 | bcrypt-pbkdf@^1.0.0: 760 | version "1.0.1" 761 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 762 | dependencies: 763 | tweetnacl "^0.14.3" 764 | 765 | binary-extensions@^1.0.0: 766 | version "1.11.0" 767 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 768 | 769 | block-stream@*: 770 | version "0.0.9" 771 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 772 | dependencies: 773 | inherits "~2.0.0" 774 | 775 | boom@2.x.x: 776 | version "2.10.1" 777 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 778 | dependencies: 779 | hoek "2.x.x" 780 | 781 | boom@4.x.x: 782 | version "4.3.1" 783 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 784 | dependencies: 785 | hoek "4.x.x" 786 | 787 | boom@5.x.x: 788 | version "5.2.0" 789 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 790 | dependencies: 791 | hoek "4.x.x" 792 | 793 | brace-expansion@^1.1.7: 794 | version "1.1.11" 795 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 796 | dependencies: 797 | balanced-match "^1.0.0" 798 | concat-map "0.0.1" 799 | 800 | braces@^1.8.2: 801 | version "1.8.5" 802 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 803 | dependencies: 804 | expand-range "^1.8.1" 805 | preserve "^0.2.0" 806 | repeat-element "^1.1.2" 807 | 808 | browser-process-hrtime@^0.1.2: 809 | version "0.1.2" 810 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e" 811 | 812 | browser-resolve@^1.11.2: 813 | version "1.11.2" 814 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 815 | dependencies: 816 | resolve "1.1.7" 817 | 818 | browserslist@^2.1.2: 819 | version "2.11.3" 820 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.11.3.tgz#fe36167aed1bbcde4827ebfe71347a2cc70b99b2" 821 | dependencies: 822 | caniuse-lite "^1.0.30000792" 823 | electron-to-chromium "^1.3.30" 824 | 825 | bser@^2.0.0: 826 | version "2.0.0" 827 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 828 | dependencies: 829 | node-int64 "^0.4.0" 830 | 831 | builtin-modules@^1.0.0: 832 | version "1.1.1" 833 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 834 | 835 | callsites@^2.0.0: 836 | version "2.0.0" 837 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 838 | 839 | camelcase@^1.0.2: 840 | version "1.2.1" 841 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 842 | 843 | camelcase@^4.1.0: 844 | version "4.1.0" 845 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 846 | 847 | caniuse-lite@^1.0.30000792: 848 | version "1.0.30000808" 849 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000808.tgz#7d759b5518529ea08b6705a19e70dbf401628ffc" 850 | 851 | caseless@~0.12.0: 852 | version "0.12.0" 853 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 854 | 855 | center-align@^0.1.1: 856 | version "0.1.3" 857 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 858 | dependencies: 859 | align-text "^0.1.3" 860 | lazy-cache "^1.0.3" 861 | 862 | chalk@^1.1.3: 863 | version "1.1.3" 864 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 865 | dependencies: 866 | ansi-styles "^2.2.1" 867 | escape-string-regexp "^1.0.2" 868 | has-ansi "^2.0.0" 869 | strip-ansi "^3.0.0" 870 | supports-color "^2.0.0" 871 | 872 | chalk@^2.0.0, chalk@^2.0.1: 873 | version "2.3.1" 874 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.1.tgz#523fe2678aec7b04e8041909292fe8b17059b796" 875 | dependencies: 876 | ansi-styles "^3.2.0" 877 | escape-string-regexp "^1.0.5" 878 | supports-color "^5.2.0" 879 | 880 | chokidar@^1.6.1: 881 | version "1.7.0" 882 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 883 | dependencies: 884 | anymatch "^1.3.0" 885 | async-each "^1.0.0" 886 | glob-parent "^2.0.0" 887 | inherits "^2.0.1" 888 | is-binary-path "^1.0.0" 889 | is-glob "^2.0.0" 890 | path-is-absolute "^1.0.0" 891 | readdirp "^2.0.0" 892 | optionalDependencies: 893 | fsevents "^1.0.0" 894 | 895 | ci-info@^1.0.0: 896 | version "1.1.2" 897 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.2.tgz#03561259db48d0474c8bdc90f5b47b068b6bbfb4" 898 | 899 | cli-cursor@^2.0.0: 900 | version "2.1.0" 901 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 902 | dependencies: 903 | restore-cursor "^2.0.0" 904 | 905 | cliui@^2.1.0: 906 | version "2.1.0" 907 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 908 | dependencies: 909 | center-align "^0.1.1" 910 | right-align "^0.1.1" 911 | wordwrap "0.0.2" 912 | 913 | cliui@^4.0.0: 914 | version "4.0.0" 915 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.0.0.tgz#743d4650e05f36d1ed2575b59638d87322bfbbcc" 916 | dependencies: 917 | string-width "^2.1.1" 918 | strip-ansi "^4.0.0" 919 | wrap-ansi "^2.0.0" 920 | 921 | co@^4.6.0: 922 | version "4.6.0" 923 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 924 | 925 | code-point-at@^1.0.0: 926 | version "1.1.0" 927 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 928 | 929 | color-convert@^1.9.0: 930 | version "1.9.1" 931 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 932 | dependencies: 933 | color-name "^1.1.1" 934 | 935 | color-name@^1.1.1: 936 | version "1.1.3" 937 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 938 | 939 | combined-stream@^1.0.5, combined-stream@~1.0.5: 940 | version "1.0.5" 941 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 942 | dependencies: 943 | delayed-stream "~1.0.0" 944 | 945 | commander@^2.11.0: 946 | version "2.14.1" 947 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.14.1.tgz#2235123e37af8ca3c65df45b026dbd357b01b9aa" 948 | 949 | concat-map@0.0.1: 950 | version "0.0.1" 951 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 952 | 953 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 954 | version "1.1.0" 955 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 956 | 957 | content-type-parser@^1.0.2: 958 | version "1.0.2" 959 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7" 960 | 961 | convert-source-map@^1.4.0, convert-source-map@^1.5.0: 962 | version "1.5.1" 963 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 964 | 965 | core-js@^1.0.0: 966 | version "1.2.7" 967 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 968 | 969 | core-js@^2.4.0, core-js@^2.5.0: 970 | version "2.5.3" 971 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 972 | 973 | core-util-is@1.0.2, core-util-is@~1.0.0: 974 | version "1.0.2" 975 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 976 | 977 | cross-spawn@^5.0.1: 978 | version "5.1.0" 979 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 980 | dependencies: 981 | lru-cache "^4.0.1" 982 | shebang-command "^1.2.0" 983 | which "^1.2.9" 984 | 985 | cryptiles@2.x.x: 986 | version "2.0.5" 987 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 988 | dependencies: 989 | boom "2.x.x" 990 | 991 | cryptiles@3.x.x: 992 | version "3.1.2" 993 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 994 | dependencies: 995 | boom "5.x.x" 996 | 997 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 998 | version "0.3.2" 999 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1000 | 1001 | "cssstyle@>= 0.2.37 < 0.3.0": 1002 | version "0.2.37" 1003 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1004 | dependencies: 1005 | cssom "0.3.x" 1006 | 1007 | dashdash@^1.12.0: 1008 | version "1.14.1" 1009 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1010 | dependencies: 1011 | assert-plus "^1.0.0" 1012 | 1013 | debug@^2.2.0, debug@^2.6.8: 1014 | version "2.6.9" 1015 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1016 | dependencies: 1017 | ms "2.0.0" 1018 | 1019 | debug@^3.1.0: 1020 | version "3.1.0" 1021 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1022 | dependencies: 1023 | ms "2.0.0" 1024 | 1025 | decamelize@^1.0.0, decamelize@^1.1.1: 1026 | version "1.2.0" 1027 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1028 | 1029 | deep-extend@~0.4.0: 1030 | version "0.4.2" 1031 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1032 | 1033 | deep-is@~0.1.3: 1034 | version "0.1.3" 1035 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1036 | 1037 | default-require-extensions@^1.0.0: 1038 | version "1.0.0" 1039 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1040 | dependencies: 1041 | strip-bom "^2.0.0" 1042 | 1043 | define-properties@^1.1.2: 1044 | version "1.1.2" 1045 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1046 | dependencies: 1047 | foreach "^2.0.5" 1048 | object-keys "^1.0.8" 1049 | 1050 | delayed-stream@~1.0.0: 1051 | version "1.0.0" 1052 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1053 | 1054 | delegates@^1.0.0: 1055 | version "1.0.0" 1056 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1057 | 1058 | detect-indent@^4.0.0: 1059 | version "4.0.0" 1060 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1061 | dependencies: 1062 | repeating "^2.0.0" 1063 | 1064 | detect-libc@^1.0.2: 1065 | version "1.0.3" 1066 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1067 | 1068 | detect-newline@^2.1.0: 1069 | version "2.1.0" 1070 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 1071 | 1072 | diff@^3.2.0: 1073 | version "3.4.0" 1074 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c" 1075 | 1076 | domexception@^1.0.0: 1077 | version "1.0.1" 1078 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" 1079 | dependencies: 1080 | webidl-conversions "^4.0.2" 1081 | 1082 | ecc-jsbn@~0.1.1: 1083 | version "0.1.1" 1084 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1085 | dependencies: 1086 | jsbn "~0.1.0" 1087 | 1088 | electron-to-chromium@^1.3.30: 1089 | version "1.3.33" 1090 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.33.tgz#bf00703d62a7c65238136578c352d6c5c042a545" 1091 | 1092 | encoding@^0.1.11: 1093 | version "0.1.12" 1094 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1095 | dependencies: 1096 | iconv-lite "~0.4.13" 1097 | 1098 | error-ex@^1.2.0: 1099 | version "1.3.1" 1100 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1101 | dependencies: 1102 | is-arrayish "^0.2.1" 1103 | 1104 | es-abstract@^1.5.1: 1105 | version "1.10.0" 1106 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864" 1107 | dependencies: 1108 | es-to-primitive "^1.1.1" 1109 | function-bind "^1.1.1" 1110 | has "^1.0.1" 1111 | is-callable "^1.1.3" 1112 | is-regex "^1.0.4" 1113 | 1114 | es-to-primitive@^1.1.1: 1115 | version "1.1.1" 1116 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1117 | dependencies: 1118 | is-callable "^1.1.1" 1119 | is-date-object "^1.0.1" 1120 | is-symbol "^1.0.1" 1121 | 1122 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1123 | version "1.0.5" 1124 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1125 | 1126 | escodegen@^1.9.0: 1127 | version "1.9.0" 1128 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" 1129 | dependencies: 1130 | esprima "^3.1.3" 1131 | estraverse "^4.2.0" 1132 | esutils "^2.0.2" 1133 | optionator "^0.8.1" 1134 | optionalDependencies: 1135 | source-map "~0.5.6" 1136 | 1137 | esprima@^3.1.3: 1138 | version "3.1.3" 1139 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1140 | 1141 | esprima@^4.0.0: 1142 | version "4.0.0" 1143 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1144 | 1145 | estraverse@^4.2.0: 1146 | version "4.2.0" 1147 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1148 | 1149 | esutils@^2.0.2: 1150 | version "2.0.2" 1151 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1152 | 1153 | exec-sh@^0.2.0: 1154 | version "0.2.1" 1155 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 1156 | dependencies: 1157 | merge "^1.1.3" 1158 | 1159 | execa@^0.7.0: 1160 | version "0.7.0" 1161 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1162 | dependencies: 1163 | cross-spawn "^5.0.1" 1164 | get-stream "^3.0.0" 1165 | is-stream "^1.1.0" 1166 | npm-run-path "^2.0.0" 1167 | p-finally "^1.0.0" 1168 | signal-exit "^3.0.0" 1169 | strip-eof "^1.0.0" 1170 | 1171 | exit@^0.1.2: 1172 | version "0.1.2" 1173 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1174 | 1175 | expand-brackets@^0.1.4: 1176 | version "0.1.5" 1177 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1178 | dependencies: 1179 | is-posix-bracket "^0.1.0" 1180 | 1181 | expand-range@^1.8.1: 1182 | version "1.8.2" 1183 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1184 | dependencies: 1185 | fill-range "^2.1.0" 1186 | 1187 | expect@^22.2.2: 1188 | version "22.2.2" 1189 | resolved "https://registry.yarnpkg.com/expect/-/expect-22.2.2.tgz#6cb6ae2eeb651a4187b9096de70333a018fab63f" 1190 | dependencies: 1191 | ansi-styles "^3.2.0" 1192 | jest-diff "^22.1.0" 1193 | jest-get-type "^22.1.0" 1194 | jest-matcher-utils "^22.2.0" 1195 | jest-message-util "^22.2.0" 1196 | jest-regex-util "^22.1.0" 1197 | 1198 | extend@~3.0.0, extend@~3.0.1: 1199 | version "3.0.1" 1200 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1201 | 1202 | extglob@^0.3.1: 1203 | version "0.3.2" 1204 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1205 | dependencies: 1206 | is-extglob "^1.0.0" 1207 | 1208 | extsprintf@1.3.0: 1209 | version "1.3.0" 1210 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1211 | 1212 | extsprintf@^1.2.0: 1213 | version "1.4.0" 1214 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1215 | 1216 | fast-deep-equal@^1.0.0: 1217 | version "1.0.0" 1218 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1219 | 1220 | fast-json-stable-stringify@^2.0.0: 1221 | version "2.0.0" 1222 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1223 | 1224 | fast-levenshtein@~2.0.4: 1225 | version "2.0.6" 1226 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1227 | 1228 | fb-watchman@^2.0.0: 1229 | version "2.0.0" 1230 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1231 | dependencies: 1232 | bser "^2.0.0" 1233 | 1234 | fbjs@^0.8.16: 1235 | version "0.8.16" 1236 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db" 1237 | dependencies: 1238 | core-js "^1.0.0" 1239 | isomorphic-fetch "^2.1.1" 1240 | loose-envify "^1.0.0" 1241 | object-assign "^4.1.0" 1242 | promise "^7.1.1" 1243 | setimmediate "^1.0.5" 1244 | ua-parser-js "^0.7.9" 1245 | 1246 | filename-regex@^2.0.0: 1247 | version "2.0.1" 1248 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1249 | 1250 | fileset@^2.0.2: 1251 | version "2.0.3" 1252 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1253 | dependencies: 1254 | glob "^7.0.3" 1255 | minimatch "^3.0.3" 1256 | 1257 | fill-range@^2.1.0: 1258 | version "2.2.3" 1259 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1260 | dependencies: 1261 | is-number "^2.1.0" 1262 | isobject "^2.0.0" 1263 | randomatic "^1.1.3" 1264 | repeat-element "^1.1.2" 1265 | repeat-string "^1.5.2" 1266 | 1267 | find-up@^1.0.0: 1268 | version "1.1.2" 1269 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1270 | dependencies: 1271 | path-exists "^2.0.0" 1272 | pinkie-promise "^2.0.0" 1273 | 1274 | find-up@^2.1.0: 1275 | version "2.1.0" 1276 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1277 | dependencies: 1278 | locate-path "^2.0.0" 1279 | 1280 | for-in@^1.0.1: 1281 | version "1.0.2" 1282 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1283 | 1284 | for-own@^0.1.4: 1285 | version "0.1.5" 1286 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1287 | dependencies: 1288 | for-in "^1.0.1" 1289 | 1290 | foreach@^2.0.5: 1291 | version "2.0.5" 1292 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1293 | 1294 | forever-agent@~0.6.1: 1295 | version "0.6.1" 1296 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1297 | 1298 | form-data@~2.1.1: 1299 | version "2.1.4" 1300 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1301 | dependencies: 1302 | asynckit "^0.4.0" 1303 | combined-stream "^1.0.5" 1304 | mime-types "^2.1.12" 1305 | 1306 | form-data@~2.3.1: 1307 | version "2.3.1" 1308 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 1309 | dependencies: 1310 | asynckit "^0.4.0" 1311 | combined-stream "^1.0.5" 1312 | mime-types "^2.1.12" 1313 | 1314 | fs-readdir-recursive@^1.0.0: 1315 | version "1.1.0" 1316 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1317 | 1318 | fs.realpath@^1.0.0: 1319 | version "1.0.0" 1320 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1321 | 1322 | fsevents@^1.0.0, fsevents@^1.1.1: 1323 | version "1.1.3" 1324 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1325 | dependencies: 1326 | nan "^2.3.0" 1327 | node-pre-gyp "^0.6.39" 1328 | 1329 | fstream-ignore@^1.0.5: 1330 | version "1.0.5" 1331 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1332 | dependencies: 1333 | fstream "^1.0.0" 1334 | inherits "2" 1335 | minimatch "^3.0.0" 1336 | 1337 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1338 | version "1.0.11" 1339 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1340 | dependencies: 1341 | graceful-fs "^4.1.2" 1342 | inherits "~2.0.0" 1343 | mkdirp ">=0.5 0" 1344 | rimraf "2" 1345 | 1346 | function-bind@^1.0.2, function-bind@^1.1.1: 1347 | version "1.1.1" 1348 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1349 | 1350 | gauge@~2.7.3: 1351 | version "2.7.4" 1352 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1353 | dependencies: 1354 | aproba "^1.0.3" 1355 | console-control-strings "^1.0.0" 1356 | has-unicode "^2.0.0" 1357 | object-assign "^4.1.0" 1358 | signal-exit "^3.0.0" 1359 | string-width "^1.0.1" 1360 | strip-ansi "^3.0.1" 1361 | wide-align "^1.1.0" 1362 | 1363 | get-caller-file@^1.0.1: 1364 | version "1.0.2" 1365 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1366 | 1367 | get-stream@^3.0.0: 1368 | version "3.0.0" 1369 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1370 | 1371 | getpass@^0.1.1: 1372 | version "0.1.7" 1373 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1374 | dependencies: 1375 | assert-plus "^1.0.0" 1376 | 1377 | glob-base@^0.3.0: 1378 | version "0.3.0" 1379 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1380 | dependencies: 1381 | glob-parent "^2.0.0" 1382 | is-glob "^2.0.0" 1383 | 1384 | glob-parent@^2.0.0: 1385 | version "2.0.0" 1386 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1387 | dependencies: 1388 | is-glob "^2.0.0" 1389 | 1390 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1391 | version "7.1.2" 1392 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1393 | dependencies: 1394 | fs.realpath "^1.0.0" 1395 | inflight "^1.0.4" 1396 | inherits "2" 1397 | minimatch "^3.0.4" 1398 | once "^1.3.0" 1399 | path-is-absolute "^1.0.0" 1400 | 1401 | globals@^9.18.0: 1402 | version "9.18.0" 1403 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1404 | 1405 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1406 | version "4.1.11" 1407 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1408 | 1409 | growly@^1.3.0: 1410 | version "1.3.0" 1411 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1412 | 1413 | handlebars@^4.0.3: 1414 | version "4.0.11" 1415 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 1416 | dependencies: 1417 | async "^1.4.0" 1418 | optimist "^0.6.1" 1419 | source-map "^0.4.4" 1420 | optionalDependencies: 1421 | uglify-js "^2.6" 1422 | 1423 | har-schema@^1.0.5: 1424 | version "1.0.5" 1425 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1426 | 1427 | har-schema@^2.0.0: 1428 | version "2.0.0" 1429 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1430 | 1431 | har-validator@~4.2.1: 1432 | version "4.2.1" 1433 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1434 | dependencies: 1435 | ajv "^4.9.1" 1436 | har-schema "^1.0.5" 1437 | 1438 | har-validator@~5.0.3: 1439 | version "5.0.3" 1440 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1441 | dependencies: 1442 | ajv "^5.1.0" 1443 | har-schema "^2.0.0" 1444 | 1445 | has-ansi@^2.0.0: 1446 | version "2.0.0" 1447 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1448 | dependencies: 1449 | ansi-regex "^2.0.0" 1450 | 1451 | has-flag@^1.0.0: 1452 | version "1.0.0" 1453 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1454 | 1455 | has-flag@^3.0.0: 1456 | version "3.0.0" 1457 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1458 | 1459 | has-unicode@^2.0.0: 1460 | version "2.0.1" 1461 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1462 | 1463 | has@^1.0.1: 1464 | version "1.0.1" 1465 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1466 | dependencies: 1467 | function-bind "^1.0.2" 1468 | 1469 | hawk@3.1.3, hawk@~3.1.3: 1470 | version "3.1.3" 1471 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1472 | dependencies: 1473 | boom "2.x.x" 1474 | cryptiles "2.x.x" 1475 | hoek "2.x.x" 1476 | sntp "1.x.x" 1477 | 1478 | hawk@~6.0.2: 1479 | version "6.0.2" 1480 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1481 | dependencies: 1482 | boom "4.x.x" 1483 | cryptiles "3.x.x" 1484 | hoek "4.x.x" 1485 | sntp "2.x.x" 1486 | 1487 | history@^4.7.2: 1488 | version "4.7.2" 1489 | resolved "https://registry.yarnpkg.com/history/-/history-4.7.2.tgz#22b5c7f31633c5b8021c7f4a8a954ac139ee8d5b" 1490 | dependencies: 1491 | invariant "^2.2.1" 1492 | loose-envify "^1.2.0" 1493 | resolve-pathname "^2.2.0" 1494 | value-equal "^0.4.0" 1495 | warning "^3.0.0" 1496 | 1497 | hoek@2.x.x: 1498 | version "2.16.3" 1499 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1500 | 1501 | hoek@4.x.x: 1502 | version "4.2.0" 1503 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 1504 | 1505 | home-or-tmp@^2.0.0: 1506 | version "2.0.0" 1507 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1508 | dependencies: 1509 | os-homedir "^1.0.0" 1510 | os-tmpdir "^1.0.1" 1511 | 1512 | hosted-git-info@^2.1.4: 1513 | version "2.5.0" 1514 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1515 | 1516 | html-encoding-sniffer@^1.0.2: 1517 | version "1.0.2" 1518 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 1519 | dependencies: 1520 | whatwg-encoding "^1.0.1" 1521 | 1522 | http-signature@~1.1.0: 1523 | version "1.1.1" 1524 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1525 | dependencies: 1526 | assert-plus "^0.2.0" 1527 | jsprim "^1.2.2" 1528 | sshpk "^1.7.0" 1529 | 1530 | http-signature@~1.2.0: 1531 | version "1.2.0" 1532 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1533 | dependencies: 1534 | assert-plus "^1.0.0" 1535 | jsprim "^1.2.2" 1536 | sshpk "^1.7.0" 1537 | 1538 | iconv-lite@0.4.19, iconv-lite@~0.4.13: 1539 | version "0.4.19" 1540 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1541 | 1542 | import-local@^1.0.0: 1543 | version "1.0.0" 1544 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc" 1545 | dependencies: 1546 | pkg-dir "^2.0.0" 1547 | resolve-cwd "^2.0.0" 1548 | 1549 | imurmurhash@^0.1.4: 1550 | version "0.1.4" 1551 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1552 | 1553 | indent-string@^3.1.0: 1554 | version "3.2.0" 1555 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1556 | 1557 | inflight@^1.0.4: 1558 | version "1.0.6" 1559 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1560 | dependencies: 1561 | once "^1.3.0" 1562 | wrappy "1" 1563 | 1564 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: 1565 | version "2.0.3" 1566 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1567 | 1568 | ini@~1.3.0: 1569 | version "1.3.5" 1570 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1571 | 1572 | ink-broadcast@^0.3.0: 1573 | version "0.3.0" 1574 | resolved "https://registry.yarnpkg.com/ink-broadcast/-/ink-broadcast-0.3.0.tgz#2f0a38168f5ec61c160407e0c195471cb59cb650" 1575 | dependencies: 1576 | ink "^0.4.1" 1577 | invariant "^2.2.2" 1578 | prop-types "^15.6.0" 1579 | 1580 | ink@^0.4.1: 1581 | version "0.4.1" 1582 | resolved "https://registry.yarnpkg.com/ink/-/ink-0.4.1.tgz#8f93fcf5e0f2d671558256ba38a632b56bd2452b" 1583 | dependencies: 1584 | arrify "^1.0.1" 1585 | chalk "^2.0.1" 1586 | indent-string "^3.1.0" 1587 | is-equal-shallow "^0.1.3" 1588 | lodash.flattendeep "^4.4.0" 1589 | log-update "^2.1.0" 1590 | prop-types "^15.5.10" 1591 | 1592 | invariant@^2.2.1, invariant@^2.2.2: 1593 | version "2.2.2" 1594 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1595 | dependencies: 1596 | loose-envify "^1.0.0" 1597 | 1598 | invert-kv@^1.0.0: 1599 | version "1.0.0" 1600 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1601 | 1602 | is-arrayish@^0.2.1: 1603 | version "0.2.1" 1604 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1605 | 1606 | is-binary-path@^1.0.0: 1607 | version "1.0.1" 1608 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1609 | dependencies: 1610 | binary-extensions "^1.0.0" 1611 | 1612 | is-buffer@^1.1.5: 1613 | version "1.1.6" 1614 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1615 | 1616 | is-builtin-module@^1.0.0: 1617 | version "1.0.0" 1618 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1619 | dependencies: 1620 | builtin-modules "^1.0.0" 1621 | 1622 | is-callable@^1.1.1, is-callable@^1.1.3: 1623 | version "1.1.3" 1624 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1625 | 1626 | is-ci@^1.0.10: 1627 | version "1.1.0" 1628 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" 1629 | dependencies: 1630 | ci-info "^1.0.0" 1631 | 1632 | is-date-object@^1.0.1: 1633 | version "1.0.1" 1634 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1635 | 1636 | is-dotfile@^1.0.0: 1637 | version "1.0.3" 1638 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1639 | 1640 | is-equal-shallow@^0.1.3: 1641 | version "0.1.3" 1642 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1643 | dependencies: 1644 | is-primitive "^2.0.0" 1645 | 1646 | is-extendable@^0.1.1: 1647 | version "0.1.1" 1648 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1649 | 1650 | is-extglob@^1.0.0: 1651 | version "1.0.0" 1652 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1653 | 1654 | is-finite@^1.0.0: 1655 | version "1.0.2" 1656 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1657 | dependencies: 1658 | number-is-nan "^1.0.0" 1659 | 1660 | is-fullwidth-code-point@^1.0.0: 1661 | version "1.0.0" 1662 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1663 | dependencies: 1664 | number-is-nan "^1.0.0" 1665 | 1666 | is-fullwidth-code-point@^2.0.0: 1667 | version "2.0.0" 1668 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1669 | 1670 | is-generator-fn@^1.0.0: 1671 | version "1.0.0" 1672 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 1673 | 1674 | is-glob@^2.0.0, is-glob@^2.0.1: 1675 | version "2.0.1" 1676 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1677 | dependencies: 1678 | is-extglob "^1.0.0" 1679 | 1680 | is-number@^2.1.0: 1681 | version "2.1.0" 1682 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1683 | dependencies: 1684 | kind-of "^3.0.2" 1685 | 1686 | is-number@^3.0.0: 1687 | version "3.0.0" 1688 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1689 | dependencies: 1690 | kind-of "^3.0.2" 1691 | 1692 | is-posix-bracket@^0.1.0: 1693 | version "0.1.1" 1694 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1695 | 1696 | is-primitive@^2.0.0: 1697 | version "2.0.0" 1698 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1699 | 1700 | is-regex@^1.0.4: 1701 | version "1.0.4" 1702 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1703 | dependencies: 1704 | has "^1.0.1" 1705 | 1706 | is-stream@^1.0.1, is-stream@^1.1.0: 1707 | version "1.1.0" 1708 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1709 | 1710 | is-symbol@^1.0.1: 1711 | version "1.0.1" 1712 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1713 | 1714 | is-typedarray@~1.0.0: 1715 | version "1.0.0" 1716 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1717 | 1718 | is-utf8@^0.2.0: 1719 | version "0.2.1" 1720 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1721 | 1722 | isarray@1.0.0, isarray@~1.0.0: 1723 | version "1.0.0" 1724 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1725 | 1726 | isexe@^2.0.0: 1727 | version "2.0.0" 1728 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1729 | 1730 | isobject@^2.0.0: 1731 | version "2.1.0" 1732 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1733 | dependencies: 1734 | isarray "1.0.0" 1735 | 1736 | isomorphic-fetch@^2.1.1: 1737 | version "2.2.1" 1738 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1739 | dependencies: 1740 | node-fetch "^1.0.1" 1741 | whatwg-fetch ">=0.10.0" 1742 | 1743 | isstream@~0.1.2: 1744 | version "0.1.2" 1745 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1746 | 1747 | istanbul-api@^1.1.14: 1748 | version "1.2.1" 1749 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.2.1.tgz#0c60a0515eb11c7d65c6b50bba2c6e999acd8620" 1750 | dependencies: 1751 | async "^2.1.4" 1752 | fileset "^2.0.2" 1753 | istanbul-lib-coverage "^1.1.1" 1754 | istanbul-lib-hook "^1.1.0" 1755 | istanbul-lib-instrument "^1.9.1" 1756 | istanbul-lib-report "^1.1.2" 1757 | istanbul-lib-source-maps "^1.2.2" 1758 | istanbul-reports "^1.1.3" 1759 | js-yaml "^3.7.0" 1760 | mkdirp "^0.5.1" 1761 | once "^1.4.0" 1762 | 1763 | istanbul-lib-coverage@^1.1.1: 1764 | version "1.1.1" 1765 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1766 | 1767 | istanbul-lib-hook@^1.1.0: 1768 | version "1.1.0" 1769 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.1.0.tgz#8538d970372cb3716d53e55523dd54b557a8d89b" 1770 | dependencies: 1771 | append-transform "^0.4.0" 1772 | 1773 | istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.8.0, istanbul-lib-instrument@^1.9.1: 1774 | version "1.9.1" 1775 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.1.tgz#250b30b3531e5d3251299fdd64b0b2c9db6b558e" 1776 | dependencies: 1777 | babel-generator "^6.18.0" 1778 | babel-template "^6.16.0" 1779 | babel-traverse "^6.18.0" 1780 | babel-types "^6.18.0" 1781 | babylon "^6.18.0" 1782 | istanbul-lib-coverage "^1.1.1" 1783 | semver "^5.3.0" 1784 | 1785 | istanbul-lib-report@^1.1.2: 1786 | version "1.1.2" 1787 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.2.tgz#922be27c13b9511b979bd1587359f69798c1d425" 1788 | dependencies: 1789 | istanbul-lib-coverage "^1.1.1" 1790 | mkdirp "^0.5.1" 1791 | path-parse "^1.0.5" 1792 | supports-color "^3.1.2" 1793 | 1794 | istanbul-lib-source-maps@^1.2.1, istanbul-lib-source-maps@^1.2.2: 1795 | version "1.2.2" 1796 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.2.tgz#750578602435f28a0c04ee6d7d9e0f2960e62c1c" 1797 | dependencies: 1798 | debug "^3.1.0" 1799 | istanbul-lib-coverage "^1.1.1" 1800 | mkdirp "^0.5.1" 1801 | rimraf "^2.6.1" 1802 | source-map "^0.5.3" 1803 | 1804 | istanbul-reports@^1.1.3: 1805 | version "1.1.3" 1806 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.3.tgz#3b9e1e8defb6d18b1d425da8e8b32c5a163f2d10" 1807 | dependencies: 1808 | handlebars "^4.0.3" 1809 | 1810 | jest-changed-files@^22.2.0: 1811 | version "22.2.0" 1812 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-22.2.0.tgz#517610c4a8ca0925bdc88b0ca53bd678aa8d019e" 1813 | dependencies: 1814 | throat "^4.0.0" 1815 | 1816 | jest-cli@^22.2.2: 1817 | version "22.2.2" 1818 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-22.2.2.tgz#4431a93a29549da5dcb6d4a41dd03503c9198cd6" 1819 | dependencies: 1820 | ansi-escapes "^3.0.0" 1821 | chalk "^2.0.1" 1822 | exit "^0.1.2" 1823 | glob "^7.1.2" 1824 | graceful-fs "^4.1.11" 1825 | import-local "^1.0.0" 1826 | is-ci "^1.0.10" 1827 | istanbul-api "^1.1.14" 1828 | istanbul-lib-coverage "^1.1.1" 1829 | istanbul-lib-instrument "^1.8.0" 1830 | istanbul-lib-source-maps "^1.2.1" 1831 | jest-changed-files "^22.2.0" 1832 | jest-config "^22.2.2" 1833 | jest-environment-jsdom "^22.2.2" 1834 | jest-get-type "^22.1.0" 1835 | jest-haste-map "^22.2.2" 1836 | jest-message-util "^22.2.0" 1837 | jest-regex-util "^22.1.0" 1838 | jest-resolve-dependencies "^22.1.0" 1839 | jest-runner "^22.2.2" 1840 | jest-runtime "^22.2.2" 1841 | jest-snapshot "^22.2.0" 1842 | jest-util "^22.2.2" 1843 | jest-worker "^22.2.2" 1844 | micromatch "^2.3.11" 1845 | node-notifier "^5.2.1" 1846 | realpath-native "^1.0.0" 1847 | rimraf "^2.5.4" 1848 | slash "^1.0.0" 1849 | string-length "^2.0.0" 1850 | strip-ansi "^4.0.0" 1851 | which "^1.2.12" 1852 | yargs "^10.0.3" 1853 | 1854 | jest-config@^22.2.2: 1855 | version "22.2.2" 1856 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-22.2.2.tgz#6b8ed615bc51239847d15460086f174dad4a7015" 1857 | dependencies: 1858 | chalk "^2.0.1" 1859 | glob "^7.1.1" 1860 | jest-environment-jsdom "^22.2.2" 1861 | jest-environment-node "^22.2.2" 1862 | jest-get-type "^22.1.0" 1863 | jest-jasmine2 "^22.2.2" 1864 | jest-regex-util "^22.1.0" 1865 | jest-resolve "^22.2.2" 1866 | jest-util "^22.2.2" 1867 | jest-validate "^22.2.2" 1868 | pretty-format "^22.1.0" 1869 | 1870 | jest-diff@^22.1.0: 1871 | version "22.1.0" 1872 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-22.1.0.tgz#0fad9d96c87b453896bf939df3dc8aac6919ac38" 1873 | dependencies: 1874 | chalk "^2.0.1" 1875 | diff "^3.2.0" 1876 | jest-get-type "^22.1.0" 1877 | pretty-format "^22.1.0" 1878 | 1879 | jest-docblock@^22.2.2: 1880 | version "22.2.2" 1881 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-22.2.2.tgz#617f13edb16ec64202002b3c336cd14ae36c0631" 1882 | dependencies: 1883 | detect-newline "^2.1.0" 1884 | 1885 | jest-environment-jsdom@^22.2.2: 1886 | version "22.2.2" 1887 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-22.2.2.tgz#3513ccdccc2bc41daf9cdee199b7069b0d9feebc" 1888 | dependencies: 1889 | jest-mock "^22.2.0" 1890 | jest-util "^22.2.2" 1891 | jsdom "^11.5.1" 1892 | 1893 | jest-environment-node@^22.2.2: 1894 | version "22.2.2" 1895 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-22.2.2.tgz#570896eef2dd0f939c71bd5712ef4321958c1270" 1896 | dependencies: 1897 | jest-mock "^22.2.0" 1898 | jest-util "^22.2.2" 1899 | 1900 | jest-get-type@^22.1.0: 1901 | version "22.1.0" 1902 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.1.0.tgz#4e90af298ed6181edc85d2da500dbd2753e0d5a9" 1903 | 1904 | jest-haste-map@^22.2.2: 1905 | version "22.2.2" 1906 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-22.2.2.tgz#9d3d5a14bd5e05ab9176979f2a5fbb4ddc80eb20" 1907 | dependencies: 1908 | fb-watchman "^2.0.0" 1909 | graceful-fs "^4.1.11" 1910 | jest-docblock "^22.2.2" 1911 | jest-worker "^22.2.2" 1912 | micromatch "^2.3.11" 1913 | sane "^2.0.0" 1914 | 1915 | jest-jasmine2@^22.2.2: 1916 | version "22.2.2" 1917 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-22.2.2.tgz#9065255c8f635ae9dfa33fc66068f59adf53c9aa" 1918 | dependencies: 1919 | callsites "^2.0.0" 1920 | chalk "^2.0.1" 1921 | co "^4.6.0" 1922 | expect "^22.2.2" 1923 | graceful-fs "^4.1.11" 1924 | is-generator-fn "^1.0.0" 1925 | jest-diff "^22.1.0" 1926 | jest-matcher-utils "^22.2.0" 1927 | jest-message-util "^22.2.0" 1928 | jest-snapshot "^22.2.0" 1929 | source-map-support "^0.5.0" 1930 | 1931 | jest-junit@^3.6.0: 1932 | version "3.6.0" 1933 | resolved "https://registry.yarnpkg.com/jest-junit/-/jest-junit-3.6.0.tgz#f4c4358e5286364a4324dc14abddd526aadfbd38" 1934 | dependencies: 1935 | mkdirp "^0.5.1" 1936 | strip-ansi "^4.0.0" 1937 | xml "^1.0.1" 1938 | 1939 | jest-leak-detector@^22.1.0: 1940 | version "22.1.0" 1941 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-22.1.0.tgz#08376644cee07103da069baac19adb0299b772c2" 1942 | dependencies: 1943 | pretty-format "^22.1.0" 1944 | 1945 | jest-matcher-utils@^22.2.0: 1946 | version "22.2.0" 1947 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-22.2.0.tgz#5390f823c18c748543d463825aa8e4df0db253ca" 1948 | dependencies: 1949 | chalk "^2.0.1" 1950 | jest-get-type "^22.1.0" 1951 | pretty-format "^22.1.0" 1952 | 1953 | jest-message-util@^22.2.0: 1954 | version "22.2.0" 1955 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-22.2.0.tgz#84a6bb34186d8b9af7e0732fabbef63f7355f7b2" 1956 | dependencies: 1957 | "@babel/code-frame" "^7.0.0-beta.35" 1958 | chalk "^2.0.1" 1959 | micromatch "^2.3.11" 1960 | slash "^1.0.0" 1961 | stack-utils "^1.0.1" 1962 | 1963 | jest-mock@^22.2.0: 1964 | version "22.2.0" 1965 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-22.2.0.tgz#444b3f9488a7473adae09bc8a77294afded397a7" 1966 | 1967 | jest-regex-util@^22.1.0: 1968 | version "22.1.0" 1969 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-22.1.0.tgz#5daf2fe270074b6da63e5d85f1c9acc866768f53" 1970 | 1971 | jest-resolve-dependencies@^22.1.0: 1972 | version "22.1.0" 1973 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-22.1.0.tgz#340e4139fb13315cd43abc054e6c06136be51e31" 1974 | dependencies: 1975 | jest-regex-util "^22.1.0" 1976 | 1977 | jest-resolve@^22.2.2: 1978 | version "22.2.2" 1979 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-22.2.2.tgz#6f49d91e3680c86a4d5e5f72ccdab3996d1cbc19" 1980 | dependencies: 1981 | browser-resolve "^1.11.2" 1982 | chalk "^2.0.1" 1983 | 1984 | jest-runner@^22.2.2: 1985 | version "22.2.2" 1986 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-22.2.2.tgz#17fff27a61b63b58cf104c9cdcc0fdfccd3878ce" 1987 | dependencies: 1988 | exit "^0.1.2" 1989 | jest-config "^22.2.2" 1990 | jest-docblock "^22.2.2" 1991 | jest-haste-map "^22.2.2" 1992 | jest-jasmine2 "^22.2.2" 1993 | jest-leak-detector "^22.1.0" 1994 | jest-message-util "^22.2.0" 1995 | jest-runtime "^22.2.2" 1996 | jest-util "^22.2.2" 1997 | jest-worker "^22.2.2" 1998 | throat "^4.0.0" 1999 | 2000 | jest-runtime@^22.2.2: 2001 | version "22.2.2" 2002 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-22.2.2.tgz#256d0efb65deae1c23b819d88cec5ab43d7a4ed6" 2003 | dependencies: 2004 | babel-core "^6.0.0" 2005 | babel-jest "^22.2.2" 2006 | babel-plugin-istanbul "^4.1.5" 2007 | chalk "^2.0.1" 2008 | convert-source-map "^1.4.0" 2009 | exit "^0.1.2" 2010 | graceful-fs "^4.1.11" 2011 | jest-config "^22.2.2" 2012 | jest-haste-map "^22.2.2" 2013 | jest-regex-util "^22.1.0" 2014 | jest-resolve "^22.2.2" 2015 | jest-util "^22.2.2" 2016 | json-stable-stringify "^1.0.1" 2017 | micromatch "^2.3.11" 2018 | realpath-native "^1.0.0" 2019 | slash "^1.0.0" 2020 | strip-bom "3.0.0" 2021 | write-file-atomic "^2.1.0" 2022 | yargs "^10.0.3" 2023 | 2024 | jest-snapshot@^22.2.0: 2025 | version "22.2.0" 2026 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-22.2.0.tgz#0c0ba152d296ef70fa198cc84977a2cc269ee4cf" 2027 | dependencies: 2028 | chalk "^2.0.1" 2029 | jest-diff "^22.1.0" 2030 | jest-matcher-utils "^22.2.0" 2031 | mkdirp "^0.5.1" 2032 | natural-compare "^1.4.0" 2033 | pretty-format "^22.1.0" 2034 | 2035 | jest-util@^22.2.2: 2036 | version "22.2.2" 2037 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-22.2.2.tgz#335484b6aeae0c5a1ae498401630324977fe3465" 2038 | dependencies: 2039 | callsites "^2.0.0" 2040 | chalk "^2.0.1" 2041 | graceful-fs "^4.1.11" 2042 | is-ci "^1.0.10" 2043 | jest-message-util "^22.2.0" 2044 | jest-validate "^22.2.2" 2045 | mkdirp "^0.5.1" 2046 | 2047 | jest-validate@^22.2.2: 2048 | version "22.2.2" 2049 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-22.2.2.tgz#9cdce422c93cc28395e907ac6bbc929158d9a6ba" 2050 | dependencies: 2051 | chalk "^2.0.1" 2052 | jest-get-type "^22.1.0" 2053 | leven "^2.1.0" 2054 | pretty-format "^22.1.0" 2055 | 2056 | jest-worker@^22.2.2: 2057 | version "22.2.2" 2058 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-22.2.2.tgz#c1f5dc39976884b81f68ec50cb8532b2cbab3390" 2059 | dependencies: 2060 | merge-stream "^1.0.1" 2061 | 2062 | jest@^22.2.2: 2063 | version "22.2.2" 2064 | resolved "https://registry.yarnpkg.com/jest/-/jest-22.2.2.tgz#26aca0f5e4eaa76d52f2792b14033a3d1e7be2bd" 2065 | dependencies: 2066 | import-local "^1.0.0" 2067 | jest-cli "^22.2.2" 2068 | 2069 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2070 | version "3.0.2" 2071 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2072 | 2073 | js-yaml@^3.7.0: 2074 | version "3.10.0" 2075 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 2076 | dependencies: 2077 | argparse "^1.0.7" 2078 | esprima "^4.0.0" 2079 | 2080 | jsbn@~0.1.0: 2081 | version "0.1.1" 2082 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2083 | 2084 | jsdom@^11.5.1: 2085 | version "11.6.2" 2086 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.6.2.tgz#25d1ef332d48adf77fc5221fe2619967923f16bb" 2087 | dependencies: 2088 | abab "^1.0.4" 2089 | acorn "^5.3.0" 2090 | acorn-globals "^4.1.0" 2091 | array-equal "^1.0.0" 2092 | browser-process-hrtime "^0.1.2" 2093 | content-type-parser "^1.0.2" 2094 | cssom ">= 0.3.2 < 0.4.0" 2095 | cssstyle ">= 0.2.37 < 0.3.0" 2096 | domexception "^1.0.0" 2097 | escodegen "^1.9.0" 2098 | html-encoding-sniffer "^1.0.2" 2099 | left-pad "^1.2.0" 2100 | nwmatcher "^1.4.3" 2101 | parse5 "4.0.0" 2102 | pn "^1.1.0" 2103 | request "^2.83.0" 2104 | request-promise-native "^1.0.5" 2105 | sax "^1.2.4" 2106 | symbol-tree "^3.2.2" 2107 | tough-cookie "^2.3.3" 2108 | w3c-hr-time "^1.0.1" 2109 | webidl-conversions "^4.0.2" 2110 | whatwg-encoding "^1.0.3" 2111 | whatwg-url "^6.4.0" 2112 | ws "^4.0.0" 2113 | xml-name-validator "^3.0.0" 2114 | 2115 | jsesc@^1.3.0: 2116 | version "1.3.0" 2117 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2118 | 2119 | jsesc@~0.5.0: 2120 | version "0.5.0" 2121 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2122 | 2123 | json-schema-traverse@^0.3.0: 2124 | version "0.3.1" 2125 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2126 | 2127 | json-schema@0.2.3: 2128 | version "0.2.3" 2129 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2130 | 2131 | json-stable-stringify@^1.0.1: 2132 | version "1.0.1" 2133 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2134 | dependencies: 2135 | jsonify "~0.0.0" 2136 | 2137 | json-stringify-safe@~5.0.1: 2138 | version "5.0.1" 2139 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2140 | 2141 | json5@^0.5.1: 2142 | version "0.5.1" 2143 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2144 | 2145 | jsonify@~0.0.0: 2146 | version "0.0.0" 2147 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2148 | 2149 | jsprim@^1.2.2: 2150 | version "1.4.1" 2151 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2152 | dependencies: 2153 | assert-plus "1.0.0" 2154 | extsprintf "1.3.0" 2155 | json-schema "0.2.3" 2156 | verror "1.10.0" 2157 | 2158 | kind-of@^3.0.2: 2159 | version "3.2.2" 2160 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2161 | dependencies: 2162 | is-buffer "^1.1.5" 2163 | 2164 | kind-of@^4.0.0: 2165 | version "4.0.0" 2166 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2167 | dependencies: 2168 | is-buffer "^1.1.5" 2169 | 2170 | lazy-cache@^1.0.3: 2171 | version "1.0.4" 2172 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2173 | 2174 | lcid@^1.0.0: 2175 | version "1.0.0" 2176 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2177 | dependencies: 2178 | invert-kv "^1.0.0" 2179 | 2180 | left-pad@^1.2.0: 2181 | version "1.2.0" 2182 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.2.0.tgz#d30a73c6b8201d8f7d8e7956ba9616087a68e0ee" 2183 | 2184 | leven@^2.1.0: 2185 | version "2.1.0" 2186 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2187 | 2188 | levn@~0.3.0: 2189 | version "0.3.0" 2190 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2191 | dependencies: 2192 | prelude-ls "~1.1.2" 2193 | type-check "~0.3.2" 2194 | 2195 | load-json-file@^1.0.0: 2196 | version "1.1.0" 2197 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2198 | dependencies: 2199 | graceful-fs "^4.1.2" 2200 | parse-json "^2.2.0" 2201 | pify "^2.0.0" 2202 | pinkie-promise "^2.0.0" 2203 | strip-bom "^2.0.0" 2204 | 2205 | locate-path@^2.0.0: 2206 | version "2.0.0" 2207 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2208 | dependencies: 2209 | p-locate "^2.0.0" 2210 | path-exists "^3.0.0" 2211 | 2212 | lodash.flattendeep@^4.4.0: 2213 | version "4.4.0" 2214 | resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" 2215 | 2216 | lodash.sortby@^4.7.0: 2217 | version "4.7.0" 2218 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 2219 | 2220 | lodash@^4.13.1, lodash@^4.14.0, lodash@^4.17.4: 2221 | version "4.17.5" 2222 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" 2223 | 2224 | log-update@^2.1.0: 2225 | version "2.3.0" 2226 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708" 2227 | dependencies: 2228 | ansi-escapes "^3.0.0" 2229 | cli-cursor "^2.0.0" 2230 | wrap-ansi "^3.0.1" 2231 | 2232 | longest@^1.0.1: 2233 | version "1.0.1" 2234 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2235 | 2236 | loose-envify@^1.0.0, loose-envify@^1.2.0, loose-envify@^1.3.1: 2237 | version "1.3.1" 2238 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2239 | dependencies: 2240 | js-tokens "^3.0.0" 2241 | 2242 | lru-cache@^4.0.1: 2243 | version "4.1.1" 2244 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2245 | dependencies: 2246 | pseudomap "^1.0.2" 2247 | yallist "^2.1.2" 2248 | 2249 | makeerror@1.0.x: 2250 | version "1.0.11" 2251 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2252 | dependencies: 2253 | tmpl "1.0.x" 2254 | 2255 | mem@^1.1.0: 2256 | version "1.1.0" 2257 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2258 | dependencies: 2259 | mimic-fn "^1.0.0" 2260 | 2261 | merge-stream@^1.0.1: 2262 | version "1.0.1" 2263 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 2264 | dependencies: 2265 | readable-stream "^2.0.1" 2266 | 2267 | merge@^1.1.3: 2268 | version "1.2.0" 2269 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2270 | 2271 | micromatch@^2.1.5, micromatch@^2.3.11: 2272 | version "2.3.11" 2273 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2274 | dependencies: 2275 | arr-diff "^2.0.0" 2276 | array-unique "^0.2.1" 2277 | braces "^1.8.2" 2278 | expand-brackets "^0.1.4" 2279 | extglob "^0.3.1" 2280 | filename-regex "^2.0.0" 2281 | is-extglob "^1.0.0" 2282 | is-glob "^2.0.1" 2283 | kind-of "^3.0.2" 2284 | normalize-path "^2.0.1" 2285 | object.omit "^2.0.0" 2286 | parse-glob "^3.0.4" 2287 | regex-cache "^0.4.2" 2288 | 2289 | mime-db@~1.30.0: 2290 | version "1.30.0" 2291 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2292 | 2293 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: 2294 | version "2.1.17" 2295 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2296 | dependencies: 2297 | mime-db "~1.30.0" 2298 | 2299 | mimic-fn@^1.0.0: 2300 | version "1.2.0" 2301 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2302 | 2303 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2304 | version "3.0.4" 2305 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2306 | dependencies: 2307 | brace-expansion "^1.1.7" 2308 | 2309 | minimist@0.0.8: 2310 | version "0.0.8" 2311 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2312 | 2313 | minimist@^1.1.1, minimist@^1.2.0: 2314 | version "1.2.0" 2315 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2316 | 2317 | minimist@~0.0.1: 2318 | version "0.0.10" 2319 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2320 | 2321 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2322 | version "0.5.1" 2323 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2324 | dependencies: 2325 | minimist "0.0.8" 2326 | 2327 | ms@2.0.0: 2328 | version "2.0.0" 2329 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2330 | 2331 | nan@^2.3.0: 2332 | version "2.8.0" 2333 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 2334 | 2335 | natural-compare@^1.4.0: 2336 | version "1.4.0" 2337 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2338 | 2339 | node-fetch@^1.0.1: 2340 | version "1.7.3" 2341 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 2342 | dependencies: 2343 | encoding "^0.1.11" 2344 | is-stream "^1.0.1" 2345 | 2346 | node-int64@^0.4.0: 2347 | version "0.4.0" 2348 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2349 | 2350 | node-notifier@^5.2.1: 2351 | version "5.2.1" 2352 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" 2353 | dependencies: 2354 | growly "^1.3.0" 2355 | semver "^5.4.1" 2356 | shellwords "^0.1.1" 2357 | which "^1.3.0" 2358 | 2359 | node-pre-gyp@^0.6.39: 2360 | version "0.6.39" 2361 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2362 | dependencies: 2363 | detect-libc "^1.0.2" 2364 | hawk "3.1.3" 2365 | mkdirp "^0.5.1" 2366 | nopt "^4.0.1" 2367 | npmlog "^4.0.2" 2368 | rc "^1.1.7" 2369 | request "2.81.0" 2370 | rimraf "^2.6.1" 2371 | semver "^5.3.0" 2372 | tar "^2.2.1" 2373 | tar-pack "^3.4.0" 2374 | 2375 | nopt@^4.0.1: 2376 | version "4.0.1" 2377 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2378 | dependencies: 2379 | abbrev "1" 2380 | osenv "^0.1.4" 2381 | 2382 | normalize-package-data@^2.3.2: 2383 | version "2.4.0" 2384 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2385 | dependencies: 2386 | hosted-git-info "^2.1.4" 2387 | is-builtin-module "^1.0.0" 2388 | semver "2 || 3 || 4 || 5" 2389 | validate-npm-package-license "^3.0.1" 2390 | 2391 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2392 | version "2.1.1" 2393 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2394 | dependencies: 2395 | remove-trailing-separator "^1.0.1" 2396 | 2397 | npm-run-path@^2.0.0: 2398 | version "2.0.2" 2399 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2400 | dependencies: 2401 | path-key "^2.0.0" 2402 | 2403 | npmlog@^4.0.2: 2404 | version "4.1.2" 2405 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2406 | dependencies: 2407 | are-we-there-yet "~1.1.2" 2408 | console-control-strings "~1.1.0" 2409 | gauge "~2.7.3" 2410 | set-blocking "~2.0.0" 2411 | 2412 | number-is-nan@^1.0.0: 2413 | version "1.0.1" 2414 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2415 | 2416 | nwmatcher@^1.4.3: 2417 | version "1.4.3" 2418 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.3.tgz#64348e3b3d80f035b40ac11563d278f8b72db89c" 2419 | 2420 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 2421 | version "0.8.2" 2422 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2423 | 2424 | object-assign@^4.1.0, object-assign@^4.1.1: 2425 | version "4.1.1" 2426 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2427 | 2428 | object-keys@^1.0.8: 2429 | version "1.0.11" 2430 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2431 | 2432 | object.getownpropertydescriptors@^2.0.3: 2433 | version "2.0.3" 2434 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 2435 | dependencies: 2436 | define-properties "^1.1.2" 2437 | es-abstract "^1.5.1" 2438 | 2439 | object.omit@^2.0.0: 2440 | version "2.0.1" 2441 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2442 | dependencies: 2443 | for-own "^0.1.4" 2444 | is-extendable "^0.1.1" 2445 | 2446 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2447 | version "1.4.0" 2448 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2449 | dependencies: 2450 | wrappy "1" 2451 | 2452 | onetime@^2.0.0: 2453 | version "2.0.1" 2454 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2455 | dependencies: 2456 | mimic-fn "^1.0.0" 2457 | 2458 | optimist@^0.6.1: 2459 | version "0.6.1" 2460 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2461 | dependencies: 2462 | minimist "~0.0.1" 2463 | wordwrap "~0.0.2" 2464 | 2465 | optionator@^0.8.1: 2466 | version "0.8.2" 2467 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2468 | dependencies: 2469 | deep-is "~0.1.3" 2470 | fast-levenshtein "~2.0.4" 2471 | levn "~0.3.0" 2472 | prelude-ls "~1.1.2" 2473 | type-check "~0.3.2" 2474 | wordwrap "~1.0.0" 2475 | 2476 | os-homedir@^1.0.0: 2477 | version "1.0.2" 2478 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2479 | 2480 | os-locale@^2.0.0: 2481 | version "2.1.0" 2482 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2483 | dependencies: 2484 | execa "^0.7.0" 2485 | lcid "^1.0.0" 2486 | mem "^1.1.0" 2487 | 2488 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2489 | version "1.0.2" 2490 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2491 | 2492 | osenv@^0.1.4: 2493 | version "0.1.4" 2494 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2495 | dependencies: 2496 | os-homedir "^1.0.0" 2497 | os-tmpdir "^1.0.0" 2498 | 2499 | output-file-sync@^1.1.2: 2500 | version "1.1.2" 2501 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2502 | dependencies: 2503 | graceful-fs "^4.1.4" 2504 | mkdirp "^0.5.1" 2505 | object-assign "^4.1.0" 2506 | 2507 | p-finally@^1.0.0: 2508 | version "1.0.0" 2509 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2510 | 2511 | p-limit@^1.1.0: 2512 | version "1.2.0" 2513 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 2514 | dependencies: 2515 | p-try "^1.0.0" 2516 | 2517 | p-locate@^2.0.0: 2518 | version "2.0.0" 2519 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2520 | dependencies: 2521 | p-limit "^1.1.0" 2522 | 2523 | p-try@^1.0.0: 2524 | version "1.0.0" 2525 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2526 | 2527 | parse-glob@^3.0.4: 2528 | version "3.0.4" 2529 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2530 | dependencies: 2531 | glob-base "^0.3.0" 2532 | is-dotfile "^1.0.0" 2533 | is-extglob "^1.0.0" 2534 | is-glob "^2.0.0" 2535 | 2536 | parse-json@^2.2.0: 2537 | version "2.2.0" 2538 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2539 | dependencies: 2540 | error-ex "^1.2.0" 2541 | 2542 | parse5@4.0.0: 2543 | version "4.0.0" 2544 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" 2545 | 2546 | path-exists@^2.0.0: 2547 | version "2.1.0" 2548 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2549 | dependencies: 2550 | pinkie-promise "^2.0.0" 2551 | 2552 | path-exists@^3.0.0: 2553 | version "3.0.0" 2554 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2555 | 2556 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2557 | version "1.0.1" 2558 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2559 | 2560 | path-key@^2.0.0: 2561 | version "2.0.1" 2562 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2563 | 2564 | path-parse@^1.0.5: 2565 | version "1.0.5" 2566 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2567 | 2568 | path-to-regexp@^2.1.0: 2569 | version "2.1.0" 2570 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-2.1.0.tgz#7e30f9f5b134bd6a28ffc2e3ef1e47075ac5259b" 2571 | 2572 | path-type@^1.0.0: 2573 | version "1.1.0" 2574 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2575 | dependencies: 2576 | graceful-fs "^4.1.2" 2577 | pify "^2.0.0" 2578 | pinkie-promise "^2.0.0" 2579 | 2580 | performance-now@^0.2.0: 2581 | version "0.2.0" 2582 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2583 | 2584 | performance-now@^2.1.0: 2585 | version "2.1.0" 2586 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2587 | 2588 | pify@^2.0.0: 2589 | version "2.3.0" 2590 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2591 | 2592 | pinkie-promise@^2.0.0: 2593 | version "2.0.1" 2594 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2595 | dependencies: 2596 | pinkie "^2.0.0" 2597 | 2598 | pinkie@^2.0.0: 2599 | version "2.0.4" 2600 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2601 | 2602 | pkg-dir@^2.0.0: 2603 | version "2.0.0" 2604 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2605 | dependencies: 2606 | find-up "^2.1.0" 2607 | 2608 | pn@^1.1.0: 2609 | version "1.1.0" 2610 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" 2611 | 2612 | prelude-ls@~1.1.2: 2613 | version "1.1.2" 2614 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2615 | 2616 | preserve@^0.2.0: 2617 | version "0.2.0" 2618 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2619 | 2620 | pretty-format@^22.1.0: 2621 | version "22.1.0" 2622 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-22.1.0.tgz#2277605b40ed4529ae4db51ff62f4be817647914" 2623 | dependencies: 2624 | ansi-regex "^3.0.0" 2625 | ansi-styles "^3.2.0" 2626 | 2627 | private@^0.1.6, private@^0.1.7: 2628 | version "0.1.8" 2629 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2630 | 2631 | process-nextick-args@~2.0.0: 2632 | version "2.0.0" 2633 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2634 | 2635 | promise@^7.1.1: 2636 | version "7.3.1" 2637 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 2638 | dependencies: 2639 | asap "~2.0.3" 2640 | 2641 | prop-types@^15.5.10, prop-types@^15.6.0: 2642 | version "15.6.0" 2643 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.0.tgz#ceaf083022fc46b4a35f69e13ef75aed0d639856" 2644 | dependencies: 2645 | fbjs "^0.8.16" 2646 | loose-envify "^1.3.1" 2647 | object-assign "^4.1.1" 2648 | 2649 | pseudomap@^1.0.2: 2650 | version "1.0.2" 2651 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2652 | 2653 | punycode@^1.4.1: 2654 | version "1.4.1" 2655 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2656 | 2657 | punycode@^2.1.0: 2658 | version "2.1.0" 2659 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d" 2660 | 2661 | qs@~6.4.0: 2662 | version "6.4.0" 2663 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2664 | 2665 | qs@~6.5.1: 2666 | version "6.5.1" 2667 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 2668 | 2669 | randomatic@^1.1.3: 2670 | version "1.1.7" 2671 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2672 | dependencies: 2673 | is-number "^3.0.0" 2674 | kind-of "^4.0.0" 2675 | 2676 | rc@^1.1.7: 2677 | version "1.2.5" 2678 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.5.tgz#275cd687f6e3b36cc756baa26dfee80a790301fd" 2679 | dependencies: 2680 | deep-extend "~0.4.0" 2681 | ini "~1.3.0" 2682 | minimist "^1.2.0" 2683 | strip-json-comments "~2.0.1" 2684 | 2685 | read-pkg-up@^1.0.1: 2686 | version "1.0.1" 2687 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2688 | dependencies: 2689 | find-up "^1.0.0" 2690 | read-pkg "^1.0.0" 2691 | 2692 | read-pkg@^1.0.0: 2693 | version "1.1.0" 2694 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2695 | dependencies: 2696 | load-json-file "^1.0.0" 2697 | normalize-package-data "^2.3.2" 2698 | path-type "^1.0.0" 2699 | 2700 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 2701 | version "2.3.4" 2702 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.4.tgz#c946c3f47fa7d8eabc0b6150f4a12f69a4574071" 2703 | dependencies: 2704 | core-util-is "~1.0.0" 2705 | inherits "~2.0.3" 2706 | isarray "~1.0.0" 2707 | process-nextick-args "~2.0.0" 2708 | safe-buffer "~5.1.1" 2709 | string_decoder "~1.0.3" 2710 | util-deprecate "~1.0.1" 2711 | 2712 | readdirp@^2.0.0: 2713 | version "2.1.0" 2714 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2715 | dependencies: 2716 | graceful-fs "^4.1.2" 2717 | minimatch "^3.0.2" 2718 | readable-stream "^2.0.2" 2719 | set-immediate-shim "^1.0.1" 2720 | 2721 | realpath-native@^1.0.0: 2722 | version "1.0.0" 2723 | resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.0.tgz#7885721a83b43bd5327609f0ddecb2482305fdf0" 2724 | dependencies: 2725 | util.promisify "^1.0.0" 2726 | 2727 | regenerate@^1.2.1: 2728 | version "1.3.3" 2729 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2730 | 2731 | regenerator-runtime@^0.10.5: 2732 | version "0.10.5" 2733 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2734 | 2735 | regenerator-runtime@^0.11.0: 2736 | version "0.11.1" 2737 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2738 | 2739 | regenerator-transform@^0.10.0: 2740 | version "0.10.1" 2741 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2742 | dependencies: 2743 | babel-runtime "^6.18.0" 2744 | babel-types "^6.19.0" 2745 | private "^0.1.6" 2746 | 2747 | regex-cache@^0.4.2: 2748 | version "0.4.4" 2749 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2750 | dependencies: 2751 | is-equal-shallow "^0.1.3" 2752 | 2753 | regexpu-core@^2.0.0: 2754 | version "2.0.0" 2755 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2756 | dependencies: 2757 | regenerate "^1.2.1" 2758 | regjsgen "^0.2.0" 2759 | regjsparser "^0.1.4" 2760 | 2761 | regjsgen@^0.2.0: 2762 | version "0.2.0" 2763 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2764 | 2765 | regjsparser@^0.1.4: 2766 | version "0.1.5" 2767 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2768 | dependencies: 2769 | jsesc "~0.5.0" 2770 | 2771 | remove-trailing-separator@^1.0.1: 2772 | version "1.1.0" 2773 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2774 | 2775 | repeat-element@^1.1.2: 2776 | version "1.1.2" 2777 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2778 | 2779 | repeat-string@^1.5.2: 2780 | version "1.6.1" 2781 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2782 | 2783 | repeating@^2.0.0: 2784 | version "2.0.1" 2785 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2786 | dependencies: 2787 | is-finite "^1.0.0" 2788 | 2789 | request-promise-core@1.1.1: 2790 | version "1.1.1" 2791 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 2792 | dependencies: 2793 | lodash "^4.13.1" 2794 | 2795 | request-promise-native@^1.0.5: 2796 | version "1.0.5" 2797 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" 2798 | dependencies: 2799 | request-promise-core "1.1.1" 2800 | stealthy-require "^1.1.0" 2801 | tough-cookie ">=2.3.3" 2802 | 2803 | request@2.81.0: 2804 | version "2.81.0" 2805 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2806 | dependencies: 2807 | aws-sign2 "~0.6.0" 2808 | aws4 "^1.2.1" 2809 | caseless "~0.12.0" 2810 | combined-stream "~1.0.5" 2811 | extend "~3.0.0" 2812 | forever-agent "~0.6.1" 2813 | form-data "~2.1.1" 2814 | har-validator "~4.2.1" 2815 | hawk "~3.1.3" 2816 | http-signature "~1.1.0" 2817 | is-typedarray "~1.0.0" 2818 | isstream "~0.1.2" 2819 | json-stringify-safe "~5.0.1" 2820 | mime-types "~2.1.7" 2821 | oauth-sign "~0.8.1" 2822 | performance-now "^0.2.0" 2823 | qs "~6.4.0" 2824 | safe-buffer "^5.0.1" 2825 | stringstream "~0.0.4" 2826 | tough-cookie "~2.3.0" 2827 | tunnel-agent "^0.6.0" 2828 | uuid "^3.0.0" 2829 | 2830 | request@^2.83.0: 2831 | version "2.83.0" 2832 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 2833 | dependencies: 2834 | aws-sign2 "~0.7.0" 2835 | aws4 "^1.6.0" 2836 | caseless "~0.12.0" 2837 | combined-stream "~1.0.5" 2838 | extend "~3.0.1" 2839 | forever-agent "~0.6.1" 2840 | form-data "~2.3.1" 2841 | har-validator "~5.0.3" 2842 | hawk "~6.0.2" 2843 | http-signature "~1.2.0" 2844 | is-typedarray "~1.0.0" 2845 | isstream "~0.1.2" 2846 | json-stringify-safe "~5.0.1" 2847 | mime-types "~2.1.17" 2848 | oauth-sign "~0.8.2" 2849 | performance-now "^2.1.0" 2850 | qs "~6.5.1" 2851 | safe-buffer "^5.1.1" 2852 | stringstream "~0.0.5" 2853 | tough-cookie "~2.3.3" 2854 | tunnel-agent "^0.6.0" 2855 | uuid "^3.1.0" 2856 | 2857 | require-directory@^2.1.1: 2858 | version "2.1.1" 2859 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2860 | 2861 | require-main-filename@^1.0.1: 2862 | version "1.0.1" 2863 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2864 | 2865 | resolve-cwd@^2.0.0: 2866 | version "2.0.0" 2867 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 2868 | dependencies: 2869 | resolve-from "^3.0.0" 2870 | 2871 | resolve-from@^3.0.0: 2872 | version "3.0.0" 2873 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 2874 | 2875 | resolve-pathname@^2.2.0: 2876 | version "2.2.0" 2877 | resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-2.2.0.tgz#7e9ae21ed815fd63ab189adeee64dc831eefa879" 2878 | 2879 | resolve@1.1.7: 2880 | version "1.1.7" 2881 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2882 | 2883 | restore-cursor@^2.0.0: 2884 | version "2.0.0" 2885 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2886 | dependencies: 2887 | onetime "^2.0.0" 2888 | signal-exit "^3.0.2" 2889 | 2890 | right-align@^0.1.1: 2891 | version "0.1.3" 2892 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2893 | dependencies: 2894 | align-text "^0.1.1" 2895 | 2896 | rimraf@2, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1: 2897 | version "2.6.2" 2898 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2899 | dependencies: 2900 | glob "^7.0.5" 2901 | 2902 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2903 | version "5.1.1" 2904 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2905 | 2906 | sane@^2.0.0: 2907 | version "2.4.1" 2908 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.4.1.tgz#29f991208cf28636720efdc584293e7fd66663a5" 2909 | dependencies: 2910 | anymatch "^1.3.0" 2911 | exec-sh "^0.2.0" 2912 | fb-watchman "^2.0.0" 2913 | minimatch "^3.0.2" 2914 | minimist "^1.1.1" 2915 | walker "~1.0.5" 2916 | watch "~0.18.0" 2917 | optionalDependencies: 2918 | fsevents "^1.1.1" 2919 | 2920 | sax@^1.2.4: 2921 | version "1.2.4" 2922 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2923 | 2924 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1: 2925 | version "5.5.0" 2926 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 2927 | 2928 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2929 | version "2.0.0" 2930 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2931 | 2932 | set-immediate-shim@^1.0.1: 2933 | version "1.0.1" 2934 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2935 | 2936 | setimmediate@^1.0.5: 2937 | version "1.0.5" 2938 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2939 | 2940 | shebang-command@^1.2.0: 2941 | version "1.2.0" 2942 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2943 | dependencies: 2944 | shebang-regex "^1.0.0" 2945 | 2946 | shebang-regex@^1.0.0: 2947 | version "1.0.0" 2948 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2949 | 2950 | shellwords@^0.1.1: 2951 | version "0.1.1" 2952 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 2953 | 2954 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2955 | version "3.0.2" 2956 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2957 | 2958 | slash@^1.0.0: 2959 | version "1.0.0" 2960 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2961 | 2962 | sntp@1.x.x: 2963 | version "1.0.9" 2964 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2965 | dependencies: 2966 | hoek "2.x.x" 2967 | 2968 | sntp@2.x.x: 2969 | version "2.1.0" 2970 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 2971 | dependencies: 2972 | hoek "4.x.x" 2973 | 2974 | source-map-support@^0.4.15: 2975 | version "0.4.18" 2976 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2977 | dependencies: 2978 | source-map "^0.5.6" 2979 | 2980 | source-map-support@^0.5.0: 2981 | version "0.5.3" 2982 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.3.tgz#2b3d5fff298cfa4d1afd7d4352d569e9a0158e76" 2983 | dependencies: 2984 | source-map "^0.6.0" 2985 | 2986 | source-map@^0.4.4: 2987 | version "0.4.4" 2988 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2989 | dependencies: 2990 | amdefine ">=0.0.4" 2991 | 2992 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1, source-map@~0.5.6: 2993 | version "0.5.7" 2994 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2995 | 2996 | source-map@^0.6.0: 2997 | version "0.6.1" 2998 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2999 | 3000 | spdx-correct@~1.0.0: 3001 | version "1.0.2" 3002 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3003 | dependencies: 3004 | spdx-license-ids "^1.0.2" 3005 | 3006 | spdx-expression-parse@~1.0.0: 3007 | version "1.0.4" 3008 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3009 | 3010 | spdx-license-ids@^1.0.2: 3011 | version "1.2.2" 3012 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3013 | 3014 | sprintf-js@~1.0.2: 3015 | version "1.0.3" 3016 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3017 | 3018 | sshpk@^1.7.0: 3019 | version "1.13.1" 3020 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 3021 | dependencies: 3022 | asn1 "~0.2.3" 3023 | assert-plus "^1.0.0" 3024 | dashdash "^1.12.0" 3025 | getpass "^0.1.1" 3026 | optionalDependencies: 3027 | bcrypt-pbkdf "^1.0.0" 3028 | ecc-jsbn "~0.1.1" 3029 | jsbn "~0.1.0" 3030 | tweetnacl "~0.14.0" 3031 | 3032 | stack-utils@^1.0.1: 3033 | version "1.0.1" 3034 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 3035 | 3036 | stealthy-require@^1.1.0: 3037 | version "1.1.1" 3038 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 3039 | 3040 | string-length@^2.0.0: 3041 | version "2.0.0" 3042 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 3043 | dependencies: 3044 | astral-regex "^1.0.0" 3045 | strip-ansi "^4.0.0" 3046 | 3047 | string-width@^1.0.1, string-width@^1.0.2: 3048 | version "1.0.2" 3049 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3050 | dependencies: 3051 | code-point-at "^1.0.0" 3052 | is-fullwidth-code-point "^1.0.0" 3053 | strip-ansi "^3.0.0" 3054 | 3055 | string-width@^2.0.0, string-width@^2.1.1: 3056 | version "2.1.1" 3057 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3058 | dependencies: 3059 | is-fullwidth-code-point "^2.0.0" 3060 | strip-ansi "^4.0.0" 3061 | 3062 | string_decoder@~1.0.3: 3063 | version "1.0.3" 3064 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3065 | dependencies: 3066 | safe-buffer "~5.1.0" 3067 | 3068 | stringstream@~0.0.4, stringstream@~0.0.5: 3069 | version "0.0.5" 3070 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3071 | 3072 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3073 | version "3.0.1" 3074 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3075 | dependencies: 3076 | ansi-regex "^2.0.0" 3077 | 3078 | strip-ansi@^4.0.0: 3079 | version "4.0.0" 3080 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3081 | dependencies: 3082 | ansi-regex "^3.0.0" 3083 | 3084 | strip-bom@3.0.0: 3085 | version "3.0.0" 3086 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3087 | 3088 | strip-bom@^2.0.0: 3089 | version "2.0.0" 3090 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3091 | dependencies: 3092 | is-utf8 "^0.2.0" 3093 | 3094 | strip-eof@^1.0.0: 3095 | version "1.0.0" 3096 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3097 | 3098 | strip-json-comments@~2.0.1: 3099 | version "2.0.1" 3100 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3101 | 3102 | supports-color@^2.0.0: 3103 | version "2.0.0" 3104 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3105 | 3106 | supports-color@^3.1.2: 3107 | version "3.2.3" 3108 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3109 | dependencies: 3110 | has-flag "^1.0.0" 3111 | 3112 | supports-color@^5.2.0: 3113 | version "5.2.0" 3114 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.2.0.tgz#b0d5333b1184dd3666cbe5aa0b45c5ac7ac17a4a" 3115 | dependencies: 3116 | has-flag "^3.0.0" 3117 | 3118 | symbol-tree@^3.2.2: 3119 | version "3.2.2" 3120 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3121 | 3122 | tar-pack@^3.4.0: 3123 | version "3.4.1" 3124 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 3125 | dependencies: 3126 | debug "^2.2.0" 3127 | fstream "^1.0.10" 3128 | fstream-ignore "^1.0.5" 3129 | once "^1.3.3" 3130 | readable-stream "^2.1.4" 3131 | rimraf "^2.5.1" 3132 | tar "^2.2.1" 3133 | uid-number "^0.0.6" 3134 | 3135 | tar@^2.2.1: 3136 | version "2.2.1" 3137 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3138 | dependencies: 3139 | block-stream "*" 3140 | fstream "^1.0.2" 3141 | inherits "2" 3142 | 3143 | test-exclude@^4.1.1: 3144 | version "4.1.1" 3145 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 3146 | dependencies: 3147 | arrify "^1.0.1" 3148 | micromatch "^2.3.11" 3149 | object-assign "^4.1.0" 3150 | read-pkg-up "^1.0.1" 3151 | require-main-filename "^1.0.1" 3152 | 3153 | throat@^4.0.0: 3154 | version "4.1.0" 3155 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 3156 | 3157 | tmpl@1.0.x: 3158 | version "1.0.4" 3159 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3160 | 3161 | to-fast-properties@^1.0.3: 3162 | version "1.0.3" 3163 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3164 | 3165 | tough-cookie@>=2.3.3, tough-cookie@^2.3.3, tough-cookie@~2.3.0, tough-cookie@~2.3.3: 3166 | version "2.3.3" 3167 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 3168 | dependencies: 3169 | punycode "^1.4.1" 3170 | 3171 | tr46@^1.0.0: 3172 | version "1.0.1" 3173 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" 3174 | dependencies: 3175 | punycode "^2.1.0" 3176 | 3177 | trim-right@^1.0.1: 3178 | version "1.0.1" 3179 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3180 | 3181 | tunnel-agent@^0.6.0: 3182 | version "0.6.0" 3183 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3184 | dependencies: 3185 | safe-buffer "^5.0.1" 3186 | 3187 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3188 | version "0.14.5" 3189 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3190 | 3191 | type-check@~0.3.2: 3192 | version "0.3.2" 3193 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3194 | dependencies: 3195 | prelude-ls "~1.1.2" 3196 | 3197 | ua-parser-js@^0.7.9: 3198 | version "0.7.17" 3199 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac" 3200 | 3201 | uglify-js@^2.6: 3202 | version "2.8.29" 3203 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3204 | dependencies: 3205 | source-map "~0.5.1" 3206 | yargs "~3.10.0" 3207 | optionalDependencies: 3208 | uglify-to-browserify "~1.0.0" 3209 | 3210 | uglify-to-browserify@~1.0.0: 3211 | version "1.0.2" 3212 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3213 | 3214 | uid-number@^0.0.6: 3215 | version "0.0.6" 3216 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3217 | 3218 | ultron@~1.1.0: 3219 | version "1.1.1" 3220 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" 3221 | 3222 | user-home@^1.1.1: 3223 | version "1.1.1" 3224 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3225 | 3226 | util-deprecate@~1.0.1: 3227 | version "1.0.2" 3228 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3229 | 3230 | util.promisify@^1.0.0: 3231 | version "1.0.0" 3232 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" 3233 | dependencies: 3234 | define-properties "^1.1.2" 3235 | object.getownpropertydescriptors "^2.0.3" 3236 | 3237 | uuid@^3.0.0, uuid@^3.1.0: 3238 | version "3.2.1" 3239 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 3240 | 3241 | v8flags@^2.1.1: 3242 | version "2.1.1" 3243 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3244 | dependencies: 3245 | user-home "^1.1.1" 3246 | 3247 | validate-npm-package-license@^3.0.1: 3248 | version "3.0.1" 3249 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3250 | dependencies: 3251 | spdx-correct "~1.0.0" 3252 | spdx-expression-parse "~1.0.0" 3253 | 3254 | value-equal@^0.4.0: 3255 | version "0.4.0" 3256 | resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-0.4.0.tgz#c5bdd2f54ee093c04839d71ce2e4758a6890abc7" 3257 | 3258 | verror@1.10.0: 3259 | version "1.10.0" 3260 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3261 | dependencies: 3262 | assert-plus "^1.0.0" 3263 | core-util-is "1.0.2" 3264 | extsprintf "^1.2.0" 3265 | 3266 | w3c-hr-time@^1.0.1: 3267 | version "1.0.1" 3268 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" 3269 | dependencies: 3270 | browser-process-hrtime "^0.1.2" 3271 | 3272 | walker@~1.0.5: 3273 | version "1.0.7" 3274 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3275 | dependencies: 3276 | makeerror "1.0.x" 3277 | 3278 | warning@^3.0.0: 3279 | version "3.0.0" 3280 | resolved "https://registry.yarnpkg.com/warning/-/warning-3.0.0.tgz#32e5377cb572de4ab04753bdf8821c01ed605b7c" 3281 | dependencies: 3282 | loose-envify "^1.0.0" 3283 | 3284 | watch@~0.18.0: 3285 | version "0.18.0" 3286 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 3287 | dependencies: 3288 | exec-sh "^0.2.0" 3289 | minimist "^1.2.0" 3290 | 3291 | webidl-conversions@^4.0.1, webidl-conversions@^4.0.2: 3292 | version "4.0.2" 3293 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 3294 | 3295 | whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: 3296 | version "1.0.3" 3297 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" 3298 | dependencies: 3299 | iconv-lite "0.4.19" 3300 | 3301 | whatwg-fetch@>=0.10.0: 3302 | version "2.0.3" 3303 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 3304 | 3305 | whatwg-url@^6.4.0: 3306 | version "6.4.0" 3307 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.4.0.tgz#08fdf2b9e872783a7a1f6216260a1d66cc722e08" 3308 | dependencies: 3309 | lodash.sortby "^4.7.0" 3310 | tr46 "^1.0.0" 3311 | webidl-conversions "^4.0.1" 3312 | 3313 | which-module@^2.0.0: 3314 | version "2.0.0" 3315 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3316 | 3317 | which@^1.2.12, which@^1.2.9, which@^1.3.0: 3318 | version "1.3.0" 3319 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3320 | dependencies: 3321 | isexe "^2.0.0" 3322 | 3323 | wide-align@^1.1.0: 3324 | version "1.1.2" 3325 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3326 | dependencies: 3327 | string-width "^1.0.2" 3328 | 3329 | window-size@0.1.0: 3330 | version "0.1.0" 3331 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3332 | 3333 | wordwrap@0.0.2: 3334 | version "0.0.2" 3335 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3336 | 3337 | wordwrap@~0.0.2: 3338 | version "0.0.3" 3339 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3340 | 3341 | wordwrap@~1.0.0: 3342 | version "1.0.0" 3343 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3344 | 3345 | wrap-ansi@^2.0.0: 3346 | version "2.1.0" 3347 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3348 | dependencies: 3349 | string-width "^1.0.1" 3350 | strip-ansi "^3.0.1" 3351 | 3352 | wrap-ansi@^3.0.1: 3353 | version "3.0.1" 3354 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-3.0.1.tgz#288a04d87eda5c286e060dfe8f135ce8d007f8ba" 3355 | dependencies: 3356 | string-width "^2.1.1" 3357 | strip-ansi "^4.0.0" 3358 | 3359 | wrappy@1: 3360 | version "1.0.2" 3361 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3362 | 3363 | write-file-atomic@^2.1.0: 3364 | version "2.3.0" 3365 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3366 | dependencies: 3367 | graceful-fs "^4.1.11" 3368 | imurmurhash "^0.1.4" 3369 | signal-exit "^3.0.2" 3370 | 3371 | ws@^4.0.0: 3372 | version "4.0.0" 3373 | resolved "https://registry.yarnpkg.com/ws/-/ws-4.0.0.tgz#bfe1da4c08eeb9780b986e0e4d10eccd7345999f" 3374 | dependencies: 3375 | async-limiter "~1.0.0" 3376 | safe-buffer "~5.1.0" 3377 | ultron "~1.1.0" 3378 | 3379 | xml-name-validator@^3.0.0: 3380 | version "3.0.0" 3381 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 3382 | 3383 | xml@^1.0.1: 3384 | version "1.0.1" 3385 | resolved "https://registry.yarnpkg.com/xml/-/xml-1.0.1.tgz#78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5" 3386 | 3387 | y18n@^3.2.1: 3388 | version "3.2.1" 3389 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3390 | 3391 | yallist@^2.1.2: 3392 | version "2.1.2" 3393 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3394 | 3395 | yargs-parser@^8.1.0: 3396 | version "8.1.0" 3397 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950" 3398 | dependencies: 3399 | camelcase "^4.1.0" 3400 | 3401 | yargs-parser@^9.0.2: 3402 | version "9.0.2" 3403 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 3404 | dependencies: 3405 | camelcase "^4.1.0" 3406 | 3407 | yargs@^10.0.3: 3408 | version "10.1.2" 3409 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.1.2.tgz#454d074c2b16a51a43e2fb7807e4f9de69ccb5c5" 3410 | dependencies: 3411 | cliui "^4.0.0" 3412 | decamelize "^1.1.1" 3413 | find-up "^2.1.0" 3414 | get-caller-file "^1.0.1" 3415 | os-locale "^2.0.0" 3416 | require-directory "^2.1.1" 3417 | require-main-filename "^1.0.1" 3418 | set-blocking "^2.0.0" 3419 | string-width "^2.0.0" 3420 | which-module "^2.0.0" 3421 | y18n "^3.2.1" 3422 | yargs-parser "^8.1.0" 3423 | 3424 | yargs@~3.10.0: 3425 | version "3.10.0" 3426 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3427 | dependencies: 3428 | camelcase "^1.0.2" 3429 | cliui "^2.1.0" 3430 | decamelize "^1.0.0" 3431 | window-size "0.1.0" 3432 | --------------------------------------------------------------------------------