├── .prettierrc ├── .babelrc ├── .flowconfig ├── jest.js ├── src ├── types.js ├── DeprecatedProp.js └── index.js ├── LICENSE ├── .gitignore ├── README.md ├── package.json ├── __tests__ └── index.js ├── lib └── index.js ├── flow-typed └── npm │ └── jest_v21.x.x.js └── yarn.lock /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "all", 3 | "singleQuote": true 4 | } 5 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["transform-class-properties", "transform-object-rest-spread"], 3 | "presets": ["env", "react"] 4 | } 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | 3 | [include] 4 | 5 | [libs] 6 | flow-typed 7 | 8 | [lints] 9 | 10 | [options] 11 | 12 | [strict] 13 | -------------------------------------------------------------------------------- /jest.js: -------------------------------------------------------------------------------- 1 | import { configure } from 'enzyme'; 2 | import Adapter from 'enzyme-adapter-react-16'; 3 | 4 | configure({ adapter: new Adapter() }); 5 | -------------------------------------------------------------------------------- /src/types.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export type ProvidedProps = { [key: string]: any }; 4 | 5 | export type WithRenamedPropsState = { remappedProps: ProvidedProps }; 6 | 7 | export type IsDeprecatedFn = ( 8 | prop: string, 9 | providedProps: ProvidedProps, 10 | ) => boolean; 11 | 12 | export type DeprecatedProps = { 13 | [key: string]: 14 | | string 15 | | null 16 | | { 17 | mapTo: string | null, 18 | isDeprecated?: IsDeprecatedFn, 19 | }, 20 | }; 21 | 22 | export type WarningArgs = { 23 | componentName: string, 24 | deprecatedProps: DeprecatedProps, 25 | mapTo: string | null, 26 | prop: string, 27 | value: any, 28 | }; 29 | 30 | export type WarningFn = (args: WarningArgs) => string; 31 | -------------------------------------------------------------------------------- /src/DeprecatedProp.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | import type { IsDeprecatedFn, ProvidedProps, DeprecatedProps } from './types'; 4 | 5 | const defaultIsDeprecatedCheck: IsDeprecatedFn = (prop, providedProps) => 6 | prop in providedProps; 7 | 8 | export default class DeprecatedProp { 9 | key: string; 10 | mapTo: string | null; 11 | isDeprecated: boolean; 12 | 13 | constructor( 14 | key: string, 15 | providedProps: ProvidedProps = {}, 16 | deprecatedProps: DeprecatedProps, 17 | ) { 18 | const providedOptions = deprecatedProps[key]; 19 | const defaultOptions = { 20 | mapTo: null, 21 | isDeprecated: defaultIsDeprecatedCheck, 22 | }; 23 | const options = 24 | typeof providedOptions === 'string' 25 | ? { 26 | ...defaultOptions, 27 | mapTo: providedOptions, 28 | } 29 | : { 30 | ...defaultOptions, 31 | ...providedOptions, 32 | }; 33 | 34 | this.key = key; 35 | this.mapTo = options.mapTo; 36 | this.isDeprecated = options.isDeprecated(key, providedProps); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Joss Mackison 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React Deprecate 2 | 3 | Higher order component to support old props and warn users about the prop change. 4 | 5 | ## Install 6 | 7 | ```bash 8 | yarn add react-deprecate 9 | ``` 10 | 11 | ## Usage 12 | 13 | ```jsx 14 | import React, { Component } from 'react'; 15 | import renamePropsWithWarning from 'react-deprecate'; 16 | 17 | // Your component with the breaking name change 18 | class LibComponent extends Component { 19 | static propTypes = { label: PropTypes.string } 20 | render () { 21 | return {this.props.label}; 22 | } 23 | } 24 | 25 | // Wrapped, with options `old` --> `new`. 26 | // Optional third argument is a custom message renderer. 27 | export default renamePropsWithWarning( 28 | LibComponent, 29 | { description: 'label', val: 'value' }, 30 | ({ componentName, prop, renamedProps }) => 'Your message.' 31 | ); 32 | 33 | // Old AND new props supported: 34 | // `description/val` mapped to `label/value` with a console warning in Development 35 | class UserComponent extends Component { 36 | render () { 37 | return ; 38 | } 39 | } 40 | ``` 41 | 42 | ## License 43 | 44 | Copyright © 2017 Joss Mackison. MIT Licensed. 45 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-deprecate", 3 | "description": "Higher order component to support old props and warn users about the prop change.", 4 | "version": "0.1.0", 5 | "main": "lib/index.js", 6 | "files": [ 7 | "lib" 8 | ], 9 | "scripts": { 10 | "build": "babel src -d lib", 11 | "test": "jest", 12 | "prepublish": "npm run build" 13 | }, 14 | "jest": { 15 | "setupFiles": [ 16 | "./jest.js" 17 | ] 18 | }, 19 | "repository": { 20 | "type": "git", 21 | "url": "https://github.com/jossmac/react-deprecate.git" 22 | }, 23 | "keywords": [ 24 | "react", 25 | "deprecate", 26 | "props", 27 | "rename", 28 | "map" 29 | ], 30 | "author": "Joss mackison", 31 | "license": "MIT", 32 | "bugs": { 33 | "url": "https://github.com/jossmac/react-deprecate/issues" 34 | }, 35 | "homepage": "https://github.com/jossmac/react-deprecate#readme", 36 | "peer-dependencies": { 37 | "react": "^15.0 || ^16.0" 38 | }, 39 | "devDependencies": { 40 | "babel-cli": "^6.26.0", 41 | "babel-plugin-transform-class-properties": "^6.24.1", 42 | "babel-plugin-transform-object-rest-spread": "^6.26.0", 43 | "babel-preset-env": "^1.6.1", 44 | "babel-preset-flow": "^6.23.0", 45 | "babel-preset-react": "^6.24.1", 46 | "enzyme": "^3.2.0", 47 | "enzyme-adapter-react-16": "^1.1.0", 48 | "flow-bin": "^0.61.0", 49 | "jest": "^21.2.1", 50 | "jest-cli": "^21.2.1", 51 | "prop-types": "^15.6.0", 52 | "react": "^16.2.0", 53 | "react-dom": "^16.2.0" 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | import React, { Component, type ComponentType } from 'react'; 4 | import DeprecatedProp from './DeprecatedProp'; 5 | import type { 6 | DeprecatedProps, 7 | WarningFn, 8 | ProvidedProps, 9 | WithRenamedPropsState, 10 | } from './types'; 11 | 12 | const shouldWarn = process.env.ENV !== 'production'; 13 | 14 | // Attempt to get the wrapped component's name 15 | function getComponentName(target: ComponentType<*>): string { 16 | if (target.displayName && typeof target.displayName === 'string') { 17 | return target.displayName; 18 | } 19 | 20 | return target.name || 'Component'; 21 | } 22 | 23 | // Default deprecation warning for consumer 24 | export const defaultWarningMessage: WarningFn = ({ 25 | componentName, 26 | mapTo, 27 | prop, 28 | }): string => { 29 | if (mapTo) { 30 | return `${componentName} Warning: Prop "${prop}" is deprecated, use "${mapTo}" instead.`; 31 | } 32 | 33 | return `${componentName} Warning: Prop "${prop}" is deprecated.`; 34 | }; 35 | 36 | export default function renamePropsWithWarning( 37 | WrappedComponent: ComponentType<*>, 38 | deprecatedProps: DeprecatedProps = {}, 39 | warningMessage: WarningFn = defaultWarningMessage, 40 | ): ComponentType<*> { 41 | // Bail early if in production 42 | if (!shouldWarn) return WrappedComponent; 43 | 44 | const componentName = getComponentName(WrappedComponent); 45 | 46 | return class WithRenamedProps extends Component< 47 | ProvidedProps, 48 | WithRenamedPropsState, 49 | > { 50 | static displayName = `WithRenamedProps(${componentName})`; 51 | 52 | constructor(props) { 53 | super(props); 54 | this.state = { 55 | remappedProps: this.remapProps(props), 56 | }; 57 | } 58 | 59 | componentWillReceiveProps(newProps) { 60 | const remappedProps = this.remapProps(newProps); 61 | this.setState({ remappedProps }); 62 | } 63 | 64 | remapProps = providedProps => { 65 | const remappedProps = { ...providedProps }; 66 | 67 | Object.keys(deprecatedProps).forEach(propName => { 68 | const prop = new DeprecatedProp( 69 | propName, 70 | remappedProps, 71 | deprecatedProps, 72 | ); 73 | if (prop.isDeprecated) { 74 | console.warn( 75 | warningMessage({ 76 | componentName, 77 | deprecatedProps, 78 | mapTo: prop.mapTo, 79 | prop: prop.key, 80 | value: providedProps[prop.key], 81 | }), 82 | ); 83 | if (prop.mapTo && !(prop.mapTo in remappedProps)) { 84 | remappedProps[prop.mapTo] = remappedProps[prop.key]; 85 | delete remappedProps[prop.key]; 86 | } 87 | } 88 | }); 89 | 90 | return remappedProps; 91 | }; 92 | 93 | render() { 94 | return ; 95 | } 96 | }; 97 | } 98 | -------------------------------------------------------------------------------- /__tests__/index.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | import React, { Component } from 'react'; 4 | import { mount, shallow } from 'enzyme'; 5 | import PropTypes from 'prop-types'; 6 | import renamePropsWithWarning, { defaultWarningMessage } from '../src'; 7 | 8 | type MockProps = { 9 | label: string, 10 | }; 11 | class Mock extends Component { 12 | static propTypes = { label: PropTypes.string }; 13 | render() { 14 | return {this.props.label}; 15 | } 16 | } 17 | 18 | const MockComponent = renamePropsWithWarning(Mock, { 19 | description: 'label', 20 | val: 'value', 21 | notRemapped: null, 22 | }); 23 | 24 | const text = 'A short string of innocuous text.'; 25 | 26 | describe('old properties', () => { 27 | it('should be removed', () => { 28 | const wrapper = shallow(); 29 | expect(wrapper.prop('description')).toBe(undefined); 30 | expect(wrapper.prop('val')).toBe(undefined); 31 | }); 32 | it('should be mapped to new props', () => { 33 | const wrapper = shallow(); 34 | expect(wrapper.prop('label')).toBe(text); 35 | expect(wrapper.prop('value')).toBe(3); 36 | }); 37 | it('should not be mapped to new props if the value is null', () => { 38 | const wrapper = shallow(); 39 | expect(wrapper.prop('notRemapped')).toBe(text); 40 | }); 41 | }); 42 | 43 | describe('new properties', () => { 44 | it('should be unaffected', () => { 45 | const wrapper = shallow(); 46 | expect(wrapper.prop('label')).toBe(text); 47 | expect(wrapper.prop('value')).toBe(3); 48 | }); 49 | }); 50 | 51 | describe('other properties', () => { 52 | it('should be unaffected', () => { 53 | const wrapper = shallow(); 54 | expect(wrapper.prop('other')).toBe('property'); 55 | }); 56 | }); 57 | 58 | describe('console warning', () => { 59 | const mock = jest.spyOn(global.console, 'warn'); 60 | 61 | const MockWithCustomWarning = renamePropsWithWarning( 62 | Mock, 63 | { 64 | description: 'label', 65 | val: 'value', 66 | }, 67 | () => 'Some custom warning!', 68 | ); 69 | 70 | it('should warn', () => { 71 | const wrapper = shallow(); 72 | expect(console.warn).toBeCalled(); 73 | expect(console.warn).toBeCalledWith( 74 | 'Mock Warning: Prop "description" is deprecated, use "label" instead.', 75 | ); 76 | }); 77 | it('should be customisable', () => { 78 | const wrapper = shallow(); 79 | expect(console.warn).toBeCalledWith('Some custom warning!'); 80 | }); 81 | }); 82 | 83 | describe('extended options', () => { 84 | type TestClassProps = { 85 | remappedProp?: any, 86 | deprecatedProp?: any, 87 | neverRemapMe?: any, 88 | }; 89 | class TestClass extends Component { 90 | render() { 91 | return
; 92 | } 93 | } 94 | const Test = renamePropsWithWarning(TestClass, { 95 | remappedProp: { mapTo: 'newRemappedProp' }, 96 | deprecatedProp: { mapTo: null }, 97 | neverRemapMe: { 98 | mapTo: 'newProp', 99 | isDeprecated: (prop, providedProps) => false, 100 | }, 101 | }); 102 | 103 | it('should rename the prop if a mapTo option is provided', () => { 104 | const wrapper = shallow(); 105 | expect(wrapper.props()).toEqual({ 106 | newRemappedProp: 'test', 107 | }); 108 | }); 109 | 110 | it('should not rename the prop if the mapTo option is null', () => { 111 | const wrapper = shallow(); 112 | expect(wrapper.props()).toEqual({ 113 | deprecatedProp: 'test', 114 | }); 115 | }); 116 | 117 | it('should override the default check if an isDeprecated function is provided', () => { 118 | const mock = jest.spyOn(global.console, 'warn'); 119 | mock.mockReset(); 120 | const wrapper = shallow(); 121 | expect(wrapper.props()).toEqual({ 122 | neverRemapMe: 'test', 123 | }); 124 | expect(console.warn).not.toBeCalled(); 125 | }); 126 | }); 127 | -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | 7 | var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; 8 | 9 | var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); 10 | 11 | exports.default = renamePropsWithWarning; 12 | 13 | var _react = require('react'); 14 | 15 | var _react2 = _interopRequireDefault(_react); 16 | 17 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 18 | 19 | function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } 20 | 21 | function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } 22 | 23 | function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } 24 | 25 | var shouldWarn = process.env.ENV !== 'production'; 26 | 27 | // attempt to get the wrapped component's name 28 | function getComponentName(target) { 29 | if (target.displayName && typeof target.displayName === 'string') { 30 | return target.displayName; 31 | } 32 | 33 | return target.name || 'Component'; 34 | } 35 | 36 | // deprecation warning for consumer 37 | function defaultWarningMessage(_ref) { 38 | var componentName = _ref.componentName, 39 | prop = _ref.prop, 40 | renamedProps = _ref.renamedProps; 41 | 42 | return componentName + ' Warning: Prop "' + prop + '" is deprecated, use "' + renamedProps[prop] + '" instead.'; 43 | } 44 | 45 | function renamePropsWithWarning(WrappedComponent, renamedProps) { 46 | var _class, _temp; 47 | 48 | var warningMessage = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : defaultWarningMessage; 49 | 50 | // bail early if in production 51 | if (!shouldWarn) return WrappedComponent; 52 | 53 | return _temp = _class = function (_Component) { 54 | _inherits(WithRenamedProps, _Component); 55 | 56 | function WithRenamedProps() { 57 | _classCallCheck(this, WithRenamedProps); 58 | 59 | return _possibleConstructorReturn(this, (WithRenamedProps.__proto__ || Object.getPrototypeOf(WithRenamedProps)).apply(this, arguments)); 60 | } 61 | 62 | _createClass(WithRenamedProps, [{ 63 | key: 'componentDidMount', 64 | 65 | 66 | // warn on deprecated props 67 | value: function componentDidMount() { 68 | var _this2 = this; 69 | 70 | Object.keys(renamedProps).forEach(function (prop) { 71 | if (prop in _this2.props) { 72 | console.warn(warningMessage({ 73 | componentName: getComponentName(WrappedComponent), 74 | prop: prop, 75 | renamedProps: renamedProps 76 | })); 77 | } 78 | }); 79 | } 80 | 81 | // map prop names `old` --> `new` 82 | 83 | }, { 84 | key: 'render', 85 | value: function render() { 86 | var props = _extends({}, this.props); 87 | 88 | Object.keys(renamedProps).forEach(function (prop) { 89 | if (prop in props) { 90 | if (!(renamedProps[prop] in props)) { 91 | props[renamedProps[prop]] = props[prop]; 92 | } 93 | delete props[prop]; 94 | } 95 | }); 96 | 97 | // only pass new props 98 | return _react2.default.createElement(WrappedComponent, props); 99 | } 100 | }]); 101 | 102 | return WithRenamedProps; 103 | }(_react.Component), _class.displayName = 'WithRenamedProps(' + getComponentName(WrappedComponent) + ')', _temp; 104 | } -------------------------------------------------------------------------------- /flow-typed/npm/jest_v21.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 107cf7068b8835594e97f938e8848244 2 | // flow-typed version: 8b4dd96654/jest_v21.x.x/flow_>=v0.39.x 3 | 4 | type JestMockFn, TReturn> = { 5 | (...args: TArguments): TReturn, 6 | /** 7 | * An object for introspecting mock calls 8 | */ 9 | mock: { 10 | /** 11 | * An array that represents all calls that have been made into this mock 12 | * function. Each call is represented by an array of arguments that were 13 | * passed during the call. 14 | */ 15 | calls: Array, 16 | /** 17 | * An array that contains all the object instances that have been 18 | * instantiated from this mock function. 19 | */ 20 | instances: Array 21 | }, 22 | /** 23 | * Resets all information stored in the mockFn.mock.calls and 24 | * mockFn.mock.instances arrays. Often this is useful when you want to clean 25 | * up a mock's usage data between two assertions. 26 | */ 27 | mockClear(): void, 28 | /** 29 | * Resets all information stored in the mock. This is useful when you want to 30 | * completely restore a mock back to its initial state. 31 | */ 32 | mockReset(): void, 33 | /** 34 | * Removes the mock and restores the initial implementation. This is useful 35 | * when you want to mock functions in certain test cases and restore the 36 | * original implementation in others. Beware that mockFn.mockRestore only 37 | * works when mock was created with jest.spyOn. Thus you have to take care of 38 | * restoration yourself when manually assigning jest.fn(). 39 | */ 40 | mockRestore(): void, 41 | /** 42 | * Accepts a function that should be used as the implementation of the mock. 43 | * The mock itself will still record all calls that go into and instances 44 | * that come from itself -- the only difference is that the implementation 45 | * will also be executed when the mock is called. 46 | */ 47 | mockImplementation( 48 | fn: (...args: TArguments) => TReturn 49 | ): JestMockFn, 50 | /** 51 | * Accepts a function that will be used as an implementation of the mock for 52 | * one call to the mocked function. Can be chained so that multiple function 53 | * calls produce different results. 54 | */ 55 | mockImplementationOnce( 56 | fn: (...args: TArguments) => TReturn 57 | ): JestMockFn, 58 | /** 59 | * Just a simple sugar function for returning `this` 60 | */ 61 | mockReturnThis(): void, 62 | /** 63 | * Deprecated: use jest.fn(() => value) instead 64 | */ 65 | mockReturnValue(value: TReturn): JestMockFn, 66 | /** 67 | * Sugar for only returning a value once inside your mock 68 | */ 69 | mockReturnValueOnce(value: TReturn): JestMockFn 70 | }; 71 | 72 | type JestAsymmetricEqualityType = { 73 | /** 74 | * A custom Jasmine equality tester 75 | */ 76 | asymmetricMatch(value: mixed): boolean 77 | }; 78 | 79 | type JestCallsType = { 80 | allArgs(): mixed, 81 | all(): mixed, 82 | any(): boolean, 83 | count(): number, 84 | first(): mixed, 85 | mostRecent(): mixed, 86 | reset(): void 87 | }; 88 | 89 | type JestClockType = { 90 | install(): void, 91 | mockDate(date: Date): void, 92 | tick(milliseconds?: number): void, 93 | uninstall(): void 94 | }; 95 | 96 | type JestMatcherResult = { 97 | message?: string | (() => string), 98 | pass: boolean 99 | }; 100 | 101 | type JestMatcher = (actual: any, expected: any) => JestMatcherResult; 102 | 103 | type JestPromiseType = { 104 | /** 105 | * Use rejects to unwrap the reason of a rejected promise so any other 106 | * matcher can be chained. If the promise is fulfilled the assertion fails. 107 | */ 108 | rejects: JestExpectType, 109 | /** 110 | * Use resolves to unwrap the value of a fulfilled promise so any other 111 | * matcher can be chained. If the promise is rejected the assertion fails. 112 | */ 113 | resolves: JestExpectType 114 | }; 115 | 116 | /** 117 | * Plugin: jest-enzyme 118 | */ 119 | type EnzymeMatchersType = { 120 | toBeChecked(): void, 121 | toBeDisabled(): void, 122 | toBeEmpty(): void, 123 | toBePresent(): void, 124 | toContainReact(element: React$Element): void, 125 | toHaveClassName(className: string): void, 126 | toHaveHTML(html: string): void, 127 | toHaveProp(propKey: string, propValue?: any): void, 128 | toHaveRef(refName: string): void, 129 | toHaveState(stateKey: string, stateValue?: any): void, 130 | toHaveStyle(styleKey: string, styleValue?: any): void, 131 | toHaveTagName(tagName: string): void, 132 | toHaveText(text: string): void, 133 | toIncludeText(text: string): void, 134 | toHaveValue(value: any): void, 135 | toMatchElement(element: React$Element): void, 136 | toMatchSelector(selector: string): void 137 | }; 138 | 139 | type JestExpectType = { 140 | not: JestExpectType & EnzymeMatchersType, 141 | /** 142 | * If you have a mock function, you can use .lastCalledWith to test what 143 | * arguments it was last called with. 144 | */ 145 | lastCalledWith(...args: Array): void, 146 | /** 147 | * toBe just checks that a value is what you expect. It uses === to check 148 | * strict equality. 149 | */ 150 | toBe(value: any): void, 151 | /** 152 | * Use .toHaveBeenCalled to ensure that a mock function got called. 153 | */ 154 | toBeCalled(): void, 155 | /** 156 | * Use .toBeCalledWith to ensure that a mock function was called with 157 | * specific arguments. 158 | */ 159 | toBeCalledWith(...args: Array): void, 160 | /** 161 | * Using exact equality with floating point numbers is a bad idea. Rounding 162 | * means that intuitive things fail. 163 | */ 164 | toBeCloseTo(num: number, delta: any): void, 165 | /** 166 | * Use .toBeDefined to check that a variable is not undefined. 167 | */ 168 | toBeDefined(): void, 169 | /** 170 | * Use .toBeFalsy when you don't care what a value is, you just want to 171 | * ensure a value is false in a boolean context. 172 | */ 173 | toBeFalsy(): void, 174 | /** 175 | * To compare floating point numbers, you can use toBeGreaterThan. 176 | */ 177 | toBeGreaterThan(number: number): void, 178 | /** 179 | * To compare floating point numbers, you can use toBeGreaterThanOrEqual. 180 | */ 181 | toBeGreaterThanOrEqual(number: number): void, 182 | /** 183 | * To compare floating point numbers, you can use toBeLessThan. 184 | */ 185 | toBeLessThan(number: number): void, 186 | /** 187 | * To compare floating point numbers, you can use toBeLessThanOrEqual. 188 | */ 189 | toBeLessThanOrEqual(number: number): void, 190 | /** 191 | * Use .toBeInstanceOf(Class) to check that an object is an instance of a 192 | * class. 193 | */ 194 | toBeInstanceOf(cls: Class<*>): void, 195 | /** 196 | * .toBeNull() is the same as .toBe(null) but the error messages are a bit 197 | * nicer. 198 | */ 199 | toBeNull(): void, 200 | /** 201 | * Use .toBeTruthy when you don't care what a value is, you just want to 202 | * ensure a value is true in a boolean context. 203 | */ 204 | toBeTruthy(): void, 205 | /** 206 | * Use .toBeUndefined to check that a variable is undefined. 207 | */ 208 | toBeUndefined(): void, 209 | /** 210 | * Use .toContain when you want to check that an item is in a list. For 211 | * testing the items in the list, this uses ===, a strict equality check. 212 | */ 213 | toContain(item: any): void, 214 | /** 215 | * Use .toContainEqual when you want to check that an item is in a list. For 216 | * testing the items in the list, this matcher recursively checks the 217 | * equality of all fields, rather than checking for object identity. 218 | */ 219 | toContainEqual(item: any): void, 220 | /** 221 | * Use .toEqual when you want to check that two objects have the same value. 222 | * This matcher recursively checks the equality of all fields, rather than 223 | * checking for object identity. 224 | */ 225 | toEqual(value: any): void, 226 | /** 227 | * Use .toHaveBeenCalled to ensure that a mock function got called. 228 | */ 229 | toHaveBeenCalled(): void, 230 | /** 231 | * Use .toHaveBeenCalledTimes to ensure that a mock function got called exact 232 | * number of times. 233 | */ 234 | toHaveBeenCalledTimes(number: number): void, 235 | /** 236 | * Use .toHaveBeenCalledWith to ensure that a mock function was called with 237 | * specific arguments. 238 | */ 239 | toHaveBeenCalledWith(...args: Array): void, 240 | /** 241 | * Use .toHaveBeenLastCalledWith to ensure that a mock function was last called 242 | * with specific arguments. 243 | */ 244 | toHaveBeenLastCalledWith(...args: Array): void, 245 | /** 246 | * Check that an object has a .length property and it is set to a certain 247 | * numeric value. 248 | */ 249 | toHaveLength(number: number): void, 250 | /** 251 | * 252 | */ 253 | toHaveProperty(propPath: string, value?: any): void, 254 | /** 255 | * Use .toMatch to check that a string matches a regular expression or string. 256 | */ 257 | toMatch(regexpOrString: RegExp | string): void, 258 | /** 259 | * Use .toMatchObject to check that a javascript object matches a subset of the properties of an object. 260 | */ 261 | toMatchObject(object: Object | Array): void, 262 | /** 263 | * This ensures that a React component matches the most recent snapshot. 264 | */ 265 | toMatchSnapshot(name?: string): void, 266 | /** 267 | * Use .toThrow to test that a function throws when it is called. 268 | * If you want to test that a specific error gets thrown, you can provide an 269 | * argument to toThrow. The argument can be a string for the error message, 270 | * a class for the error, or a regex that should match the error. 271 | * 272 | * Alias: .toThrowError 273 | */ 274 | toThrow(message?: string | Error | Class | RegExp): void, 275 | toThrowError(message?: string | Error | Class | RegExp): void, 276 | /** 277 | * Use .toThrowErrorMatchingSnapshot to test that a function throws a error 278 | * matching the most recent snapshot when it is called. 279 | */ 280 | toThrowErrorMatchingSnapshot(): void 281 | }; 282 | 283 | type JestObjectType = { 284 | /** 285 | * Disables automatic mocking in the module loader. 286 | * 287 | * After this method is called, all `require()`s will return the real 288 | * versions of each module (rather than a mocked version). 289 | */ 290 | disableAutomock(): JestObjectType, 291 | /** 292 | * An un-hoisted version of disableAutomock 293 | */ 294 | autoMockOff(): JestObjectType, 295 | /** 296 | * Enables automatic mocking in the module loader. 297 | */ 298 | enableAutomock(): JestObjectType, 299 | /** 300 | * An un-hoisted version of enableAutomock 301 | */ 302 | autoMockOn(): JestObjectType, 303 | /** 304 | * Clears the mock.calls and mock.instances properties of all mocks. 305 | * Equivalent to calling .mockClear() on every mocked function. 306 | */ 307 | clearAllMocks(): JestObjectType, 308 | /** 309 | * Resets the state of all mocks. Equivalent to calling .mockReset() on every 310 | * mocked function. 311 | */ 312 | resetAllMocks(): JestObjectType, 313 | /** 314 | * Removes any pending timers from the timer system. 315 | */ 316 | clearAllTimers(): void, 317 | /** 318 | * The same as `mock` but not moved to the top of the expectation by 319 | * babel-jest. 320 | */ 321 | doMock(moduleName: string, moduleFactory?: any): JestObjectType, 322 | /** 323 | * The same as `unmock` but not moved to the top of the expectation by 324 | * babel-jest. 325 | */ 326 | dontMock(moduleName: string): JestObjectType, 327 | /** 328 | * Returns a new, unused mock function. Optionally takes a mock 329 | * implementation. 330 | */ 331 | fn, TReturn>( 332 | implementation?: (...args: TArguments) => TReturn 333 | ): JestMockFn, 334 | /** 335 | * Determines if the given function is a mocked function. 336 | */ 337 | isMockFunction(fn: Function): boolean, 338 | /** 339 | * Given the name of a module, use the automatic mocking system to generate a 340 | * mocked version of the module for you. 341 | */ 342 | genMockFromModule(moduleName: string): any, 343 | /** 344 | * Mocks a module with an auto-mocked version when it is being required. 345 | * 346 | * The second argument can be used to specify an explicit module factory that 347 | * is being run instead of using Jest's automocking feature. 348 | * 349 | * The third argument can be used to create virtual mocks -- mocks of modules 350 | * that don't exist anywhere in the system. 351 | */ 352 | mock( 353 | moduleName: string, 354 | moduleFactory?: any, 355 | options?: Object 356 | ): JestObjectType, 357 | /** 358 | * Returns the actual module instead of a mock, bypassing all checks on 359 | * whether the module should receive a mock implementation or not. 360 | */ 361 | requireActual(moduleName: string): any, 362 | /** 363 | * Returns a mock module instead of the actual module, bypassing all checks 364 | * on whether the module should be required normally or not. 365 | */ 366 | requireMock(moduleName: string): any, 367 | /** 368 | * Resets the module registry - the cache of all required modules. This is 369 | * useful to isolate modules where local state might conflict between tests. 370 | */ 371 | resetModules(): JestObjectType, 372 | /** 373 | * Exhausts the micro-task queue (usually interfaced in node via 374 | * process.nextTick). 375 | */ 376 | runAllTicks(): void, 377 | /** 378 | * Exhausts the macro-task queue (i.e., all tasks queued by setTimeout(), 379 | * setInterval(), and setImmediate()). 380 | */ 381 | runAllTimers(): void, 382 | /** 383 | * Exhausts all tasks queued by setImmediate(). 384 | */ 385 | runAllImmediates(): void, 386 | /** 387 | * Executes only the macro task queue (i.e. all tasks queued by setTimeout() 388 | * or setInterval() and setImmediate()). 389 | */ 390 | runTimersToTime(msToRun: number): void, 391 | /** 392 | * Executes only the macro-tasks that are currently pending (i.e., only the 393 | * tasks that have been queued by setTimeout() or setInterval() up to this 394 | * point) 395 | */ 396 | runOnlyPendingTimers(): void, 397 | /** 398 | * Explicitly supplies the mock object that the module system should return 399 | * for the specified module. Note: It is recommended to use jest.mock() 400 | * instead. 401 | */ 402 | setMock(moduleName: string, moduleExports: any): JestObjectType, 403 | /** 404 | * Indicates that the module system should never return a mocked version of 405 | * the specified module from require() (e.g. that it should always return the 406 | * real module). 407 | */ 408 | unmock(moduleName: string): JestObjectType, 409 | /** 410 | * Instructs Jest to use fake versions of the standard timer functions 411 | * (setTimeout, setInterval, clearTimeout, clearInterval, nextTick, 412 | * setImmediate and clearImmediate). 413 | */ 414 | useFakeTimers(): JestObjectType, 415 | /** 416 | * Instructs Jest to use the real versions of the standard timer functions. 417 | */ 418 | useRealTimers(): JestObjectType, 419 | /** 420 | * Creates a mock function similar to jest.fn but also tracks calls to 421 | * object[methodName]. 422 | */ 423 | spyOn(object: Object, methodName: string): JestMockFn, 424 | /** 425 | * Set the default timeout interval for tests and before/after hooks in milliseconds. 426 | * Note: The default timeout interval is 5 seconds if this method is not called. 427 | */ 428 | setTimeout(timeout: number): JestObjectType 429 | }; 430 | 431 | type JestSpyType = { 432 | calls: JestCallsType 433 | }; 434 | 435 | /** Runs this function after every test inside this context */ 436 | declare function afterEach( 437 | fn: (done: () => void) => ?Promise, 438 | timeout?: number 439 | ): void; 440 | /** Runs this function before every test inside this context */ 441 | declare function beforeEach( 442 | fn: (done: () => void) => ?Promise, 443 | timeout?: number 444 | ): void; 445 | /** Runs this function after all tests have finished inside this context */ 446 | declare function afterAll( 447 | fn: (done: () => void) => ?Promise, 448 | timeout?: number 449 | ): void; 450 | /** Runs this function before any tests have started inside this context */ 451 | declare function beforeAll( 452 | fn: (done: () => void) => ?Promise, 453 | timeout?: number 454 | ): void; 455 | 456 | /** A context for grouping tests together */ 457 | declare var describe: { 458 | /** 459 | * Creates a block that groups together several related tests in one "test suite" 460 | */ 461 | (name: string, fn: () => void): void, 462 | 463 | /** 464 | * Only run this describe block 465 | */ 466 | only(name: string, fn: () => void): void, 467 | 468 | /** 469 | * Skip running this describe block 470 | */ 471 | skip(name: string, fn: () => void): void 472 | }; 473 | 474 | /** An individual test unit */ 475 | declare var it: { 476 | /** 477 | * An individual test unit 478 | * 479 | * @param {string} Name of Test 480 | * @param {Function} Test 481 | * @param {number} Timeout for the test, in milliseconds. 482 | */ 483 | ( 484 | name: string, 485 | fn?: (done: () => void) => ?Promise, 486 | timeout?: number 487 | ): void, 488 | /** 489 | * Only run this test 490 | * 491 | * @param {string} Name of Test 492 | * @param {Function} Test 493 | * @param {number} Timeout for the test, in milliseconds. 494 | */ 495 | only( 496 | name: string, 497 | fn?: (done: () => void) => ?Promise, 498 | timeout?: number 499 | ): void, 500 | /** 501 | * Skip running this test 502 | * 503 | * @param {string} Name of Test 504 | * @param {Function} Test 505 | * @param {number} Timeout for the test, in milliseconds. 506 | */ 507 | skip( 508 | name: string, 509 | fn?: (done: () => void) => ?Promise, 510 | timeout?: number 511 | ): void, 512 | /** 513 | * Run the test concurrently 514 | * 515 | * @param {string} Name of Test 516 | * @param {Function} Test 517 | * @param {number} Timeout for the test, in milliseconds. 518 | */ 519 | concurrent( 520 | name: string, 521 | fn?: (done: () => void) => ?Promise, 522 | timeout?: number 523 | ): void 524 | }; 525 | declare function fit( 526 | name: string, 527 | fn: (done: () => void) => ?Promise, 528 | timeout?: number 529 | ): void; 530 | /** An individual test unit */ 531 | declare var test: typeof it; 532 | /** A disabled group of tests */ 533 | declare var xdescribe: typeof describe; 534 | /** A focused group of tests */ 535 | declare var fdescribe: typeof describe; 536 | /** A disabled individual test */ 537 | declare var xit: typeof it; 538 | /** A disabled individual test */ 539 | declare var xtest: typeof it; 540 | 541 | /** The expect function is used every time you want to test a value */ 542 | declare var expect: { 543 | /** The object that you want to make assertions against */ 544 | (value: any): JestExpectType & JestPromiseType & EnzymeMatchersType, 545 | /** Add additional Jasmine matchers to Jest's roster */ 546 | extend(matchers: { [name: string]: JestMatcher }): void, 547 | /** Add a module that formats application-specific data structures. */ 548 | addSnapshotSerializer(serializer: (input: Object) => string): void, 549 | assertions(expectedAssertions: number): void, 550 | hasAssertions(): void, 551 | any(value: mixed): JestAsymmetricEqualityType, 552 | anything(): void, 553 | arrayContaining(value: Array): void, 554 | objectContaining(value: Object): void, 555 | /** Matches any received string that contains the exact expected string. */ 556 | stringContaining(value: string): void, 557 | stringMatching(value: string | RegExp): void 558 | }; 559 | 560 | // TODO handle return type 561 | // http://jasmine.github.io/2.4/introduction.html#section-Spies 562 | declare function spyOn(value: mixed, method: string): Object; 563 | 564 | /** Holds all functions related to manipulating test runner */ 565 | declare var jest: JestObjectType; 566 | 567 | /** 568 | * The global Jasmine object, this is generally not exposed as the public API, 569 | * using features inside here could break in later versions of Jest. 570 | */ 571 | declare var jasmine: { 572 | DEFAULT_TIMEOUT_INTERVAL: number, 573 | any(value: mixed): JestAsymmetricEqualityType, 574 | anything(): void, 575 | arrayContaining(value: Array): void, 576 | clock(): JestClockType, 577 | createSpy(name: string): JestSpyType, 578 | createSpyObj( 579 | baseName: string, 580 | methodNames: Array 581 | ): { [methodName: string]: JestSpyType }, 582 | objectContaining(value: Object): void, 583 | stringMatching(value: string): void 584 | }; 585 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/node@*": 6 | version "8.5.1" 7 | resolved "https://registry.yarnpkg.com/@types/node/-/node-8.5.1.tgz#4ec3020bcdfe2abffeef9ba3fbf26fca097514b5" 8 | 9 | abab@^1.0.3: 10 | version "1.0.4" 11 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 12 | 13 | abbrev@1: 14 | version "1.1.1" 15 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 16 | 17 | acorn-globals@^3.1.0: 18 | version "3.1.0" 19 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 20 | dependencies: 21 | acorn "^4.0.4" 22 | 23 | acorn@^4.0.4: 24 | version "4.0.13" 25 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 26 | 27 | ajv@^4.9.1: 28 | version "4.11.8" 29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 30 | dependencies: 31 | co "^4.6.0" 32 | json-stable-stringify "^1.0.1" 33 | 34 | ajv@^5.1.0: 35 | version "5.5.1" 36 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.1.tgz#b38bb8876d9e86bee994956a04e721e88b248eb2" 37 | dependencies: 38 | co "^4.6.0" 39 | fast-deep-equal "^1.0.0" 40 | fast-json-stable-stringify "^2.0.0" 41 | json-schema-traverse "^0.3.0" 42 | 43 | align-text@^0.1.1, align-text@^0.1.3: 44 | version "0.1.4" 45 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 46 | dependencies: 47 | kind-of "^3.0.2" 48 | longest "^1.0.1" 49 | repeat-string "^1.5.2" 50 | 51 | amdefine@>=0.0.4: 52 | version "1.0.1" 53 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 54 | 55 | ansi-escapes@^3.0.0: 56 | version "3.0.0" 57 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 58 | 59 | ansi-regex@^2.0.0: 60 | version "2.1.1" 61 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 62 | 63 | ansi-regex@^3.0.0: 64 | version "3.0.0" 65 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 66 | 67 | ansi-styles@^2.2.1: 68 | version "2.2.1" 69 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 70 | 71 | ansi-styles@^3.1.0, ansi-styles@^3.2.0: 72 | version "3.2.0" 73 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 74 | dependencies: 75 | color-convert "^1.9.0" 76 | 77 | anymatch@^1.3.0: 78 | version "1.3.2" 79 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 80 | dependencies: 81 | micromatch "^2.1.5" 82 | normalize-path "^2.0.0" 83 | 84 | append-transform@^0.4.0: 85 | version "0.4.0" 86 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 87 | dependencies: 88 | default-require-extensions "^1.0.0" 89 | 90 | aproba@^1.0.3: 91 | version "1.2.0" 92 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 93 | 94 | are-we-there-yet@~1.1.2: 95 | version "1.1.4" 96 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 97 | dependencies: 98 | delegates "^1.0.0" 99 | readable-stream "^2.0.6" 100 | 101 | argparse@^1.0.7: 102 | version "1.0.9" 103 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 104 | dependencies: 105 | sprintf-js "~1.0.2" 106 | 107 | arr-diff@^2.0.0: 108 | version "2.0.0" 109 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 110 | dependencies: 111 | arr-flatten "^1.0.1" 112 | 113 | arr-flatten@^1.0.1: 114 | version "1.1.0" 115 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 116 | 117 | array-equal@^1.0.0: 118 | version "1.0.0" 119 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 120 | 121 | array-unique@^0.2.1: 122 | version "0.2.1" 123 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 124 | 125 | arrify@^1.0.1: 126 | version "1.0.1" 127 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 128 | 129 | asap@~2.0.3: 130 | version "2.0.6" 131 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 132 | 133 | asn1@~0.2.3: 134 | version "0.2.3" 135 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 136 | 137 | assert-plus@1.0.0, assert-plus@^1.0.0: 138 | version "1.0.0" 139 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 140 | 141 | assert-plus@^0.2.0: 142 | version "0.2.0" 143 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 144 | 145 | astral-regex@^1.0.0: 146 | version "1.0.0" 147 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 148 | 149 | async-each@^1.0.0: 150 | version "1.0.1" 151 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 152 | 153 | async@^1.4.0: 154 | version "1.5.2" 155 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 156 | 157 | async@^2.1.4: 158 | version "2.6.0" 159 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 160 | dependencies: 161 | lodash "^4.14.0" 162 | 163 | asynckit@^0.4.0: 164 | version "0.4.0" 165 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 166 | 167 | aws-sign2@~0.6.0: 168 | version "0.6.0" 169 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 170 | 171 | aws-sign2@~0.7.0: 172 | version "0.7.0" 173 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 174 | 175 | aws4@^1.2.1, aws4@^1.6.0: 176 | version "1.6.0" 177 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 178 | 179 | babel-cli@^6.26.0: 180 | version "6.26.0" 181 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 182 | dependencies: 183 | babel-core "^6.26.0" 184 | babel-polyfill "^6.26.0" 185 | babel-register "^6.26.0" 186 | babel-runtime "^6.26.0" 187 | commander "^2.11.0" 188 | convert-source-map "^1.5.0" 189 | fs-readdir-recursive "^1.0.0" 190 | glob "^7.1.2" 191 | lodash "^4.17.4" 192 | output-file-sync "^1.1.2" 193 | path-is-absolute "^1.0.1" 194 | slash "^1.0.0" 195 | source-map "^0.5.6" 196 | v8flags "^2.1.1" 197 | optionalDependencies: 198 | chokidar "^1.6.1" 199 | 200 | babel-code-frame@^6.26.0: 201 | version "6.26.0" 202 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 203 | dependencies: 204 | chalk "^1.1.3" 205 | esutils "^2.0.2" 206 | js-tokens "^3.0.2" 207 | 208 | babel-core@^6.0.0, babel-core@^6.26.0: 209 | version "6.26.0" 210 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 211 | dependencies: 212 | babel-code-frame "^6.26.0" 213 | babel-generator "^6.26.0" 214 | babel-helpers "^6.24.1" 215 | babel-messages "^6.23.0" 216 | babel-register "^6.26.0" 217 | babel-runtime "^6.26.0" 218 | babel-template "^6.26.0" 219 | babel-traverse "^6.26.0" 220 | babel-types "^6.26.0" 221 | babylon "^6.18.0" 222 | convert-source-map "^1.5.0" 223 | debug "^2.6.8" 224 | json5 "^0.5.1" 225 | lodash "^4.17.4" 226 | minimatch "^3.0.4" 227 | path-is-absolute "^1.0.1" 228 | private "^0.1.7" 229 | slash "^1.0.0" 230 | source-map "^0.5.6" 231 | 232 | babel-generator@^6.18.0, babel-generator@^6.26.0: 233 | version "6.26.0" 234 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 235 | dependencies: 236 | babel-messages "^6.23.0" 237 | babel-runtime "^6.26.0" 238 | babel-types "^6.26.0" 239 | detect-indent "^4.0.0" 240 | jsesc "^1.3.0" 241 | lodash "^4.17.4" 242 | source-map "^0.5.6" 243 | trim-right "^1.0.1" 244 | 245 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 246 | version "6.24.1" 247 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 248 | dependencies: 249 | babel-helper-explode-assignable-expression "^6.24.1" 250 | babel-runtime "^6.22.0" 251 | babel-types "^6.24.1" 252 | 253 | babel-helper-builder-react-jsx@^6.24.1: 254 | version "6.26.0" 255 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 256 | dependencies: 257 | babel-runtime "^6.26.0" 258 | babel-types "^6.26.0" 259 | esutils "^2.0.2" 260 | 261 | babel-helper-call-delegate@^6.24.1: 262 | version "6.24.1" 263 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 264 | dependencies: 265 | babel-helper-hoist-variables "^6.24.1" 266 | babel-runtime "^6.22.0" 267 | babel-traverse "^6.24.1" 268 | babel-types "^6.24.1" 269 | 270 | babel-helper-define-map@^6.24.1: 271 | version "6.26.0" 272 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 273 | dependencies: 274 | babel-helper-function-name "^6.24.1" 275 | babel-runtime "^6.26.0" 276 | babel-types "^6.26.0" 277 | lodash "^4.17.4" 278 | 279 | babel-helper-explode-assignable-expression@^6.24.1: 280 | version "6.24.1" 281 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 282 | dependencies: 283 | babel-runtime "^6.22.0" 284 | babel-traverse "^6.24.1" 285 | babel-types "^6.24.1" 286 | 287 | babel-helper-function-name@^6.24.1: 288 | version "6.24.1" 289 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 290 | dependencies: 291 | babel-helper-get-function-arity "^6.24.1" 292 | babel-runtime "^6.22.0" 293 | babel-template "^6.24.1" 294 | babel-traverse "^6.24.1" 295 | babel-types "^6.24.1" 296 | 297 | babel-helper-get-function-arity@^6.24.1: 298 | version "6.24.1" 299 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 300 | dependencies: 301 | babel-runtime "^6.22.0" 302 | babel-types "^6.24.1" 303 | 304 | babel-helper-hoist-variables@^6.24.1: 305 | version "6.24.1" 306 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 307 | dependencies: 308 | babel-runtime "^6.22.0" 309 | babel-types "^6.24.1" 310 | 311 | babel-helper-optimise-call-expression@^6.24.1: 312 | version "6.24.1" 313 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 314 | dependencies: 315 | babel-runtime "^6.22.0" 316 | babel-types "^6.24.1" 317 | 318 | babel-helper-regex@^6.24.1: 319 | version "6.26.0" 320 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 321 | dependencies: 322 | babel-runtime "^6.26.0" 323 | babel-types "^6.26.0" 324 | lodash "^4.17.4" 325 | 326 | babel-helper-remap-async-to-generator@^6.24.1: 327 | version "6.24.1" 328 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 329 | dependencies: 330 | babel-helper-function-name "^6.24.1" 331 | babel-runtime "^6.22.0" 332 | babel-template "^6.24.1" 333 | babel-traverse "^6.24.1" 334 | babel-types "^6.24.1" 335 | 336 | babel-helper-replace-supers@^6.24.1: 337 | version "6.24.1" 338 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 339 | dependencies: 340 | babel-helper-optimise-call-expression "^6.24.1" 341 | babel-messages "^6.23.0" 342 | babel-runtime "^6.22.0" 343 | babel-template "^6.24.1" 344 | babel-traverse "^6.24.1" 345 | babel-types "^6.24.1" 346 | 347 | babel-helpers@^6.24.1: 348 | version "6.24.1" 349 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 350 | dependencies: 351 | babel-runtime "^6.22.0" 352 | babel-template "^6.24.1" 353 | 354 | babel-jest@^21.2.0: 355 | version "21.2.0" 356 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-21.2.0.tgz#2ce059519a9374a2c46f2455b6fbef5ad75d863e" 357 | dependencies: 358 | babel-plugin-istanbul "^4.0.0" 359 | babel-preset-jest "^21.2.0" 360 | 361 | babel-messages@^6.23.0: 362 | version "6.23.0" 363 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 364 | dependencies: 365 | babel-runtime "^6.22.0" 366 | 367 | babel-plugin-check-es2015-constants@^6.22.0: 368 | version "6.22.0" 369 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 370 | dependencies: 371 | babel-runtime "^6.22.0" 372 | 373 | babel-plugin-istanbul@^4.0.0: 374 | version "4.1.5" 375 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e" 376 | dependencies: 377 | find-up "^2.1.0" 378 | istanbul-lib-instrument "^1.7.5" 379 | test-exclude "^4.1.1" 380 | 381 | babel-plugin-jest-hoist@^21.2.0: 382 | version "21.2.0" 383 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.2.0.tgz#2cef637259bd4b628a6cace039de5fcd14dbb006" 384 | 385 | babel-plugin-syntax-async-functions@^6.8.0: 386 | version "6.13.0" 387 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 388 | 389 | babel-plugin-syntax-class-properties@^6.8.0: 390 | version "6.13.0" 391 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 392 | 393 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 394 | version "6.13.0" 395 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 396 | 397 | babel-plugin-syntax-flow@^6.18.0: 398 | version "6.18.0" 399 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 400 | 401 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 402 | version "6.18.0" 403 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 404 | 405 | babel-plugin-syntax-object-rest-spread@^6.13.0, babel-plugin-syntax-object-rest-spread@^6.8.0: 406 | version "6.13.0" 407 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 408 | 409 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 410 | version "6.22.0" 411 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 412 | 413 | babel-plugin-transform-async-to-generator@^6.22.0: 414 | version "6.24.1" 415 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 416 | dependencies: 417 | babel-helper-remap-async-to-generator "^6.24.1" 418 | babel-plugin-syntax-async-functions "^6.8.0" 419 | babel-runtime "^6.22.0" 420 | 421 | babel-plugin-transform-class-properties@^6.24.1: 422 | version "6.24.1" 423 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 424 | dependencies: 425 | babel-helper-function-name "^6.24.1" 426 | babel-plugin-syntax-class-properties "^6.8.0" 427 | babel-runtime "^6.22.0" 428 | babel-template "^6.24.1" 429 | 430 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 431 | version "6.22.0" 432 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 433 | dependencies: 434 | babel-runtime "^6.22.0" 435 | 436 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 437 | version "6.22.0" 438 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 439 | dependencies: 440 | babel-runtime "^6.22.0" 441 | 442 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 443 | version "6.26.0" 444 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 445 | dependencies: 446 | babel-runtime "^6.26.0" 447 | babel-template "^6.26.0" 448 | babel-traverse "^6.26.0" 449 | babel-types "^6.26.0" 450 | lodash "^4.17.4" 451 | 452 | babel-plugin-transform-es2015-classes@^6.23.0: 453 | version "6.24.1" 454 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 455 | dependencies: 456 | babel-helper-define-map "^6.24.1" 457 | babel-helper-function-name "^6.24.1" 458 | babel-helper-optimise-call-expression "^6.24.1" 459 | babel-helper-replace-supers "^6.24.1" 460 | babel-messages "^6.23.0" 461 | babel-runtime "^6.22.0" 462 | babel-template "^6.24.1" 463 | babel-traverse "^6.24.1" 464 | babel-types "^6.24.1" 465 | 466 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 467 | version "6.24.1" 468 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 469 | dependencies: 470 | babel-runtime "^6.22.0" 471 | babel-template "^6.24.1" 472 | 473 | babel-plugin-transform-es2015-destructuring@^6.23.0: 474 | version "6.23.0" 475 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 476 | dependencies: 477 | babel-runtime "^6.22.0" 478 | 479 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 480 | version "6.24.1" 481 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 482 | dependencies: 483 | babel-runtime "^6.22.0" 484 | babel-types "^6.24.1" 485 | 486 | babel-plugin-transform-es2015-for-of@^6.23.0: 487 | version "6.23.0" 488 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 489 | dependencies: 490 | babel-runtime "^6.22.0" 491 | 492 | babel-plugin-transform-es2015-function-name@^6.22.0: 493 | version "6.24.1" 494 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 495 | dependencies: 496 | babel-helper-function-name "^6.24.1" 497 | babel-runtime "^6.22.0" 498 | babel-types "^6.24.1" 499 | 500 | babel-plugin-transform-es2015-literals@^6.22.0: 501 | version "6.22.0" 502 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 503 | dependencies: 504 | babel-runtime "^6.22.0" 505 | 506 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 507 | version "6.24.1" 508 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 509 | dependencies: 510 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 511 | babel-runtime "^6.22.0" 512 | babel-template "^6.24.1" 513 | 514 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 515 | version "6.26.0" 516 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 517 | dependencies: 518 | babel-plugin-transform-strict-mode "^6.24.1" 519 | babel-runtime "^6.26.0" 520 | babel-template "^6.26.0" 521 | babel-types "^6.26.0" 522 | 523 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 524 | version "6.24.1" 525 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 526 | dependencies: 527 | babel-helper-hoist-variables "^6.24.1" 528 | babel-runtime "^6.22.0" 529 | babel-template "^6.24.1" 530 | 531 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 532 | version "6.24.1" 533 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 534 | dependencies: 535 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 536 | babel-runtime "^6.22.0" 537 | babel-template "^6.24.1" 538 | 539 | babel-plugin-transform-es2015-object-super@^6.22.0: 540 | version "6.24.1" 541 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 542 | dependencies: 543 | babel-helper-replace-supers "^6.24.1" 544 | babel-runtime "^6.22.0" 545 | 546 | babel-plugin-transform-es2015-parameters@^6.23.0: 547 | version "6.24.1" 548 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 549 | dependencies: 550 | babel-helper-call-delegate "^6.24.1" 551 | babel-helper-get-function-arity "^6.24.1" 552 | babel-runtime "^6.22.0" 553 | babel-template "^6.24.1" 554 | babel-traverse "^6.24.1" 555 | babel-types "^6.24.1" 556 | 557 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 558 | version "6.24.1" 559 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 560 | dependencies: 561 | babel-runtime "^6.22.0" 562 | babel-types "^6.24.1" 563 | 564 | babel-plugin-transform-es2015-spread@^6.22.0: 565 | version "6.22.0" 566 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 567 | dependencies: 568 | babel-runtime "^6.22.0" 569 | 570 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 571 | version "6.24.1" 572 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 573 | dependencies: 574 | babel-helper-regex "^6.24.1" 575 | babel-runtime "^6.22.0" 576 | babel-types "^6.24.1" 577 | 578 | babel-plugin-transform-es2015-template-literals@^6.22.0: 579 | version "6.22.0" 580 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 581 | dependencies: 582 | babel-runtime "^6.22.0" 583 | 584 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 585 | version "6.23.0" 586 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 587 | dependencies: 588 | babel-runtime "^6.22.0" 589 | 590 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 591 | version "6.24.1" 592 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 593 | dependencies: 594 | babel-helper-regex "^6.24.1" 595 | babel-runtime "^6.22.0" 596 | regexpu-core "^2.0.0" 597 | 598 | babel-plugin-transform-exponentiation-operator@^6.22.0: 599 | version "6.24.1" 600 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 601 | dependencies: 602 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 603 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 604 | babel-runtime "^6.22.0" 605 | 606 | babel-plugin-transform-flow-strip-types@^6.22.0: 607 | version "6.22.0" 608 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 609 | dependencies: 610 | babel-plugin-syntax-flow "^6.18.0" 611 | babel-runtime "^6.22.0" 612 | 613 | babel-plugin-transform-object-rest-spread@^6.26.0: 614 | version "6.26.0" 615 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 616 | dependencies: 617 | babel-plugin-syntax-object-rest-spread "^6.8.0" 618 | babel-runtime "^6.26.0" 619 | 620 | babel-plugin-transform-react-display-name@^6.23.0: 621 | version "6.25.0" 622 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 623 | dependencies: 624 | babel-runtime "^6.22.0" 625 | 626 | babel-plugin-transform-react-jsx-self@^6.22.0: 627 | version "6.22.0" 628 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 629 | dependencies: 630 | babel-plugin-syntax-jsx "^6.8.0" 631 | babel-runtime "^6.22.0" 632 | 633 | babel-plugin-transform-react-jsx-source@^6.22.0: 634 | version "6.22.0" 635 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 636 | dependencies: 637 | babel-plugin-syntax-jsx "^6.8.0" 638 | babel-runtime "^6.22.0" 639 | 640 | babel-plugin-transform-react-jsx@^6.24.1: 641 | version "6.24.1" 642 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 643 | dependencies: 644 | babel-helper-builder-react-jsx "^6.24.1" 645 | babel-plugin-syntax-jsx "^6.8.0" 646 | babel-runtime "^6.22.0" 647 | 648 | babel-plugin-transform-regenerator@^6.22.0: 649 | version "6.26.0" 650 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 651 | dependencies: 652 | regenerator-transform "^0.10.0" 653 | 654 | babel-plugin-transform-strict-mode@^6.24.1: 655 | version "6.24.1" 656 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 657 | dependencies: 658 | babel-runtime "^6.22.0" 659 | babel-types "^6.24.1" 660 | 661 | babel-polyfill@^6.26.0: 662 | version "6.26.0" 663 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 664 | dependencies: 665 | babel-runtime "^6.26.0" 666 | core-js "^2.5.0" 667 | regenerator-runtime "^0.10.5" 668 | 669 | babel-preset-env@^1.6.1: 670 | version "1.6.1" 671 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 672 | dependencies: 673 | babel-plugin-check-es2015-constants "^6.22.0" 674 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 675 | babel-plugin-transform-async-to-generator "^6.22.0" 676 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 677 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 678 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 679 | babel-plugin-transform-es2015-classes "^6.23.0" 680 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 681 | babel-plugin-transform-es2015-destructuring "^6.23.0" 682 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 683 | babel-plugin-transform-es2015-for-of "^6.23.0" 684 | babel-plugin-transform-es2015-function-name "^6.22.0" 685 | babel-plugin-transform-es2015-literals "^6.22.0" 686 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 687 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 688 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 689 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 690 | babel-plugin-transform-es2015-object-super "^6.22.0" 691 | babel-plugin-transform-es2015-parameters "^6.23.0" 692 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 693 | babel-plugin-transform-es2015-spread "^6.22.0" 694 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 695 | babel-plugin-transform-es2015-template-literals "^6.22.0" 696 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 697 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 698 | babel-plugin-transform-exponentiation-operator "^6.22.0" 699 | babel-plugin-transform-regenerator "^6.22.0" 700 | browserslist "^2.1.2" 701 | invariant "^2.2.2" 702 | semver "^5.3.0" 703 | 704 | babel-preset-flow@^6.23.0: 705 | version "6.23.0" 706 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 707 | dependencies: 708 | babel-plugin-transform-flow-strip-types "^6.22.0" 709 | 710 | babel-preset-jest@^21.2.0: 711 | version "21.2.0" 712 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-21.2.0.tgz#ff9d2bce08abd98e8a36d9a8a5189b9173b85638" 713 | dependencies: 714 | babel-plugin-jest-hoist "^21.2.0" 715 | babel-plugin-syntax-object-rest-spread "^6.13.0" 716 | 717 | babel-preset-react@^6.24.1: 718 | version "6.24.1" 719 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 720 | dependencies: 721 | babel-plugin-syntax-jsx "^6.3.13" 722 | babel-plugin-transform-react-display-name "^6.23.0" 723 | babel-plugin-transform-react-jsx "^6.24.1" 724 | babel-plugin-transform-react-jsx-self "^6.22.0" 725 | babel-plugin-transform-react-jsx-source "^6.22.0" 726 | babel-preset-flow "^6.23.0" 727 | 728 | babel-register@^6.26.0: 729 | version "6.26.0" 730 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 731 | dependencies: 732 | babel-core "^6.26.0" 733 | babel-runtime "^6.26.0" 734 | core-js "^2.5.0" 735 | home-or-tmp "^2.0.0" 736 | lodash "^4.17.4" 737 | mkdirp "^0.5.1" 738 | source-map-support "^0.4.15" 739 | 740 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 741 | version "6.26.0" 742 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 743 | dependencies: 744 | core-js "^2.4.0" 745 | regenerator-runtime "^0.11.0" 746 | 747 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 748 | version "6.26.0" 749 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 750 | dependencies: 751 | babel-runtime "^6.26.0" 752 | babel-traverse "^6.26.0" 753 | babel-types "^6.26.0" 754 | babylon "^6.18.0" 755 | lodash "^4.17.4" 756 | 757 | babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0: 758 | version "6.26.0" 759 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 760 | dependencies: 761 | babel-code-frame "^6.26.0" 762 | babel-messages "^6.23.0" 763 | babel-runtime "^6.26.0" 764 | babel-types "^6.26.0" 765 | babylon "^6.18.0" 766 | debug "^2.6.8" 767 | globals "^9.18.0" 768 | invariant "^2.2.2" 769 | lodash "^4.17.4" 770 | 771 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 772 | version "6.26.0" 773 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 774 | dependencies: 775 | babel-runtime "^6.26.0" 776 | esutils "^2.0.2" 777 | lodash "^4.17.4" 778 | to-fast-properties "^1.0.3" 779 | 780 | babylon@^6.18.0: 781 | version "6.18.0" 782 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 783 | 784 | balanced-match@^1.0.0: 785 | version "1.0.0" 786 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 787 | 788 | bcrypt-pbkdf@^1.0.0: 789 | version "1.0.1" 790 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 791 | dependencies: 792 | tweetnacl "^0.14.3" 793 | 794 | binary-extensions@^1.0.0: 795 | version "1.11.0" 796 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 797 | 798 | block-stream@*: 799 | version "0.0.9" 800 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 801 | dependencies: 802 | inherits "~2.0.0" 803 | 804 | boolbase@~1.0.0: 805 | version "1.0.0" 806 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 807 | 808 | boom@2.x.x: 809 | version "2.10.1" 810 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 811 | dependencies: 812 | hoek "2.x.x" 813 | 814 | boom@4.x.x: 815 | version "4.3.1" 816 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 817 | dependencies: 818 | hoek "4.x.x" 819 | 820 | boom@5.x.x: 821 | version "5.2.0" 822 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 823 | dependencies: 824 | hoek "4.x.x" 825 | 826 | brace-expansion@^1.1.7: 827 | version "1.1.8" 828 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 829 | dependencies: 830 | balanced-match "^1.0.0" 831 | concat-map "0.0.1" 832 | 833 | braces@^1.8.2: 834 | version "1.8.5" 835 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 836 | dependencies: 837 | expand-range "^1.8.1" 838 | preserve "^0.2.0" 839 | repeat-element "^1.1.2" 840 | 841 | browser-resolve@^1.11.2: 842 | version "1.11.2" 843 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 844 | dependencies: 845 | resolve "1.1.7" 846 | 847 | browserslist@^2.1.2: 848 | version "2.10.0" 849 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.10.0.tgz#bac5ee1cc69ca9d96403ffb8a3abdc5b6aed6346" 850 | dependencies: 851 | caniuse-lite "^1.0.30000780" 852 | electron-to-chromium "^1.3.28" 853 | 854 | bser@^2.0.0: 855 | version "2.0.0" 856 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 857 | dependencies: 858 | node-int64 "^0.4.0" 859 | 860 | builtin-modules@^1.0.0: 861 | version "1.1.1" 862 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 863 | 864 | callsites@^2.0.0: 865 | version "2.0.0" 866 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 867 | 868 | camelcase@^1.0.2: 869 | version "1.2.1" 870 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 871 | 872 | camelcase@^4.1.0: 873 | version "4.1.0" 874 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 875 | 876 | caniuse-lite@^1.0.30000780: 877 | version "1.0.30000783" 878 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000783.tgz#9b5499fb1b503d2345d12aa6b8612852f4276ffd" 879 | 880 | caseless@~0.12.0: 881 | version "0.12.0" 882 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 883 | 884 | center-align@^0.1.1: 885 | version "0.1.3" 886 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 887 | dependencies: 888 | align-text "^0.1.3" 889 | lazy-cache "^1.0.3" 890 | 891 | chalk@^1.1.3: 892 | version "1.1.3" 893 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 894 | dependencies: 895 | ansi-styles "^2.2.1" 896 | escape-string-regexp "^1.0.2" 897 | has-ansi "^2.0.0" 898 | strip-ansi "^3.0.0" 899 | supports-color "^2.0.0" 900 | 901 | chalk@^2.0.1: 902 | version "2.3.0" 903 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 904 | dependencies: 905 | ansi-styles "^3.1.0" 906 | escape-string-regexp "^1.0.5" 907 | supports-color "^4.0.0" 908 | 909 | cheerio@^1.0.0-rc.2: 910 | version "1.0.0-rc.2" 911 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.2.tgz#4b9f53a81b27e4d5dac31c0ffd0cfa03cc6830db" 912 | dependencies: 913 | css-select "~1.2.0" 914 | dom-serializer "~0.1.0" 915 | entities "~1.1.1" 916 | htmlparser2 "^3.9.1" 917 | lodash "^4.15.0" 918 | parse5 "^3.0.1" 919 | 920 | chokidar@^1.6.1: 921 | version "1.7.0" 922 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 923 | dependencies: 924 | anymatch "^1.3.0" 925 | async-each "^1.0.0" 926 | glob-parent "^2.0.0" 927 | inherits "^2.0.1" 928 | is-binary-path "^1.0.0" 929 | is-glob "^2.0.0" 930 | path-is-absolute "^1.0.0" 931 | readdirp "^2.0.0" 932 | optionalDependencies: 933 | fsevents "^1.0.0" 934 | 935 | ci-info@^1.0.0: 936 | version "1.1.2" 937 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.2.tgz#03561259db48d0474c8bdc90f5b47b068b6bbfb4" 938 | 939 | cliui@^2.1.0: 940 | version "2.1.0" 941 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 942 | dependencies: 943 | center-align "^0.1.1" 944 | right-align "^0.1.1" 945 | wordwrap "0.0.2" 946 | 947 | cliui@^3.2.0: 948 | version "3.2.0" 949 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 950 | dependencies: 951 | string-width "^1.0.1" 952 | strip-ansi "^3.0.1" 953 | wrap-ansi "^2.0.0" 954 | 955 | co@^4.6.0: 956 | version "4.6.0" 957 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 958 | 959 | code-point-at@^1.0.0: 960 | version "1.1.0" 961 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 962 | 963 | color-convert@^1.9.0: 964 | version "1.9.1" 965 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 966 | dependencies: 967 | color-name "^1.1.1" 968 | 969 | color-name@^1.1.1: 970 | version "1.1.3" 971 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 972 | 973 | colors@0.5.x: 974 | version "0.5.1" 975 | resolved "https://registry.yarnpkg.com/colors/-/colors-0.5.1.tgz#7d0023eaeb154e8ee9fce75dcb923d0ed1667774" 976 | 977 | combined-stream@^1.0.5, combined-stream@~1.0.5: 978 | version "1.0.5" 979 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 980 | dependencies: 981 | delayed-stream "~1.0.0" 982 | 983 | commander@^2.11.0: 984 | version "2.12.2" 985 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.12.2.tgz#0f5946c427ed9ec0d91a46bb9def53e54650e555" 986 | 987 | concat-map@0.0.1: 988 | version "0.0.1" 989 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 990 | 991 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 992 | version "1.1.0" 993 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 994 | 995 | content-type-parser@^1.0.1: 996 | version "1.0.2" 997 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7" 998 | 999 | convert-source-map@^1.4.0, convert-source-map@^1.5.0: 1000 | version "1.5.1" 1001 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 1002 | 1003 | core-js@^1.0.0: 1004 | version "1.2.7" 1005 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1006 | 1007 | core-js@^2.4.0, core-js@^2.5.0: 1008 | version "2.5.3" 1009 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 1010 | 1011 | core-util-is@1.0.2, core-util-is@~1.0.0: 1012 | version "1.0.2" 1013 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1014 | 1015 | cross-spawn@^5.0.1: 1016 | version "5.1.0" 1017 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1018 | dependencies: 1019 | lru-cache "^4.0.1" 1020 | shebang-command "^1.2.0" 1021 | which "^1.2.9" 1022 | 1023 | cryptiles@2.x.x: 1024 | version "2.0.5" 1025 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1026 | dependencies: 1027 | boom "2.x.x" 1028 | 1029 | cryptiles@3.x.x: 1030 | version "3.1.2" 1031 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 1032 | dependencies: 1033 | boom "5.x.x" 1034 | 1035 | css-select@~1.2.0: 1036 | version "1.2.0" 1037 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" 1038 | dependencies: 1039 | boolbase "~1.0.0" 1040 | css-what "2.1" 1041 | domutils "1.5.1" 1042 | nth-check "~1.0.1" 1043 | 1044 | css-what@2.1: 1045 | version "2.1.0" 1046 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" 1047 | 1048 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 1049 | version "0.3.2" 1050 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1051 | 1052 | "cssstyle@>= 0.2.37 < 0.3.0": 1053 | version "0.2.37" 1054 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1055 | dependencies: 1056 | cssom "0.3.x" 1057 | 1058 | dashdash@^1.12.0: 1059 | version "1.14.1" 1060 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1061 | dependencies: 1062 | assert-plus "^1.0.0" 1063 | 1064 | debug@^2.2.0, debug@^2.6.8: 1065 | version "2.6.9" 1066 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1067 | dependencies: 1068 | ms "2.0.0" 1069 | 1070 | debug@^3.1.0: 1071 | version "3.1.0" 1072 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1073 | dependencies: 1074 | ms "2.0.0" 1075 | 1076 | decamelize@^1.0.0, decamelize@^1.1.1: 1077 | version "1.2.0" 1078 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1079 | 1080 | deep-extend@~0.4.0: 1081 | version "0.4.2" 1082 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1083 | 1084 | deep-is@~0.1.3: 1085 | version "0.1.3" 1086 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1087 | 1088 | default-require-extensions@^1.0.0: 1089 | version "1.0.0" 1090 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1091 | dependencies: 1092 | strip-bom "^2.0.0" 1093 | 1094 | define-properties@^1.1.2: 1095 | version "1.1.2" 1096 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1097 | dependencies: 1098 | foreach "^2.0.5" 1099 | object-keys "^1.0.8" 1100 | 1101 | delayed-stream@~1.0.0: 1102 | version "1.0.0" 1103 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1104 | 1105 | delegates@^1.0.0: 1106 | version "1.0.0" 1107 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1108 | 1109 | detect-indent@^4.0.0: 1110 | version "4.0.0" 1111 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1112 | dependencies: 1113 | repeating "^2.0.0" 1114 | 1115 | detect-libc@^1.0.2: 1116 | version "1.0.3" 1117 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1118 | 1119 | diff@^3.2.0: 1120 | version "3.4.0" 1121 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c" 1122 | 1123 | discontinuous-range@1.0.0: 1124 | version "1.0.0" 1125 | resolved "https://registry.yarnpkg.com/discontinuous-range/-/discontinuous-range-1.0.0.tgz#e38331f0844bba49b9a9cb71c771585aab1bc65a" 1126 | 1127 | dom-serializer@0, dom-serializer@~0.1.0: 1128 | version "0.1.0" 1129 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 1130 | dependencies: 1131 | domelementtype "~1.1.1" 1132 | entities "~1.1.1" 1133 | 1134 | domelementtype@1, domelementtype@^1.3.0: 1135 | version "1.3.0" 1136 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 1137 | 1138 | domelementtype@~1.1.1: 1139 | version "1.1.3" 1140 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 1141 | 1142 | domhandler@^2.3.0: 1143 | version "2.4.1" 1144 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.1.tgz#892e47000a99be55bbf3774ffea0561d8879c259" 1145 | dependencies: 1146 | domelementtype "1" 1147 | 1148 | domutils@1.5.1: 1149 | version "1.5.1" 1150 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 1151 | dependencies: 1152 | dom-serializer "0" 1153 | domelementtype "1" 1154 | 1155 | domutils@^1.5.1: 1156 | version "1.6.2" 1157 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.6.2.tgz#1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff" 1158 | dependencies: 1159 | dom-serializer "0" 1160 | domelementtype "1" 1161 | 1162 | ecc-jsbn@~0.1.1: 1163 | version "0.1.1" 1164 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1165 | dependencies: 1166 | jsbn "~0.1.0" 1167 | 1168 | electron-to-chromium@^1.3.28: 1169 | version "1.3.28" 1170 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.28.tgz#8dd4e6458086644e9f9f0a1cf32e2a1f9dffd9ee" 1171 | 1172 | encoding@^0.1.11: 1173 | version "0.1.12" 1174 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1175 | dependencies: 1176 | iconv-lite "~0.4.13" 1177 | 1178 | entities@^1.1.1, entities@~1.1.1: 1179 | version "1.1.1" 1180 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 1181 | 1182 | enzyme-adapter-react-16@^1.1.0: 1183 | version "1.1.0" 1184 | resolved "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.1.0.tgz#86c5db7c10f0be6ec25d54ca41b59f2abb397cf4" 1185 | dependencies: 1186 | enzyme-adapter-utils "^1.1.0" 1187 | lodash "^4.17.4" 1188 | object.assign "^4.0.4" 1189 | object.values "^1.0.4" 1190 | prop-types "^15.5.10" 1191 | react-test-renderer "^16.0.0-0" 1192 | 1193 | enzyme-adapter-utils@^1.1.0: 1194 | version "1.2.0" 1195 | resolved "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.2.0.tgz#7f4471ee0a70b91169ec8860d2bf0a6b551664b2" 1196 | dependencies: 1197 | lodash "^4.17.4" 1198 | object.assign "^4.0.4" 1199 | prop-types "^15.5.10" 1200 | 1201 | enzyme@^3.2.0: 1202 | version "3.2.0" 1203 | resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-3.2.0.tgz#998bdcda0fc71b8764a0017f7cc692c943f54a7a" 1204 | dependencies: 1205 | cheerio "^1.0.0-rc.2" 1206 | function.prototype.name "^1.0.3" 1207 | has "^1.0.1" 1208 | is-subset "^0.1.1" 1209 | lodash "^4.17.4" 1210 | object-is "^1.0.1" 1211 | object.assign "^4.0.4" 1212 | object.entries "^1.0.4" 1213 | object.values "^1.0.4" 1214 | raf "^3.4.0" 1215 | rst-selector-parser "^2.2.3" 1216 | 1217 | errno@^0.1.4: 1218 | version "0.1.6" 1219 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.6.tgz#c386ce8a6283f14fc09563b71560908c9bf53026" 1220 | dependencies: 1221 | prr "~1.0.1" 1222 | 1223 | error-ex@^1.2.0: 1224 | version "1.3.1" 1225 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1226 | dependencies: 1227 | is-arrayish "^0.2.1" 1228 | 1229 | es-abstract@^1.6.1: 1230 | version "1.10.0" 1231 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864" 1232 | dependencies: 1233 | es-to-primitive "^1.1.1" 1234 | function-bind "^1.1.1" 1235 | has "^1.0.1" 1236 | is-callable "^1.1.3" 1237 | is-regex "^1.0.4" 1238 | 1239 | es-to-primitive@^1.1.1: 1240 | version "1.1.1" 1241 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1242 | dependencies: 1243 | is-callable "^1.1.1" 1244 | is-date-object "^1.0.1" 1245 | is-symbol "^1.0.1" 1246 | 1247 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1248 | version "1.0.5" 1249 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1250 | 1251 | escodegen@^1.6.1: 1252 | version "1.9.0" 1253 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" 1254 | dependencies: 1255 | esprima "^3.1.3" 1256 | estraverse "^4.2.0" 1257 | esutils "^2.0.2" 1258 | optionator "^0.8.1" 1259 | optionalDependencies: 1260 | source-map "~0.5.6" 1261 | 1262 | esprima@^3.1.3: 1263 | version "3.1.3" 1264 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1265 | 1266 | esprima@^4.0.0: 1267 | version "4.0.0" 1268 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1269 | 1270 | estraverse@^4.2.0: 1271 | version "4.2.0" 1272 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1273 | 1274 | esutils@^2.0.2: 1275 | version "2.0.2" 1276 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1277 | 1278 | exec-sh@^0.2.0: 1279 | version "0.2.1" 1280 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 1281 | dependencies: 1282 | merge "^1.1.3" 1283 | 1284 | execa@^0.7.0: 1285 | version "0.7.0" 1286 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1287 | dependencies: 1288 | cross-spawn "^5.0.1" 1289 | get-stream "^3.0.0" 1290 | is-stream "^1.1.0" 1291 | npm-run-path "^2.0.0" 1292 | p-finally "^1.0.0" 1293 | signal-exit "^3.0.0" 1294 | strip-eof "^1.0.0" 1295 | 1296 | expand-brackets@^0.1.4: 1297 | version "0.1.5" 1298 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1299 | dependencies: 1300 | is-posix-bracket "^0.1.0" 1301 | 1302 | expand-range@^1.8.1: 1303 | version "1.8.2" 1304 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1305 | dependencies: 1306 | fill-range "^2.1.0" 1307 | 1308 | expect@^21.2.1: 1309 | version "21.2.1" 1310 | resolved "https://registry.yarnpkg.com/expect/-/expect-21.2.1.tgz#003ac2ac7005c3c29e73b38a272d4afadd6d1d7b" 1311 | dependencies: 1312 | ansi-styles "^3.2.0" 1313 | jest-diff "^21.2.1" 1314 | jest-get-type "^21.2.0" 1315 | jest-matcher-utils "^21.2.1" 1316 | jest-message-util "^21.2.1" 1317 | jest-regex-util "^21.2.0" 1318 | 1319 | extend@~3.0.0, extend@~3.0.1: 1320 | version "3.0.1" 1321 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1322 | 1323 | extglob@^0.3.1: 1324 | version "0.3.2" 1325 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1326 | dependencies: 1327 | is-extglob "^1.0.0" 1328 | 1329 | extsprintf@1.3.0: 1330 | version "1.3.0" 1331 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1332 | 1333 | extsprintf@^1.2.0: 1334 | version "1.4.0" 1335 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1336 | 1337 | fast-deep-equal@^1.0.0: 1338 | version "1.0.0" 1339 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1340 | 1341 | fast-json-stable-stringify@^2.0.0: 1342 | version "2.0.0" 1343 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1344 | 1345 | fast-levenshtein@~2.0.4: 1346 | version "2.0.6" 1347 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1348 | 1349 | fb-watchman@^2.0.0: 1350 | version "2.0.0" 1351 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1352 | dependencies: 1353 | bser "^2.0.0" 1354 | 1355 | fbjs@^0.8.16: 1356 | version "0.8.16" 1357 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db" 1358 | dependencies: 1359 | core-js "^1.0.0" 1360 | isomorphic-fetch "^2.1.1" 1361 | loose-envify "^1.0.0" 1362 | object-assign "^4.1.0" 1363 | promise "^7.1.1" 1364 | setimmediate "^1.0.5" 1365 | ua-parser-js "^0.7.9" 1366 | 1367 | filename-regex@^2.0.0: 1368 | version "2.0.1" 1369 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1370 | 1371 | fileset@^2.0.2: 1372 | version "2.0.3" 1373 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1374 | dependencies: 1375 | glob "^7.0.3" 1376 | minimatch "^3.0.3" 1377 | 1378 | fill-range@^2.1.0: 1379 | version "2.2.3" 1380 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1381 | dependencies: 1382 | is-number "^2.1.0" 1383 | isobject "^2.0.0" 1384 | randomatic "^1.1.3" 1385 | repeat-element "^1.1.2" 1386 | repeat-string "^1.5.2" 1387 | 1388 | find-up@^1.0.0: 1389 | version "1.1.2" 1390 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1391 | dependencies: 1392 | path-exists "^2.0.0" 1393 | pinkie-promise "^2.0.0" 1394 | 1395 | find-up@^2.0.0, find-up@^2.1.0: 1396 | version "2.1.0" 1397 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1398 | dependencies: 1399 | locate-path "^2.0.0" 1400 | 1401 | flow-bin@^0.61.0: 1402 | version "0.61.0" 1403 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.61.0.tgz#d0473a8c35dbbf4de573823f4932124397d32d35" 1404 | 1405 | for-in@^1.0.1: 1406 | version "1.0.2" 1407 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1408 | 1409 | for-own@^0.1.4: 1410 | version "0.1.5" 1411 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1412 | dependencies: 1413 | for-in "^1.0.1" 1414 | 1415 | foreach@^2.0.5: 1416 | version "2.0.5" 1417 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1418 | 1419 | forever-agent@~0.6.1: 1420 | version "0.6.1" 1421 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1422 | 1423 | form-data@~2.1.1: 1424 | version "2.1.4" 1425 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1426 | dependencies: 1427 | asynckit "^0.4.0" 1428 | combined-stream "^1.0.5" 1429 | mime-types "^2.1.12" 1430 | 1431 | form-data@~2.3.1: 1432 | version "2.3.1" 1433 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 1434 | dependencies: 1435 | asynckit "^0.4.0" 1436 | combined-stream "^1.0.5" 1437 | mime-types "^2.1.12" 1438 | 1439 | fs-readdir-recursive@^1.0.0: 1440 | version "1.1.0" 1441 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1442 | 1443 | fs.realpath@^1.0.0: 1444 | version "1.0.0" 1445 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1446 | 1447 | fsevents@^1.0.0, fsevents@^1.1.1: 1448 | version "1.1.3" 1449 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1450 | dependencies: 1451 | nan "^2.3.0" 1452 | node-pre-gyp "^0.6.39" 1453 | 1454 | fstream-ignore@^1.0.5: 1455 | version "1.0.5" 1456 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1457 | dependencies: 1458 | fstream "^1.0.0" 1459 | inherits "2" 1460 | minimatch "^3.0.0" 1461 | 1462 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1463 | version "1.0.11" 1464 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1465 | dependencies: 1466 | graceful-fs "^4.1.2" 1467 | inherits "~2.0.0" 1468 | mkdirp ">=0.5 0" 1469 | rimraf "2" 1470 | 1471 | function-bind@^1.0.2, function-bind@^1.1.0, function-bind@^1.1.1: 1472 | version "1.1.1" 1473 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1474 | 1475 | function.prototype.name@^1.0.3: 1476 | version "1.0.3" 1477 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.0.3.tgz#0099ae5572e9dd6f03c97d023fd92bcc5e639eac" 1478 | dependencies: 1479 | define-properties "^1.1.2" 1480 | function-bind "^1.1.0" 1481 | is-callable "^1.1.3" 1482 | 1483 | gauge@~2.7.3: 1484 | version "2.7.4" 1485 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1486 | dependencies: 1487 | aproba "^1.0.3" 1488 | console-control-strings "^1.0.0" 1489 | has-unicode "^2.0.0" 1490 | object-assign "^4.1.0" 1491 | signal-exit "^3.0.0" 1492 | string-width "^1.0.1" 1493 | strip-ansi "^3.0.1" 1494 | wide-align "^1.1.0" 1495 | 1496 | get-caller-file@^1.0.1: 1497 | version "1.0.2" 1498 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1499 | 1500 | get-stream@^3.0.0: 1501 | version "3.0.0" 1502 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1503 | 1504 | getpass@^0.1.1: 1505 | version "0.1.7" 1506 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1507 | dependencies: 1508 | assert-plus "^1.0.0" 1509 | 1510 | glob-base@^0.3.0: 1511 | version "0.3.0" 1512 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1513 | dependencies: 1514 | glob-parent "^2.0.0" 1515 | is-glob "^2.0.0" 1516 | 1517 | glob-parent@^2.0.0: 1518 | version "2.0.0" 1519 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1520 | dependencies: 1521 | is-glob "^2.0.0" 1522 | 1523 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1524 | version "7.1.2" 1525 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1526 | dependencies: 1527 | fs.realpath "^1.0.0" 1528 | inflight "^1.0.4" 1529 | inherits "2" 1530 | minimatch "^3.0.4" 1531 | once "^1.3.0" 1532 | path-is-absolute "^1.0.0" 1533 | 1534 | globals@^9.18.0: 1535 | version "9.18.0" 1536 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1537 | 1538 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1539 | version "4.1.11" 1540 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1541 | 1542 | growly@^1.3.0: 1543 | version "1.3.0" 1544 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1545 | 1546 | handlebars@^4.0.3: 1547 | version "4.0.11" 1548 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 1549 | dependencies: 1550 | async "^1.4.0" 1551 | optimist "^0.6.1" 1552 | source-map "^0.4.4" 1553 | optionalDependencies: 1554 | uglify-js "^2.6" 1555 | 1556 | har-schema@^1.0.5: 1557 | version "1.0.5" 1558 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1559 | 1560 | har-schema@^2.0.0: 1561 | version "2.0.0" 1562 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1563 | 1564 | har-validator@~4.2.1: 1565 | version "4.2.1" 1566 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1567 | dependencies: 1568 | ajv "^4.9.1" 1569 | har-schema "^1.0.5" 1570 | 1571 | har-validator@~5.0.3: 1572 | version "5.0.3" 1573 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1574 | dependencies: 1575 | ajv "^5.1.0" 1576 | har-schema "^2.0.0" 1577 | 1578 | has-ansi@^2.0.0: 1579 | version "2.0.0" 1580 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1581 | dependencies: 1582 | ansi-regex "^2.0.0" 1583 | 1584 | has-flag@^1.0.0: 1585 | version "1.0.0" 1586 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1587 | 1588 | has-flag@^2.0.0: 1589 | version "2.0.0" 1590 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1591 | 1592 | has-unicode@^2.0.0: 1593 | version "2.0.1" 1594 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1595 | 1596 | has@^1.0.1: 1597 | version "1.0.1" 1598 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1599 | dependencies: 1600 | function-bind "^1.0.2" 1601 | 1602 | hawk@3.1.3, hawk@~3.1.3: 1603 | version "3.1.3" 1604 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1605 | dependencies: 1606 | boom "2.x.x" 1607 | cryptiles "2.x.x" 1608 | hoek "2.x.x" 1609 | sntp "1.x.x" 1610 | 1611 | hawk@~6.0.2: 1612 | version "6.0.2" 1613 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1614 | dependencies: 1615 | boom "4.x.x" 1616 | cryptiles "3.x.x" 1617 | hoek "4.x.x" 1618 | sntp "2.x.x" 1619 | 1620 | hoek@2.x.x: 1621 | version "2.16.3" 1622 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1623 | 1624 | hoek@4.x.x: 1625 | version "4.2.0" 1626 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 1627 | 1628 | home-or-tmp@^2.0.0: 1629 | version "2.0.0" 1630 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1631 | dependencies: 1632 | os-homedir "^1.0.0" 1633 | os-tmpdir "^1.0.1" 1634 | 1635 | hosted-git-info@^2.1.4: 1636 | version "2.5.0" 1637 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1638 | 1639 | html-encoding-sniffer@^1.0.1: 1640 | version "1.0.2" 1641 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 1642 | dependencies: 1643 | whatwg-encoding "^1.0.1" 1644 | 1645 | htmlparser2@^3.9.1: 1646 | version "3.9.2" 1647 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338" 1648 | dependencies: 1649 | domelementtype "^1.3.0" 1650 | domhandler "^2.3.0" 1651 | domutils "^1.5.1" 1652 | entities "^1.1.1" 1653 | inherits "^2.0.1" 1654 | readable-stream "^2.0.2" 1655 | 1656 | http-signature@~1.1.0: 1657 | version "1.1.1" 1658 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1659 | dependencies: 1660 | assert-plus "^0.2.0" 1661 | jsprim "^1.2.2" 1662 | sshpk "^1.7.0" 1663 | 1664 | http-signature@~1.2.0: 1665 | version "1.2.0" 1666 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1667 | dependencies: 1668 | assert-plus "^1.0.0" 1669 | jsprim "^1.2.2" 1670 | sshpk "^1.7.0" 1671 | 1672 | iconv-lite@0.4.19, iconv-lite@~0.4.13: 1673 | version "0.4.19" 1674 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1675 | 1676 | imurmurhash@^0.1.4: 1677 | version "0.1.4" 1678 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1679 | 1680 | inflight@^1.0.4: 1681 | version "1.0.6" 1682 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1683 | dependencies: 1684 | once "^1.3.0" 1685 | wrappy "1" 1686 | 1687 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: 1688 | version "2.0.3" 1689 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1690 | 1691 | ini@~1.3.0: 1692 | version "1.3.5" 1693 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1694 | 1695 | invariant@^2.2.2: 1696 | version "2.2.2" 1697 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1698 | dependencies: 1699 | loose-envify "^1.0.0" 1700 | 1701 | invert-kv@^1.0.0: 1702 | version "1.0.0" 1703 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1704 | 1705 | is-arrayish@^0.2.1: 1706 | version "0.2.1" 1707 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1708 | 1709 | is-binary-path@^1.0.0: 1710 | version "1.0.1" 1711 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1712 | dependencies: 1713 | binary-extensions "^1.0.0" 1714 | 1715 | is-buffer@^1.1.5: 1716 | version "1.1.6" 1717 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1718 | 1719 | is-builtin-module@^1.0.0: 1720 | version "1.0.0" 1721 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1722 | dependencies: 1723 | builtin-modules "^1.0.0" 1724 | 1725 | is-callable@^1.1.1, is-callable@^1.1.3: 1726 | version "1.1.3" 1727 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1728 | 1729 | is-ci@^1.0.10: 1730 | version "1.0.10" 1731 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1732 | dependencies: 1733 | ci-info "^1.0.0" 1734 | 1735 | is-date-object@^1.0.1: 1736 | version "1.0.1" 1737 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1738 | 1739 | is-dotfile@^1.0.0: 1740 | version "1.0.3" 1741 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1742 | 1743 | is-equal-shallow@^0.1.3: 1744 | version "0.1.3" 1745 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1746 | dependencies: 1747 | is-primitive "^2.0.0" 1748 | 1749 | is-extendable@^0.1.1: 1750 | version "0.1.1" 1751 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1752 | 1753 | is-extglob@^1.0.0: 1754 | version "1.0.0" 1755 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1756 | 1757 | is-finite@^1.0.0: 1758 | version "1.0.2" 1759 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1760 | dependencies: 1761 | number-is-nan "^1.0.0" 1762 | 1763 | is-fullwidth-code-point@^1.0.0: 1764 | version "1.0.0" 1765 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1766 | dependencies: 1767 | number-is-nan "^1.0.0" 1768 | 1769 | is-fullwidth-code-point@^2.0.0: 1770 | version "2.0.0" 1771 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1772 | 1773 | is-glob@^2.0.0, is-glob@^2.0.1: 1774 | version "2.0.1" 1775 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1776 | dependencies: 1777 | is-extglob "^1.0.0" 1778 | 1779 | is-number@^2.1.0: 1780 | version "2.1.0" 1781 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1782 | dependencies: 1783 | kind-of "^3.0.2" 1784 | 1785 | is-number@^3.0.0: 1786 | version "3.0.0" 1787 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1788 | dependencies: 1789 | kind-of "^3.0.2" 1790 | 1791 | is-posix-bracket@^0.1.0: 1792 | version "0.1.1" 1793 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1794 | 1795 | is-primitive@^2.0.0: 1796 | version "2.0.0" 1797 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1798 | 1799 | is-regex@^1.0.4: 1800 | version "1.0.4" 1801 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1802 | dependencies: 1803 | has "^1.0.1" 1804 | 1805 | is-stream@^1.0.1, is-stream@^1.1.0: 1806 | version "1.1.0" 1807 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1808 | 1809 | is-subset@^0.1.1: 1810 | version "0.1.1" 1811 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" 1812 | 1813 | is-symbol@^1.0.1: 1814 | version "1.0.1" 1815 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1816 | 1817 | is-typedarray@~1.0.0: 1818 | version "1.0.0" 1819 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1820 | 1821 | is-utf8@^0.2.0: 1822 | version "0.2.1" 1823 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1824 | 1825 | isarray@1.0.0, isarray@~1.0.0: 1826 | version "1.0.0" 1827 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1828 | 1829 | isexe@^2.0.0: 1830 | version "2.0.0" 1831 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1832 | 1833 | isobject@^2.0.0: 1834 | version "2.1.0" 1835 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1836 | dependencies: 1837 | isarray "1.0.0" 1838 | 1839 | isomorphic-fetch@^2.1.1: 1840 | version "2.2.1" 1841 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1842 | dependencies: 1843 | node-fetch "^1.0.1" 1844 | whatwg-fetch ">=0.10.0" 1845 | 1846 | isstream@~0.1.2: 1847 | version "0.1.2" 1848 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1849 | 1850 | istanbul-api@^1.1.1: 1851 | version "1.2.1" 1852 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.2.1.tgz#0c60a0515eb11c7d65c6b50bba2c6e999acd8620" 1853 | dependencies: 1854 | async "^2.1.4" 1855 | fileset "^2.0.2" 1856 | istanbul-lib-coverage "^1.1.1" 1857 | istanbul-lib-hook "^1.1.0" 1858 | istanbul-lib-instrument "^1.9.1" 1859 | istanbul-lib-report "^1.1.2" 1860 | istanbul-lib-source-maps "^1.2.2" 1861 | istanbul-reports "^1.1.3" 1862 | js-yaml "^3.7.0" 1863 | mkdirp "^0.5.1" 1864 | once "^1.4.0" 1865 | 1866 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 1867 | version "1.1.1" 1868 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1869 | 1870 | istanbul-lib-hook@^1.1.0: 1871 | version "1.1.0" 1872 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.1.0.tgz#8538d970372cb3716d53e55523dd54b557a8d89b" 1873 | dependencies: 1874 | append-transform "^0.4.0" 1875 | 1876 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.9.1: 1877 | version "1.9.1" 1878 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.1.tgz#250b30b3531e5d3251299fdd64b0b2c9db6b558e" 1879 | dependencies: 1880 | babel-generator "^6.18.0" 1881 | babel-template "^6.16.0" 1882 | babel-traverse "^6.18.0" 1883 | babel-types "^6.18.0" 1884 | babylon "^6.18.0" 1885 | istanbul-lib-coverage "^1.1.1" 1886 | semver "^5.3.0" 1887 | 1888 | istanbul-lib-report@^1.1.2: 1889 | version "1.1.2" 1890 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.2.tgz#922be27c13b9511b979bd1587359f69798c1d425" 1891 | dependencies: 1892 | istanbul-lib-coverage "^1.1.1" 1893 | mkdirp "^0.5.1" 1894 | path-parse "^1.0.5" 1895 | supports-color "^3.1.2" 1896 | 1897 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.2: 1898 | version "1.2.2" 1899 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.2.tgz#750578602435f28a0c04ee6d7d9e0f2960e62c1c" 1900 | dependencies: 1901 | debug "^3.1.0" 1902 | istanbul-lib-coverage "^1.1.1" 1903 | mkdirp "^0.5.1" 1904 | rimraf "^2.6.1" 1905 | source-map "^0.5.3" 1906 | 1907 | istanbul-reports@^1.1.3: 1908 | version "1.1.3" 1909 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.3.tgz#3b9e1e8defb6d18b1d425da8e8b32c5a163f2d10" 1910 | dependencies: 1911 | handlebars "^4.0.3" 1912 | 1913 | jest-changed-files@^21.2.0: 1914 | version "21.2.0" 1915 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-21.2.0.tgz#5dbeecad42f5d88b482334902ce1cba6d9798d29" 1916 | dependencies: 1917 | throat "^4.0.0" 1918 | 1919 | jest-cli@^21.2.1: 1920 | version "21.2.1" 1921 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-21.2.1.tgz#9c528b6629d651911138d228bdb033c157ec8c00" 1922 | dependencies: 1923 | ansi-escapes "^3.0.0" 1924 | chalk "^2.0.1" 1925 | glob "^7.1.2" 1926 | graceful-fs "^4.1.11" 1927 | is-ci "^1.0.10" 1928 | istanbul-api "^1.1.1" 1929 | istanbul-lib-coverage "^1.0.1" 1930 | istanbul-lib-instrument "^1.4.2" 1931 | istanbul-lib-source-maps "^1.1.0" 1932 | jest-changed-files "^21.2.0" 1933 | jest-config "^21.2.1" 1934 | jest-environment-jsdom "^21.2.1" 1935 | jest-haste-map "^21.2.0" 1936 | jest-message-util "^21.2.1" 1937 | jest-regex-util "^21.2.0" 1938 | jest-resolve-dependencies "^21.2.0" 1939 | jest-runner "^21.2.1" 1940 | jest-runtime "^21.2.1" 1941 | jest-snapshot "^21.2.1" 1942 | jest-util "^21.2.1" 1943 | micromatch "^2.3.11" 1944 | node-notifier "^5.0.2" 1945 | pify "^3.0.0" 1946 | slash "^1.0.0" 1947 | string-length "^2.0.0" 1948 | strip-ansi "^4.0.0" 1949 | which "^1.2.12" 1950 | worker-farm "^1.3.1" 1951 | yargs "^9.0.0" 1952 | 1953 | jest-config@^21.2.1: 1954 | version "21.2.1" 1955 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-21.2.1.tgz#c7586c79ead0bcc1f38c401e55f964f13bf2a480" 1956 | dependencies: 1957 | chalk "^2.0.1" 1958 | glob "^7.1.1" 1959 | jest-environment-jsdom "^21.2.1" 1960 | jest-environment-node "^21.2.1" 1961 | jest-get-type "^21.2.0" 1962 | jest-jasmine2 "^21.2.1" 1963 | jest-regex-util "^21.2.0" 1964 | jest-resolve "^21.2.0" 1965 | jest-util "^21.2.1" 1966 | jest-validate "^21.2.1" 1967 | pretty-format "^21.2.1" 1968 | 1969 | jest-diff@^21.2.1: 1970 | version "21.2.1" 1971 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-21.2.1.tgz#46cccb6cab2d02ce98bc314011764bb95b065b4f" 1972 | dependencies: 1973 | chalk "^2.0.1" 1974 | diff "^3.2.0" 1975 | jest-get-type "^21.2.0" 1976 | pretty-format "^21.2.1" 1977 | 1978 | jest-docblock@^21.2.0: 1979 | version "21.2.0" 1980 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" 1981 | 1982 | jest-environment-jsdom@^21.2.1: 1983 | version "21.2.1" 1984 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-21.2.1.tgz#38d9980c8259b2a608ec232deee6289a60d9d5b4" 1985 | dependencies: 1986 | jest-mock "^21.2.0" 1987 | jest-util "^21.2.1" 1988 | jsdom "^9.12.0" 1989 | 1990 | jest-environment-node@^21.2.1: 1991 | version "21.2.1" 1992 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-21.2.1.tgz#98c67df5663c7fbe20f6e792ac2272c740d3b8c8" 1993 | dependencies: 1994 | jest-mock "^21.2.0" 1995 | jest-util "^21.2.1" 1996 | 1997 | jest-get-type@^21.2.0: 1998 | version "21.2.0" 1999 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23" 2000 | 2001 | jest-haste-map@^21.2.0: 2002 | version "21.2.0" 2003 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-21.2.0.tgz#1363f0a8bb4338f24f001806571eff7a4b2ff3d8" 2004 | dependencies: 2005 | fb-watchman "^2.0.0" 2006 | graceful-fs "^4.1.11" 2007 | jest-docblock "^21.2.0" 2008 | micromatch "^2.3.11" 2009 | sane "^2.0.0" 2010 | worker-farm "^1.3.1" 2011 | 2012 | jest-jasmine2@^21.2.1: 2013 | version "21.2.1" 2014 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-21.2.1.tgz#9cc6fc108accfa97efebce10c4308548a4ea7592" 2015 | dependencies: 2016 | chalk "^2.0.1" 2017 | expect "^21.2.1" 2018 | graceful-fs "^4.1.11" 2019 | jest-diff "^21.2.1" 2020 | jest-matcher-utils "^21.2.1" 2021 | jest-message-util "^21.2.1" 2022 | jest-snapshot "^21.2.1" 2023 | p-cancelable "^0.3.0" 2024 | 2025 | jest-matcher-utils@^21.2.1: 2026 | version "21.2.1" 2027 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-21.2.1.tgz#72c826eaba41a093ac2b4565f865eb8475de0f64" 2028 | dependencies: 2029 | chalk "^2.0.1" 2030 | jest-get-type "^21.2.0" 2031 | pretty-format "^21.2.1" 2032 | 2033 | jest-message-util@^21.2.1: 2034 | version "21.2.1" 2035 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-21.2.1.tgz#bfe5d4692c84c827d1dcf41823795558f0a1acbe" 2036 | dependencies: 2037 | chalk "^2.0.1" 2038 | micromatch "^2.3.11" 2039 | slash "^1.0.0" 2040 | 2041 | jest-mock@^21.2.0: 2042 | version "21.2.0" 2043 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-21.2.0.tgz#7eb0770e7317968165f61ea2a7281131534b3c0f" 2044 | 2045 | jest-regex-util@^21.2.0: 2046 | version "21.2.0" 2047 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-21.2.0.tgz#1b1e33e63143babc3e0f2e6c9b5ba1eb34b2d530" 2048 | 2049 | jest-resolve-dependencies@^21.2.0: 2050 | version "21.2.0" 2051 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-21.2.0.tgz#9e231e371e1a736a1ad4e4b9a843bc72bfe03d09" 2052 | dependencies: 2053 | jest-regex-util "^21.2.0" 2054 | 2055 | jest-resolve@^21.2.0: 2056 | version "21.2.0" 2057 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-21.2.0.tgz#068913ad2ba6a20218e5fd32471f3874005de3a6" 2058 | dependencies: 2059 | browser-resolve "^1.11.2" 2060 | chalk "^2.0.1" 2061 | is-builtin-module "^1.0.0" 2062 | 2063 | jest-runner@^21.2.1: 2064 | version "21.2.1" 2065 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-21.2.1.tgz#194732e3e518bfb3d7cbfc0fd5871246c7e1a467" 2066 | dependencies: 2067 | jest-config "^21.2.1" 2068 | jest-docblock "^21.2.0" 2069 | jest-haste-map "^21.2.0" 2070 | jest-jasmine2 "^21.2.1" 2071 | jest-message-util "^21.2.1" 2072 | jest-runtime "^21.2.1" 2073 | jest-util "^21.2.1" 2074 | pify "^3.0.0" 2075 | throat "^4.0.0" 2076 | worker-farm "^1.3.1" 2077 | 2078 | jest-runtime@^21.2.1: 2079 | version "21.2.1" 2080 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-21.2.1.tgz#99dce15309c670442eee2ebe1ff53a3cbdbbb73e" 2081 | dependencies: 2082 | babel-core "^6.0.0" 2083 | babel-jest "^21.2.0" 2084 | babel-plugin-istanbul "^4.0.0" 2085 | chalk "^2.0.1" 2086 | convert-source-map "^1.4.0" 2087 | graceful-fs "^4.1.11" 2088 | jest-config "^21.2.1" 2089 | jest-haste-map "^21.2.0" 2090 | jest-regex-util "^21.2.0" 2091 | jest-resolve "^21.2.0" 2092 | jest-util "^21.2.1" 2093 | json-stable-stringify "^1.0.1" 2094 | micromatch "^2.3.11" 2095 | slash "^1.0.0" 2096 | strip-bom "3.0.0" 2097 | write-file-atomic "^2.1.0" 2098 | yargs "^9.0.0" 2099 | 2100 | jest-snapshot@^21.2.1: 2101 | version "21.2.1" 2102 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-21.2.1.tgz#29e49f16202416e47343e757e5eff948c07fd7b0" 2103 | dependencies: 2104 | chalk "^2.0.1" 2105 | jest-diff "^21.2.1" 2106 | jest-matcher-utils "^21.2.1" 2107 | mkdirp "^0.5.1" 2108 | natural-compare "^1.4.0" 2109 | pretty-format "^21.2.1" 2110 | 2111 | jest-util@^21.2.1: 2112 | version "21.2.1" 2113 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-21.2.1.tgz#a274b2f726b0897494d694a6c3d6a61ab819bb78" 2114 | dependencies: 2115 | callsites "^2.0.0" 2116 | chalk "^2.0.1" 2117 | graceful-fs "^4.1.11" 2118 | jest-message-util "^21.2.1" 2119 | jest-mock "^21.2.0" 2120 | jest-validate "^21.2.1" 2121 | mkdirp "^0.5.1" 2122 | 2123 | jest-validate@^21.2.1: 2124 | version "21.2.1" 2125 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7" 2126 | dependencies: 2127 | chalk "^2.0.1" 2128 | jest-get-type "^21.2.0" 2129 | leven "^2.1.0" 2130 | pretty-format "^21.2.1" 2131 | 2132 | jest@^21.2.1: 2133 | version "21.2.1" 2134 | resolved "https://registry.yarnpkg.com/jest/-/jest-21.2.1.tgz#c964e0b47383768a1438e3ccf3c3d470327604e1" 2135 | dependencies: 2136 | jest-cli "^21.2.1" 2137 | 2138 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2139 | version "3.0.2" 2140 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2141 | 2142 | js-yaml@^3.7.0: 2143 | version "3.10.0" 2144 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 2145 | dependencies: 2146 | argparse "^1.0.7" 2147 | esprima "^4.0.0" 2148 | 2149 | jsbn@~0.1.0: 2150 | version "0.1.1" 2151 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2152 | 2153 | jsdom@^9.12.0: 2154 | version "9.12.0" 2155 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2156 | dependencies: 2157 | abab "^1.0.3" 2158 | acorn "^4.0.4" 2159 | acorn-globals "^3.1.0" 2160 | array-equal "^1.0.0" 2161 | content-type-parser "^1.0.1" 2162 | cssom ">= 0.3.2 < 0.4.0" 2163 | cssstyle ">= 0.2.37 < 0.3.0" 2164 | escodegen "^1.6.1" 2165 | html-encoding-sniffer "^1.0.1" 2166 | nwmatcher ">= 1.3.9 < 2.0.0" 2167 | parse5 "^1.5.1" 2168 | request "^2.79.0" 2169 | sax "^1.2.1" 2170 | symbol-tree "^3.2.1" 2171 | tough-cookie "^2.3.2" 2172 | webidl-conversions "^4.0.0" 2173 | whatwg-encoding "^1.0.1" 2174 | whatwg-url "^4.3.0" 2175 | xml-name-validator "^2.0.1" 2176 | 2177 | jsesc@^1.3.0: 2178 | version "1.3.0" 2179 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2180 | 2181 | jsesc@~0.5.0: 2182 | version "0.5.0" 2183 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2184 | 2185 | json-schema-traverse@^0.3.0: 2186 | version "0.3.1" 2187 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2188 | 2189 | json-schema@0.2.3: 2190 | version "0.2.3" 2191 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2192 | 2193 | json-stable-stringify@^1.0.1: 2194 | version "1.0.1" 2195 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2196 | dependencies: 2197 | jsonify "~0.0.0" 2198 | 2199 | json-stringify-safe@~5.0.1: 2200 | version "5.0.1" 2201 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2202 | 2203 | json5@^0.5.1: 2204 | version "0.5.1" 2205 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2206 | 2207 | jsonify@~0.0.0: 2208 | version "0.0.0" 2209 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2210 | 2211 | jsprim@^1.2.2: 2212 | version "1.4.1" 2213 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2214 | dependencies: 2215 | assert-plus "1.0.0" 2216 | extsprintf "1.3.0" 2217 | json-schema "0.2.3" 2218 | verror "1.10.0" 2219 | 2220 | kind-of@^3.0.2: 2221 | version "3.2.2" 2222 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2223 | dependencies: 2224 | is-buffer "^1.1.5" 2225 | 2226 | kind-of@^4.0.0: 2227 | version "4.0.0" 2228 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2229 | dependencies: 2230 | is-buffer "^1.1.5" 2231 | 2232 | lazy-cache@^1.0.3: 2233 | version "1.0.4" 2234 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2235 | 2236 | lcid@^1.0.0: 2237 | version "1.0.0" 2238 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2239 | dependencies: 2240 | invert-kv "^1.0.0" 2241 | 2242 | leven@^2.1.0: 2243 | version "2.1.0" 2244 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2245 | 2246 | levn@~0.3.0: 2247 | version "0.3.0" 2248 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2249 | dependencies: 2250 | prelude-ls "~1.1.2" 2251 | type-check "~0.3.2" 2252 | 2253 | load-json-file@^1.0.0: 2254 | version "1.1.0" 2255 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2256 | dependencies: 2257 | graceful-fs "^4.1.2" 2258 | parse-json "^2.2.0" 2259 | pify "^2.0.0" 2260 | pinkie-promise "^2.0.0" 2261 | strip-bom "^2.0.0" 2262 | 2263 | load-json-file@^2.0.0: 2264 | version "2.0.0" 2265 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2266 | dependencies: 2267 | graceful-fs "^4.1.2" 2268 | parse-json "^2.2.0" 2269 | pify "^2.0.0" 2270 | strip-bom "^3.0.0" 2271 | 2272 | locate-path@^2.0.0: 2273 | version "2.0.0" 2274 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2275 | dependencies: 2276 | p-locate "^2.0.0" 2277 | path-exists "^3.0.0" 2278 | 2279 | lodash.flattendeep@^4.4.0: 2280 | version "4.4.0" 2281 | resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" 2282 | 2283 | lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.4: 2284 | version "4.17.4" 2285 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2286 | 2287 | longest@^1.0.1: 2288 | version "1.0.1" 2289 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2290 | 2291 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: 2292 | version "1.3.1" 2293 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2294 | dependencies: 2295 | js-tokens "^3.0.0" 2296 | 2297 | lru-cache@^4.0.1: 2298 | version "4.1.1" 2299 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2300 | dependencies: 2301 | pseudomap "^1.0.2" 2302 | yallist "^2.1.2" 2303 | 2304 | makeerror@1.0.x: 2305 | version "1.0.11" 2306 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2307 | dependencies: 2308 | tmpl "1.0.x" 2309 | 2310 | mem@^1.1.0: 2311 | version "1.1.0" 2312 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2313 | dependencies: 2314 | mimic-fn "^1.0.0" 2315 | 2316 | merge@^1.1.3: 2317 | version "1.2.0" 2318 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2319 | 2320 | micromatch@^2.1.5, micromatch@^2.3.11: 2321 | version "2.3.11" 2322 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2323 | dependencies: 2324 | arr-diff "^2.0.0" 2325 | array-unique "^0.2.1" 2326 | braces "^1.8.2" 2327 | expand-brackets "^0.1.4" 2328 | extglob "^0.3.1" 2329 | filename-regex "^2.0.0" 2330 | is-extglob "^1.0.0" 2331 | is-glob "^2.0.1" 2332 | kind-of "^3.0.2" 2333 | normalize-path "^2.0.1" 2334 | object.omit "^2.0.0" 2335 | parse-glob "^3.0.4" 2336 | regex-cache "^0.4.2" 2337 | 2338 | mime-db@~1.30.0: 2339 | version "1.30.0" 2340 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2341 | 2342 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: 2343 | version "2.1.17" 2344 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2345 | dependencies: 2346 | mime-db "~1.30.0" 2347 | 2348 | mimic-fn@^1.0.0: 2349 | version "1.1.0" 2350 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2351 | 2352 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2353 | version "3.0.4" 2354 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2355 | dependencies: 2356 | brace-expansion "^1.1.7" 2357 | 2358 | minimist@0.0.8: 2359 | version "0.0.8" 2360 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2361 | 2362 | minimist@^1.1.1, minimist@^1.2.0: 2363 | version "1.2.0" 2364 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2365 | 2366 | minimist@~0.0.1: 2367 | version "0.0.10" 2368 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2369 | 2370 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2371 | version "0.5.1" 2372 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2373 | dependencies: 2374 | minimist "0.0.8" 2375 | 2376 | ms@2.0.0: 2377 | version "2.0.0" 2378 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2379 | 2380 | nan@^2.3.0: 2381 | version "2.8.0" 2382 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 2383 | 2384 | natural-compare@^1.4.0: 2385 | version "1.4.0" 2386 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2387 | 2388 | nearley@^2.7.10: 2389 | version "2.11.0" 2390 | resolved "https://registry.yarnpkg.com/nearley/-/nearley-2.11.0.tgz#5e626c79a6cd2f6ab9e7e5d5805e7668967757ae" 2391 | dependencies: 2392 | nomnom "~1.6.2" 2393 | railroad-diagrams "^1.0.0" 2394 | randexp "^0.4.2" 2395 | 2396 | node-fetch@^1.0.1: 2397 | version "1.7.3" 2398 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 2399 | dependencies: 2400 | encoding "^0.1.11" 2401 | is-stream "^1.0.1" 2402 | 2403 | node-int64@^0.4.0: 2404 | version "0.4.0" 2405 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2406 | 2407 | node-notifier@^5.0.2: 2408 | version "5.1.2" 2409 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2410 | dependencies: 2411 | growly "^1.3.0" 2412 | semver "^5.3.0" 2413 | shellwords "^0.1.0" 2414 | which "^1.2.12" 2415 | 2416 | node-pre-gyp@^0.6.39: 2417 | version "0.6.39" 2418 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2419 | dependencies: 2420 | detect-libc "^1.0.2" 2421 | hawk "3.1.3" 2422 | mkdirp "^0.5.1" 2423 | nopt "^4.0.1" 2424 | npmlog "^4.0.2" 2425 | rc "^1.1.7" 2426 | request "2.81.0" 2427 | rimraf "^2.6.1" 2428 | semver "^5.3.0" 2429 | tar "^2.2.1" 2430 | tar-pack "^3.4.0" 2431 | 2432 | nomnom@~1.6.2: 2433 | version "1.6.2" 2434 | resolved "https://registry.yarnpkg.com/nomnom/-/nomnom-1.6.2.tgz#84a66a260174408fc5b77a18f888eccc44fb6971" 2435 | dependencies: 2436 | colors "0.5.x" 2437 | underscore "~1.4.4" 2438 | 2439 | nopt@^4.0.1: 2440 | version "4.0.1" 2441 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2442 | dependencies: 2443 | abbrev "1" 2444 | osenv "^0.1.4" 2445 | 2446 | normalize-package-data@^2.3.2: 2447 | version "2.4.0" 2448 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2449 | dependencies: 2450 | hosted-git-info "^2.1.4" 2451 | is-builtin-module "^1.0.0" 2452 | semver "2 || 3 || 4 || 5" 2453 | validate-npm-package-license "^3.0.1" 2454 | 2455 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2456 | version "2.1.1" 2457 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2458 | dependencies: 2459 | remove-trailing-separator "^1.0.1" 2460 | 2461 | npm-run-path@^2.0.0: 2462 | version "2.0.2" 2463 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2464 | dependencies: 2465 | path-key "^2.0.0" 2466 | 2467 | npmlog@^4.0.2: 2468 | version "4.1.2" 2469 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2470 | dependencies: 2471 | are-we-there-yet "~1.1.2" 2472 | console-control-strings "~1.1.0" 2473 | gauge "~2.7.3" 2474 | set-blocking "~2.0.0" 2475 | 2476 | nth-check@~1.0.1: 2477 | version "1.0.1" 2478 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" 2479 | dependencies: 2480 | boolbase "~1.0.0" 2481 | 2482 | number-is-nan@^1.0.0: 2483 | version "1.0.1" 2484 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2485 | 2486 | "nwmatcher@>= 1.3.9 < 2.0.0": 2487 | version "1.4.3" 2488 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.3.tgz#64348e3b3d80f035b40ac11563d278f8b72db89c" 2489 | 2490 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 2491 | version "0.8.2" 2492 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2493 | 2494 | object-assign@^4.1.0, object-assign@^4.1.1: 2495 | version "4.1.1" 2496 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2497 | 2498 | object-is@^1.0.1: 2499 | version "1.0.1" 2500 | resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.1.tgz#0aa60ec9989a0b3ed795cf4d06f62cf1ad6539b6" 2501 | 2502 | object-keys@^1.0.10, object-keys@^1.0.8: 2503 | version "1.0.11" 2504 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2505 | 2506 | object.assign@^4.0.4: 2507 | version "4.0.4" 2508 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc" 2509 | dependencies: 2510 | define-properties "^1.1.2" 2511 | function-bind "^1.1.0" 2512 | object-keys "^1.0.10" 2513 | 2514 | object.entries@^1.0.4: 2515 | version "1.0.4" 2516 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.0.4.tgz#1bf9a4dd2288f5b33f3a993d257661f05d161a5f" 2517 | dependencies: 2518 | define-properties "^1.1.2" 2519 | es-abstract "^1.6.1" 2520 | function-bind "^1.1.0" 2521 | has "^1.0.1" 2522 | 2523 | object.omit@^2.0.0: 2524 | version "2.0.1" 2525 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2526 | dependencies: 2527 | for-own "^0.1.4" 2528 | is-extendable "^0.1.1" 2529 | 2530 | object.values@^1.0.4: 2531 | version "1.0.4" 2532 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.0.4.tgz#e524da09b4f66ff05df457546ec72ac99f13069a" 2533 | dependencies: 2534 | define-properties "^1.1.2" 2535 | es-abstract "^1.6.1" 2536 | function-bind "^1.1.0" 2537 | has "^1.0.1" 2538 | 2539 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2540 | version "1.4.0" 2541 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2542 | dependencies: 2543 | wrappy "1" 2544 | 2545 | optimist@^0.6.1: 2546 | version "0.6.1" 2547 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2548 | dependencies: 2549 | minimist "~0.0.1" 2550 | wordwrap "~0.0.2" 2551 | 2552 | optionator@^0.8.1: 2553 | version "0.8.2" 2554 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2555 | dependencies: 2556 | deep-is "~0.1.3" 2557 | fast-levenshtein "~2.0.4" 2558 | levn "~0.3.0" 2559 | prelude-ls "~1.1.2" 2560 | type-check "~0.3.2" 2561 | wordwrap "~1.0.0" 2562 | 2563 | os-homedir@^1.0.0: 2564 | version "1.0.2" 2565 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2566 | 2567 | os-locale@^2.0.0: 2568 | version "2.1.0" 2569 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2570 | dependencies: 2571 | execa "^0.7.0" 2572 | lcid "^1.0.0" 2573 | mem "^1.1.0" 2574 | 2575 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2576 | version "1.0.2" 2577 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2578 | 2579 | osenv@^0.1.4: 2580 | version "0.1.4" 2581 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2582 | dependencies: 2583 | os-homedir "^1.0.0" 2584 | os-tmpdir "^1.0.0" 2585 | 2586 | output-file-sync@^1.1.2: 2587 | version "1.1.2" 2588 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2589 | dependencies: 2590 | graceful-fs "^4.1.4" 2591 | mkdirp "^0.5.1" 2592 | object-assign "^4.1.0" 2593 | 2594 | p-cancelable@^0.3.0: 2595 | version "0.3.0" 2596 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" 2597 | 2598 | p-finally@^1.0.0: 2599 | version "1.0.0" 2600 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2601 | 2602 | p-limit@^1.1.0: 2603 | version "1.1.0" 2604 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2605 | 2606 | p-locate@^2.0.0: 2607 | version "2.0.0" 2608 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2609 | dependencies: 2610 | p-limit "^1.1.0" 2611 | 2612 | parse-glob@^3.0.4: 2613 | version "3.0.4" 2614 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2615 | dependencies: 2616 | glob-base "^0.3.0" 2617 | is-dotfile "^1.0.0" 2618 | is-extglob "^1.0.0" 2619 | is-glob "^2.0.0" 2620 | 2621 | parse-json@^2.2.0: 2622 | version "2.2.0" 2623 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2624 | dependencies: 2625 | error-ex "^1.2.0" 2626 | 2627 | parse5@^1.5.1: 2628 | version "1.5.1" 2629 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2630 | 2631 | parse5@^3.0.1: 2632 | version "3.0.3" 2633 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c" 2634 | dependencies: 2635 | "@types/node" "*" 2636 | 2637 | path-exists@^2.0.0: 2638 | version "2.1.0" 2639 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2640 | dependencies: 2641 | pinkie-promise "^2.0.0" 2642 | 2643 | path-exists@^3.0.0: 2644 | version "3.0.0" 2645 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2646 | 2647 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2648 | version "1.0.1" 2649 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2650 | 2651 | path-key@^2.0.0: 2652 | version "2.0.1" 2653 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2654 | 2655 | path-parse@^1.0.5: 2656 | version "1.0.5" 2657 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2658 | 2659 | path-type@^1.0.0: 2660 | version "1.1.0" 2661 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2662 | dependencies: 2663 | graceful-fs "^4.1.2" 2664 | pify "^2.0.0" 2665 | pinkie-promise "^2.0.0" 2666 | 2667 | path-type@^2.0.0: 2668 | version "2.0.0" 2669 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2670 | dependencies: 2671 | pify "^2.0.0" 2672 | 2673 | performance-now@^0.2.0: 2674 | version "0.2.0" 2675 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2676 | 2677 | performance-now@^2.1.0: 2678 | version "2.1.0" 2679 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2680 | 2681 | pify@^2.0.0: 2682 | version "2.3.0" 2683 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2684 | 2685 | pify@^3.0.0: 2686 | version "3.0.0" 2687 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2688 | 2689 | pinkie-promise@^2.0.0: 2690 | version "2.0.1" 2691 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2692 | dependencies: 2693 | pinkie "^2.0.0" 2694 | 2695 | pinkie@^2.0.0: 2696 | version "2.0.4" 2697 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2698 | 2699 | prelude-ls@~1.1.2: 2700 | version "1.1.2" 2701 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2702 | 2703 | preserve@^0.2.0: 2704 | version "0.2.0" 2705 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2706 | 2707 | pretty-format@^21.2.1: 2708 | version "21.2.1" 2709 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.2.1.tgz#ae5407f3cf21066cd011aa1ba5fce7b6a2eddb36" 2710 | dependencies: 2711 | ansi-regex "^3.0.0" 2712 | ansi-styles "^3.2.0" 2713 | 2714 | private@^0.1.6, private@^0.1.7: 2715 | version "0.1.8" 2716 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2717 | 2718 | process-nextick-args@~1.0.6: 2719 | version "1.0.7" 2720 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2721 | 2722 | promise@^7.1.1: 2723 | version "7.3.1" 2724 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 2725 | dependencies: 2726 | asap "~2.0.3" 2727 | 2728 | prop-types@^15.5.10, prop-types@^15.6.0: 2729 | version "15.6.0" 2730 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.0.tgz#ceaf083022fc46b4a35f69e13ef75aed0d639856" 2731 | dependencies: 2732 | fbjs "^0.8.16" 2733 | loose-envify "^1.3.1" 2734 | object-assign "^4.1.1" 2735 | 2736 | prr@~1.0.1: 2737 | version "1.0.1" 2738 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" 2739 | 2740 | pseudomap@^1.0.2: 2741 | version "1.0.2" 2742 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2743 | 2744 | punycode@^1.4.1: 2745 | version "1.4.1" 2746 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2747 | 2748 | qs@~6.4.0: 2749 | version "6.4.0" 2750 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2751 | 2752 | qs@~6.5.1: 2753 | version "6.5.1" 2754 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 2755 | 2756 | raf@^3.4.0: 2757 | version "3.4.0" 2758 | resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.0.tgz#a28876881b4bc2ca9117d4138163ddb80f781575" 2759 | dependencies: 2760 | performance-now "^2.1.0" 2761 | 2762 | railroad-diagrams@^1.0.0: 2763 | version "1.0.0" 2764 | resolved "https://registry.yarnpkg.com/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz#eb7e6267548ddedfb899c1b90e57374559cddb7e" 2765 | 2766 | randexp@^0.4.2: 2767 | version "0.4.6" 2768 | resolved "https://registry.yarnpkg.com/randexp/-/randexp-0.4.6.tgz#e986ad5e5e31dae13ddd6f7b3019aa7c87f60ca3" 2769 | dependencies: 2770 | discontinuous-range "1.0.0" 2771 | ret "~0.1.10" 2772 | 2773 | randomatic@^1.1.3: 2774 | version "1.1.7" 2775 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2776 | dependencies: 2777 | is-number "^3.0.0" 2778 | kind-of "^4.0.0" 2779 | 2780 | rc@^1.1.7: 2781 | version "1.2.2" 2782 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 2783 | dependencies: 2784 | deep-extend "~0.4.0" 2785 | ini "~1.3.0" 2786 | minimist "^1.2.0" 2787 | strip-json-comments "~2.0.1" 2788 | 2789 | react-dom@^16.2.0: 2790 | version "16.2.0" 2791 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.2.0.tgz#69003178601c0ca19b709b33a83369fe6124c044" 2792 | dependencies: 2793 | fbjs "^0.8.16" 2794 | loose-envify "^1.1.0" 2795 | object-assign "^4.1.1" 2796 | prop-types "^15.6.0" 2797 | 2798 | react-test-renderer@^16.0.0-0: 2799 | version "16.2.0" 2800 | resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.2.0.tgz#bddf259a6b8fcd8555f012afc8eacc238872a211" 2801 | dependencies: 2802 | fbjs "^0.8.16" 2803 | object-assign "^4.1.1" 2804 | prop-types "^15.6.0" 2805 | 2806 | react@^16.2.0: 2807 | version "16.2.0" 2808 | resolved "https://registry.yarnpkg.com/react/-/react-16.2.0.tgz#a31bd2dab89bff65d42134fa187f24d054c273ba" 2809 | dependencies: 2810 | fbjs "^0.8.16" 2811 | loose-envify "^1.1.0" 2812 | object-assign "^4.1.1" 2813 | prop-types "^15.6.0" 2814 | 2815 | read-pkg-up@^1.0.1: 2816 | version "1.0.1" 2817 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2818 | dependencies: 2819 | find-up "^1.0.0" 2820 | read-pkg "^1.0.0" 2821 | 2822 | read-pkg-up@^2.0.0: 2823 | version "2.0.0" 2824 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2825 | dependencies: 2826 | find-up "^2.0.0" 2827 | read-pkg "^2.0.0" 2828 | 2829 | read-pkg@^1.0.0: 2830 | version "1.1.0" 2831 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2832 | dependencies: 2833 | load-json-file "^1.0.0" 2834 | normalize-package-data "^2.3.2" 2835 | path-type "^1.0.0" 2836 | 2837 | read-pkg@^2.0.0: 2838 | version "2.0.0" 2839 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2840 | dependencies: 2841 | load-json-file "^2.0.0" 2842 | normalize-package-data "^2.3.2" 2843 | path-type "^2.0.0" 2844 | 2845 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 2846 | version "2.3.3" 2847 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2848 | dependencies: 2849 | core-util-is "~1.0.0" 2850 | inherits "~2.0.3" 2851 | isarray "~1.0.0" 2852 | process-nextick-args "~1.0.6" 2853 | safe-buffer "~5.1.1" 2854 | string_decoder "~1.0.3" 2855 | util-deprecate "~1.0.1" 2856 | 2857 | readdirp@^2.0.0: 2858 | version "2.1.0" 2859 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2860 | dependencies: 2861 | graceful-fs "^4.1.2" 2862 | minimatch "^3.0.2" 2863 | readable-stream "^2.0.2" 2864 | set-immediate-shim "^1.0.1" 2865 | 2866 | regenerate@^1.2.1: 2867 | version "1.3.3" 2868 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2869 | 2870 | regenerator-runtime@^0.10.5: 2871 | version "0.10.5" 2872 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2873 | 2874 | regenerator-runtime@^0.11.0: 2875 | version "0.11.1" 2876 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2877 | 2878 | regenerator-transform@^0.10.0: 2879 | version "0.10.1" 2880 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2881 | dependencies: 2882 | babel-runtime "^6.18.0" 2883 | babel-types "^6.19.0" 2884 | private "^0.1.6" 2885 | 2886 | regex-cache@^0.4.2: 2887 | version "0.4.4" 2888 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2889 | dependencies: 2890 | is-equal-shallow "^0.1.3" 2891 | 2892 | regexpu-core@^2.0.0: 2893 | version "2.0.0" 2894 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2895 | dependencies: 2896 | regenerate "^1.2.1" 2897 | regjsgen "^0.2.0" 2898 | regjsparser "^0.1.4" 2899 | 2900 | regjsgen@^0.2.0: 2901 | version "0.2.0" 2902 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2903 | 2904 | regjsparser@^0.1.4: 2905 | version "0.1.5" 2906 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2907 | dependencies: 2908 | jsesc "~0.5.0" 2909 | 2910 | remove-trailing-separator@^1.0.1: 2911 | version "1.1.0" 2912 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2913 | 2914 | repeat-element@^1.1.2: 2915 | version "1.1.2" 2916 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2917 | 2918 | repeat-string@^1.5.2: 2919 | version "1.6.1" 2920 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2921 | 2922 | repeating@^2.0.0: 2923 | version "2.0.1" 2924 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2925 | dependencies: 2926 | is-finite "^1.0.0" 2927 | 2928 | request@2.81.0: 2929 | version "2.81.0" 2930 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2931 | dependencies: 2932 | aws-sign2 "~0.6.0" 2933 | aws4 "^1.2.1" 2934 | caseless "~0.12.0" 2935 | combined-stream "~1.0.5" 2936 | extend "~3.0.0" 2937 | forever-agent "~0.6.1" 2938 | form-data "~2.1.1" 2939 | har-validator "~4.2.1" 2940 | hawk "~3.1.3" 2941 | http-signature "~1.1.0" 2942 | is-typedarray "~1.0.0" 2943 | isstream "~0.1.2" 2944 | json-stringify-safe "~5.0.1" 2945 | mime-types "~2.1.7" 2946 | oauth-sign "~0.8.1" 2947 | performance-now "^0.2.0" 2948 | qs "~6.4.0" 2949 | safe-buffer "^5.0.1" 2950 | stringstream "~0.0.4" 2951 | tough-cookie "~2.3.0" 2952 | tunnel-agent "^0.6.0" 2953 | uuid "^3.0.0" 2954 | 2955 | request@^2.79.0: 2956 | version "2.83.0" 2957 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 2958 | dependencies: 2959 | aws-sign2 "~0.7.0" 2960 | aws4 "^1.6.0" 2961 | caseless "~0.12.0" 2962 | combined-stream "~1.0.5" 2963 | extend "~3.0.1" 2964 | forever-agent "~0.6.1" 2965 | form-data "~2.3.1" 2966 | har-validator "~5.0.3" 2967 | hawk "~6.0.2" 2968 | http-signature "~1.2.0" 2969 | is-typedarray "~1.0.0" 2970 | isstream "~0.1.2" 2971 | json-stringify-safe "~5.0.1" 2972 | mime-types "~2.1.17" 2973 | oauth-sign "~0.8.2" 2974 | performance-now "^2.1.0" 2975 | qs "~6.5.1" 2976 | safe-buffer "^5.1.1" 2977 | stringstream "~0.0.5" 2978 | tough-cookie "~2.3.3" 2979 | tunnel-agent "^0.6.0" 2980 | uuid "^3.1.0" 2981 | 2982 | require-directory@^2.1.1: 2983 | version "2.1.1" 2984 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2985 | 2986 | require-main-filename@^1.0.1: 2987 | version "1.0.1" 2988 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2989 | 2990 | resolve@1.1.7: 2991 | version "1.1.7" 2992 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2993 | 2994 | ret@~0.1.10: 2995 | version "0.1.15" 2996 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2997 | 2998 | right-align@^0.1.1: 2999 | version "0.1.3" 3000 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3001 | dependencies: 3002 | align-text "^0.1.1" 3003 | 3004 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 3005 | version "2.6.2" 3006 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3007 | dependencies: 3008 | glob "^7.0.5" 3009 | 3010 | rst-selector-parser@^2.2.3: 3011 | version "2.2.3" 3012 | resolved "https://registry.yarnpkg.com/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz#81b230ea2fcc6066c89e3472de794285d9b03d91" 3013 | dependencies: 3014 | lodash.flattendeep "^4.4.0" 3015 | nearley "^2.7.10" 3016 | 3017 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3018 | version "5.1.1" 3019 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3020 | 3021 | sane@^2.0.0: 3022 | version "2.2.0" 3023 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.2.0.tgz#d6d2e2fcab00e3d283c93b912b7c3a20846f1d56" 3024 | dependencies: 3025 | anymatch "^1.3.0" 3026 | exec-sh "^0.2.0" 3027 | fb-watchman "^2.0.0" 3028 | minimatch "^3.0.2" 3029 | minimist "^1.1.1" 3030 | walker "~1.0.5" 3031 | watch "~0.18.0" 3032 | optionalDependencies: 3033 | fsevents "^1.1.1" 3034 | 3035 | sax@^1.2.1: 3036 | version "1.2.4" 3037 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3038 | 3039 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 3040 | version "5.4.1" 3041 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 3042 | 3043 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3044 | version "2.0.0" 3045 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3046 | 3047 | set-immediate-shim@^1.0.1: 3048 | version "1.0.1" 3049 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3050 | 3051 | setimmediate@^1.0.5: 3052 | version "1.0.5" 3053 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3054 | 3055 | shebang-command@^1.2.0: 3056 | version "1.2.0" 3057 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3058 | dependencies: 3059 | shebang-regex "^1.0.0" 3060 | 3061 | shebang-regex@^1.0.0: 3062 | version "1.0.0" 3063 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3064 | 3065 | shellwords@^0.1.0: 3066 | version "0.1.1" 3067 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3068 | 3069 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3070 | version "3.0.2" 3071 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3072 | 3073 | slash@^1.0.0: 3074 | version "1.0.0" 3075 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3076 | 3077 | sntp@1.x.x: 3078 | version "1.0.9" 3079 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3080 | dependencies: 3081 | hoek "2.x.x" 3082 | 3083 | sntp@2.x.x: 3084 | version "2.1.0" 3085 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 3086 | dependencies: 3087 | hoek "4.x.x" 3088 | 3089 | source-map-support@^0.4.15: 3090 | version "0.4.18" 3091 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3092 | dependencies: 3093 | source-map "^0.5.6" 3094 | 3095 | source-map@^0.4.4: 3096 | version "0.4.4" 3097 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3098 | dependencies: 3099 | amdefine ">=0.0.4" 3100 | 3101 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.6: 3102 | version "0.5.7" 3103 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3104 | 3105 | spdx-correct@~1.0.0: 3106 | version "1.0.2" 3107 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3108 | dependencies: 3109 | spdx-license-ids "^1.0.2" 3110 | 3111 | spdx-expression-parse@~1.0.0: 3112 | version "1.0.4" 3113 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3114 | 3115 | spdx-license-ids@^1.0.2: 3116 | version "1.2.2" 3117 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3118 | 3119 | sprintf-js@~1.0.2: 3120 | version "1.0.3" 3121 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3122 | 3123 | sshpk@^1.7.0: 3124 | version "1.13.1" 3125 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 3126 | dependencies: 3127 | asn1 "~0.2.3" 3128 | assert-plus "^1.0.0" 3129 | dashdash "^1.12.0" 3130 | getpass "^0.1.1" 3131 | optionalDependencies: 3132 | bcrypt-pbkdf "^1.0.0" 3133 | ecc-jsbn "~0.1.1" 3134 | jsbn "~0.1.0" 3135 | tweetnacl "~0.14.0" 3136 | 3137 | string-length@^2.0.0: 3138 | version "2.0.0" 3139 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 3140 | dependencies: 3141 | astral-regex "^1.0.0" 3142 | strip-ansi "^4.0.0" 3143 | 3144 | string-width@^1.0.1, string-width@^1.0.2: 3145 | version "1.0.2" 3146 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3147 | dependencies: 3148 | code-point-at "^1.0.0" 3149 | is-fullwidth-code-point "^1.0.0" 3150 | strip-ansi "^3.0.0" 3151 | 3152 | string-width@^2.0.0: 3153 | version "2.1.1" 3154 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3155 | dependencies: 3156 | is-fullwidth-code-point "^2.0.0" 3157 | strip-ansi "^4.0.0" 3158 | 3159 | string_decoder@~1.0.3: 3160 | version "1.0.3" 3161 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3162 | dependencies: 3163 | safe-buffer "~5.1.0" 3164 | 3165 | stringstream@~0.0.4, stringstream@~0.0.5: 3166 | version "0.0.5" 3167 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3168 | 3169 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3170 | version "3.0.1" 3171 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3172 | dependencies: 3173 | ansi-regex "^2.0.0" 3174 | 3175 | strip-ansi@^4.0.0: 3176 | version "4.0.0" 3177 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3178 | dependencies: 3179 | ansi-regex "^3.0.0" 3180 | 3181 | strip-bom@3.0.0, strip-bom@^3.0.0: 3182 | version "3.0.0" 3183 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3184 | 3185 | strip-bom@^2.0.0: 3186 | version "2.0.0" 3187 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3188 | dependencies: 3189 | is-utf8 "^0.2.0" 3190 | 3191 | strip-eof@^1.0.0: 3192 | version "1.0.0" 3193 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3194 | 3195 | strip-json-comments@~2.0.1: 3196 | version "2.0.1" 3197 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3198 | 3199 | supports-color@^2.0.0: 3200 | version "2.0.0" 3201 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3202 | 3203 | supports-color@^3.1.2: 3204 | version "3.2.3" 3205 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3206 | dependencies: 3207 | has-flag "^1.0.0" 3208 | 3209 | supports-color@^4.0.0: 3210 | version "4.5.0" 3211 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 3212 | dependencies: 3213 | has-flag "^2.0.0" 3214 | 3215 | symbol-tree@^3.2.1: 3216 | version "3.2.2" 3217 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3218 | 3219 | tar-pack@^3.4.0: 3220 | version "3.4.1" 3221 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 3222 | dependencies: 3223 | debug "^2.2.0" 3224 | fstream "^1.0.10" 3225 | fstream-ignore "^1.0.5" 3226 | once "^1.3.3" 3227 | readable-stream "^2.1.4" 3228 | rimraf "^2.5.1" 3229 | tar "^2.2.1" 3230 | uid-number "^0.0.6" 3231 | 3232 | tar@^2.2.1: 3233 | version "2.2.1" 3234 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3235 | dependencies: 3236 | block-stream "*" 3237 | fstream "^1.0.2" 3238 | inherits "2" 3239 | 3240 | test-exclude@^4.1.1: 3241 | version "4.1.1" 3242 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 3243 | dependencies: 3244 | arrify "^1.0.1" 3245 | micromatch "^2.3.11" 3246 | object-assign "^4.1.0" 3247 | read-pkg-up "^1.0.1" 3248 | require-main-filename "^1.0.1" 3249 | 3250 | throat@^4.0.0: 3251 | version "4.1.0" 3252 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 3253 | 3254 | tmpl@1.0.x: 3255 | version "1.0.4" 3256 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3257 | 3258 | to-fast-properties@^1.0.3: 3259 | version "1.0.3" 3260 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3261 | 3262 | tough-cookie@^2.3.2, tough-cookie@~2.3.0, tough-cookie@~2.3.3: 3263 | version "2.3.3" 3264 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 3265 | dependencies: 3266 | punycode "^1.4.1" 3267 | 3268 | tr46@~0.0.3: 3269 | version "0.0.3" 3270 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3271 | 3272 | trim-right@^1.0.1: 3273 | version "1.0.1" 3274 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3275 | 3276 | tunnel-agent@^0.6.0: 3277 | version "0.6.0" 3278 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3279 | dependencies: 3280 | safe-buffer "^5.0.1" 3281 | 3282 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3283 | version "0.14.5" 3284 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3285 | 3286 | type-check@~0.3.2: 3287 | version "0.3.2" 3288 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3289 | dependencies: 3290 | prelude-ls "~1.1.2" 3291 | 3292 | ua-parser-js@^0.7.9: 3293 | version "0.7.17" 3294 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac" 3295 | 3296 | uglify-js@^2.6: 3297 | version "2.8.29" 3298 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3299 | dependencies: 3300 | source-map "~0.5.1" 3301 | yargs "~3.10.0" 3302 | optionalDependencies: 3303 | uglify-to-browserify "~1.0.0" 3304 | 3305 | uglify-to-browserify@~1.0.0: 3306 | version "1.0.2" 3307 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3308 | 3309 | uid-number@^0.0.6: 3310 | version "0.0.6" 3311 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3312 | 3313 | underscore@~1.4.4: 3314 | version "1.4.4" 3315 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.4.4.tgz#61a6a32010622afa07963bf325203cf12239d604" 3316 | 3317 | user-home@^1.1.1: 3318 | version "1.1.1" 3319 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3320 | 3321 | util-deprecate@~1.0.1: 3322 | version "1.0.2" 3323 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3324 | 3325 | uuid@^3.0.0, uuid@^3.1.0: 3326 | version "3.1.0" 3327 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 3328 | 3329 | v8flags@^2.1.1: 3330 | version "2.1.1" 3331 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3332 | dependencies: 3333 | user-home "^1.1.1" 3334 | 3335 | validate-npm-package-license@^3.0.1: 3336 | version "3.0.1" 3337 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3338 | dependencies: 3339 | spdx-correct "~1.0.0" 3340 | spdx-expression-parse "~1.0.0" 3341 | 3342 | verror@1.10.0: 3343 | version "1.10.0" 3344 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3345 | dependencies: 3346 | assert-plus "^1.0.0" 3347 | core-util-is "1.0.2" 3348 | extsprintf "^1.2.0" 3349 | 3350 | walker@~1.0.5: 3351 | version "1.0.7" 3352 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3353 | dependencies: 3354 | makeerror "1.0.x" 3355 | 3356 | watch@~0.18.0: 3357 | version "0.18.0" 3358 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 3359 | dependencies: 3360 | exec-sh "^0.2.0" 3361 | minimist "^1.2.0" 3362 | 3363 | webidl-conversions@^3.0.0: 3364 | version "3.0.1" 3365 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3366 | 3367 | webidl-conversions@^4.0.0: 3368 | version "4.0.2" 3369 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 3370 | 3371 | whatwg-encoding@^1.0.1: 3372 | version "1.0.3" 3373 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" 3374 | dependencies: 3375 | iconv-lite "0.4.19" 3376 | 3377 | whatwg-fetch@>=0.10.0: 3378 | version "2.0.3" 3379 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 3380 | 3381 | whatwg-url@^4.3.0: 3382 | version "4.8.0" 3383 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 3384 | dependencies: 3385 | tr46 "~0.0.3" 3386 | webidl-conversions "^3.0.0" 3387 | 3388 | which-module@^2.0.0: 3389 | version "2.0.0" 3390 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3391 | 3392 | which@^1.2.12, which@^1.2.9: 3393 | version "1.3.0" 3394 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3395 | dependencies: 3396 | isexe "^2.0.0" 3397 | 3398 | wide-align@^1.1.0: 3399 | version "1.1.2" 3400 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3401 | dependencies: 3402 | string-width "^1.0.2" 3403 | 3404 | window-size@0.1.0: 3405 | version "0.1.0" 3406 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3407 | 3408 | wordwrap@0.0.2: 3409 | version "0.0.2" 3410 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3411 | 3412 | wordwrap@~0.0.2: 3413 | version "0.0.3" 3414 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3415 | 3416 | wordwrap@~1.0.0: 3417 | version "1.0.0" 3418 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3419 | 3420 | worker-farm@^1.3.1: 3421 | version "1.5.2" 3422 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.2.tgz#32b312e5dc3d5d45d79ef44acc2587491cd729ae" 3423 | dependencies: 3424 | errno "^0.1.4" 3425 | xtend "^4.0.1" 3426 | 3427 | wrap-ansi@^2.0.0: 3428 | version "2.1.0" 3429 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3430 | dependencies: 3431 | string-width "^1.0.1" 3432 | strip-ansi "^3.0.1" 3433 | 3434 | wrappy@1: 3435 | version "1.0.2" 3436 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3437 | 3438 | write-file-atomic@^2.1.0: 3439 | version "2.3.0" 3440 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3441 | dependencies: 3442 | graceful-fs "^4.1.11" 3443 | imurmurhash "^0.1.4" 3444 | signal-exit "^3.0.2" 3445 | 3446 | xml-name-validator@^2.0.1: 3447 | version "2.0.1" 3448 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3449 | 3450 | xtend@^4.0.1: 3451 | version "4.0.1" 3452 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3453 | 3454 | y18n@^3.2.1: 3455 | version "3.2.1" 3456 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3457 | 3458 | yallist@^2.1.2: 3459 | version "2.1.2" 3460 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3461 | 3462 | yargs-parser@^7.0.0: 3463 | version "7.0.0" 3464 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 3465 | dependencies: 3466 | camelcase "^4.1.0" 3467 | 3468 | yargs@^9.0.0: 3469 | version "9.0.1" 3470 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" 3471 | dependencies: 3472 | camelcase "^4.1.0" 3473 | cliui "^3.2.0" 3474 | decamelize "^1.1.1" 3475 | get-caller-file "^1.0.1" 3476 | os-locale "^2.0.0" 3477 | read-pkg-up "^2.0.0" 3478 | require-directory "^2.1.1" 3479 | require-main-filename "^1.0.1" 3480 | set-blocking "^2.0.0" 3481 | string-width "^2.0.0" 3482 | which-module "^2.0.0" 3483 | y18n "^3.2.1" 3484 | yargs-parser "^7.0.0" 3485 | 3486 | yargs@~3.10.0: 3487 | version "3.10.0" 3488 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3489 | dependencies: 3490 | camelcase "^1.0.2" 3491 | cliui "^2.1.0" 3492 | decamelize "^1.0.0" 3493 | window-size "0.1.0" 3494 | --------------------------------------------------------------------------------