├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── README.md ├── __tests__ ├── .eslintrc.js ├── AccordionTest.jsx └── ColTest.jsx ├── lib ├── Accordion.js ├── Alert.js ├── Badge.js ├── Breadcrumb.js ├── BreadcrumbItem.js ├── Button.js ├── ButtonGroup.js ├── ButtonToolbar.js ├── Carousel.js ├── CarouselItem.js ├── Checkbox.js ├── Clearfix.js ├── Col.js ├── Collapse.js ├── ControlLabel.js ├── Dropdown.js ├── DropdownButton.js ├── Fade.js ├── Form.js ├── FormControl.js ├── FormGroup.js ├── Glyphicon.js ├── Grid.js ├── HelpBlock.js ├── Image.js ├── InputGroup.js ├── Jumbotron.js ├── Label.js ├── ListGroup.js ├── ListGroupItem.js ├── Media.js ├── MenuItem.js ├── Modal.js ├── ModalBody.js ├── ModalFooter.js ├── ModalHeader.js ├── ModalTitle.js ├── Nav.js ├── NavDropdown.js ├── NavItem.js ├── Navbar.js ├── NavbarBrand.js ├── Overlay.js ├── OverlayTrigger.js ├── PageHeader.js ├── PageItem.js ├── Pager.js ├── Pagination.js ├── PaginationButton.js ├── Panel.js ├── PanelGroup.js ├── Popover.js ├── ProgressBar.js ├── Radio.js ├── ResponsiveEmbed.js ├── Row.js ├── SafeAnchor.js ├── SplitButton.js ├── Tab.js ├── TabContainer.js ├── TabContent.js ├── TabPane.js ├── Table.js ├── Tabs.js ├── Thumbnail.js ├── ToggleButton.js ├── ToggleButtonGroup.js ├── Tooltip.js └── Well.js ├── package.json ├── src ├── components │ ├── Accordion.js │ ├── Alert.js │ ├── Badge.js │ ├── Breadcrumb.js │ ├── BreadcrumbItem.js │ ├── Button.js │ ├── ButtonGroup.js │ ├── ButtonToolbar.js │ ├── Carousel.js │ ├── CarouselItem.js │ ├── Checkbox.js │ ├── Clearfix.js │ ├── Col.js │ ├── Collapse.js │ ├── ControlLabel.js │ ├── Dropdown.js │ ├── DropdownButton.js │ ├── Fade.js │ ├── Form.js │ ├── FormControl.js │ ├── FormGroup.js │ ├── Glyphicon.js │ ├── Grid.js │ ├── HelpBlock.js │ ├── Image.js │ ├── InputGroup.js │ ├── Jumbotron.js │ ├── Label.js │ ├── ListGroup.js │ ├── ListGroupItem.js │ ├── Media.js │ ├── MenuItem.js │ ├── Modal.js │ ├── ModalBody.js │ ├── ModalFooter.js │ ├── ModalHeader.js │ ├── ModalTitle.js │ ├── Nav.js │ ├── NavDropdown.js │ ├── NavItem.js │ ├── Navbar.js │ ├── NavbarBrand.js │ ├── Overlay.js │ ├── OverlayTrigger.js │ ├── PageHeader.js │ ├── PageItem.js │ ├── Pager.js │ ├── Pagination.js │ ├── PaginationButton.js │ ├── Panel.js │ ├── PanelGroup.js │ ├── Popover.js │ ├── ProgressBar.js │ ├── Radio.js │ ├── ResponsiveEmbed.js │ ├── Row.js │ ├── SafeAnchor.js │ ├── SplitButton.js │ ├── Tab.js │ ├── TabContainer.js │ ├── TabContent.js │ ├── TabPane.js │ ├── Table.js │ ├── Tabs.js │ ├── Thumbnail.js │ ├── ToggleButton.js │ ├── ToggleButtonGroup.js │ ├── Tooltip.js │ └── Well.js ├── index.js └── wrapNested.js ├── webpack.config.babel.js └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *json 3 | dist 4 | lib -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: 'airbnb', 4 | ecmaVersion: 6, 5 | sourceType: 'module', 6 | ecmaFeatures: { 7 | jsx: true 8 | }, 9 | rules: { 10 | 'operator-linebreak': [ 2, 'before' ], 11 | 'react/jsx-no-bind': 0, 12 | 'react/prefer-stateless-function': 0, 13 | 'func-style': [2, 'expression'], 14 | 'no-unused-vars': [2, { 'ignoreRestSiblings': true }], 15 | 'max-len' : [2, { 16 | code : 100, 17 | tabWidth : 2, 18 | ignorePattern : '^import', 19 | ignoreUrls : true 20 | }], 21 | 'no-underscore-dangle': [ 2, { allowAfterThis: true }], 22 | 'no-mixed-operators': [2, { allowSamePrecedence: true }], 23 | 'jsx-a11y/label-has-for': 0, 24 | 'jsx-a11y/no-static-element-interactions': 0, 25 | 'react/no-direct-mutation-state': 2, 26 | 'react/no-unused-prop-types': [2, {skipShapeProps: true }], 27 | 28 | 'no-restricted-imports': [2, 'moment', 'moment-timezone', 'frozen-moment'], 29 | 'import/no-restricted-paths': [2, { 30 | zones: [ 31 | { 32 | target: './common', 33 | from: 'src', 34 | }, 35 | { 36 | target: 'prop-types', 37 | from: 'src', 38 | }, 39 | ], 40 | }], 41 | 42 | // Disable new-cap in favor of babel/new-cap 43 | 'new-cap': 0, 44 | 'babel/new-cap': 2, 45 | 'no-plusplus': [2, { 'allowForLoopAfterthoughts': true }], 46 | 47 | // In process 48 | 'react/forbid-prop-types': 0, 49 | 'class-methods-use-this': 0, 50 | 'react/require-default-props': 1, 51 | 52 | // Second pass 53 | "comma-dangle": 0, 54 | "jsx-a11y/img-has-alt": 0, 55 | "no-return-await": 0, 56 | "no-useless-escape": 0, 57 | "react/jsx-wrap-multilines": 0, 58 | "react/no-array-index-key": 0, 59 | "react/require-default-props": 0, 60 | }, 61 | plugins: [ 62 | 'babel', 63 | 'react', 64 | 'import' 65 | ], 66 | parser: 'babel-eslint', 67 | }; 68 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | npm-debug* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React Bootstrap Extended 2 | 3 | > A version of React Bootstrap which accepts props that add Bootstrap's utility classes 4 | 5 | ## Quick reference 6 | 7 | ``` 8 | import { Panel } from 'react-bootstrap-extended'; 9 | 10 | // in your render() method 11 | return ( 12 | This panel has the 13 |
text-uppercase
and
text-danger
14 | classes applied to it. 15 |
); 16 | ``` 17 | 18 | ## Motivation 19 | 20 | At their best, React components expose simple, clean and statically-typed interfaces (via `propTypes`) that effectively hide their internal complexity. However, these components often are not specifically tailored to our needs, and we resort to the use of `className`s (and `style`) to augment their capabilities. 21 | 22 | `className`s are problematic because they are strings with absolutely no validation. 23 | 24 | In React Bootstrap (which is the best set of web building blocks, bar none), I often find myself adding Bootstrap utility classes to existing components, e.g. 25 | 26 | `` 27 | 28 | Some disadvantages to this method include: 29 | 30 | 1. It is more difficult to statically analyze and quickly examine. For example, `pul-right` may sneak through code review. In particular, Flow and Typescript are of no help here. 31 | 2. It is difficult to distinguish one-off classes (e.g. `className="my-login-button"`) from global classes. This prevents code reuse: another developer will not know that they can re-use the `pull-right` class and instead, will write that CSS themselves. 32 | 33 | This package brings that static typing to bootstrap utility classes in a fully flow-compatible way. 34 | 35 | ## API 36 | 37 | This package exposes all of the original bootstrap components, and utils, and wraps the appropriate ones. 38 | 39 | ## Full list of props and utility classes 40 | 41 | The keys in this object are the prop names. The values are the classes applied. 42 | 43 | ``` 44 | { 45 | "textMuted": "text-muted", 46 | "textPrimary": "text-primary", 47 | "textSuccess": "text-success", 48 | "textInfo": "text-info", 49 | "textWarning": "text-warning", 50 | "textDanger": "text-danger", 51 | "bgPrimary": "bg-primary", 52 | "bgSuccess": "bg-success", 53 | "bgInfo": "bg-info", 54 | "bgWarning": "bg-warning", 55 | "bgDanger": "bg-danger", 56 | "pullLeft": "pull-left", 57 | "pullRight": "pull-right", 58 | "navbarLeft": "navbar-left", 59 | "navbarRight": "navbar-right", 60 | "centerBlock": "center-block", 61 | "clearfix": "clearfix", 62 | "invisible": "invisible", 63 | "srOnly": "sr-only", 64 | "srOnlyFocusable": "sr-only sr-only-focusable", 65 | "textHide": "text-hide", 66 | "visibleXsBlock": "visible-xs-block", 67 | "visibleXsInline": "visible-xs-inline", 68 | "visibleXsInlineBlock": "visible-xs-inline-block", 69 | "hiddenXs": "hidden-xs", 70 | "visibleSmBlock": "visible-sm-block", 71 | "visibleSmInline": "visible-sm-inline", 72 | "visibleSmInlineBlock": "visible-sm-inline-block", 73 | "hiddenSm": "hidden-sm", 74 | "visibleMdBlock": "visible-md-block", 75 | "visibleMdInline": "visible-md-inline", 76 | "visibleMdInlineBlock": "visible-md-inline-block", 77 | "hiddenMd": "hidden-md", 78 | "visibleLgBlock": "visible-lg-block", 79 | "visibleLgInline": "visible-lg-inline", 80 | "visibleLgInlineBlock": "visible-lg-inline-block", 81 | "hiddenLg": "hidden-lg", 82 | "visiblePrintBlock": "visible-print-block", 83 | "visiblePrintInline": "visible-print-inline", 84 | "visiblePrintInlineBlock": "visible-print-inline-block", 85 | "hiddenPrint": "hidden-print", 86 | "textLeft": "text-left", 87 | "textCenter": "text-center", 88 | "textRight": "text-right", 89 | "textJustify": "text-justify", 90 | "textNowrap": "text-nowrap", 91 | "textLowercase": "text-lowercase", 92 | "textUppercase": "text-uppercase", 93 | "textCapitalize": "text-capitalize", 94 | "initialism": "initialism" 95 | } 96 | ``` 97 | 98 | ## My favorite bootstrap classes are omitted! 99 | 100 | I omitted classes like `show`, `hidden`, `caret` and `close` because they are way too generic and will conflict with existing props. 101 | 102 | I omitted classes like `lead`, `blockquote-reverse`, etc. because they are too component-specific. 103 | 104 | ## The existing `pullRight` and `pullLeft` props don't work on `DropdownButton`, `SplitButton`, `Dropdown` and `Nav`! 105 | 106 | There are a few components that use the same props (`pullRight` and `pullLeft`). This is a known bug, and a fix is planned for an upcoming release. 107 | 108 | Note that for some components, such as for `Badge`s, the overloaded `pullRight` prop has the same effect. 109 | 110 | ## TODO 111 | 112 | * Expose an easy way of adding props for classes you custom-defined 113 | * Add more tests 114 | * Flow bindings 115 | 116 | ## Contributing 117 | 118 | Please, feel free to reach out and contribute! [robert.balicki@gmail.com](mailto:robert.balicki@gmail.com) 119 | -------------------------------------------------------------------------------- /__tests__/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "env": { 3 | "jest": true, 4 | "jasmine": true 5 | }, 6 | "plugins": [ 7 | "jasmine" 8 | ], 9 | "extends" : "plugin:jasmine/recommended", 10 | "rules": { 11 | "jasmine/new-line-before-expect": 0 12 | } 13 | }; 14 | -------------------------------------------------------------------------------- /__tests__/AccordionTest.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { shallow } from 'enzyme'; 3 | import RbsAccordion from 'react-bootstrap/lib/Accordion'; 4 | 5 | import { Accordion } from '../src'; 6 | 7 | describe('Accordion', () => { 8 | it('should render a react-bootstrap Accordion', () => { 9 | const accordion = shallow(); 10 | 11 | expect(accordion.find(RbsAccordion)).toHaveLength(1); 12 | }); 13 | 14 | it('should transform the pullRight prop to a className of pull-right', () => { 15 | const accordion = shallow(); 16 | const rbsAccordion = accordion.find(RbsAccordion); 17 | 18 | expect(rbsAccordion.props().className.includes('pull-right')).toBe(true); 19 | }); 20 | 21 | it('should pass along other classNames', () => { 22 | const accordion = shallow(); 23 | const rbsAccordion = accordion.find(RbsAccordion); 24 | 25 | expect(rbsAccordion.props().className.includes('super-duper')).toBe(true); 26 | }); 27 | 28 | it('should pass along other properties to the Accordion', () => { 29 | const accordion = shallow(); 30 | const rbsAccordion = accordion.find(RbsAccordion); 31 | 32 | expect(rbsAccordion.props().helloWorld).toBe(true); 33 | }); 34 | }); 35 | -------------------------------------------------------------------------------- /__tests__/ColTest.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { shallow, render } from 'enzyme'; 3 | import RbsCol from 'react-bootstrap/lib/Col'; 4 | 5 | import { Col } from '../src'; 6 | 7 | describe('Col', () => { 8 | it('should render a react-bootstrap Col', () => { 9 | const col = shallow(asdf); 10 | 11 | expect(col.find(RbsCol)).toHaveLength(1); 12 | }); 13 | 14 | it('should transform the pullRight prop to a className of pull-right', () => { 15 | const col = shallow(); 16 | const rbsCol = col.find(RbsCol); 17 | 18 | expect(rbsCol.props().className.includes('pull-right')).toBe(true); 19 | }); 20 | 21 | it('should pass along other classNames', () => { 22 | const col = shallow(); 23 | const rbsCol = col.find(RbsCol); 24 | 25 | expect(rbsCol.props().className.includes('super-duper')).toBe(true); 26 | }); 27 | 28 | it('should pass along other properties to the Col', () => { 29 | const col = shallow(); 30 | const rbsCol = col.find(RbsCol); 31 | 32 | expect(rbsCol.props().helloWorld).toBe(true); 33 | }); 34 | 35 | it('should be able to combine classNames', () => { 36 | // NB: I'm not sure why I need to test col-xs-12 differently from the rest 37 | // However, the .html() tests appear to indicate that this is an enzyme quirk. 38 | const shallowRenderCol = shallow(); 39 | const fullRenderCol = render(); 40 | const renderedHtml = '
'; 41 | 42 | expect(fullRenderCol.find('.col-xs-12')).toHaveLength(1); 43 | expect(shallowRenderCol.hasClass('custom-class')).toBe(true); 44 | expect(shallowRenderCol.hasClass('pull-right')).toBe(true); 45 | expect(fullRenderCol.html()).toEqual(renderedHtml); 46 | expect(shallowRenderCol.html()).toEqual(renderedHtml); 47 | }); 48 | }); 49 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-bootstrap-extended", 3 | "babel": { 4 | "presets": [ 5 | "es2015", 6 | "stage-0", 7 | "react" 8 | ] 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "https://github.com/rbalicki2/react-bootstrap-extended" 13 | }, 14 | "version": "0.0.7", 15 | "main": "dist/react-bootstrap-extended.js", 16 | "dependencies": { 17 | "bootstrap-class-props": "^0.0.4", 18 | "react": "^15.5.4", 19 | "react-bootstrap": "^0.31.2", 20 | "react-dom": "^15.5.4" 21 | }, 22 | "devDependencies": { 23 | "babel-core": "^6.24.1", 24 | "babel-eslint": "^7.2.2", 25 | "babel-loader": "^6.4.1", 26 | "babel-preset-es2015": "^6.24.1", 27 | "babel-preset-react": "^6.24.1", 28 | "babel-preset-stage-0": "^6.24.1", 29 | "enzyme": "^2.9.1", 30 | "eslint": "^3.19.0", 31 | "eslint-config-airbnb": "^14.1.0", 32 | "eslint-plugin-babel": "^4.1.1", 33 | "eslint-plugin-import": "^2.2.0", 34 | "eslint-plugin-jasmine": "^2.7.1", 35 | "eslint-plugin-jsx-a11y": "^4.0.0", 36 | "eslint-plugin-react": "^6.10.3", 37 | "jest": "^20.0.4", 38 | "react-test-renderer": "^15.6.1", 39 | "webpack": "^2.3.3" 40 | }, 41 | "scripts": { 42 | "test": "jest", 43 | "lint": "eslint './**/*.js?(x)'", 44 | "build": "npm run clean && npm run lint && npm run test && npm run compile", 45 | "clean": "rm -rf ./dist", 46 | "compile": "webpack" 47 | }, 48 | "jest": { 49 | "testPathIgnorePatterns": [ 50 | ".eslintrc.js" 51 | ] 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /src/components/Accordion.js: -------------------------------------------------------------------------------- 1 | import Accordion from 'react-bootstrap/lib/Accordion'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Accordion); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Alert.js: -------------------------------------------------------------------------------- 1 | import Alert from 'react-bootstrap/lib/Alert'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Alert); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Badge.js: -------------------------------------------------------------------------------- 1 | import Badge from 'react-bootstrap/lib/Badge'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Badge); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Breadcrumb.js: -------------------------------------------------------------------------------- 1 | import Breadcrumb from 'react-bootstrap/lib/Breadcrumb'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Breadcrumb); 5 | 6 | -------------------------------------------------------------------------------- /src/components/BreadcrumbItem.js: -------------------------------------------------------------------------------- 1 | import BreadcrumbItem from 'react-bootstrap/lib/BreadcrumbItem'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(BreadcrumbItem); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Button.js: -------------------------------------------------------------------------------- 1 | import Button from 'react-bootstrap/lib/Button'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Button); 5 | 6 | -------------------------------------------------------------------------------- /src/components/ButtonGroup.js: -------------------------------------------------------------------------------- 1 | import ButtonGroup from 'react-bootstrap/lib/ButtonGroup'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(ButtonGroup); 5 | 6 | -------------------------------------------------------------------------------- /src/components/ButtonToolbar.js: -------------------------------------------------------------------------------- 1 | import ButtonToolbar from 'react-bootstrap/lib/ButtonToolbar'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(ButtonToolbar); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Carousel.js: -------------------------------------------------------------------------------- 1 | import Carousel from 'react-bootstrap/lib/Carousel'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Carousel); 5 | 6 | -------------------------------------------------------------------------------- /src/components/CarouselItem.js: -------------------------------------------------------------------------------- 1 | import CarouselItem from 'react-bootstrap/lib/CarouselItem'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(CarouselItem); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Checkbox.js: -------------------------------------------------------------------------------- 1 | import Checkbox from 'react-bootstrap/lib/Checkbox'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Checkbox); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Clearfix.js: -------------------------------------------------------------------------------- 1 | import Clearfix from 'react-bootstrap/lib/Clearfix'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Clearfix); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Col.js: -------------------------------------------------------------------------------- 1 | import Col from 'react-bootstrap/lib/Col'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Col); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Collapse.js: -------------------------------------------------------------------------------- 1 | import Collapse from 'react-bootstrap/lib/Collapse'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Collapse); 5 | 6 | -------------------------------------------------------------------------------- /src/components/ControlLabel.js: -------------------------------------------------------------------------------- 1 | import ControlLabel from 'react-bootstrap/lib/ControlLabel'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(ControlLabel); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Dropdown.js: -------------------------------------------------------------------------------- 1 | import Dropdown from 'react-bootstrap/lib/Dropdown'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Dropdown); 5 | 6 | -------------------------------------------------------------------------------- /src/components/DropdownButton.js: -------------------------------------------------------------------------------- 1 | import DropdownButton from 'react-bootstrap/lib/DropdownButton'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(DropdownButton); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Fade.js: -------------------------------------------------------------------------------- 1 | import Fade from 'react-bootstrap/lib/Fade'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Fade); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Form.js: -------------------------------------------------------------------------------- 1 | import Form from 'react-bootstrap/lib/Form'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Form); 5 | 6 | -------------------------------------------------------------------------------- /src/components/FormControl.js: -------------------------------------------------------------------------------- 1 | import FormControl from 'react-bootstrap/lib/FormControl'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(FormControl); 5 | 6 | -------------------------------------------------------------------------------- /src/components/FormGroup.js: -------------------------------------------------------------------------------- 1 | import FormGroup from 'react-bootstrap/lib/FormGroup'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(FormGroup); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Glyphicon.js: -------------------------------------------------------------------------------- 1 | import Glyphicon from 'react-bootstrap/lib/Glyphicon'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Glyphicon); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Grid.js: -------------------------------------------------------------------------------- 1 | import Grid from 'react-bootstrap/lib/Grid'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Grid); 5 | 6 | -------------------------------------------------------------------------------- /src/components/HelpBlock.js: -------------------------------------------------------------------------------- 1 | import HelpBlock from 'react-bootstrap/lib/HelpBlock'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(HelpBlock); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Image.js: -------------------------------------------------------------------------------- 1 | import Image from 'react-bootstrap/lib/Image'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Image); 5 | 6 | -------------------------------------------------------------------------------- /src/components/InputGroup.js: -------------------------------------------------------------------------------- 1 | import InputGroup from 'react-bootstrap/lib/InputGroup'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(InputGroup); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Jumbotron.js: -------------------------------------------------------------------------------- 1 | import Jumbotron from 'react-bootstrap/lib/Jumbotron'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Jumbotron); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Label.js: -------------------------------------------------------------------------------- 1 | import Label from 'react-bootstrap/lib/Label'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Label); 5 | 6 | -------------------------------------------------------------------------------- /src/components/ListGroup.js: -------------------------------------------------------------------------------- 1 | import ListGroup from 'react-bootstrap/lib/ListGroup'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(ListGroup); 5 | 6 | -------------------------------------------------------------------------------- /src/components/ListGroupItem.js: -------------------------------------------------------------------------------- 1 | import ListGroupItem from 'react-bootstrap/lib/ListGroupItem'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(ListGroupItem); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Media.js: -------------------------------------------------------------------------------- 1 | import Media from 'react-bootstrap/lib/Media'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Media); 5 | 6 | -------------------------------------------------------------------------------- /src/components/MenuItem.js: -------------------------------------------------------------------------------- 1 | import MenuItem from 'react-bootstrap/lib/MenuItem'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(MenuItem); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Modal.js: -------------------------------------------------------------------------------- 1 | import Modal from 'react-bootstrap/lib/Modal'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Modal); 5 | 6 | -------------------------------------------------------------------------------- /src/components/ModalBody.js: -------------------------------------------------------------------------------- 1 | import ModalBody from 'react-bootstrap/lib/ModalBody'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(ModalBody); 5 | 6 | -------------------------------------------------------------------------------- /src/components/ModalFooter.js: -------------------------------------------------------------------------------- 1 | import ModalFooter from 'react-bootstrap/lib/ModalFooter'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(ModalFooter); 5 | 6 | -------------------------------------------------------------------------------- /src/components/ModalHeader.js: -------------------------------------------------------------------------------- 1 | import ModalHeader from 'react-bootstrap/lib/ModalHeader'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(ModalHeader); 5 | 6 | -------------------------------------------------------------------------------- /src/components/ModalTitle.js: -------------------------------------------------------------------------------- 1 | import ModalTitle from 'react-bootstrap/lib/ModalTitle'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(ModalTitle); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Nav.js: -------------------------------------------------------------------------------- 1 | import Nav from 'react-bootstrap/lib/Nav'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Nav); 5 | 6 | -------------------------------------------------------------------------------- /src/components/NavDropdown.js: -------------------------------------------------------------------------------- 1 | import NavDropdown from 'react-bootstrap/lib/NavDropdown'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(NavDropdown); 5 | 6 | -------------------------------------------------------------------------------- /src/components/NavItem.js: -------------------------------------------------------------------------------- 1 | import NavItem from 'react-bootstrap/lib/NavItem'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(NavItem); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Navbar.js: -------------------------------------------------------------------------------- 1 | import Navbar from 'react-bootstrap/lib/Navbar'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Navbar); 5 | 6 | -------------------------------------------------------------------------------- /src/components/NavbarBrand.js: -------------------------------------------------------------------------------- 1 | import NavbarBrand from 'react-bootstrap/lib/NavbarBrand'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(NavbarBrand); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Overlay.js: -------------------------------------------------------------------------------- 1 | import Overlay from 'react-bootstrap/lib/Overlay'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Overlay); 5 | 6 | -------------------------------------------------------------------------------- /src/components/OverlayTrigger.js: -------------------------------------------------------------------------------- 1 | import OverlayTrigger from 'react-bootstrap/lib/OverlayTrigger'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(OverlayTrigger); 5 | 6 | -------------------------------------------------------------------------------- /src/components/PageHeader.js: -------------------------------------------------------------------------------- 1 | import PageHeader from 'react-bootstrap/lib/PageHeader'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(PageHeader); 5 | 6 | -------------------------------------------------------------------------------- /src/components/PageItem.js: -------------------------------------------------------------------------------- 1 | import PageItem from 'react-bootstrap/lib/PageItem'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(PageItem); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Pager.js: -------------------------------------------------------------------------------- 1 | import Pager from 'react-bootstrap/lib/Pager'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Pager); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Pagination.js: -------------------------------------------------------------------------------- 1 | import Pagination from 'react-bootstrap/lib/Pagination'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Pagination); 5 | 6 | -------------------------------------------------------------------------------- /src/components/PaginationButton.js: -------------------------------------------------------------------------------- 1 | import PaginationButton from 'react-bootstrap/lib/PaginationButton'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(PaginationButton); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Panel.js: -------------------------------------------------------------------------------- 1 | import Panel from 'react-bootstrap/lib/Panel'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Panel); 5 | 6 | -------------------------------------------------------------------------------- /src/components/PanelGroup.js: -------------------------------------------------------------------------------- 1 | import PanelGroup from 'react-bootstrap/lib/PanelGroup'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(PanelGroup); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Popover.js: -------------------------------------------------------------------------------- 1 | import Popover from 'react-bootstrap/lib/Popover'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Popover); 5 | 6 | -------------------------------------------------------------------------------- /src/components/ProgressBar.js: -------------------------------------------------------------------------------- 1 | import ProgressBar from 'react-bootstrap/lib/ProgressBar'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(ProgressBar); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Radio.js: -------------------------------------------------------------------------------- 1 | import Radio from 'react-bootstrap/lib/Radio'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Radio); 5 | 6 | -------------------------------------------------------------------------------- /src/components/ResponsiveEmbed.js: -------------------------------------------------------------------------------- 1 | import ResponsiveEmbed from 'react-bootstrap/lib/ResponsiveEmbed'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(ResponsiveEmbed); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Row.js: -------------------------------------------------------------------------------- 1 | import Row from 'react-bootstrap/lib/Row'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Row); 5 | 6 | -------------------------------------------------------------------------------- /src/components/SafeAnchor.js: -------------------------------------------------------------------------------- 1 | import SafeAnchor from 'react-bootstrap/lib/SafeAnchor'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(SafeAnchor); 5 | 6 | -------------------------------------------------------------------------------- /src/components/SplitButton.js: -------------------------------------------------------------------------------- 1 | import SplitButton from 'react-bootstrap/lib/SplitButton'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(SplitButton); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Tab.js: -------------------------------------------------------------------------------- 1 | import Tab from 'react-bootstrap/lib/Tab'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Tab); 5 | 6 | -------------------------------------------------------------------------------- /src/components/TabContainer.js: -------------------------------------------------------------------------------- 1 | import TabContainer from 'react-bootstrap/lib/TabContainer'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(TabContainer); 5 | 6 | -------------------------------------------------------------------------------- /src/components/TabContent.js: -------------------------------------------------------------------------------- 1 | import TabContent from 'react-bootstrap/lib/TabContent'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(TabContent); 5 | 6 | -------------------------------------------------------------------------------- /src/components/TabPane.js: -------------------------------------------------------------------------------- 1 | import TabPane from 'react-bootstrap/lib/TabPane'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(TabPane); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Table.js: -------------------------------------------------------------------------------- 1 | import Table from 'react-bootstrap/lib/Table'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Table); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Tabs.js: -------------------------------------------------------------------------------- 1 | import Tabs from 'react-bootstrap/lib/Tabs'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Tabs); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Thumbnail.js: -------------------------------------------------------------------------------- 1 | import Thumbnail from 'react-bootstrap/lib/Thumbnail'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Thumbnail); 5 | 6 | -------------------------------------------------------------------------------- /src/components/ToggleButton.js: -------------------------------------------------------------------------------- 1 | import ToggleButton from 'react-bootstrap/lib/ToggleButton'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(ToggleButton); 5 | -------------------------------------------------------------------------------- /src/components/ToggleButtonGroup.js: -------------------------------------------------------------------------------- 1 | import ToggleButtonGroup from 'react-bootstrap/lib/ToggleButtonGroup'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(ToggleButtonGroup); 5 | -------------------------------------------------------------------------------- /src/components/Tooltip.js: -------------------------------------------------------------------------------- 1 | import Tooltip from 'react-bootstrap/lib/Tooltip'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Tooltip); 5 | 6 | -------------------------------------------------------------------------------- /src/components/Well.js: -------------------------------------------------------------------------------- 1 | import Well from 'react-bootstrap/lib/Well'; 2 | import wrapNested from '../wrapNested'; 3 | 4 | export default wrapNested(Well); 5 | 6 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | export utils from 'react-bootstrap/lib/utils'; 2 | 3 | export Accordion from './components/Accordion'; 4 | export Alert from './components/Alert'; 5 | export Badge from './components/Badge'; 6 | export Breadcrumb from './components/Breadcrumb'; 7 | export BreadcrumbItem from './components/BreadcrumbItem'; 8 | export Button from './components/Button'; 9 | export ButtonGroup from './components/ButtonGroup'; 10 | export ButtonToolbar from './components/ButtonToolbar'; 11 | export Carousel from './components/Carousel'; 12 | export CarouselItem from './components/CarouselItem'; 13 | export Checkbox from './components/Checkbox'; 14 | export Clearfix from './components/Clearfix'; 15 | export ControlLabel from './components/ControlLabel'; 16 | export Col from './components/Col'; 17 | export Collapse from './components/Collapse'; 18 | export Dropdown from './components/Dropdown'; 19 | export DropdownButton from './components/DropdownButton'; 20 | export Fade from './components/Fade'; 21 | export Form from './components/Form'; 22 | export FormControl from './components/FormControl'; 23 | export FormGroup from './components/FormGroup'; 24 | export Glyphicon from './components/Glyphicon'; 25 | export Grid from './components/Grid'; 26 | export HelpBlock from './components/HelpBlock'; 27 | export Image from './components/Image'; 28 | export InputGroup from './components/InputGroup'; 29 | export Jumbotron from './components/Jumbotron'; 30 | export Label from './components/Label'; 31 | export ListGroup from './components/ListGroup'; 32 | export ListGroupItem from './components/ListGroupItem'; 33 | export Media from './components/Media'; 34 | export MenuItem from './components/MenuItem'; 35 | export Modal from './components/Modal'; 36 | export ModalBody from './components/ModalBody'; 37 | export ModalFooter from './components/ModalFooter'; 38 | export ModalHeader from './components/ModalHeader'; 39 | export ModalTitle from './components/ModalTitle'; 40 | export Nav from './components/Nav'; 41 | export Navbar from './components/Navbar'; 42 | export NavbarBrand from './components/NavbarBrand'; 43 | export NavDropdown from './components/NavDropdown'; 44 | export NavItem from './components/NavItem'; 45 | export Overlay from './components/Overlay'; 46 | export OverlayTrigger from './components/OverlayTrigger'; 47 | export PageHeader from './components/PageHeader'; 48 | export PageItem from './components/PageItem'; 49 | export Pager from './components/Pager'; 50 | export Pagination from './components/Pagination'; 51 | export PaginationButton from './components/PaginationButton'; 52 | export Panel from './components/Panel'; 53 | export PanelGroup from './components/PanelGroup'; 54 | export Popover from './components/Popover'; 55 | export ProgressBar from './components/ProgressBar'; 56 | export Radio from './components/Radio'; 57 | export ResponsiveEmbed from './components/ResponsiveEmbed'; 58 | export Row from './components/Row'; 59 | export SafeAnchor from './components/SafeAnchor'; 60 | export SplitButton from './components/SplitButton'; 61 | export Tab from './components/Tab'; 62 | export TabContainer from './components/TabContainer'; 63 | export TabContent from './components/TabContent'; 64 | export Table from './components/Table'; 65 | export TabPane from './components/TabPane'; 66 | export Tabs from './components/Tabs'; 67 | export Thumbnail from './components/Thumbnail'; 68 | export ToggleButton from './components/ToggleButton'; 69 | export ToggleButtonGroup from './components/ToggleButtonGroup'; 70 | export Tooltip from './components/Tooltip'; 71 | export Well from './components/Well'; 72 | -------------------------------------------------------------------------------- /src/wrapNested.js: -------------------------------------------------------------------------------- 1 | import wrapBootstrapClasses from 'bootstrap-class-props'; 2 | import { Component as ReactComponent } from 'react'; 3 | 4 | const wrapNested = (Component) => { 5 | Object.keys(Component).forEach((key) => { 6 | const val = Component[key]; 7 | if (Object.getPrototypeOf(val) === ReactComponent) { 8 | /* eslint-disable no-param-reassign */ 9 | Component[key] = wrapNested(val); 10 | } 11 | }); 12 | return wrapBootstrapClasses(Component); 13 | }; 14 | 15 | export default wrapNested; 16 | -------------------------------------------------------------------------------- /webpack.config.babel.js: -------------------------------------------------------------------------------- 1 | import path from 'path'; 2 | import fs from 'fs'; 3 | 4 | import pkg from './package.json'; 5 | 6 | const allOtherFiles = fs.readdirSync('./src/components') 7 | .reduce((accum, fileName) => ({ 8 | ...accum, 9 | [`lib/${fileName}`]: `./src/components/${fileName}`, 10 | }), {}); 11 | 12 | module.exports = { 13 | entry: { 14 | 'dist/react-bootstrap-extended.js': './src/index.js', 15 | ...allOtherFiles, 16 | }, 17 | resolve: { 18 | modules: ['node_modules', __dirname], 19 | extensions: ['.js', '.jsx'], 20 | }, 21 | output: { 22 | filename: '[name]', 23 | path: path.resolve(__dirname), 24 | library: 'react-class-props', 25 | libraryTarget: 'umd', 26 | }, 27 | module: { 28 | rules: [ 29 | { 30 | test: /\.jsx?$/, 31 | exclude: /node_modules/, 32 | use: { 33 | loader: 'babel-loader', 34 | options: pkg.babel, 35 | }, 36 | }, 37 | ], 38 | }, 39 | externals: { 40 | react: { 41 | commonjs: 'react', 42 | commonjs2: 'react', 43 | amd: 'react', 44 | umd: 'react', 45 | root: 'React', 46 | }, 47 | 'react-dom': { 48 | root: 'ReactDOM', 49 | commonjs2: 'react-dom', 50 | commonjs: 'react-dom', 51 | amd: 'react-dom', 52 | umd: 'react-dom', 53 | }, 54 | }, 55 | }; 56 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | abbrev@1: 10 | version "1.1.0" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 12 | 13 | acorn-dynamic-import@^2.0.0: 14 | version "2.0.2" 15 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 16 | dependencies: 17 | acorn "^4.0.3" 18 | 19 | acorn-globals@^3.1.0: 20 | version "3.1.0" 21 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 22 | dependencies: 23 | acorn "^4.0.4" 24 | 25 | acorn-jsx@^3.0.0: 26 | version "3.0.1" 27 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 28 | dependencies: 29 | acorn "^3.0.4" 30 | 31 | acorn@^3.0.4: 32 | version "3.3.0" 33 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 34 | 35 | acorn@^4.0.3, acorn@^4.0.4: 36 | version "4.0.11" 37 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 38 | 39 | acorn@^5.0.0, acorn@^5.0.1: 40 | version "5.0.3" 41 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 42 | 43 | ajv-keywords@^1.0.0, ajv-keywords@^1.1.1: 44 | version "1.5.1" 45 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 46 | 47 | ajv@^4.7.0, ajv@^4.9.1: 48 | version "4.11.8" 49 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 50 | dependencies: 51 | co "^4.6.0" 52 | json-stable-stringify "^1.0.1" 53 | 54 | align-text@^0.1.1, align-text@^0.1.3: 55 | version "0.1.4" 56 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 57 | dependencies: 58 | kind-of "^3.0.2" 59 | longest "^1.0.1" 60 | repeat-string "^1.5.2" 61 | 62 | amdefine@>=0.0.4: 63 | version "1.0.1" 64 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 65 | 66 | ansi-escapes@^1.1.0, ansi-escapes@^1.4.0: 67 | version "1.4.0" 68 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 69 | 70 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 71 | version "2.1.1" 72 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 73 | 74 | ansi-styles@^2.2.1: 75 | version "2.2.1" 76 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 77 | 78 | ansi-styles@^3.0.0: 79 | version "3.1.0" 80 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.1.0.tgz#09c202d5c917ec23188caa5c9cb9179cd9547750" 81 | dependencies: 82 | color-convert "^1.0.0" 83 | 84 | anymatch@^1.3.0: 85 | version "1.3.0" 86 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 87 | dependencies: 88 | arrify "^1.0.0" 89 | micromatch "^2.1.5" 90 | 91 | append-transform@^0.4.0: 92 | version "0.4.0" 93 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 94 | dependencies: 95 | default-require-extensions "^1.0.0" 96 | 97 | aproba@^1.0.3: 98 | version "1.1.1" 99 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 100 | 101 | are-we-there-yet@~1.1.2: 102 | version "1.1.4" 103 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 104 | dependencies: 105 | delegates "^1.0.0" 106 | readable-stream "^2.0.6" 107 | 108 | argparse@^1.0.7: 109 | version "1.0.9" 110 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 111 | dependencies: 112 | sprintf-js "~1.0.2" 113 | 114 | aria-query@^0.3.0: 115 | version "0.3.0" 116 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-0.3.0.tgz#cb8a9984e2862711c83c80ade5b8f5ca0de2b467" 117 | dependencies: 118 | ast-types-flow "0.0.7" 119 | 120 | arr-diff@^2.0.0: 121 | version "2.0.0" 122 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 123 | dependencies: 124 | arr-flatten "^1.0.1" 125 | 126 | arr-flatten@^1.0.1: 127 | version "1.0.3" 128 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 129 | 130 | array-equal@^1.0.0: 131 | version "1.0.0" 132 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 133 | 134 | array-union@^1.0.1: 135 | version "1.0.2" 136 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 137 | dependencies: 138 | array-uniq "^1.0.1" 139 | 140 | array-uniq@^1.0.1: 141 | version "1.0.3" 142 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 143 | 144 | array-unique@^0.2.1: 145 | version "0.2.1" 146 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 147 | 148 | array.prototype.find@^2.0.1: 149 | version "2.0.4" 150 | resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.0.4.tgz#556a5c5362c08648323ddaeb9de9d14bc1864c90" 151 | dependencies: 152 | define-properties "^1.1.2" 153 | es-abstract "^1.7.0" 154 | 155 | arrify@^1.0.0, arrify@^1.0.1: 156 | version "1.0.1" 157 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 158 | 159 | asap@~2.0.3: 160 | version "2.0.5" 161 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 162 | 163 | asn1.js@^4.0.0: 164 | version "4.9.1" 165 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" 166 | dependencies: 167 | bn.js "^4.0.0" 168 | inherits "^2.0.1" 169 | minimalistic-assert "^1.0.0" 170 | 171 | asn1@~0.2.3: 172 | version "0.2.3" 173 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 174 | 175 | assert-plus@1.0.0, assert-plus@^1.0.0: 176 | version "1.0.0" 177 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 178 | 179 | assert-plus@^0.2.0: 180 | version "0.2.0" 181 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 182 | 183 | assert@^1.1.1: 184 | version "1.4.1" 185 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 186 | dependencies: 187 | util "0.10.3" 188 | 189 | ast-types-flow@0.0.7: 190 | version "0.0.7" 191 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 192 | 193 | async-each@^1.0.0: 194 | version "1.0.1" 195 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 196 | 197 | async@^1.4.0: 198 | version "1.5.2" 199 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 200 | 201 | async@^2.1.2, async@^2.1.4: 202 | version "2.3.0" 203 | resolved "https://registry.yarnpkg.com/async/-/async-2.3.0.tgz#1013d1051047dd320fe24e494d5c66ecaf6147d9" 204 | dependencies: 205 | lodash "^4.14.0" 206 | 207 | asynckit@^0.4.0: 208 | version "0.4.0" 209 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 210 | 211 | aws-sign2@~0.6.0: 212 | version "0.6.0" 213 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 214 | 215 | aws4@^1.2.1: 216 | version "1.6.0" 217 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 218 | 219 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 220 | version "6.22.0" 221 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 222 | dependencies: 223 | chalk "^1.1.0" 224 | esutils "^2.0.2" 225 | js-tokens "^3.0.0" 226 | 227 | babel-core@^6.0.0, babel-core@^6.24.1: 228 | version "6.24.1" 229 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 230 | dependencies: 231 | babel-code-frame "^6.22.0" 232 | babel-generator "^6.24.1" 233 | babel-helpers "^6.24.1" 234 | babel-messages "^6.23.0" 235 | babel-register "^6.24.1" 236 | babel-runtime "^6.22.0" 237 | babel-template "^6.24.1" 238 | babel-traverse "^6.24.1" 239 | babel-types "^6.24.1" 240 | babylon "^6.11.0" 241 | convert-source-map "^1.1.0" 242 | debug "^2.1.1" 243 | json5 "^0.5.0" 244 | lodash "^4.2.0" 245 | minimatch "^3.0.2" 246 | path-is-absolute "^1.0.0" 247 | private "^0.1.6" 248 | slash "^1.0.0" 249 | source-map "^0.5.0" 250 | 251 | babel-eslint@^7.2.2: 252 | version "7.2.3" 253 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827" 254 | dependencies: 255 | babel-code-frame "^6.22.0" 256 | babel-traverse "^6.23.1" 257 | babel-types "^6.23.0" 258 | babylon "^6.17.0" 259 | 260 | babel-generator@^6.18.0, babel-generator@^6.24.1: 261 | version "6.24.1" 262 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 263 | dependencies: 264 | babel-messages "^6.23.0" 265 | babel-runtime "^6.22.0" 266 | babel-types "^6.24.1" 267 | detect-indent "^4.0.0" 268 | jsesc "^1.3.0" 269 | lodash "^4.2.0" 270 | source-map "^0.5.0" 271 | trim-right "^1.0.1" 272 | 273 | babel-helper-bindify-decorators@^6.24.1: 274 | version "6.24.1" 275 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" 276 | dependencies: 277 | babel-runtime "^6.22.0" 278 | babel-traverse "^6.24.1" 279 | babel-types "^6.24.1" 280 | 281 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 282 | version "6.24.1" 283 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 284 | dependencies: 285 | babel-helper-explode-assignable-expression "^6.24.1" 286 | babel-runtime "^6.22.0" 287 | babel-types "^6.24.1" 288 | 289 | babel-helper-builder-react-jsx@^6.24.1: 290 | version "6.24.1" 291 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz#0ad7917e33c8d751e646daca4e77cc19377d2cbc" 292 | dependencies: 293 | babel-runtime "^6.22.0" 294 | babel-types "^6.24.1" 295 | esutils "^2.0.0" 296 | 297 | babel-helper-call-delegate@^6.24.1: 298 | version "6.24.1" 299 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 300 | dependencies: 301 | babel-helper-hoist-variables "^6.24.1" 302 | babel-runtime "^6.22.0" 303 | babel-traverse "^6.24.1" 304 | babel-types "^6.24.1" 305 | 306 | babel-helper-define-map@^6.24.1: 307 | version "6.24.1" 308 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 309 | dependencies: 310 | babel-helper-function-name "^6.24.1" 311 | babel-runtime "^6.22.0" 312 | babel-types "^6.24.1" 313 | lodash "^4.2.0" 314 | 315 | babel-helper-explode-assignable-expression@^6.24.1: 316 | version "6.24.1" 317 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 318 | dependencies: 319 | babel-runtime "^6.22.0" 320 | babel-traverse "^6.24.1" 321 | babel-types "^6.24.1" 322 | 323 | babel-helper-explode-class@^6.24.1: 324 | version "6.24.1" 325 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" 326 | dependencies: 327 | babel-helper-bindify-decorators "^6.24.1" 328 | babel-runtime "^6.22.0" 329 | babel-traverse "^6.24.1" 330 | babel-types "^6.24.1" 331 | 332 | babel-helper-function-name@^6.24.1: 333 | version "6.24.1" 334 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 335 | dependencies: 336 | babel-helper-get-function-arity "^6.24.1" 337 | babel-runtime "^6.22.0" 338 | babel-template "^6.24.1" 339 | babel-traverse "^6.24.1" 340 | babel-types "^6.24.1" 341 | 342 | babel-helper-get-function-arity@^6.24.1: 343 | version "6.24.1" 344 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 345 | dependencies: 346 | babel-runtime "^6.22.0" 347 | babel-types "^6.24.1" 348 | 349 | babel-helper-hoist-variables@^6.24.1: 350 | version "6.24.1" 351 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 352 | dependencies: 353 | babel-runtime "^6.22.0" 354 | babel-types "^6.24.1" 355 | 356 | babel-helper-optimise-call-expression@^6.24.1: 357 | version "6.24.1" 358 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 359 | dependencies: 360 | babel-runtime "^6.22.0" 361 | babel-types "^6.24.1" 362 | 363 | babel-helper-regex@^6.24.1: 364 | version "6.24.1" 365 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 366 | dependencies: 367 | babel-runtime "^6.22.0" 368 | babel-types "^6.24.1" 369 | lodash "^4.2.0" 370 | 371 | babel-helper-remap-async-to-generator@^6.24.1: 372 | version "6.24.1" 373 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 374 | dependencies: 375 | babel-helper-function-name "^6.24.1" 376 | babel-runtime "^6.22.0" 377 | babel-template "^6.24.1" 378 | babel-traverse "^6.24.1" 379 | babel-types "^6.24.1" 380 | 381 | babel-helper-replace-supers@^6.24.1: 382 | version "6.24.1" 383 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 384 | dependencies: 385 | babel-helper-optimise-call-expression "^6.24.1" 386 | babel-messages "^6.23.0" 387 | babel-runtime "^6.22.0" 388 | babel-template "^6.24.1" 389 | babel-traverse "^6.24.1" 390 | babel-types "^6.24.1" 391 | 392 | babel-helpers@^6.24.1: 393 | version "6.24.1" 394 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 395 | dependencies: 396 | babel-runtime "^6.22.0" 397 | babel-template "^6.24.1" 398 | 399 | babel-jest@^20.0.3: 400 | version "20.0.3" 401 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 402 | dependencies: 403 | babel-core "^6.0.0" 404 | babel-plugin-istanbul "^4.0.0" 405 | babel-preset-jest "^20.0.3" 406 | 407 | babel-loader@^6.4.1: 408 | version "6.4.1" 409 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.4.1.tgz#0b34112d5b0748a8dcdbf51acf6f9bd42d50b8ca" 410 | dependencies: 411 | find-cache-dir "^0.1.1" 412 | loader-utils "^0.2.16" 413 | mkdirp "^0.5.1" 414 | object-assign "^4.0.1" 415 | 416 | babel-messages@^6.23.0: 417 | version "6.23.0" 418 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 419 | dependencies: 420 | babel-runtime "^6.22.0" 421 | 422 | babel-plugin-check-es2015-constants@^6.22.0: 423 | version "6.22.0" 424 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 425 | dependencies: 426 | babel-runtime "^6.22.0" 427 | 428 | babel-plugin-istanbul@^4.0.0: 429 | version "4.1.4" 430 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 431 | dependencies: 432 | find-up "^2.1.0" 433 | istanbul-lib-instrument "^1.7.2" 434 | test-exclude "^4.1.1" 435 | 436 | babel-plugin-jest-hoist@^20.0.3: 437 | version "20.0.3" 438 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 439 | 440 | babel-plugin-syntax-async-functions@^6.8.0: 441 | version "6.13.0" 442 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 443 | 444 | babel-plugin-syntax-async-generators@^6.5.0: 445 | version "6.13.0" 446 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 447 | 448 | babel-plugin-syntax-class-constructor-call@^6.18.0: 449 | version "6.18.0" 450 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 451 | 452 | babel-plugin-syntax-class-properties@^6.8.0: 453 | version "6.13.0" 454 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 455 | 456 | babel-plugin-syntax-decorators@^6.13.0: 457 | version "6.13.0" 458 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 459 | 460 | babel-plugin-syntax-do-expressions@^6.8.0: 461 | version "6.13.0" 462 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 463 | 464 | babel-plugin-syntax-dynamic-import@^6.18.0: 465 | version "6.18.0" 466 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 467 | 468 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 469 | version "6.13.0" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 471 | 472 | babel-plugin-syntax-export-extensions@^6.8.0: 473 | version "6.13.0" 474 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 475 | 476 | babel-plugin-syntax-flow@^6.18.0: 477 | version "6.18.0" 478 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 479 | 480 | babel-plugin-syntax-function-bind@^6.8.0: 481 | version "6.13.0" 482 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 483 | 484 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 485 | version "6.18.0" 486 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 487 | 488 | babel-plugin-syntax-object-rest-spread@^6.8.0: 489 | version "6.13.0" 490 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 491 | 492 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 493 | version "6.22.0" 494 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 495 | 496 | babel-plugin-transform-async-generator-functions@^6.24.1: 497 | version "6.24.1" 498 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 499 | dependencies: 500 | babel-helper-remap-async-to-generator "^6.24.1" 501 | babel-plugin-syntax-async-generators "^6.5.0" 502 | babel-runtime "^6.22.0" 503 | 504 | babel-plugin-transform-async-to-generator@^6.24.1: 505 | version "6.24.1" 506 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 507 | dependencies: 508 | babel-helper-remap-async-to-generator "^6.24.1" 509 | babel-plugin-syntax-async-functions "^6.8.0" 510 | babel-runtime "^6.22.0" 511 | 512 | babel-plugin-transform-class-constructor-call@^6.24.1: 513 | version "6.24.1" 514 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9" 515 | dependencies: 516 | babel-plugin-syntax-class-constructor-call "^6.18.0" 517 | babel-runtime "^6.22.0" 518 | babel-template "^6.24.1" 519 | 520 | babel-plugin-transform-class-properties@^6.24.1: 521 | version "6.24.1" 522 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 523 | dependencies: 524 | babel-helper-function-name "^6.24.1" 525 | babel-plugin-syntax-class-properties "^6.8.0" 526 | babel-runtime "^6.22.0" 527 | babel-template "^6.24.1" 528 | 529 | babel-plugin-transform-decorators@^6.24.1: 530 | version "6.24.1" 531 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" 532 | dependencies: 533 | babel-helper-explode-class "^6.24.1" 534 | babel-plugin-syntax-decorators "^6.13.0" 535 | babel-runtime "^6.22.0" 536 | babel-template "^6.24.1" 537 | babel-types "^6.24.1" 538 | 539 | babel-plugin-transform-do-expressions@^6.22.0: 540 | version "6.22.0" 541 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb" 542 | dependencies: 543 | babel-plugin-syntax-do-expressions "^6.8.0" 544 | babel-runtime "^6.22.0" 545 | 546 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 547 | version "6.22.0" 548 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 549 | dependencies: 550 | babel-runtime "^6.22.0" 551 | 552 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 553 | version "6.22.0" 554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 555 | dependencies: 556 | babel-runtime "^6.22.0" 557 | 558 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 559 | version "6.24.1" 560 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 561 | dependencies: 562 | babel-runtime "^6.22.0" 563 | babel-template "^6.24.1" 564 | babel-traverse "^6.24.1" 565 | babel-types "^6.24.1" 566 | lodash "^4.2.0" 567 | 568 | babel-plugin-transform-es2015-classes@^6.24.1: 569 | version "6.24.1" 570 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 571 | dependencies: 572 | babel-helper-define-map "^6.24.1" 573 | babel-helper-function-name "^6.24.1" 574 | babel-helper-optimise-call-expression "^6.24.1" 575 | babel-helper-replace-supers "^6.24.1" 576 | babel-messages "^6.23.0" 577 | babel-runtime "^6.22.0" 578 | babel-template "^6.24.1" 579 | babel-traverse "^6.24.1" 580 | babel-types "^6.24.1" 581 | 582 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 583 | version "6.24.1" 584 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 585 | dependencies: 586 | babel-runtime "^6.22.0" 587 | babel-template "^6.24.1" 588 | 589 | babel-plugin-transform-es2015-destructuring@^6.22.0: 590 | version "6.23.0" 591 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 592 | dependencies: 593 | babel-runtime "^6.22.0" 594 | 595 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 596 | version "6.24.1" 597 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 598 | dependencies: 599 | babel-runtime "^6.22.0" 600 | babel-types "^6.24.1" 601 | 602 | babel-plugin-transform-es2015-for-of@^6.22.0: 603 | version "6.23.0" 604 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 605 | dependencies: 606 | babel-runtime "^6.22.0" 607 | 608 | babel-plugin-transform-es2015-function-name@^6.24.1: 609 | version "6.24.1" 610 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 611 | dependencies: 612 | babel-helper-function-name "^6.24.1" 613 | babel-runtime "^6.22.0" 614 | babel-types "^6.24.1" 615 | 616 | babel-plugin-transform-es2015-literals@^6.22.0: 617 | version "6.22.0" 618 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 619 | dependencies: 620 | babel-runtime "^6.22.0" 621 | 622 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 623 | version "6.24.1" 624 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 625 | dependencies: 626 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 627 | babel-runtime "^6.22.0" 628 | babel-template "^6.24.1" 629 | 630 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 631 | version "6.24.1" 632 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 633 | dependencies: 634 | babel-plugin-transform-strict-mode "^6.24.1" 635 | babel-runtime "^6.22.0" 636 | babel-template "^6.24.1" 637 | babel-types "^6.24.1" 638 | 639 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 640 | version "6.24.1" 641 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 642 | dependencies: 643 | babel-helper-hoist-variables "^6.24.1" 644 | babel-runtime "^6.22.0" 645 | babel-template "^6.24.1" 646 | 647 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 648 | version "6.24.1" 649 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 650 | dependencies: 651 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 652 | babel-runtime "^6.22.0" 653 | babel-template "^6.24.1" 654 | 655 | babel-plugin-transform-es2015-object-super@^6.24.1: 656 | version "6.24.1" 657 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 658 | dependencies: 659 | babel-helper-replace-supers "^6.24.1" 660 | babel-runtime "^6.22.0" 661 | 662 | babel-plugin-transform-es2015-parameters@^6.24.1: 663 | version "6.24.1" 664 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 665 | dependencies: 666 | babel-helper-call-delegate "^6.24.1" 667 | babel-helper-get-function-arity "^6.24.1" 668 | babel-runtime "^6.22.0" 669 | babel-template "^6.24.1" 670 | babel-traverse "^6.24.1" 671 | babel-types "^6.24.1" 672 | 673 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 674 | version "6.24.1" 675 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 676 | dependencies: 677 | babel-runtime "^6.22.0" 678 | babel-types "^6.24.1" 679 | 680 | babel-plugin-transform-es2015-spread@^6.22.0: 681 | version "6.22.0" 682 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 683 | dependencies: 684 | babel-runtime "^6.22.0" 685 | 686 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 687 | version "6.24.1" 688 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 689 | dependencies: 690 | babel-helper-regex "^6.24.1" 691 | babel-runtime "^6.22.0" 692 | babel-types "^6.24.1" 693 | 694 | babel-plugin-transform-es2015-template-literals@^6.22.0: 695 | version "6.22.0" 696 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 697 | dependencies: 698 | babel-runtime "^6.22.0" 699 | 700 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 701 | version "6.23.0" 702 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 703 | dependencies: 704 | babel-runtime "^6.22.0" 705 | 706 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 707 | version "6.24.1" 708 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 709 | dependencies: 710 | babel-helper-regex "^6.24.1" 711 | babel-runtime "^6.22.0" 712 | regexpu-core "^2.0.0" 713 | 714 | babel-plugin-transform-exponentiation-operator@^6.24.1: 715 | version "6.24.1" 716 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 717 | dependencies: 718 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 719 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 720 | babel-runtime "^6.22.0" 721 | 722 | babel-plugin-transform-export-extensions@^6.22.0: 723 | version "6.22.0" 724 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 725 | dependencies: 726 | babel-plugin-syntax-export-extensions "^6.8.0" 727 | babel-runtime "^6.22.0" 728 | 729 | babel-plugin-transform-flow-strip-types@^6.22.0: 730 | version "6.22.0" 731 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 732 | dependencies: 733 | babel-plugin-syntax-flow "^6.18.0" 734 | babel-runtime "^6.22.0" 735 | 736 | babel-plugin-transform-function-bind@^6.22.0: 737 | version "6.22.0" 738 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97" 739 | dependencies: 740 | babel-plugin-syntax-function-bind "^6.8.0" 741 | babel-runtime "^6.22.0" 742 | 743 | babel-plugin-transform-object-rest-spread@^6.22.0: 744 | version "6.23.0" 745 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 746 | dependencies: 747 | babel-plugin-syntax-object-rest-spread "^6.8.0" 748 | babel-runtime "^6.22.0" 749 | 750 | babel-plugin-transform-react-display-name@^6.23.0: 751 | version "6.23.0" 752 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37" 753 | dependencies: 754 | babel-runtime "^6.22.0" 755 | 756 | babel-plugin-transform-react-jsx-self@^6.22.0: 757 | version "6.22.0" 758 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 759 | dependencies: 760 | babel-plugin-syntax-jsx "^6.8.0" 761 | babel-runtime "^6.22.0" 762 | 763 | babel-plugin-transform-react-jsx-source@^6.22.0: 764 | version "6.22.0" 765 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 766 | dependencies: 767 | babel-plugin-syntax-jsx "^6.8.0" 768 | babel-runtime "^6.22.0" 769 | 770 | babel-plugin-transform-react-jsx@^6.24.1: 771 | version "6.24.1" 772 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 773 | dependencies: 774 | babel-helper-builder-react-jsx "^6.24.1" 775 | babel-plugin-syntax-jsx "^6.8.0" 776 | babel-runtime "^6.22.0" 777 | 778 | babel-plugin-transform-regenerator@^6.24.1: 779 | version "6.24.1" 780 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 781 | dependencies: 782 | regenerator-transform "0.9.11" 783 | 784 | babel-plugin-transform-strict-mode@^6.24.1: 785 | version "6.24.1" 786 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 787 | dependencies: 788 | babel-runtime "^6.22.0" 789 | babel-types "^6.24.1" 790 | 791 | babel-preset-es2015@^6.24.1: 792 | version "6.24.1" 793 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 794 | dependencies: 795 | babel-plugin-check-es2015-constants "^6.22.0" 796 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 797 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 798 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 799 | babel-plugin-transform-es2015-classes "^6.24.1" 800 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 801 | babel-plugin-transform-es2015-destructuring "^6.22.0" 802 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 803 | babel-plugin-transform-es2015-for-of "^6.22.0" 804 | babel-plugin-transform-es2015-function-name "^6.24.1" 805 | babel-plugin-transform-es2015-literals "^6.22.0" 806 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 807 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 808 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 809 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 810 | babel-plugin-transform-es2015-object-super "^6.24.1" 811 | babel-plugin-transform-es2015-parameters "^6.24.1" 812 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 813 | babel-plugin-transform-es2015-spread "^6.22.0" 814 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 815 | babel-plugin-transform-es2015-template-literals "^6.22.0" 816 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 817 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 818 | babel-plugin-transform-regenerator "^6.24.1" 819 | 820 | babel-preset-flow@^6.23.0: 821 | version "6.23.0" 822 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 823 | dependencies: 824 | babel-plugin-transform-flow-strip-types "^6.22.0" 825 | 826 | babel-preset-jest@^20.0.3: 827 | version "20.0.3" 828 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 829 | dependencies: 830 | babel-plugin-jest-hoist "^20.0.3" 831 | 832 | babel-preset-react@^6.24.1: 833 | version "6.24.1" 834 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 835 | dependencies: 836 | babel-plugin-syntax-jsx "^6.3.13" 837 | babel-plugin-transform-react-display-name "^6.23.0" 838 | babel-plugin-transform-react-jsx "^6.24.1" 839 | babel-plugin-transform-react-jsx-self "^6.22.0" 840 | babel-plugin-transform-react-jsx-source "^6.22.0" 841 | babel-preset-flow "^6.23.0" 842 | 843 | babel-preset-stage-0@^6.24.1: 844 | version "6.24.1" 845 | resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz#5642d15042f91384d7e5af8bc88b1db95b039e6a" 846 | dependencies: 847 | babel-plugin-transform-do-expressions "^6.22.0" 848 | babel-plugin-transform-function-bind "^6.22.0" 849 | babel-preset-stage-1 "^6.24.1" 850 | 851 | babel-preset-stage-1@^6.24.1: 852 | version "6.24.1" 853 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz#7692cd7dcd6849907e6ae4a0a85589cfb9e2bfb0" 854 | dependencies: 855 | babel-plugin-transform-class-constructor-call "^6.24.1" 856 | babel-plugin-transform-export-extensions "^6.22.0" 857 | babel-preset-stage-2 "^6.24.1" 858 | 859 | babel-preset-stage-2@^6.24.1: 860 | version "6.24.1" 861 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" 862 | dependencies: 863 | babel-plugin-syntax-dynamic-import "^6.18.0" 864 | babel-plugin-transform-class-properties "^6.24.1" 865 | babel-plugin-transform-decorators "^6.24.1" 866 | babel-preset-stage-3 "^6.24.1" 867 | 868 | babel-preset-stage-3@^6.24.1: 869 | version "6.24.1" 870 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 871 | dependencies: 872 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 873 | babel-plugin-transform-async-generator-functions "^6.24.1" 874 | babel-plugin-transform-async-to-generator "^6.24.1" 875 | babel-plugin-transform-exponentiation-operator "^6.24.1" 876 | babel-plugin-transform-object-rest-spread "^6.22.0" 877 | 878 | babel-register@^6.24.1: 879 | version "6.24.1" 880 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 881 | dependencies: 882 | babel-core "^6.24.1" 883 | babel-runtime "^6.22.0" 884 | core-js "^2.4.0" 885 | home-or-tmp "^2.0.0" 886 | lodash "^4.2.0" 887 | mkdirp "^0.5.1" 888 | source-map-support "^0.4.2" 889 | 890 | babel-runtime@^6.11.6, babel-runtime@^6.18.0, babel-runtime@^6.22.0: 891 | version "6.23.0" 892 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 893 | dependencies: 894 | core-js "^2.4.0" 895 | regenerator-runtime "^0.10.0" 896 | 897 | babel-template@^6.16.0, babel-template@^6.24.1: 898 | version "6.24.1" 899 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 900 | dependencies: 901 | babel-runtime "^6.22.0" 902 | babel-traverse "^6.24.1" 903 | babel-types "^6.24.1" 904 | babylon "^6.11.0" 905 | lodash "^4.2.0" 906 | 907 | babel-traverse@^6.18.0, babel-traverse@^6.23.1, babel-traverse@^6.24.1: 908 | version "6.24.1" 909 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 910 | dependencies: 911 | babel-code-frame "^6.22.0" 912 | babel-messages "^6.23.0" 913 | babel-runtime "^6.22.0" 914 | babel-types "^6.24.1" 915 | babylon "^6.15.0" 916 | debug "^2.2.0" 917 | globals "^9.0.0" 918 | invariant "^2.2.0" 919 | lodash "^4.2.0" 920 | 921 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1: 922 | version "6.24.1" 923 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 924 | dependencies: 925 | babel-runtime "^6.22.0" 926 | esutils "^2.0.2" 927 | lodash "^4.2.0" 928 | to-fast-properties "^1.0.1" 929 | 930 | babylon@^6.11.0, babylon@^6.15.0, babylon@^6.17.0: 931 | version "6.17.0" 932 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.0.tgz#37da948878488b9c4e3c4038893fa3314b3fc932" 933 | 934 | babylon@^6.17.4: 935 | version "6.17.4" 936 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 937 | 938 | balanced-match@^0.4.1: 939 | version "0.4.2" 940 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 941 | 942 | base64-js@^1.0.2: 943 | version "1.2.0" 944 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 945 | 946 | bcrypt-pbkdf@^1.0.0: 947 | version "1.0.1" 948 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 949 | dependencies: 950 | tweetnacl "^0.14.3" 951 | 952 | big.js@^3.1.3: 953 | version "3.1.3" 954 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 955 | 956 | binary-extensions@^1.0.0: 957 | version "1.8.0" 958 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 959 | 960 | block-stream@*: 961 | version "0.0.9" 962 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 963 | dependencies: 964 | inherits "~2.0.0" 965 | 966 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 967 | version "4.11.6" 968 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" 969 | 970 | boolbase@~1.0.0: 971 | version "1.0.0" 972 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 973 | 974 | boom@2.x.x: 975 | version "2.10.1" 976 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 977 | dependencies: 978 | hoek "2.x.x" 979 | 980 | bootstrap-class-props@^0.0.4: 981 | version "0.0.4" 982 | resolved "https://registry.yarnpkg.com/bootstrap-class-props/-/bootstrap-class-props-0.0.4.tgz#24f78abb2750a599d3e4be4dbbe4f03a93306162" 983 | dependencies: 984 | react-class-props "^0.0.5" 985 | 986 | brace-expansion@^1.0.0: 987 | version "1.1.7" 988 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 989 | dependencies: 990 | balanced-match "^0.4.1" 991 | concat-map "0.0.1" 992 | 993 | braces@^1.8.2: 994 | version "1.8.5" 995 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 996 | dependencies: 997 | expand-range "^1.8.1" 998 | preserve "^0.2.0" 999 | repeat-element "^1.1.2" 1000 | 1001 | brorand@^1.0.1: 1002 | version "1.1.0" 1003 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 1004 | 1005 | browser-resolve@^1.11.2: 1006 | version "1.11.2" 1007 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 1008 | dependencies: 1009 | resolve "1.1.7" 1010 | 1011 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 1012 | version "1.0.6" 1013 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 1014 | dependencies: 1015 | buffer-xor "^1.0.2" 1016 | cipher-base "^1.0.0" 1017 | create-hash "^1.1.0" 1018 | evp_bytestokey "^1.0.0" 1019 | inherits "^2.0.1" 1020 | 1021 | browserify-cipher@^1.0.0: 1022 | version "1.0.0" 1023 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 1024 | dependencies: 1025 | browserify-aes "^1.0.4" 1026 | browserify-des "^1.0.0" 1027 | evp_bytestokey "^1.0.0" 1028 | 1029 | browserify-des@^1.0.0: 1030 | version "1.0.0" 1031 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 1032 | dependencies: 1033 | cipher-base "^1.0.1" 1034 | des.js "^1.0.0" 1035 | inherits "^2.0.1" 1036 | 1037 | browserify-rsa@^4.0.0: 1038 | version "4.0.1" 1039 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 1040 | dependencies: 1041 | bn.js "^4.1.0" 1042 | randombytes "^2.0.1" 1043 | 1044 | browserify-sign@^4.0.0: 1045 | version "4.0.4" 1046 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 1047 | dependencies: 1048 | bn.js "^4.1.1" 1049 | browserify-rsa "^4.0.0" 1050 | create-hash "^1.1.0" 1051 | create-hmac "^1.1.2" 1052 | elliptic "^6.0.0" 1053 | inherits "^2.0.1" 1054 | parse-asn1 "^5.0.0" 1055 | 1056 | browserify-zlib@^0.1.4: 1057 | version "0.1.4" 1058 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 1059 | dependencies: 1060 | pako "~0.2.0" 1061 | 1062 | bser@1.0.2: 1063 | version "1.0.2" 1064 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 1065 | dependencies: 1066 | node-int64 "^0.4.0" 1067 | 1068 | bser@^2.0.0: 1069 | version "2.0.0" 1070 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 1071 | dependencies: 1072 | node-int64 "^0.4.0" 1073 | 1074 | buffer-shims@~1.0.0: 1075 | version "1.0.0" 1076 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 1077 | 1078 | buffer-xor@^1.0.2: 1079 | version "1.0.3" 1080 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 1081 | 1082 | buffer@^4.3.0: 1083 | version "4.9.1" 1084 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 1085 | dependencies: 1086 | base64-js "^1.0.2" 1087 | ieee754 "^1.1.4" 1088 | isarray "^1.0.0" 1089 | 1090 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 1091 | version "1.1.1" 1092 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 1093 | 1094 | builtin-status-codes@^3.0.0: 1095 | version "3.0.0" 1096 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 1097 | 1098 | caller-path@^0.1.0: 1099 | version "0.1.0" 1100 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 1101 | dependencies: 1102 | callsites "^0.2.0" 1103 | 1104 | callsites@^0.2.0: 1105 | version "0.2.0" 1106 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 1107 | 1108 | callsites@^2.0.0: 1109 | version "2.0.0" 1110 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 1111 | 1112 | camelcase@^1.0.2: 1113 | version "1.2.1" 1114 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 1115 | 1116 | camelcase@^3.0.0: 1117 | version "3.0.0" 1118 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 1119 | 1120 | caseless@~0.12.0: 1121 | version "0.12.0" 1122 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 1123 | 1124 | center-align@^0.1.1: 1125 | version "0.1.3" 1126 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 1127 | dependencies: 1128 | align-text "^0.1.3" 1129 | lazy-cache "^1.0.3" 1130 | 1131 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 1132 | version "1.1.3" 1133 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1134 | dependencies: 1135 | ansi-styles "^2.2.1" 1136 | escape-string-regexp "^1.0.2" 1137 | has-ansi "^2.0.0" 1138 | strip-ansi "^3.0.0" 1139 | supports-color "^2.0.0" 1140 | 1141 | cheerio@^0.22.0: 1142 | version "0.22.0" 1143 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" 1144 | dependencies: 1145 | css-select "~1.2.0" 1146 | dom-serializer "~0.1.0" 1147 | entities "~1.1.1" 1148 | htmlparser2 "^3.9.1" 1149 | lodash.assignin "^4.0.9" 1150 | lodash.bind "^4.1.4" 1151 | lodash.defaults "^4.0.1" 1152 | lodash.filter "^4.4.0" 1153 | lodash.flatten "^4.2.0" 1154 | lodash.foreach "^4.3.0" 1155 | lodash.map "^4.4.0" 1156 | lodash.merge "^4.4.0" 1157 | lodash.pick "^4.2.1" 1158 | lodash.reduce "^4.4.0" 1159 | lodash.reject "^4.4.0" 1160 | lodash.some "^4.4.0" 1161 | 1162 | chokidar@^1.4.3: 1163 | version "1.6.1" 1164 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 1165 | dependencies: 1166 | anymatch "^1.3.0" 1167 | async-each "^1.0.0" 1168 | glob-parent "^2.0.0" 1169 | inherits "^2.0.1" 1170 | is-binary-path "^1.0.0" 1171 | is-glob "^2.0.0" 1172 | path-is-absolute "^1.0.0" 1173 | readdirp "^2.0.0" 1174 | optionalDependencies: 1175 | fsevents "^1.0.0" 1176 | 1177 | ci-info@^1.0.0: 1178 | version "1.0.0" 1179 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 1180 | 1181 | cipher-base@^1.0.0, cipher-base@^1.0.1: 1182 | version "1.0.3" 1183 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" 1184 | dependencies: 1185 | inherits "^2.0.1" 1186 | 1187 | circular-json@^0.3.1: 1188 | version "0.3.1" 1189 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 1190 | 1191 | classnames@^2.2.5: 1192 | version "2.2.5" 1193 | resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.5.tgz#fb3801d453467649ef3603c7d61a02bd129bde6d" 1194 | 1195 | cli-cursor@^1.0.1: 1196 | version "1.0.2" 1197 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 1198 | dependencies: 1199 | restore-cursor "^1.0.1" 1200 | 1201 | cli-width@^2.0.0: 1202 | version "2.1.0" 1203 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 1204 | 1205 | cliui@^2.1.0: 1206 | version "2.1.0" 1207 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1208 | dependencies: 1209 | center-align "^0.1.1" 1210 | right-align "^0.1.1" 1211 | wordwrap "0.0.2" 1212 | 1213 | cliui@^3.2.0: 1214 | version "3.2.0" 1215 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1216 | dependencies: 1217 | string-width "^1.0.1" 1218 | strip-ansi "^3.0.1" 1219 | wrap-ansi "^2.0.0" 1220 | 1221 | co@^4.6.0: 1222 | version "4.6.0" 1223 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1224 | 1225 | code-point-at@^1.0.0: 1226 | version "1.1.0" 1227 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1228 | 1229 | color-convert@^1.0.0: 1230 | version "1.9.0" 1231 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 1232 | dependencies: 1233 | color-name "^1.1.1" 1234 | 1235 | color-name@^1.1.1: 1236 | version "1.1.2" 1237 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 1238 | 1239 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1240 | version "1.0.5" 1241 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1242 | dependencies: 1243 | delayed-stream "~1.0.0" 1244 | 1245 | commondir@^1.0.1: 1246 | version "1.0.1" 1247 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1248 | 1249 | concat-map@0.0.1: 1250 | version "0.0.1" 1251 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1252 | 1253 | concat-stream@^1.5.2: 1254 | version "1.6.0" 1255 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1256 | dependencies: 1257 | inherits "^2.0.3" 1258 | readable-stream "^2.2.2" 1259 | typedarray "^0.0.6" 1260 | 1261 | console-browserify@^1.1.0: 1262 | version "1.1.0" 1263 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 1264 | dependencies: 1265 | date-now "^0.1.4" 1266 | 1267 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1268 | version "1.1.0" 1269 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1270 | 1271 | constants-browserify@^1.0.0: 1272 | version "1.0.0" 1273 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 1274 | 1275 | contains-path@^0.1.0: 1276 | version "0.1.0" 1277 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1278 | 1279 | content-type-parser@^1.0.1: 1280 | version "1.0.1" 1281 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 1282 | 1283 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 1284 | version "1.5.0" 1285 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1286 | 1287 | core-js@^1.0.0: 1288 | version "1.2.7" 1289 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1290 | 1291 | core-js@^2.4.0: 1292 | version "2.4.1" 1293 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1294 | 1295 | core-util-is@~1.0.0: 1296 | version "1.0.2" 1297 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1298 | 1299 | create-ecdh@^4.0.0: 1300 | version "4.0.0" 1301 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 1302 | dependencies: 1303 | bn.js "^4.1.0" 1304 | elliptic "^6.0.0" 1305 | 1306 | create-hash@^1.1.0, create-hash@^1.1.1: 1307 | version "1.1.2" 1308 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad" 1309 | dependencies: 1310 | cipher-base "^1.0.1" 1311 | inherits "^2.0.1" 1312 | ripemd160 "^1.0.0" 1313 | sha.js "^2.3.6" 1314 | 1315 | create-hmac@^1.1.0, create-hmac@^1.1.2: 1316 | version "1.1.4" 1317 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" 1318 | dependencies: 1319 | create-hash "^1.1.0" 1320 | inherits "^2.0.1" 1321 | 1322 | cryptiles@2.x.x: 1323 | version "2.0.5" 1324 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1325 | dependencies: 1326 | boom "2.x.x" 1327 | 1328 | crypto-browserify@^3.11.0: 1329 | version "3.11.0" 1330 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" 1331 | dependencies: 1332 | browserify-cipher "^1.0.0" 1333 | browserify-sign "^4.0.0" 1334 | create-ecdh "^4.0.0" 1335 | create-hash "^1.1.0" 1336 | create-hmac "^1.1.0" 1337 | diffie-hellman "^5.0.0" 1338 | inherits "^2.0.1" 1339 | pbkdf2 "^3.0.3" 1340 | public-encrypt "^4.0.0" 1341 | randombytes "^2.0.0" 1342 | 1343 | css-select@~1.2.0: 1344 | version "1.2.0" 1345 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" 1346 | dependencies: 1347 | boolbase "~1.0.0" 1348 | css-what "2.1" 1349 | domutils "1.5.1" 1350 | nth-check "~1.0.1" 1351 | 1352 | css-what@2.1: 1353 | version "2.1.0" 1354 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" 1355 | 1356 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 1357 | version "0.3.2" 1358 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1359 | 1360 | "cssstyle@>= 0.2.37 < 0.3.0": 1361 | version "0.2.37" 1362 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1363 | dependencies: 1364 | cssom "0.3.x" 1365 | 1366 | d@1: 1367 | version "1.0.0" 1368 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1369 | dependencies: 1370 | es5-ext "^0.10.9" 1371 | 1372 | damerau-levenshtein@^1.0.0: 1373 | version "1.0.4" 1374 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz#03191c432cb6eea168bb77f3a55ffdccb8978514" 1375 | 1376 | dashdash@^1.12.0: 1377 | version "1.14.1" 1378 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1379 | dependencies: 1380 | assert-plus "^1.0.0" 1381 | 1382 | date-now@^0.1.4: 1383 | version "0.1.4" 1384 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1385 | 1386 | debug@2.2.0: 1387 | version "2.2.0" 1388 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1389 | dependencies: 1390 | ms "0.7.1" 1391 | 1392 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3: 1393 | version "2.6.6" 1394 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.6.tgz#a9fa6fbe9ca43cf1e79f73b75c0189cbb7d6db5a" 1395 | dependencies: 1396 | ms "0.7.3" 1397 | 1398 | decamelize@^1.0.0, decamelize@^1.1.1: 1399 | version "1.2.0" 1400 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1401 | 1402 | deep-extend@~0.4.0: 1403 | version "0.4.1" 1404 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1405 | 1406 | deep-is@~0.1.3: 1407 | version "0.1.3" 1408 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1409 | 1410 | default-require-extensions@^1.0.0: 1411 | version "1.0.0" 1412 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1413 | dependencies: 1414 | strip-bom "^2.0.0" 1415 | 1416 | define-properties@^1.1.2: 1417 | version "1.1.2" 1418 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1419 | dependencies: 1420 | foreach "^2.0.5" 1421 | object-keys "^1.0.8" 1422 | 1423 | del@^2.0.2: 1424 | version "2.2.2" 1425 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1426 | dependencies: 1427 | globby "^5.0.0" 1428 | is-path-cwd "^1.0.0" 1429 | is-path-in-cwd "^1.0.0" 1430 | object-assign "^4.0.1" 1431 | pify "^2.0.0" 1432 | pinkie-promise "^2.0.0" 1433 | rimraf "^2.2.8" 1434 | 1435 | delayed-stream@~1.0.0: 1436 | version "1.0.0" 1437 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1438 | 1439 | delegates@^1.0.0: 1440 | version "1.0.0" 1441 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1442 | 1443 | des.js@^1.0.0: 1444 | version "1.0.0" 1445 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1446 | dependencies: 1447 | inherits "^2.0.1" 1448 | minimalistic-assert "^1.0.0" 1449 | 1450 | detect-indent@^4.0.0: 1451 | version "4.0.0" 1452 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1453 | dependencies: 1454 | repeating "^2.0.0" 1455 | 1456 | diff@^3.2.0: 1457 | version "3.3.0" 1458 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.0.tgz#056695150d7aa93237ca7e378ac3b1682b7963b9" 1459 | 1460 | diffie-hellman@^5.0.0: 1461 | version "5.0.2" 1462 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1463 | dependencies: 1464 | bn.js "^4.1.0" 1465 | miller-rabin "^4.0.0" 1466 | randombytes "^2.0.0" 1467 | 1468 | doctrine@1.5.0, doctrine@^1.2.2: 1469 | version "1.5.0" 1470 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1471 | dependencies: 1472 | esutils "^2.0.2" 1473 | isarray "^1.0.0" 1474 | 1475 | doctrine@^2.0.0: 1476 | version "2.0.0" 1477 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1478 | dependencies: 1479 | esutils "^2.0.2" 1480 | isarray "^1.0.0" 1481 | 1482 | dom-helpers@^3.2.0: 1483 | version "3.2.1" 1484 | resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-3.2.1.tgz#3203e07fed217bd1f424b019735582fc37b2825a" 1485 | 1486 | dom-serializer@0, dom-serializer@~0.1.0: 1487 | version "0.1.0" 1488 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 1489 | dependencies: 1490 | domelementtype "~1.1.1" 1491 | entities "~1.1.1" 1492 | 1493 | domain-browser@^1.1.1: 1494 | version "1.1.7" 1495 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1496 | 1497 | domelementtype@1, domelementtype@^1.3.0: 1498 | version "1.3.0" 1499 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 1500 | 1501 | domelementtype@~1.1.1: 1502 | version "1.1.3" 1503 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 1504 | 1505 | domhandler@^2.3.0: 1506 | version "2.4.1" 1507 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.1.tgz#892e47000a99be55bbf3774ffea0561d8879c259" 1508 | dependencies: 1509 | domelementtype "1" 1510 | 1511 | domutils@1.5.1, domutils@^1.5.1: 1512 | version "1.5.1" 1513 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 1514 | dependencies: 1515 | dom-serializer "0" 1516 | domelementtype "1" 1517 | 1518 | ecc-jsbn@~0.1.1: 1519 | version "0.1.1" 1520 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1521 | dependencies: 1522 | jsbn "~0.1.0" 1523 | 1524 | elliptic@^6.0.0: 1525 | version "6.4.0" 1526 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 1527 | dependencies: 1528 | bn.js "^4.4.0" 1529 | brorand "^1.0.1" 1530 | hash.js "^1.0.0" 1531 | hmac-drbg "^1.0.0" 1532 | inherits "^2.0.1" 1533 | minimalistic-assert "^1.0.0" 1534 | minimalistic-crypto-utils "^1.0.0" 1535 | 1536 | emoji-regex@^6.1.0: 1537 | version "6.4.2" 1538 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.4.2.tgz#a30b6fee353d406d96cfb9fa765bdc82897eff6e" 1539 | 1540 | emojis-list@^2.0.0: 1541 | version "2.1.0" 1542 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1543 | 1544 | encoding@^0.1.11: 1545 | version "0.1.12" 1546 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1547 | dependencies: 1548 | iconv-lite "~0.4.13" 1549 | 1550 | enhanced-resolve@^3.0.0: 1551 | version "3.1.0" 1552 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.1.0.tgz#9f4b626f577245edcf4b2ad83d86e17f4f421dec" 1553 | dependencies: 1554 | graceful-fs "^4.1.2" 1555 | memory-fs "^0.4.0" 1556 | object-assign "^4.0.1" 1557 | tapable "^0.2.5" 1558 | 1559 | entities@^1.1.1, entities@~1.1.1: 1560 | version "1.1.1" 1561 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 1562 | 1563 | enzyme@^2.9.1: 1564 | version "2.9.1" 1565 | resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-2.9.1.tgz#07d5ce691241240fb817bf2c4b18d6e530240df6" 1566 | dependencies: 1567 | cheerio "^0.22.0" 1568 | function.prototype.name "^1.0.0" 1569 | is-subset "^0.1.1" 1570 | lodash "^4.17.4" 1571 | object-is "^1.0.1" 1572 | object.assign "^4.0.4" 1573 | object.entries "^1.0.4" 1574 | object.values "^1.0.4" 1575 | prop-types "^15.5.10" 1576 | uuid "^3.0.1" 1577 | 1578 | errno@^0.1.3, errno@^0.1.4: 1579 | version "0.1.4" 1580 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1581 | dependencies: 1582 | prr "~0.0.0" 1583 | 1584 | error-ex@^1.2.0: 1585 | version "1.3.1" 1586 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1587 | dependencies: 1588 | is-arrayish "^0.2.1" 1589 | 1590 | es-abstract@^1.6.1, es-abstract@^1.7.0: 1591 | version "1.7.0" 1592 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 1593 | dependencies: 1594 | es-to-primitive "^1.1.1" 1595 | function-bind "^1.1.0" 1596 | is-callable "^1.1.3" 1597 | is-regex "^1.0.3" 1598 | 1599 | es-to-primitive@^1.1.1: 1600 | version "1.1.1" 1601 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1602 | dependencies: 1603 | is-callable "^1.1.1" 1604 | is-date-object "^1.0.1" 1605 | is-symbol "^1.0.1" 1606 | 1607 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 1608 | version "0.10.15" 1609 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.15.tgz#c330a5934c1ee21284a7c081a86e5fd937c91ea6" 1610 | dependencies: 1611 | es6-iterator "2" 1612 | es6-symbol "~3.1" 1613 | 1614 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1615 | version "2.0.1" 1616 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1617 | dependencies: 1618 | d "1" 1619 | es5-ext "^0.10.14" 1620 | es6-symbol "^3.1" 1621 | 1622 | es6-map@^0.1.3: 1623 | version "0.1.5" 1624 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1625 | dependencies: 1626 | d "1" 1627 | es5-ext "~0.10.14" 1628 | es6-iterator "~2.0.1" 1629 | es6-set "~0.1.5" 1630 | es6-symbol "~3.1.1" 1631 | event-emitter "~0.3.5" 1632 | 1633 | es6-set@~0.1.5: 1634 | version "0.1.5" 1635 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1636 | dependencies: 1637 | d "1" 1638 | es5-ext "~0.10.14" 1639 | es6-iterator "~2.0.1" 1640 | es6-symbol "3.1.1" 1641 | event-emitter "~0.3.5" 1642 | 1643 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1644 | version "3.1.1" 1645 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1646 | dependencies: 1647 | d "1" 1648 | es5-ext "~0.10.14" 1649 | 1650 | es6-weak-map@^2.0.1: 1651 | version "2.0.2" 1652 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1653 | dependencies: 1654 | d "1" 1655 | es5-ext "^0.10.14" 1656 | es6-iterator "^2.0.1" 1657 | es6-symbol "^3.1.1" 1658 | 1659 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1660 | version "1.0.5" 1661 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1662 | 1663 | escodegen@^1.6.1: 1664 | version "1.8.1" 1665 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1666 | dependencies: 1667 | esprima "^2.7.1" 1668 | estraverse "^1.9.1" 1669 | esutils "^2.0.2" 1670 | optionator "^0.8.1" 1671 | optionalDependencies: 1672 | source-map "~0.2.0" 1673 | 1674 | escope@^3.6.0: 1675 | version "3.6.0" 1676 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1677 | dependencies: 1678 | es6-map "^0.1.3" 1679 | es6-weak-map "^2.0.1" 1680 | esrecurse "^4.1.0" 1681 | estraverse "^4.1.1" 1682 | 1683 | eslint-config-airbnb-base@^11.1.0: 1684 | version "11.1.3" 1685 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.1.3.tgz#0e8db71514fa36b977fbcf977c01edcf863e0cf0" 1686 | 1687 | eslint-config-airbnb@^14.1.0: 1688 | version "14.1.0" 1689 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-14.1.0.tgz#355d290040bbf8e00bf8b4b19f4b70cbe7c2317f" 1690 | dependencies: 1691 | eslint-config-airbnb-base "^11.1.0" 1692 | 1693 | eslint-import-resolver-node@^0.2.0: 1694 | version "0.2.3" 1695 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 1696 | dependencies: 1697 | debug "^2.2.0" 1698 | object-assign "^4.0.1" 1699 | resolve "^1.1.6" 1700 | 1701 | eslint-module-utils@^2.0.0: 1702 | version "2.0.0" 1703 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce" 1704 | dependencies: 1705 | debug "2.2.0" 1706 | pkg-dir "^1.0.0" 1707 | 1708 | eslint-plugin-babel@^4.1.1: 1709 | version "4.1.1" 1710 | resolved "https://registry.yarnpkg.com/eslint-plugin-babel/-/eslint-plugin-babel-4.1.1.tgz#ef285c87039b67beb3bbd227f5b0eed4fb376b87" 1711 | 1712 | eslint-plugin-import@^2.2.0: 1713 | version "2.2.0" 1714 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e" 1715 | dependencies: 1716 | builtin-modules "^1.1.1" 1717 | contains-path "^0.1.0" 1718 | debug "^2.2.0" 1719 | doctrine "1.5.0" 1720 | eslint-import-resolver-node "^0.2.0" 1721 | eslint-module-utils "^2.0.0" 1722 | has "^1.0.1" 1723 | lodash.cond "^4.3.0" 1724 | minimatch "^3.0.3" 1725 | pkg-up "^1.0.0" 1726 | 1727 | eslint-plugin-jasmine@^2.7.1: 1728 | version "2.7.1" 1729 | resolved "https://registry.yarnpkg.com/eslint-plugin-jasmine/-/eslint-plugin-jasmine-2.7.1.tgz#bfa10f54653aec9bde96b8d7aae3bdd9474312db" 1730 | 1731 | eslint-plugin-jsx-a11y@^4.0.0: 1732 | version "4.0.0" 1733 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-4.0.0.tgz#779bb0fe7b08da564a422624911de10061e048ee" 1734 | dependencies: 1735 | aria-query "^0.3.0" 1736 | ast-types-flow "0.0.7" 1737 | damerau-levenshtein "^1.0.0" 1738 | emoji-regex "^6.1.0" 1739 | jsx-ast-utils "^1.0.0" 1740 | object-assign "^4.0.1" 1741 | 1742 | eslint-plugin-react@^6.10.3: 1743 | version "6.10.3" 1744 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.10.3.tgz#c5435beb06774e12c7db2f6abaddcbf900cd3f78" 1745 | dependencies: 1746 | array.prototype.find "^2.0.1" 1747 | doctrine "^1.2.2" 1748 | has "^1.0.1" 1749 | jsx-ast-utils "^1.3.4" 1750 | object.assign "^4.0.4" 1751 | 1752 | eslint@^3.19.0: 1753 | version "3.19.0" 1754 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 1755 | dependencies: 1756 | babel-code-frame "^6.16.0" 1757 | chalk "^1.1.3" 1758 | concat-stream "^1.5.2" 1759 | debug "^2.1.1" 1760 | doctrine "^2.0.0" 1761 | escope "^3.6.0" 1762 | espree "^3.4.0" 1763 | esquery "^1.0.0" 1764 | estraverse "^4.2.0" 1765 | esutils "^2.0.2" 1766 | file-entry-cache "^2.0.0" 1767 | glob "^7.0.3" 1768 | globals "^9.14.0" 1769 | ignore "^3.2.0" 1770 | imurmurhash "^0.1.4" 1771 | inquirer "^0.12.0" 1772 | is-my-json-valid "^2.10.0" 1773 | is-resolvable "^1.0.0" 1774 | js-yaml "^3.5.1" 1775 | json-stable-stringify "^1.0.0" 1776 | levn "^0.3.0" 1777 | lodash "^4.0.0" 1778 | mkdirp "^0.5.0" 1779 | natural-compare "^1.4.0" 1780 | optionator "^0.8.2" 1781 | path-is-inside "^1.0.1" 1782 | pluralize "^1.2.1" 1783 | progress "^1.1.8" 1784 | require-uncached "^1.0.2" 1785 | shelljs "^0.7.5" 1786 | strip-bom "^3.0.0" 1787 | strip-json-comments "~2.0.1" 1788 | table "^3.7.8" 1789 | text-table "~0.2.0" 1790 | user-home "^2.0.0" 1791 | 1792 | espree@^3.4.0: 1793 | version "3.4.2" 1794 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.2.tgz#38dbdedbedc95b8961a1fbf04734a8f6a9c8c592" 1795 | dependencies: 1796 | acorn "^5.0.1" 1797 | acorn-jsx "^3.0.0" 1798 | 1799 | esprima@^2.7.1: 1800 | version "2.7.3" 1801 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1802 | 1803 | esprima@^3.1.1: 1804 | version "3.1.3" 1805 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1806 | 1807 | esquery@^1.0.0: 1808 | version "1.0.0" 1809 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1810 | dependencies: 1811 | estraverse "^4.0.0" 1812 | 1813 | esrecurse@^4.1.0: 1814 | version "4.1.0" 1815 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1816 | dependencies: 1817 | estraverse "~4.1.0" 1818 | object-assign "^4.0.1" 1819 | 1820 | estraverse@^1.9.1: 1821 | version "1.9.3" 1822 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1823 | 1824 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1825 | version "4.2.0" 1826 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1827 | 1828 | estraverse@~4.1.0: 1829 | version "4.1.1" 1830 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1831 | 1832 | esutils@^2.0.0, esutils@^2.0.2: 1833 | version "2.0.2" 1834 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1835 | 1836 | event-emitter@~0.3.5: 1837 | version "0.3.5" 1838 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1839 | dependencies: 1840 | d "1" 1841 | es5-ext "~0.10.14" 1842 | 1843 | events@^1.0.0: 1844 | version "1.1.1" 1845 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1846 | 1847 | evp_bytestokey@^1.0.0: 1848 | version "1.0.0" 1849 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" 1850 | dependencies: 1851 | create-hash "^1.1.1" 1852 | 1853 | exec-sh@^0.2.0: 1854 | version "0.2.0" 1855 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1856 | dependencies: 1857 | merge "^1.1.3" 1858 | 1859 | exit-hook@^1.0.0: 1860 | version "1.1.1" 1861 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1862 | 1863 | expand-brackets@^0.1.4: 1864 | version "0.1.5" 1865 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1866 | dependencies: 1867 | is-posix-bracket "^0.1.0" 1868 | 1869 | expand-range@^1.8.1: 1870 | version "1.8.2" 1871 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1872 | dependencies: 1873 | fill-range "^2.1.0" 1874 | 1875 | extend@~3.0.0: 1876 | version "3.0.1" 1877 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1878 | 1879 | extglob@^0.3.1: 1880 | version "0.3.2" 1881 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1882 | dependencies: 1883 | is-extglob "^1.0.0" 1884 | 1885 | extsprintf@1.0.2: 1886 | version "1.0.2" 1887 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1888 | 1889 | fast-levenshtein@~2.0.4: 1890 | version "2.0.6" 1891 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1892 | 1893 | fb-watchman@^1.8.0: 1894 | version "1.9.2" 1895 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1896 | dependencies: 1897 | bser "1.0.2" 1898 | 1899 | fb-watchman@^2.0.0: 1900 | version "2.0.0" 1901 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1902 | dependencies: 1903 | bser "^2.0.0" 1904 | 1905 | fbjs@^0.8.9: 1906 | version "0.8.12" 1907 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.12.tgz#10b5d92f76d45575fd63a217d4ea02bea2f8ed04" 1908 | dependencies: 1909 | core-js "^1.0.0" 1910 | isomorphic-fetch "^2.1.1" 1911 | loose-envify "^1.0.0" 1912 | object-assign "^4.1.0" 1913 | promise "^7.1.1" 1914 | setimmediate "^1.0.5" 1915 | ua-parser-js "^0.7.9" 1916 | 1917 | figures@^1.3.5: 1918 | version "1.7.0" 1919 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1920 | dependencies: 1921 | escape-string-regexp "^1.0.5" 1922 | object-assign "^4.1.0" 1923 | 1924 | file-entry-cache@^2.0.0: 1925 | version "2.0.0" 1926 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1927 | dependencies: 1928 | flat-cache "^1.2.1" 1929 | object-assign "^4.0.1" 1930 | 1931 | filename-regex@^2.0.0: 1932 | version "2.0.1" 1933 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1934 | 1935 | fileset@^2.0.2: 1936 | version "2.0.3" 1937 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1938 | dependencies: 1939 | glob "^7.0.3" 1940 | minimatch "^3.0.3" 1941 | 1942 | fill-range@^2.1.0: 1943 | version "2.2.3" 1944 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1945 | dependencies: 1946 | is-number "^2.1.0" 1947 | isobject "^2.0.0" 1948 | randomatic "^1.1.3" 1949 | repeat-element "^1.1.2" 1950 | repeat-string "^1.5.2" 1951 | 1952 | find-cache-dir@^0.1.1: 1953 | version "0.1.1" 1954 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1955 | dependencies: 1956 | commondir "^1.0.1" 1957 | mkdirp "^0.5.1" 1958 | pkg-dir "^1.0.0" 1959 | 1960 | find-up@^1.0.0: 1961 | version "1.1.2" 1962 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1963 | dependencies: 1964 | path-exists "^2.0.0" 1965 | pinkie-promise "^2.0.0" 1966 | 1967 | find-up@^2.1.0: 1968 | version "2.1.0" 1969 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1970 | dependencies: 1971 | locate-path "^2.0.0" 1972 | 1973 | flat-cache@^1.2.1: 1974 | version "1.2.2" 1975 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1976 | dependencies: 1977 | circular-json "^0.3.1" 1978 | del "^2.0.2" 1979 | graceful-fs "^4.1.2" 1980 | write "^0.2.1" 1981 | 1982 | for-in@^1.0.1: 1983 | version "1.0.2" 1984 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1985 | 1986 | for-own@^0.1.4: 1987 | version "0.1.5" 1988 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1989 | dependencies: 1990 | for-in "^1.0.1" 1991 | 1992 | foreach@^2.0.5: 1993 | version "2.0.5" 1994 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1995 | 1996 | forever-agent@~0.6.1: 1997 | version "0.6.1" 1998 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1999 | 2000 | form-data@~2.1.1: 2001 | version "2.1.4" 2002 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 2003 | dependencies: 2004 | asynckit "^0.4.0" 2005 | combined-stream "^1.0.5" 2006 | mime-types "^2.1.12" 2007 | 2008 | fs.realpath@^1.0.0: 2009 | version "1.0.0" 2010 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 2011 | 2012 | fsevents@^1.0.0: 2013 | version "1.1.1" 2014 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 2015 | dependencies: 2016 | nan "^2.3.0" 2017 | node-pre-gyp "^0.6.29" 2018 | 2019 | fstream-ignore@^1.0.5: 2020 | version "1.0.5" 2021 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 2022 | dependencies: 2023 | fstream "^1.0.0" 2024 | inherits "2" 2025 | minimatch "^3.0.0" 2026 | 2027 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 2028 | version "1.0.11" 2029 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 2030 | dependencies: 2031 | graceful-fs "^4.1.2" 2032 | inherits "~2.0.0" 2033 | mkdirp ">=0.5 0" 2034 | rimraf "2" 2035 | 2036 | function-bind@^1.0.2, function-bind@^1.1.0: 2037 | version "1.1.0" 2038 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 2039 | 2040 | function.prototype.name@^1.0.0: 2041 | version "1.0.0" 2042 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.0.0.tgz#5f523ca64e491a5f95aba80cc1e391080a14482e" 2043 | dependencies: 2044 | define-properties "^1.1.2" 2045 | function-bind "^1.1.0" 2046 | is-callable "^1.1.2" 2047 | 2048 | gauge@~2.7.1: 2049 | version "2.7.4" 2050 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 2051 | dependencies: 2052 | aproba "^1.0.3" 2053 | console-control-strings "^1.0.0" 2054 | has-unicode "^2.0.0" 2055 | object-assign "^4.1.0" 2056 | signal-exit "^3.0.0" 2057 | string-width "^1.0.1" 2058 | strip-ansi "^3.0.1" 2059 | wide-align "^1.1.0" 2060 | 2061 | generate-function@^2.0.0: 2062 | version "2.0.0" 2063 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 2064 | 2065 | generate-object-property@^1.1.0: 2066 | version "1.2.0" 2067 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 2068 | dependencies: 2069 | is-property "^1.0.0" 2070 | 2071 | get-caller-file@^1.0.1: 2072 | version "1.0.2" 2073 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 2074 | 2075 | getpass@^0.1.1: 2076 | version "0.1.7" 2077 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 2078 | dependencies: 2079 | assert-plus "^1.0.0" 2080 | 2081 | glob-base@^0.3.0: 2082 | version "0.3.0" 2083 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 2084 | dependencies: 2085 | glob-parent "^2.0.0" 2086 | is-glob "^2.0.0" 2087 | 2088 | glob-parent@^2.0.0: 2089 | version "2.0.0" 2090 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 2091 | dependencies: 2092 | is-glob "^2.0.0" 2093 | 2094 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: 2095 | version "7.1.1" 2096 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 2097 | dependencies: 2098 | fs.realpath "^1.0.0" 2099 | inflight "^1.0.4" 2100 | inherits "2" 2101 | minimatch "^3.0.2" 2102 | once "^1.3.0" 2103 | path-is-absolute "^1.0.0" 2104 | 2105 | globals@^9.0.0, globals@^9.14.0: 2106 | version "9.17.0" 2107 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 2108 | 2109 | globby@^5.0.0: 2110 | version "5.0.0" 2111 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 2112 | dependencies: 2113 | array-union "^1.0.1" 2114 | arrify "^1.0.0" 2115 | glob "^7.0.3" 2116 | object-assign "^4.0.1" 2117 | pify "^2.0.0" 2118 | pinkie-promise "^2.0.0" 2119 | 2120 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 2121 | version "4.1.11" 2122 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 2123 | 2124 | growly@^1.3.0: 2125 | version "1.3.0" 2126 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 2127 | 2128 | handlebars@^4.0.3: 2129 | version "4.0.10" 2130 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 2131 | dependencies: 2132 | async "^1.4.0" 2133 | optimist "^0.6.1" 2134 | source-map "^0.4.4" 2135 | optionalDependencies: 2136 | uglify-js "^2.6" 2137 | 2138 | har-schema@^1.0.5: 2139 | version "1.0.5" 2140 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 2141 | 2142 | har-validator@~4.2.1: 2143 | version "4.2.1" 2144 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 2145 | dependencies: 2146 | ajv "^4.9.1" 2147 | har-schema "^1.0.5" 2148 | 2149 | has-ansi@^2.0.0: 2150 | version "2.0.0" 2151 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 2152 | dependencies: 2153 | ansi-regex "^2.0.0" 2154 | 2155 | has-flag@^1.0.0: 2156 | version "1.0.0" 2157 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 2158 | 2159 | has-unicode@^2.0.0: 2160 | version "2.0.1" 2161 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 2162 | 2163 | has@^1.0.1: 2164 | version "1.0.1" 2165 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 2166 | dependencies: 2167 | function-bind "^1.0.2" 2168 | 2169 | hash.js@^1.0.0, hash.js@^1.0.3: 2170 | version "1.0.3" 2171 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" 2172 | dependencies: 2173 | inherits "^2.0.1" 2174 | 2175 | hawk@~3.1.3: 2176 | version "3.1.3" 2177 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 2178 | dependencies: 2179 | boom "2.x.x" 2180 | cryptiles "2.x.x" 2181 | hoek "2.x.x" 2182 | sntp "1.x.x" 2183 | 2184 | hmac-drbg@^1.0.0: 2185 | version "1.0.1" 2186 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 2187 | dependencies: 2188 | hash.js "^1.0.3" 2189 | minimalistic-assert "^1.0.0" 2190 | minimalistic-crypto-utils "^1.0.1" 2191 | 2192 | hoek@2.x.x: 2193 | version "2.16.3" 2194 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 2195 | 2196 | home-or-tmp@^2.0.0: 2197 | version "2.0.0" 2198 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 2199 | dependencies: 2200 | os-homedir "^1.0.0" 2201 | os-tmpdir "^1.0.1" 2202 | 2203 | hosted-git-info@^2.1.4: 2204 | version "2.4.2" 2205 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 2206 | 2207 | html-encoding-sniffer@^1.0.1: 2208 | version "1.0.1" 2209 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 2210 | dependencies: 2211 | whatwg-encoding "^1.0.1" 2212 | 2213 | htmlparser2@^3.9.1: 2214 | version "3.9.2" 2215 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338" 2216 | dependencies: 2217 | domelementtype "^1.3.0" 2218 | domhandler "^2.3.0" 2219 | domutils "^1.5.1" 2220 | entities "^1.1.1" 2221 | inherits "^2.0.1" 2222 | readable-stream "^2.0.2" 2223 | 2224 | http-signature@~1.1.0: 2225 | version "1.1.1" 2226 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 2227 | dependencies: 2228 | assert-plus "^0.2.0" 2229 | jsprim "^1.2.2" 2230 | sshpk "^1.7.0" 2231 | 2232 | https-browserify@0.0.1: 2233 | version "0.0.1" 2234 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 2235 | 2236 | iconv-lite@0.4.13: 2237 | version "0.4.13" 2238 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 2239 | 2240 | iconv-lite@~0.4.13: 2241 | version "0.4.16" 2242 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.16.tgz#65de3beeb39e2960d67f049f1634ffcbcde9014b" 2243 | 2244 | ieee754@^1.1.4: 2245 | version "1.1.8" 2246 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 2247 | 2248 | ignore@^3.2.0: 2249 | version "3.2.7" 2250 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.7.tgz#4810ca5f1d8eca5595213a34b94f2eb4ed926bbd" 2251 | 2252 | imurmurhash@^0.1.4: 2253 | version "0.1.4" 2254 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2255 | 2256 | indexof@0.0.1: 2257 | version "0.0.1" 2258 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 2259 | 2260 | inflight@^1.0.4: 2261 | version "1.0.6" 2262 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2263 | dependencies: 2264 | once "^1.3.0" 2265 | wrappy "1" 2266 | 2267 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 2268 | version "2.0.3" 2269 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2270 | 2271 | inherits@2.0.1: 2272 | version "2.0.1" 2273 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 2274 | 2275 | ini@~1.3.0: 2276 | version "1.3.4" 2277 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 2278 | 2279 | inquirer@^0.12.0: 2280 | version "0.12.0" 2281 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 2282 | dependencies: 2283 | ansi-escapes "^1.1.0" 2284 | ansi-regex "^2.0.0" 2285 | chalk "^1.0.0" 2286 | cli-cursor "^1.0.1" 2287 | cli-width "^2.0.0" 2288 | figures "^1.3.5" 2289 | lodash "^4.3.0" 2290 | readline2 "^1.0.1" 2291 | run-async "^0.1.0" 2292 | rx-lite "^3.1.2" 2293 | string-width "^1.0.1" 2294 | strip-ansi "^3.0.0" 2295 | through "^2.3.6" 2296 | 2297 | interpret@^1.0.0: 2298 | version "1.0.3" 2299 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 2300 | 2301 | invariant@^2.1.0, invariant@^2.2.0, invariant@^2.2.1: 2302 | version "2.2.2" 2303 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 2304 | dependencies: 2305 | loose-envify "^1.0.0" 2306 | 2307 | invert-kv@^1.0.0: 2308 | version "1.0.0" 2309 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2310 | 2311 | is-arrayish@^0.2.1: 2312 | version "0.2.1" 2313 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2314 | 2315 | is-binary-path@^1.0.0: 2316 | version "1.0.1" 2317 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2318 | dependencies: 2319 | binary-extensions "^1.0.0" 2320 | 2321 | is-buffer@^1.1.5: 2322 | version "1.1.5" 2323 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 2324 | 2325 | is-builtin-module@^1.0.0: 2326 | version "1.0.0" 2327 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2328 | dependencies: 2329 | builtin-modules "^1.0.0" 2330 | 2331 | is-callable@^1.1.1, is-callable@^1.1.2, is-callable@^1.1.3: 2332 | version "1.1.3" 2333 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 2334 | 2335 | is-ci@^1.0.10: 2336 | version "1.0.10" 2337 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 2338 | dependencies: 2339 | ci-info "^1.0.0" 2340 | 2341 | is-date-object@^1.0.1: 2342 | version "1.0.1" 2343 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 2344 | 2345 | is-dotfile@^1.0.0: 2346 | version "1.0.2" 2347 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 2348 | 2349 | is-equal-shallow@^0.1.3: 2350 | version "0.1.3" 2351 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2352 | dependencies: 2353 | is-primitive "^2.0.0" 2354 | 2355 | is-extendable@^0.1.1: 2356 | version "0.1.1" 2357 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2358 | 2359 | is-extglob@^1.0.0: 2360 | version "1.0.0" 2361 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2362 | 2363 | is-finite@^1.0.0: 2364 | version "1.0.2" 2365 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2366 | dependencies: 2367 | number-is-nan "^1.0.0" 2368 | 2369 | is-fullwidth-code-point@^1.0.0: 2370 | version "1.0.0" 2371 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2372 | dependencies: 2373 | number-is-nan "^1.0.0" 2374 | 2375 | is-fullwidth-code-point@^2.0.0: 2376 | version "2.0.0" 2377 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2378 | 2379 | is-glob@^2.0.0, is-glob@^2.0.1: 2380 | version "2.0.1" 2381 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2382 | dependencies: 2383 | is-extglob "^1.0.0" 2384 | 2385 | is-my-json-valid@^2.10.0: 2386 | version "2.16.0" 2387 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 2388 | dependencies: 2389 | generate-function "^2.0.0" 2390 | generate-object-property "^1.1.0" 2391 | jsonpointer "^4.0.0" 2392 | xtend "^4.0.0" 2393 | 2394 | is-number@^2.0.2, is-number@^2.1.0: 2395 | version "2.1.0" 2396 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2397 | dependencies: 2398 | kind-of "^3.0.2" 2399 | 2400 | is-path-cwd@^1.0.0: 2401 | version "1.0.0" 2402 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2403 | 2404 | is-path-in-cwd@^1.0.0: 2405 | version "1.0.0" 2406 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2407 | dependencies: 2408 | is-path-inside "^1.0.0" 2409 | 2410 | is-path-inside@^1.0.0: 2411 | version "1.0.0" 2412 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2413 | dependencies: 2414 | path-is-inside "^1.0.1" 2415 | 2416 | is-posix-bracket@^0.1.0: 2417 | version "0.1.1" 2418 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2419 | 2420 | is-primitive@^2.0.0: 2421 | version "2.0.0" 2422 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2423 | 2424 | is-property@^1.0.0: 2425 | version "1.0.2" 2426 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2427 | 2428 | is-regex@^1.0.3: 2429 | version "1.0.4" 2430 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2431 | dependencies: 2432 | has "^1.0.1" 2433 | 2434 | is-resolvable@^1.0.0: 2435 | version "1.0.0" 2436 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2437 | dependencies: 2438 | tryit "^1.0.1" 2439 | 2440 | is-stream@^1.0.1: 2441 | version "1.1.0" 2442 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2443 | 2444 | is-subset@^0.1.1: 2445 | version "0.1.1" 2446 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" 2447 | 2448 | is-symbol@^1.0.1: 2449 | version "1.0.1" 2450 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 2451 | 2452 | is-typedarray@~1.0.0: 2453 | version "1.0.0" 2454 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2455 | 2456 | is-utf8@^0.2.0: 2457 | version "0.2.1" 2458 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2459 | 2460 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2461 | version "1.0.0" 2462 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2463 | 2464 | isexe@^2.0.0: 2465 | version "2.0.0" 2466 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2467 | 2468 | isobject@^2.0.0: 2469 | version "2.1.0" 2470 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2471 | dependencies: 2472 | isarray "1.0.0" 2473 | 2474 | isomorphic-fetch@^2.1.1: 2475 | version "2.2.1" 2476 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 2477 | dependencies: 2478 | node-fetch "^1.0.1" 2479 | whatwg-fetch ">=0.10.0" 2480 | 2481 | isstream@~0.1.2: 2482 | version "0.1.2" 2483 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2484 | 2485 | istanbul-api@^1.1.1: 2486 | version "1.1.10" 2487 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.10.tgz#f27e5e7125c8de13f6a80661af78f512e5439b2b" 2488 | dependencies: 2489 | async "^2.1.4" 2490 | fileset "^2.0.2" 2491 | istanbul-lib-coverage "^1.1.1" 2492 | istanbul-lib-hook "^1.0.7" 2493 | istanbul-lib-instrument "^1.7.3" 2494 | istanbul-lib-report "^1.1.1" 2495 | istanbul-lib-source-maps "^1.2.1" 2496 | istanbul-reports "^1.1.1" 2497 | js-yaml "^3.7.0" 2498 | mkdirp "^0.5.1" 2499 | once "^1.4.0" 2500 | 2501 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 2502 | version "1.1.1" 2503 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 2504 | 2505 | istanbul-lib-hook@^1.0.7: 2506 | version "1.0.7" 2507 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 2508 | dependencies: 2509 | append-transform "^0.4.0" 2510 | 2511 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.7.3: 2512 | version "1.7.3" 2513 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.3.tgz#925b239163eabdd68cc4048f52c2fa4f899ecfa7" 2514 | dependencies: 2515 | babel-generator "^6.18.0" 2516 | babel-template "^6.16.0" 2517 | babel-traverse "^6.18.0" 2518 | babel-types "^6.18.0" 2519 | babylon "^6.17.4" 2520 | istanbul-lib-coverage "^1.1.1" 2521 | semver "^5.3.0" 2522 | 2523 | istanbul-lib-report@^1.1.1: 2524 | version "1.1.1" 2525 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 2526 | dependencies: 2527 | istanbul-lib-coverage "^1.1.1" 2528 | mkdirp "^0.5.1" 2529 | path-parse "^1.0.5" 2530 | supports-color "^3.1.2" 2531 | 2532 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 2533 | version "1.2.1" 2534 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 2535 | dependencies: 2536 | debug "^2.6.3" 2537 | istanbul-lib-coverage "^1.1.1" 2538 | mkdirp "^0.5.1" 2539 | rimraf "^2.6.1" 2540 | source-map "^0.5.3" 2541 | 2542 | istanbul-reports@^1.1.1: 2543 | version "1.1.1" 2544 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.1.tgz#042be5c89e175bc3f86523caab29c014e77fee4e" 2545 | dependencies: 2546 | handlebars "^4.0.3" 2547 | 2548 | jest-changed-files@^20.0.3: 2549 | version "20.0.3" 2550 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 2551 | 2552 | jest-cli@^20.0.4: 2553 | version "20.0.4" 2554 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 2555 | dependencies: 2556 | ansi-escapes "^1.4.0" 2557 | callsites "^2.0.0" 2558 | chalk "^1.1.3" 2559 | graceful-fs "^4.1.11" 2560 | is-ci "^1.0.10" 2561 | istanbul-api "^1.1.1" 2562 | istanbul-lib-coverage "^1.0.1" 2563 | istanbul-lib-instrument "^1.4.2" 2564 | istanbul-lib-source-maps "^1.1.0" 2565 | jest-changed-files "^20.0.3" 2566 | jest-config "^20.0.4" 2567 | jest-docblock "^20.0.3" 2568 | jest-environment-jsdom "^20.0.3" 2569 | jest-haste-map "^20.0.4" 2570 | jest-jasmine2 "^20.0.4" 2571 | jest-message-util "^20.0.3" 2572 | jest-regex-util "^20.0.3" 2573 | jest-resolve-dependencies "^20.0.3" 2574 | jest-runtime "^20.0.4" 2575 | jest-snapshot "^20.0.3" 2576 | jest-util "^20.0.3" 2577 | micromatch "^2.3.11" 2578 | node-notifier "^5.0.2" 2579 | pify "^2.3.0" 2580 | slash "^1.0.0" 2581 | string-length "^1.0.1" 2582 | throat "^3.0.0" 2583 | which "^1.2.12" 2584 | worker-farm "^1.3.1" 2585 | yargs "^7.0.2" 2586 | 2587 | jest-config@^20.0.4: 2588 | version "20.0.4" 2589 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 2590 | dependencies: 2591 | chalk "^1.1.3" 2592 | glob "^7.1.1" 2593 | jest-environment-jsdom "^20.0.3" 2594 | jest-environment-node "^20.0.3" 2595 | jest-jasmine2 "^20.0.4" 2596 | jest-matcher-utils "^20.0.3" 2597 | jest-regex-util "^20.0.3" 2598 | jest-resolve "^20.0.4" 2599 | jest-validate "^20.0.3" 2600 | pretty-format "^20.0.3" 2601 | 2602 | jest-diff@^20.0.3: 2603 | version "20.0.3" 2604 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 2605 | dependencies: 2606 | chalk "^1.1.3" 2607 | diff "^3.2.0" 2608 | jest-matcher-utils "^20.0.3" 2609 | pretty-format "^20.0.3" 2610 | 2611 | jest-docblock@^20.0.3: 2612 | version "20.0.3" 2613 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 2614 | 2615 | jest-environment-jsdom@^20.0.3: 2616 | version "20.0.3" 2617 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 2618 | dependencies: 2619 | jest-mock "^20.0.3" 2620 | jest-util "^20.0.3" 2621 | jsdom "^9.12.0" 2622 | 2623 | jest-environment-node@^20.0.3: 2624 | version "20.0.3" 2625 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 2626 | dependencies: 2627 | jest-mock "^20.0.3" 2628 | jest-util "^20.0.3" 2629 | 2630 | jest-haste-map@^20.0.4: 2631 | version "20.0.4" 2632 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.4.tgz#653eb55c889ce3c021f7b94693f20a4159badf03" 2633 | dependencies: 2634 | fb-watchman "^2.0.0" 2635 | graceful-fs "^4.1.11" 2636 | jest-docblock "^20.0.3" 2637 | micromatch "^2.3.11" 2638 | sane "~1.6.0" 2639 | worker-farm "^1.3.1" 2640 | 2641 | jest-jasmine2@^20.0.4: 2642 | version "20.0.4" 2643 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 2644 | dependencies: 2645 | chalk "^1.1.3" 2646 | graceful-fs "^4.1.11" 2647 | jest-diff "^20.0.3" 2648 | jest-matcher-utils "^20.0.3" 2649 | jest-matchers "^20.0.3" 2650 | jest-message-util "^20.0.3" 2651 | jest-snapshot "^20.0.3" 2652 | once "^1.4.0" 2653 | p-map "^1.1.1" 2654 | 2655 | jest-matcher-utils@^20.0.3: 2656 | version "20.0.3" 2657 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 2658 | dependencies: 2659 | chalk "^1.1.3" 2660 | pretty-format "^20.0.3" 2661 | 2662 | jest-matchers@^20.0.3: 2663 | version "20.0.3" 2664 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 2665 | dependencies: 2666 | jest-diff "^20.0.3" 2667 | jest-matcher-utils "^20.0.3" 2668 | jest-message-util "^20.0.3" 2669 | jest-regex-util "^20.0.3" 2670 | 2671 | jest-message-util@^20.0.3: 2672 | version "20.0.3" 2673 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 2674 | dependencies: 2675 | chalk "^1.1.3" 2676 | micromatch "^2.3.11" 2677 | slash "^1.0.0" 2678 | 2679 | jest-mock@^20.0.3: 2680 | version "20.0.3" 2681 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 2682 | 2683 | jest-regex-util@^20.0.3: 2684 | version "20.0.3" 2685 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 2686 | 2687 | jest-resolve-dependencies@^20.0.3: 2688 | version "20.0.3" 2689 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 2690 | dependencies: 2691 | jest-regex-util "^20.0.3" 2692 | 2693 | jest-resolve@^20.0.4: 2694 | version "20.0.4" 2695 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 2696 | dependencies: 2697 | browser-resolve "^1.11.2" 2698 | is-builtin-module "^1.0.0" 2699 | resolve "^1.3.2" 2700 | 2701 | jest-runtime@^20.0.4: 2702 | version "20.0.4" 2703 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 2704 | dependencies: 2705 | babel-core "^6.0.0" 2706 | babel-jest "^20.0.3" 2707 | babel-plugin-istanbul "^4.0.0" 2708 | chalk "^1.1.3" 2709 | convert-source-map "^1.4.0" 2710 | graceful-fs "^4.1.11" 2711 | jest-config "^20.0.4" 2712 | jest-haste-map "^20.0.4" 2713 | jest-regex-util "^20.0.3" 2714 | jest-resolve "^20.0.4" 2715 | jest-util "^20.0.3" 2716 | json-stable-stringify "^1.0.1" 2717 | micromatch "^2.3.11" 2718 | strip-bom "3.0.0" 2719 | yargs "^7.0.2" 2720 | 2721 | jest-snapshot@^20.0.3: 2722 | version "20.0.3" 2723 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 2724 | dependencies: 2725 | chalk "^1.1.3" 2726 | jest-diff "^20.0.3" 2727 | jest-matcher-utils "^20.0.3" 2728 | jest-util "^20.0.3" 2729 | natural-compare "^1.4.0" 2730 | pretty-format "^20.0.3" 2731 | 2732 | jest-util@^20.0.3: 2733 | version "20.0.3" 2734 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 2735 | dependencies: 2736 | chalk "^1.1.3" 2737 | graceful-fs "^4.1.11" 2738 | jest-message-util "^20.0.3" 2739 | jest-mock "^20.0.3" 2740 | jest-validate "^20.0.3" 2741 | leven "^2.1.0" 2742 | mkdirp "^0.5.1" 2743 | 2744 | jest-validate@^20.0.3: 2745 | version "20.0.3" 2746 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 2747 | dependencies: 2748 | chalk "^1.1.3" 2749 | jest-matcher-utils "^20.0.3" 2750 | leven "^2.1.0" 2751 | pretty-format "^20.0.3" 2752 | 2753 | jest@^20.0.4: 2754 | version "20.0.4" 2755 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 2756 | dependencies: 2757 | jest-cli "^20.0.4" 2758 | 2759 | jodid25519@^1.0.0: 2760 | version "1.0.2" 2761 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2762 | dependencies: 2763 | jsbn "~0.1.0" 2764 | 2765 | js-tokens@^3.0.0: 2766 | version "3.0.1" 2767 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2768 | 2769 | js-yaml@^3.5.1, js-yaml@^3.7.0: 2770 | version "3.8.3" 2771 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.3.tgz#33a05ec481c850c8875929166fe1beb61c728766" 2772 | dependencies: 2773 | argparse "^1.0.7" 2774 | esprima "^3.1.1" 2775 | 2776 | jsbn@~0.1.0: 2777 | version "0.1.1" 2778 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2779 | 2780 | jsdom@^9.12.0: 2781 | version "9.12.0" 2782 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2783 | dependencies: 2784 | abab "^1.0.3" 2785 | acorn "^4.0.4" 2786 | acorn-globals "^3.1.0" 2787 | array-equal "^1.0.0" 2788 | content-type-parser "^1.0.1" 2789 | cssom ">= 0.3.2 < 0.4.0" 2790 | cssstyle ">= 0.2.37 < 0.3.0" 2791 | escodegen "^1.6.1" 2792 | html-encoding-sniffer "^1.0.1" 2793 | nwmatcher ">= 1.3.9 < 2.0.0" 2794 | parse5 "^1.5.1" 2795 | request "^2.79.0" 2796 | sax "^1.2.1" 2797 | symbol-tree "^3.2.1" 2798 | tough-cookie "^2.3.2" 2799 | webidl-conversions "^4.0.0" 2800 | whatwg-encoding "^1.0.1" 2801 | whatwg-url "^4.3.0" 2802 | xml-name-validator "^2.0.1" 2803 | 2804 | jsesc@^1.3.0: 2805 | version "1.3.0" 2806 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2807 | 2808 | jsesc@~0.5.0: 2809 | version "0.5.0" 2810 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2811 | 2812 | json-loader@^0.5.4: 2813 | version "0.5.4" 2814 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de" 2815 | 2816 | json-schema@0.2.3: 2817 | version "0.2.3" 2818 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2819 | 2820 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2821 | version "1.0.1" 2822 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2823 | dependencies: 2824 | jsonify "~0.0.0" 2825 | 2826 | json-stringify-safe@~5.0.1: 2827 | version "5.0.1" 2828 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2829 | 2830 | json5@^0.5.0, json5@^0.5.1: 2831 | version "0.5.1" 2832 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2833 | 2834 | jsonify@~0.0.0: 2835 | version "0.0.0" 2836 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2837 | 2838 | jsonpointer@^4.0.0: 2839 | version "4.0.1" 2840 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2841 | 2842 | jsprim@^1.2.2: 2843 | version "1.4.0" 2844 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2845 | dependencies: 2846 | assert-plus "1.0.0" 2847 | extsprintf "1.0.2" 2848 | json-schema "0.2.3" 2849 | verror "1.3.6" 2850 | 2851 | jsx-ast-utils@^1.0.0, jsx-ast-utils@^1.3.4: 2852 | version "1.4.1" 2853 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1" 2854 | 2855 | keycode@^2.1.2: 2856 | version "2.1.8" 2857 | resolved "https://registry.yarnpkg.com/keycode/-/keycode-2.1.8.tgz#94d2b7098215eff0e8f9a8931d5a59076c4532fb" 2858 | 2859 | kind-of@^3.0.2: 2860 | version "3.2.0" 2861 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.0.tgz#b58abe4d5c044ad33726a8c1525b48cf891bff07" 2862 | dependencies: 2863 | is-buffer "^1.1.5" 2864 | 2865 | lazy-cache@^1.0.3: 2866 | version "1.0.4" 2867 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2868 | 2869 | lcid@^1.0.0: 2870 | version "1.0.0" 2871 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2872 | dependencies: 2873 | invert-kv "^1.0.0" 2874 | 2875 | leven@^2.1.0: 2876 | version "2.1.0" 2877 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2878 | 2879 | levn@^0.3.0, levn@~0.3.0: 2880 | version "0.3.0" 2881 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2882 | dependencies: 2883 | prelude-ls "~1.1.2" 2884 | type-check "~0.3.2" 2885 | 2886 | load-json-file@^1.0.0: 2887 | version "1.1.0" 2888 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2889 | dependencies: 2890 | graceful-fs "^4.1.2" 2891 | parse-json "^2.2.0" 2892 | pify "^2.0.0" 2893 | pinkie-promise "^2.0.0" 2894 | strip-bom "^2.0.0" 2895 | 2896 | loader-runner@^2.3.0: 2897 | version "2.3.0" 2898 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 2899 | 2900 | loader-utils@^0.2.16: 2901 | version "0.2.17" 2902 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" 2903 | dependencies: 2904 | big.js "^3.1.3" 2905 | emojis-list "^2.0.0" 2906 | json5 "^0.5.0" 2907 | object-assign "^4.0.1" 2908 | 2909 | locate-path@^2.0.0: 2910 | version "2.0.0" 2911 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2912 | dependencies: 2913 | p-locate "^2.0.0" 2914 | path-exists "^3.0.0" 2915 | 2916 | lodash.assignin@^4.0.9: 2917 | version "4.2.0" 2918 | resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" 2919 | 2920 | lodash.bind@^4.1.4: 2921 | version "4.2.1" 2922 | resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" 2923 | 2924 | lodash.cond@^4.3.0: 2925 | version "4.5.2" 2926 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2927 | 2928 | lodash.defaults@^4.0.1: 2929 | version "4.2.0" 2930 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" 2931 | 2932 | lodash.filter@^4.4.0: 2933 | version "4.6.0" 2934 | resolved "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" 2935 | 2936 | lodash.flatten@^4.2.0: 2937 | version "4.4.0" 2938 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 2939 | 2940 | lodash.foreach@^4.3.0: 2941 | version "4.5.0" 2942 | resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" 2943 | 2944 | lodash.map@^4.4.0: 2945 | version "4.6.0" 2946 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" 2947 | 2948 | lodash.merge@^4.4.0: 2949 | version "4.6.0" 2950 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 2951 | 2952 | lodash.pick@^4.2.1: 2953 | version "4.4.0" 2954 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" 2955 | 2956 | lodash.reduce@^4.4.0: 2957 | version "4.6.0" 2958 | resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" 2959 | 2960 | lodash.reject@^4.4.0: 2961 | version "4.6.0" 2962 | resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" 2963 | 2964 | lodash.some@^4.4.0: 2965 | version "4.6.0" 2966 | resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" 2967 | 2968 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 2969 | version "4.17.4" 2970 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2971 | 2972 | longest@^1.0.1: 2973 | version "1.0.1" 2974 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2975 | 2976 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: 2977 | version "1.3.1" 2978 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2979 | dependencies: 2980 | js-tokens "^3.0.0" 2981 | 2982 | makeerror@1.0.x: 2983 | version "1.0.11" 2984 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2985 | dependencies: 2986 | tmpl "1.0.x" 2987 | 2988 | memory-fs@^0.4.0, memory-fs@~0.4.1: 2989 | version "0.4.1" 2990 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 2991 | dependencies: 2992 | errno "^0.1.3" 2993 | readable-stream "^2.0.1" 2994 | 2995 | merge@^1.1.3: 2996 | version "1.2.0" 2997 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2998 | 2999 | micromatch@^2.1.5, micromatch@^2.3.11: 3000 | version "2.3.11" 3001 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 3002 | dependencies: 3003 | arr-diff "^2.0.0" 3004 | array-unique "^0.2.1" 3005 | braces "^1.8.2" 3006 | expand-brackets "^0.1.4" 3007 | extglob "^0.3.1" 3008 | filename-regex "^2.0.0" 3009 | is-extglob "^1.0.0" 3010 | is-glob "^2.0.1" 3011 | kind-of "^3.0.2" 3012 | normalize-path "^2.0.1" 3013 | object.omit "^2.0.0" 3014 | parse-glob "^3.0.4" 3015 | regex-cache "^0.4.2" 3016 | 3017 | miller-rabin@^4.0.0: 3018 | version "4.0.0" 3019 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 3020 | dependencies: 3021 | bn.js "^4.0.0" 3022 | brorand "^1.0.1" 3023 | 3024 | mime-db@~1.27.0: 3025 | version "1.27.0" 3026 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 3027 | 3028 | mime-types@^2.1.12, mime-types@~2.1.7: 3029 | version "2.1.15" 3030 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 3031 | dependencies: 3032 | mime-db "~1.27.0" 3033 | 3034 | minimalistic-assert@^1.0.0: 3035 | version "1.0.0" 3036 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 3037 | 3038 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 3039 | version "1.0.1" 3040 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 3041 | 3042 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3: 3043 | version "3.0.3" 3044 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 3045 | dependencies: 3046 | brace-expansion "^1.0.0" 3047 | 3048 | minimist@0.0.8, minimist@~0.0.1: 3049 | version "0.0.8" 3050 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 3051 | 3052 | minimist@^1.1.1, minimist@^1.2.0: 3053 | version "1.2.0" 3054 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 3055 | 3056 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0: 3057 | version "0.5.1" 3058 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 3059 | dependencies: 3060 | minimist "0.0.8" 3061 | 3062 | ms@0.7.1: 3063 | version "0.7.1" 3064 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 3065 | 3066 | ms@0.7.3: 3067 | version "0.7.3" 3068 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 3069 | 3070 | mute-stream@0.0.5: 3071 | version "0.0.5" 3072 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 3073 | 3074 | nan@^2.3.0: 3075 | version "2.6.2" 3076 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 3077 | 3078 | natural-compare@^1.4.0: 3079 | version "1.4.0" 3080 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 3081 | 3082 | node-fetch@^1.0.1: 3083 | version "1.6.3" 3084 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" 3085 | dependencies: 3086 | encoding "^0.1.11" 3087 | is-stream "^1.0.1" 3088 | 3089 | node-int64@^0.4.0: 3090 | version "0.4.0" 3091 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 3092 | 3093 | node-libs-browser@^2.0.0: 3094 | version "2.0.0" 3095 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646" 3096 | dependencies: 3097 | assert "^1.1.1" 3098 | browserify-zlib "^0.1.4" 3099 | buffer "^4.3.0" 3100 | console-browserify "^1.1.0" 3101 | constants-browserify "^1.0.0" 3102 | crypto-browserify "^3.11.0" 3103 | domain-browser "^1.1.1" 3104 | events "^1.0.0" 3105 | https-browserify "0.0.1" 3106 | os-browserify "^0.2.0" 3107 | path-browserify "0.0.0" 3108 | process "^0.11.0" 3109 | punycode "^1.2.4" 3110 | querystring-es3 "^0.2.0" 3111 | readable-stream "^2.0.5" 3112 | stream-browserify "^2.0.1" 3113 | stream-http "^2.3.1" 3114 | string_decoder "^0.10.25" 3115 | timers-browserify "^2.0.2" 3116 | tty-browserify "0.0.0" 3117 | url "^0.11.0" 3118 | util "^0.10.3" 3119 | vm-browserify "0.0.4" 3120 | 3121 | node-notifier@^5.0.2: 3122 | version "5.1.2" 3123 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 3124 | dependencies: 3125 | growly "^1.3.0" 3126 | semver "^5.3.0" 3127 | shellwords "^0.1.0" 3128 | which "^1.2.12" 3129 | 3130 | node-pre-gyp@^0.6.29: 3131 | version "0.6.34" 3132 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 3133 | dependencies: 3134 | mkdirp "^0.5.1" 3135 | nopt "^4.0.1" 3136 | npmlog "^4.0.2" 3137 | rc "^1.1.7" 3138 | request "^2.81.0" 3139 | rimraf "^2.6.1" 3140 | semver "^5.3.0" 3141 | tar "^2.2.1" 3142 | tar-pack "^3.4.0" 3143 | 3144 | nopt@^4.0.1: 3145 | version "4.0.1" 3146 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 3147 | dependencies: 3148 | abbrev "1" 3149 | osenv "^0.1.4" 3150 | 3151 | normalize-package-data@^2.3.2: 3152 | version "2.3.8" 3153 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 3154 | dependencies: 3155 | hosted-git-info "^2.1.4" 3156 | is-builtin-module "^1.0.0" 3157 | semver "2 || 3 || 4 || 5" 3158 | validate-npm-package-license "^3.0.1" 3159 | 3160 | normalize-path@^2.0.1: 3161 | version "2.1.1" 3162 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 3163 | dependencies: 3164 | remove-trailing-separator "^1.0.1" 3165 | 3166 | npmlog@^4.0.2: 3167 | version "4.0.2" 3168 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 3169 | dependencies: 3170 | are-we-there-yet "~1.1.2" 3171 | console-control-strings "~1.1.0" 3172 | gauge "~2.7.1" 3173 | set-blocking "~2.0.0" 3174 | 3175 | nth-check@~1.0.1: 3176 | version "1.0.1" 3177 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" 3178 | dependencies: 3179 | boolbase "~1.0.0" 3180 | 3181 | number-is-nan@^1.0.0: 3182 | version "1.0.1" 3183 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 3184 | 3185 | "nwmatcher@>= 1.3.9 < 2.0.0": 3186 | version "1.4.1" 3187 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" 3188 | 3189 | oauth-sign@~0.8.1: 3190 | version "0.8.2" 3191 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 3192 | 3193 | object-assign@^4.0.1, object-assign@^4.1.0: 3194 | version "4.1.1" 3195 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 3196 | 3197 | object-is@^1.0.1: 3198 | version "1.0.1" 3199 | resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.1.tgz#0aa60ec9989a0b3ed795cf4d06f62cf1ad6539b6" 3200 | 3201 | object-keys@^1.0.10, object-keys@^1.0.8: 3202 | version "1.0.11" 3203 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 3204 | 3205 | object.assign@^4.0.4: 3206 | version "4.0.4" 3207 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc" 3208 | dependencies: 3209 | define-properties "^1.1.2" 3210 | function-bind "^1.1.0" 3211 | object-keys "^1.0.10" 3212 | 3213 | object.entries@^1.0.4: 3214 | version "1.0.4" 3215 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.0.4.tgz#1bf9a4dd2288f5b33f3a993d257661f05d161a5f" 3216 | dependencies: 3217 | define-properties "^1.1.2" 3218 | es-abstract "^1.6.1" 3219 | function-bind "^1.1.0" 3220 | has "^1.0.1" 3221 | 3222 | object.omit@^2.0.0: 3223 | version "2.0.1" 3224 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 3225 | dependencies: 3226 | for-own "^0.1.4" 3227 | is-extendable "^0.1.1" 3228 | 3229 | object.values@^1.0.4: 3230 | version "1.0.4" 3231 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.0.4.tgz#e524da09b4f66ff05df457546ec72ac99f13069a" 3232 | dependencies: 3233 | define-properties "^1.1.2" 3234 | es-abstract "^1.6.1" 3235 | function-bind "^1.1.0" 3236 | has "^1.0.1" 3237 | 3238 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 3239 | version "1.4.0" 3240 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3241 | dependencies: 3242 | wrappy "1" 3243 | 3244 | onetime@^1.0.0: 3245 | version "1.1.0" 3246 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 3247 | 3248 | optimist@^0.6.1: 3249 | version "0.6.1" 3250 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 3251 | dependencies: 3252 | minimist "~0.0.1" 3253 | wordwrap "~0.0.2" 3254 | 3255 | optionator@^0.8.1, optionator@^0.8.2: 3256 | version "0.8.2" 3257 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3258 | dependencies: 3259 | deep-is "~0.1.3" 3260 | fast-levenshtein "~2.0.4" 3261 | levn "~0.3.0" 3262 | prelude-ls "~1.1.2" 3263 | type-check "~0.3.2" 3264 | wordwrap "~1.0.0" 3265 | 3266 | os-browserify@^0.2.0: 3267 | version "0.2.1" 3268 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 3269 | 3270 | os-homedir@^1.0.0: 3271 | version "1.0.2" 3272 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3273 | 3274 | os-locale@^1.4.0: 3275 | version "1.4.0" 3276 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 3277 | dependencies: 3278 | lcid "^1.0.0" 3279 | 3280 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 3281 | version "1.0.2" 3282 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3283 | 3284 | osenv@^0.1.4: 3285 | version "0.1.4" 3286 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 3287 | dependencies: 3288 | os-homedir "^1.0.0" 3289 | os-tmpdir "^1.0.0" 3290 | 3291 | p-limit@^1.1.0: 3292 | version "1.1.0" 3293 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 3294 | 3295 | p-locate@^2.0.0: 3296 | version "2.0.0" 3297 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 3298 | dependencies: 3299 | p-limit "^1.1.0" 3300 | 3301 | p-map@^1.1.1: 3302 | version "1.1.1" 3303 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 3304 | 3305 | pako@~0.2.0: 3306 | version "0.2.9" 3307 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 3308 | 3309 | parse-asn1@^5.0.0: 3310 | version "5.1.0" 3311 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 3312 | dependencies: 3313 | asn1.js "^4.0.0" 3314 | browserify-aes "^1.0.0" 3315 | create-hash "^1.1.0" 3316 | evp_bytestokey "^1.0.0" 3317 | pbkdf2 "^3.0.3" 3318 | 3319 | parse-glob@^3.0.4: 3320 | version "3.0.4" 3321 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3322 | dependencies: 3323 | glob-base "^0.3.0" 3324 | is-dotfile "^1.0.0" 3325 | is-extglob "^1.0.0" 3326 | is-glob "^2.0.0" 3327 | 3328 | parse-json@^2.2.0: 3329 | version "2.2.0" 3330 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3331 | dependencies: 3332 | error-ex "^1.2.0" 3333 | 3334 | parse5@^1.5.1: 3335 | version "1.5.1" 3336 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 3337 | 3338 | path-browserify@0.0.0: 3339 | version "0.0.0" 3340 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 3341 | 3342 | path-exists@^2.0.0: 3343 | version "2.1.0" 3344 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3345 | dependencies: 3346 | pinkie-promise "^2.0.0" 3347 | 3348 | path-exists@^3.0.0: 3349 | version "3.0.0" 3350 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3351 | 3352 | path-is-absolute@^1.0.0: 3353 | version "1.0.1" 3354 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3355 | 3356 | path-is-inside@^1.0.1: 3357 | version "1.0.2" 3358 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3359 | 3360 | path-parse@^1.0.5: 3361 | version "1.0.5" 3362 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3363 | 3364 | path-type@^1.0.0: 3365 | version "1.1.0" 3366 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3367 | dependencies: 3368 | graceful-fs "^4.1.2" 3369 | pify "^2.0.0" 3370 | pinkie-promise "^2.0.0" 3371 | 3372 | pbkdf2@^3.0.3: 3373 | version "3.0.9" 3374 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693" 3375 | dependencies: 3376 | create-hmac "^1.1.2" 3377 | 3378 | performance-now@^0.2.0: 3379 | version "0.2.0" 3380 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 3381 | 3382 | pify@^2.0.0, pify@^2.3.0: 3383 | version "2.3.0" 3384 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3385 | 3386 | pinkie-promise@^2.0.0: 3387 | version "2.0.1" 3388 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3389 | dependencies: 3390 | pinkie "^2.0.0" 3391 | 3392 | pinkie@^2.0.0: 3393 | version "2.0.4" 3394 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3395 | 3396 | pkg-dir@^1.0.0: 3397 | version "1.0.0" 3398 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3399 | dependencies: 3400 | find-up "^1.0.0" 3401 | 3402 | pkg-up@^1.0.0: 3403 | version "1.0.0" 3404 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 3405 | dependencies: 3406 | find-up "^1.0.0" 3407 | 3408 | pluralize@^1.2.1: 3409 | version "1.2.1" 3410 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 3411 | 3412 | prelude-ls@~1.1.2: 3413 | version "1.1.2" 3414 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3415 | 3416 | preserve@^0.2.0: 3417 | version "0.2.0" 3418 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3419 | 3420 | pretty-format@^20.0.3: 3421 | version "20.0.3" 3422 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 3423 | dependencies: 3424 | ansi-regex "^2.1.1" 3425 | ansi-styles "^3.0.0" 3426 | 3427 | private@^0.1.6: 3428 | version "0.1.7" 3429 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 3430 | 3431 | process-nextick-args@~1.0.6: 3432 | version "1.0.7" 3433 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3434 | 3435 | process@^0.11.0: 3436 | version "0.11.10" 3437 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 3438 | 3439 | progress@^1.1.8: 3440 | version "1.1.8" 3441 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 3442 | 3443 | promise@^7.1.1: 3444 | version "7.1.1" 3445 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 3446 | dependencies: 3447 | asap "~2.0.3" 3448 | 3449 | prop-types-extra@^1.0.1: 3450 | version "1.0.1" 3451 | resolved "https://registry.yarnpkg.com/prop-types-extra/-/prop-types-extra-1.0.1.tgz#a57bd4810e82d27a3ff4317ecc1b4ad005f79a82" 3452 | dependencies: 3453 | warning "^3.0.0" 3454 | 3455 | prop-types@^15.5.10, prop-types@^15.5.8: 3456 | version "15.5.10" 3457 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154" 3458 | dependencies: 3459 | fbjs "^0.8.9" 3460 | loose-envify "^1.3.1" 3461 | 3462 | prop-types@^15.5.7, prop-types@~15.5.7: 3463 | version "15.5.8" 3464 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.8.tgz#6b7b2e141083be38c8595aa51fc55775c7199394" 3465 | dependencies: 3466 | fbjs "^0.8.9" 3467 | 3468 | prr@~0.0.0: 3469 | version "0.0.0" 3470 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 3471 | 3472 | public-encrypt@^4.0.0: 3473 | version "4.0.0" 3474 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 3475 | dependencies: 3476 | bn.js "^4.1.0" 3477 | browserify-rsa "^4.0.0" 3478 | create-hash "^1.1.0" 3479 | parse-asn1 "^5.0.0" 3480 | randombytes "^2.0.1" 3481 | 3482 | punycode@1.3.2: 3483 | version "1.3.2" 3484 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 3485 | 3486 | punycode@^1.2.4, punycode@^1.4.1: 3487 | version "1.4.1" 3488 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3489 | 3490 | qs@~6.4.0: 3491 | version "6.4.0" 3492 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3493 | 3494 | querystring-es3@^0.2.0: 3495 | version "0.2.1" 3496 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 3497 | 3498 | querystring@0.2.0: 3499 | version "0.2.0" 3500 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 3501 | 3502 | randomatic@^1.1.3: 3503 | version "1.1.6" 3504 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 3505 | dependencies: 3506 | is-number "^2.0.2" 3507 | kind-of "^3.0.2" 3508 | 3509 | randombytes@^2.0.0, randombytes@^2.0.1: 3510 | version "2.0.3" 3511 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" 3512 | 3513 | rc@^1.1.7: 3514 | version "1.2.1" 3515 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 3516 | dependencies: 3517 | deep-extend "~0.4.0" 3518 | ini "~1.3.0" 3519 | minimist "^1.2.0" 3520 | strip-json-comments "~2.0.1" 3521 | 3522 | react-bootstrap@^0.31.2: 3523 | version "0.31.3" 3524 | resolved "https://registry.yarnpkg.com/react-bootstrap/-/react-bootstrap-0.31.3.tgz#db2b7d45b00b5dac1ab8b6de3dd97feb3091b849" 3525 | dependencies: 3526 | babel-runtime "^6.11.6" 3527 | classnames "^2.2.5" 3528 | dom-helpers "^3.2.0" 3529 | invariant "^2.2.1" 3530 | keycode "^2.1.2" 3531 | prop-types "^15.5.10" 3532 | prop-types-extra "^1.0.1" 3533 | react-overlays "^0.7.0" 3534 | react-prop-types "^0.4.0" 3535 | uncontrollable "^4.1.0" 3536 | warning "^3.0.0" 3537 | 3538 | react-class-props@^0.0.5: 3539 | version "0.0.5" 3540 | resolved "https://registry.yarnpkg.com/react-class-props/-/react-class-props-0.0.5.tgz#b2fe2e794c4269f3f1465845d144d2018add02ef" 3541 | dependencies: 3542 | prop-types "^15.5.10" 3543 | react "^15.5.4" 3544 | 3545 | react-dom@^15.5.4: 3546 | version "15.5.4" 3547 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.5.4.tgz#ba0c28786fd52ed7e4f2135fe0288d462aef93da" 3548 | dependencies: 3549 | fbjs "^0.8.9" 3550 | loose-envify "^1.1.0" 3551 | object-assign "^4.1.0" 3552 | prop-types "~15.5.7" 3553 | 3554 | react-overlays@^0.7.0: 3555 | version "0.7.0" 3556 | resolved "https://registry.yarnpkg.com/react-overlays/-/react-overlays-0.7.0.tgz#531898ff566c7e5c7226ead2863b8cf9fbb5a981" 3557 | dependencies: 3558 | classnames "^2.2.5" 3559 | dom-helpers "^3.2.0" 3560 | prop-types "^15.5.8" 3561 | react-prop-types "^0.4.0" 3562 | warning "^3.0.0" 3563 | 3564 | react-prop-types@^0.4.0: 3565 | version "0.4.0" 3566 | resolved "https://registry.yarnpkg.com/react-prop-types/-/react-prop-types-0.4.0.tgz#f99b0bfb4006929c9af2051e7c1414a5c75b93d0" 3567 | dependencies: 3568 | warning "^3.0.0" 3569 | 3570 | react-test-renderer@^15.6.1: 3571 | version "15.6.1" 3572 | resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-15.6.1.tgz#026f4a5bb5552661fd2cc4bbcd0d4bc8a35ebf7e" 3573 | dependencies: 3574 | fbjs "^0.8.9" 3575 | object-assign "^4.1.0" 3576 | 3577 | react@^15.5.4: 3578 | version "15.5.4" 3579 | resolved "https://registry.yarnpkg.com/react/-/react-15.5.4.tgz#fa83eb01506ab237cdc1c8c3b1cea8de012bf047" 3580 | dependencies: 3581 | fbjs "^0.8.9" 3582 | loose-envify "^1.1.0" 3583 | object-assign "^4.1.0" 3584 | prop-types "^15.5.7" 3585 | 3586 | read-pkg-up@^1.0.1: 3587 | version "1.0.1" 3588 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3589 | dependencies: 3590 | find-up "^1.0.0" 3591 | read-pkg "^1.0.0" 3592 | 3593 | read-pkg@^1.0.0: 3594 | version "1.1.0" 3595 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3596 | dependencies: 3597 | load-json-file "^1.0.0" 3598 | normalize-package-data "^2.3.2" 3599 | path-type "^1.0.0" 3600 | 3601 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2, readable-stream@^2.2.6: 3602 | version "2.2.9" 3603 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 3604 | dependencies: 3605 | buffer-shims "~1.0.0" 3606 | core-util-is "~1.0.0" 3607 | inherits "~2.0.1" 3608 | isarray "~1.0.0" 3609 | process-nextick-args "~1.0.6" 3610 | string_decoder "~1.0.0" 3611 | util-deprecate "~1.0.1" 3612 | 3613 | readdirp@^2.0.0: 3614 | version "2.1.0" 3615 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3616 | dependencies: 3617 | graceful-fs "^4.1.2" 3618 | minimatch "^3.0.2" 3619 | readable-stream "^2.0.2" 3620 | set-immediate-shim "^1.0.1" 3621 | 3622 | readline2@^1.0.1: 3623 | version "1.0.1" 3624 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 3625 | dependencies: 3626 | code-point-at "^1.0.0" 3627 | is-fullwidth-code-point "^1.0.0" 3628 | mute-stream "0.0.5" 3629 | 3630 | rechoir@^0.6.2: 3631 | version "0.6.2" 3632 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 3633 | dependencies: 3634 | resolve "^1.1.6" 3635 | 3636 | regenerate@^1.2.1: 3637 | version "1.3.2" 3638 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3639 | 3640 | regenerator-runtime@^0.10.0: 3641 | version "0.10.5" 3642 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3643 | 3644 | regenerator-transform@0.9.11: 3645 | version "0.9.11" 3646 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 3647 | dependencies: 3648 | babel-runtime "^6.18.0" 3649 | babel-types "^6.19.0" 3650 | private "^0.1.6" 3651 | 3652 | regex-cache@^0.4.2: 3653 | version "0.4.3" 3654 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3655 | dependencies: 3656 | is-equal-shallow "^0.1.3" 3657 | is-primitive "^2.0.0" 3658 | 3659 | regexpu-core@^2.0.0: 3660 | version "2.0.0" 3661 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3662 | dependencies: 3663 | regenerate "^1.2.1" 3664 | regjsgen "^0.2.0" 3665 | regjsparser "^0.1.4" 3666 | 3667 | regjsgen@^0.2.0: 3668 | version "0.2.0" 3669 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3670 | 3671 | regjsparser@^0.1.4: 3672 | version "0.1.5" 3673 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3674 | dependencies: 3675 | jsesc "~0.5.0" 3676 | 3677 | remove-trailing-separator@^1.0.1: 3678 | version "1.0.1" 3679 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 3680 | 3681 | repeat-element@^1.1.2: 3682 | version "1.1.2" 3683 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3684 | 3685 | repeat-string@^1.5.2: 3686 | version "1.6.1" 3687 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3688 | 3689 | repeating@^2.0.0: 3690 | version "2.0.1" 3691 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3692 | dependencies: 3693 | is-finite "^1.0.0" 3694 | 3695 | request@^2.79.0, request@^2.81.0: 3696 | version "2.81.0" 3697 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3698 | dependencies: 3699 | aws-sign2 "~0.6.0" 3700 | aws4 "^1.2.1" 3701 | caseless "~0.12.0" 3702 | combined-stream "~1.0.5" 3703 | extend "~3.0.0" 3704 | forever-agent "~0.6.1" 3705 | form-data "~2.1.1" 3706 | har-validator "~4.2.1" 3707 | hawk "~3.1.3" 3708 | http-signature "~1.1.0" 3709 | is-typedarray "~1.0.0" 3710 | isstream "~0.1.2" 3711 | json-stringify-safe "~5.0.1" 3712 | mime-types "~2.1.7" 3713 | oauth-sign "~0.8.1" 3714 | performance-now "^0.2.0" 3715 | qs "~6.4.0" 3716 | safe-buffer "^5.0.1" 3717 | stringstream "~0.0.4" 3718 | tough-cookie "~2.3.0" 3719 | tunnel-agent "^0.6.0" 3720 | uuid "^3.0.0" 3721 | 3722 | require-directory@^2.1.1: 3723 | version "2.1.1" 3724 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3725 | 3726 | require-main-filename@^1.0.1: 3727 | version "1.0.1" 3728 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3729 | 3730 | require-uncached@^1.0.2: 3731 | version "1.0.3" 3732 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3733 | dependencies: 3734 | caller-path "^0.1.0" 3735 | resolve-from "^1.0.0" 3736 | 3737 | resolve-from@^1.0.0: 3738 | version "1.0.1" 3739 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3740 | 3741 | resolve@1.1.7: 3742 | version "1.1.7" 3743 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3744 | 3745 | resolve@^1.1.6, resolve@^1.3.2: 3746 | version "1.3.3" 3747 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 3748 | dependencies: 3749 | path-parse "^1.0.5" 3750 | 3751 | restore-cursor@^1.0.1: 3752 | version "1.0.1" 3753 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3754 | dependencies: 3755 | exit-hook "^1.0.0" 3756 | onetime "^1.0.0" 3757 | 3758 | right-align@^0.1.1: 3759 | version "0.1.3" 3760 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3761 | dependencies: 3762 | align-text "^0.1.1" 3763 | 3764 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 3765 | version "2.6.1" 3766 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3767 | dependencies: 3768 | glob "^7.0.5" 3769 | 3770 | ripemd160@^1.0.0: 3771 | version "1.0.1" 3772 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" 3773 | 3774 | run-async@^0.1.0: 3775 | version "0.1.0" 3776 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3777 | dependencies: 3778 | once "^1.3.0" 3779 | 3780 | rx-lite@^3.1.2: 3781 | version "3.1.2" 3782 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3783 | 3784 | safe-buffer@^5.0.1: 3785 | version "5.0.1" 3786 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3787 | 3788 | sane@~1.6.0: 3789 | version "1.6.0" 3790 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 3791 | dependencies: 3792 | anymatch "^1.3.0" 3793 | exec-sh "^0.2.0" 3794 | fb-watchman "^1.8.0" 3795 | minimatch "^3.0.2" 3796 | minimist "^1.1.1" 3797 | walker "~1.0.5" 3798 | watch "~0.10.0" 3799 | 3800 | sax@^1.2.1: 3801 | version "1.2.4" 3802 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3803 | 3804 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 3805 | version "5.3.0" 3806 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3807 | 3808 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3809 | version "2.0.0" 3810 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3811 | 3812 | set-immediate-shim@^1.0.1: 3813 | version "1.0.1" 3814 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3815 | 3816 | setimmediate@^1.0.4, setimmediate@^1.0.5: 3817 | version "1.0.5" 3818 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3819 | 3820 | sha.js@^2.3.6: 3821 | version "2.4.8" 3822 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 3823 | dependencies: 3824 | inherits "^2.0.1" 3825 | 3826 | shelljs@^0.7.5: 3827 | version "0.7.7" 3828 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" 3829 | dependencies: 3830 | glob "^7.0.0" 3831 | interpret "^1.0.0" 3832 | rechoir "^0.6.2" 3833 | 3834 | shellwords@^0.1.0: 3835 | version "0.1.0" 3836 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 3837 | 3838 | signal-exit@^3.0.0: 3839 | version "3.0.2" 3840 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3841 | 3842 | slash@^1.0.0: 3843 | version "1.0.0" 3844 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3845 | 3846 | slice-ansi@0.0.4: 3847 | version "0.0.4" 3848 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3849 | 3850 | sntp@1.x.x: 3851 | version "1.0.9" 3852 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3853 | dependencies: 3854 | hoek "2.x.x" 3855 | 3856 | source-list-map@^1.1.1: 3857 | version "1.1.1" 3858 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-1.1.1.tgz#1a33ac210ca144d1e561f906ebccab5669ff4cb4" 3859 | 3860 | source-map-support@^0.4.2: 3861 | version "0.4.15" 3862 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 3863 | dependencies: 3864 | source-map "^0.5.6" 3865 | 3866 | source-map@^0.4.4: 3867 | version "0.4.4" 3868 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3869 | dependencies: 3870 | amdefine ">=0.0.4" 3871 | 3872 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3: 3873 | version "0.5.6" 3874 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3875 | 3876 | source-map@~0.2.0: 3877 | version "0.2.0" 3878 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3879 | dependencies: 3880 | amdefine ">=0.0.4" 3881 | 3882 | spdx-correct@~1.0.0: 3883 | version "1.0.2" 3884 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3885 | dependencies: 3886 | spdx-license-ids "^1.0.2" 3887 | 3888 | spdx-expression-parse@~1.0.0: 3889 | version "1.0.4" 3890 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3891 | 3892 | spdx-license-ids@^1.0.2: 3893 | version "1.2.2" 3894 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3895 | 3896 | sprintf-js@~1.0.2: 3897 | version "1.0.3" 3898 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3899 | 3900 | sshpk@^1.7.0: 3901 | version "1.13.0" 3902 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 3903 | dependencies: 3904 | asn1 "~0.2.3" 3905 | assert-plus "^1.0.0" 3906 | dashdash "^1.12.0" 3907 | getpass "^0.1.1" 3908 | optionalDependencies: 3909 | bcrypt-pbkdf "^1.0.0" 3910 | ecc-jsbn "~0.1.1" 3911 | jodid25519 "^1.0.0" 3912 | jsbn "~0.1.0" 3913 | tweetnacl "~0.14.0" 3914 | 3915 | stream-browserify@^2.0.1: 3916 | version "2.0.1" 3917 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3918 | dependencies: 3919 | inherits "~2.0.1" 3920 | readable-stream "^2.0.2" 3921 | 3922 | stream-http@^2.3.1: 3923 | version "2.7.0" 3924 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.0.tgz#cec1f4e3b494bc4a81b451808970f8b20b4ed5f6" 3925 | dependencies: 3926 | builtin-status-codes "^3.0.0" 3927 | inherits "^2.0.1" 3928 | readable-stream "^2.2.6" 3929 | to-arraybuffer "^1.0.0" 3930 | xtend "^4.0.0" 3931 | 3932 | string-length@^1.0.1: 3933 | version "1.0.1" 3934 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 3935 | dependencies: 3936 | strip-ansi "^3.0.0" 3937 | 3938 | string-width@^1.0.1, string-width@^1.0.2: 3939 | version "1.0.2" 3940 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3941 | dependencies: 3942 | code-point-at "^1.0.0" 3943 | is-fullwidth-code-point "^1.0.0" 3944 | strip-ansi "^3.0.0" 3945 | 3946 | string-width@^2.0.0: 3947 | version "2.0.0" 3948 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3949 | dependencies: 3950 | is-fullwidth-code-point "^2.0.0" 3951 | strip-ansi "^3.0.0" 3952 | 3953 | string_decoder@^0.10.25: 3954 | version "0.10.31" 3955 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3956 | 3957 | string_decoder@~1.0.0: 3958 | version "1.0.0" 3959 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.0.tgz#f06f41157b664d86069f84bdbdc9b0d8ab281667" 3960 | dependencies: 3961 | buffer-shims "~1.0.0" 3962 | 3963 | stringstream@~0.0.4: 3964 | version "0.0.5" 3965 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3966 | 3967 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3968 | version "3.0.1" 3969 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3970 | dependencies: 3971 | ansi-regex "^2.0.0" 3972 | 3973 | strip-bom@3.0.0, strip-bom@^3.0.0: 3974 | version "3.0.0" 3975 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3976 | 3977 | strip-bom@^2.0.0: 3978 | version "2.0.0" 3979 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3980 | dependencies: 3981 | is-utf8 "^0.2.0" 3982 | 3983 | strip-json-comments@~2.0.1: 3984 | version "2.0.1" 3985 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3986 | 3987 | supports-color@^2.0.0: 3988 | version "2.0.0" 3989 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3990 | 3991 | supports-color@^3.1.0, supports-color@^3.1.2: 3992 | version "3.2.3" 3993 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3994 | dependencies: 3995 | has-flag "^1.0.0" 3996 | 3997 | symbol-tree@^3.2.1: 3998 | version "3.2.2" 3999 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 4000 | 4001 | table@^3.7.8: 4002 | version "3.8.3" 4003 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 4004 | dependencies: 4005 | ajv "^4.7.0" 4006 | ajv-keywords "^1.0.0" 4007 | chalk "^1.1.1" 4008 | lodash "^4.0.0" 4009 | slice-ansi "0.0.4" 4010 | string-width "^2.0.0" 4011 | 4012 | tapable@^0.2.5, tapable@~0.2.5: 4013 | version "0.2.6" 4014 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.6.tgz#206be8e188860b514425375e6f1ae89bfb01fd8d" 4015 | 4016 | tar-pack@^3.4.0: 4017 | version "3.4.0" 4018 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 4019 | dependencies: 4020 | debug "^2.2.0" 4021 | fstream "^1.0.10" 4022 | fstream-ignore "^1.0.5" 4023 | once "^1.3.3" 4024 | readable-stream "^2.1.4" 4025 | rimraf "^2.5.1" 4026 | tar "^2.2.1" 4027 | uid-number "^0.0.6" 4028 | 4029 | tar@^2.2.1: 4030 | version "2.2.1" 4031 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 4032 | dependencies: 4033 | block-stream "*" 4034 | fstream "^1.0.2" 4035 | inherits "2" 4036 | 4037 | test-exclude@^4.1.1: 4038 | version "4.1.1" 4039 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 4040 | dependencies: 4041 | arrify "^1.0.1" 4042 | micromatch "^2.3.11" 4043 | object-assign "^4.1.0" 4044 | read-pkg-up "^1.0.1" 4045 | require-main-filename "^1.0.1" 4046 | 4047 | text-table@~0.2.0: 4048 | version "0.2.0" 4049 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 4050 | 4051 | throat@^3.0.0: 4052 | version "3.2.0" 4053 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" 4054 | 4055 | through@^2.3.6: 4056 | version "2.3.8" 4057 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 4058 | 4059 | timers-browserify@^2.0.2: 4060 | version "2.0.2" 4061 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86" 4062 | dependencies: 4063 | setimmediate "^1.0.4" 4064 | 4065 | tmpl@1.0.x: 4066 | version "1.0.4" 4067 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 4068 | 4069 | to-arraybuffer@^1.0.0: 4070 | version "1.0.1" 4071 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 4072 | 4073 | to-fast-properties@^1.0.1: 4074 | version "1.0.2" 4075 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 4076 | 4077 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 4078 | version "2.3.2" 4079 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 4080 | dependencies: 4081 | punycode "^1.4.1" 4082 | 4083 | tr46@~0.0.3: 4084 | version "0.0.3" 4085 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 4086 | 4087 | trim-right@^1.0.1: 4088 | version "1.0.1" 4089 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 4090 | 4091 | tryit@^1.0.1: 4092 | version "1.0.3" 4093 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 4094 | 4095 | tty-browserify@0.0.0: 4096 | version "0.0.0" 4097 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 4098 | 4099 | tunnel-agent@^0.6.0: 4100 | version "0.6.0" 4101 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 4102 | dependencies: 4103 | safe-buffer "^5.0.1" 4104 | 4105 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 4106 | version "0.14.5" 4107 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 4108 | 4109 | type-check@~0.3.2: 4110 | version "0.3.2" 4111 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 4112 | dependencies: 4113 | prelude-ls "~1.1.2" 4114 | 4115 | typedarray@^0.0.6: 4116 | version "0.0.6" 4117 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 4118 | 4119 | ua-parser-js@^0.7.9: 4120 | version "0.7.12" 4121 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 4122 | 4123 | uglify-js@^2.6, uglify-js@^2.8.5: 4124 | version "2.8.22" 4125 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.22.tgz#d54934778a8da14903fa29a326fb24c0ab51a1a0" 4126 | dependencies: 4127 | source-map "~0.5.1" 4128 | yargs "~3.10.0" 4129 | optionalDependencies: 4130 | uglify-to-browserify "~1.0.0" 4131 | 4132 | uglify-to-browserify@~1.0.0: 4133 | version "1.0.2" 4134 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 4135 | 4136 | uid-number@^0.0.6: 4137 | version "0.0.6" 4138 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 4139 | 4140 | uncontrollable@^4.1.0: 4141 | version "4.1.0" 4142 | resolved "https://registry.yarnpkg.com/uncontrollable/-/uncontrollable-4.1.0.tgz#e0358291252e1865222d90939b19f2f49f81c1a9" 4143 | dependencies: 4144 | invariant "^2.1.0" 4145 | 4146 | url@^0.11.0: 4147 | version "0.11.0" 4148 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 4149 | dependencies: 4150 | punycode "1.3.2" 4151 | querystring "0.2.0" 4152 | 4153 | user-home@^2.0.0: 4154 | version "2.0.0" 4155 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 4156 | dependencies: 4157 | os-homedir "^1.0.0" 4158 | 4159 | util-deprecate@~1.0.1: 4160 | version "1.0.2" 4161 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4162 | 4163 | util@0.10.3, util@^0.10.3: 4164 | version "0.10.3" 4165 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 4166 | dependencies: 4167 | inherits "2.0.1" 4168 | 4169 | uuid@^3.0.0, uuid@^3.0.1: 4170 | version "3.0.1" 4171 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 4172 | 4173 | validate-npm-package-license@^3.0.1: 4174 | version "3.0.1" 4175 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 4176 | dependencies: 4177 | spdx-correct "~1.0.0" 4178 | spdx-expression-parse "~1.0.0" 4179 | 4180 | verror@1.3.6: 4181 | version "1.3.6" 4182 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 4183 | dependencies: 4184 | extsprintf "1.0.2" 4185 | 4186 | vm-browserify@0.0.4: 4187 | version "0.0.4" 4188 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 4189 | dependencies: 4190 | indexof "0.0.1" 4191 | 4192 | walker@~1.0.5: 4193 | version "1.0.7" 4194 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 4195 | dependencies: 4196 | makeerror "1.0.x" 4197 | 4198 | warning@^3.0.0: 4199 | version "3.0.0" 4200 | resolved "https://registry.yarnpkg.com/warning/-/warning-3.0.0.tgz#32e5377cb572de4ab04753bdf8821c01ed605b7c" 4201 | dependencies: 4202 | loose-envify "^1.0.0" 4203 | 4204 | watch@~0.10.0: 4205 | version "0.10.0" 4206 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 4207 | 4208 | watchpack@^1.3.1: 4209 | version "1.3.1" 4210 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.3.1.tgz#7d8693907b28ce6013e7f3610aa2a1acf07dad87" 4211 | dependencies: 4212 | async "^2.1.2" 4213 | chokidar "^1.4.3" 4214 | graceful-fs "^4.1.2" 4215 | 4216 | webidl-conversions@^3.0.0: 4217 | version "3.0.1" 4218 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 4219 | 4220 | webidl-conversions@^4.0.0: 4221 | version "4.0.1" 4222 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 4223 | 4224 | webpack-sources@^0.2.3: 4225 | version "0.2.3" 4226 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.2.3.tgz#17c62bfaf13c707f9d02c479e0dcdde8380697fb" 4227 | dependencies: 4228 | source-list-map "^1.1.1" 4229 | source-map "~0.5.3" 4230 | 4231 | webpack@^2.3.3: 4232 | version "2.4.1" 4233 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.4.1.tgz#15a91dbe34966d8a4b99c7d656efd92a2e5a6f6a" 4234 | dependencies: 4235 | acorn "^5.0.0" 4236 | acorn-dynamic-import "^2.0.0" 4237 | ajv "^4.7.0" 4238 | ajv-keywords "^1.1.1" 4239 | async "^2.1.2" 4240 | enhanced-resolve "^3.0.0" 4241 | interpret "^1.0.0" 4242 | json-loader "^0.5.4" 4243 | json5 "^0.5.1" 4244 | loader-runner "^2.3.0" 4245 | loader-utils "^0.2.16" 4246 | memory-fs "~0.4.1" 4247 | mkdirp "~0.5.0" 4248 | node-libs-browser "^2.0.0" 4249 | source-map "^0.5.3" 4250 | supports-color "^3.1.0" 4251 | tapable "~0.2.5" 4252 | uglify-js "^2.8.5" 4253 | watchpack "^1.3.1" 4254 | webpack-sources "^0.2.3" 4255 | yargs "^6.0.0" 4256 | 4257 | whatwg-encoding@^1.0.1: 4258 | version "1.0.1" 4259 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 4260 | dependencies: 4261 | iconv-lite "0.4.13" 4262 | 4263 | whatwg-fetch@>=0.10.0: 4264 | version "2.0.3" 4265 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 4266 | 4267 | whatwg-url@^4.3.0: 4268 | version "4.8.0" 4269 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 4270 | dependencies: 4271 | tr46 "~0.0.3" 4272 | webidl-conversions "^3.0.0" 4273 | 4274 | which-module@^1.0.0: 4275 | version "1.0.0" 4276 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 4277 | 4278 | which@^1.2.12: 4279 | version "1.2.14" 4280 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 4281 | dependencies: 4282 | isexe "^2.0.0" 4283 | 4284 | wide-align@^1.1.0: 4285 | version "1.1.0" 4286 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 4287 | dependencies: 4288 | string-width "^1.0.1" 4289 | 4290 | window-size@0.1.0: 4291 | version "0.1.0" 4292 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4293 | 4294 | wordwrap@0.0.2, wordwrap@~0.0.2: 4295 | version "0.0.2" 4296 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4297 | 4298 | wordwrap@~1.0.0: 4299 | version "1.0.0" 4300 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4301 | 4302 | worker-farm@^1.3.1: 4303 | version "1.4.1" 4304 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.4.1.tgz#a438bc993a7a7d133bcb6547c95eca7cff4897d8" 4305 | dependencies: 4306 | errno "^0.1.4" 4307 | xtend "^4.0.1" 4308 | 4309 | wrap-ansi@^2.0.0: 4310 | version "2.1.0" 4311 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4312 | dependencies: 4313 | string-width "^1.0.1" 4314 | strip-ansi "^3.0.1" 4315 | 4316 | wrappy@1: 4317 | version "1.0.2" 4318 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4319 | 4320 | write@^0.2.1: 4321 | version "0.2.1" 4322 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4323 | dependencies: 4324 | mkdirp "^0.5.1" 4325 | 4326 | xml-name-validator@^2.0.1: 4327 | version "2.0.1" 4328 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 4329 | 4330 | xtend@^4.0.0, xtend@^4.0.1: 4331 | version "4.0.1" 4332 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4333 | 4334 | y18n@^3.2.1: 4335 | version "3.2.1" 4336 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4337 | 4338 | yargs-parser@^4.2.0: 4339 | version "4.2.1" 4340 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 4341 | dependencies: 4342 | camelcase "^3.0.0" 4343 | 4344 | yargs-parser@^5.0.0: 4345 | version "5.0.0" 4346 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 4347 | dependencies: 4348 | camelcase "^3.0.0" 4349 | 4350 | yargs@^6.0.0: 4351 | version "6.6.0" 4352 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 4353 | dependencies: 4354 | camelcase "^3.0.0" 4355 | cliui "^3.2.0" 4356 | decamelize "^1.1.1" 4357 | get-caller-file "^1.0.1" 4358 | os-locale "^1.4.0" 4359 | read-pkg-up "^1.0.1" 4360 | require-directory "^2.1.1" 4361 | require-main-filename "^1.0.1" 4362 | set-blocking "^2.0.0" 4363 | string-width "^1.0.2" 4364 | which-module "^1.0.0" 4365 | y18n "^3.2.1" 4366 | yargs-parser "^4.2.0" 4367 | 4368 | yargs@^7.0.2: 4369 | version "7.1.0" 4370 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 4371 | dependencies: 4372 | camelcase "^3.0.0" 4373 | cliui "^3.2.0" 4374 | decamelize "^1.1.1" 4375 | get-caller-file "^1.0.1" 4376 | os-locale "^1.4.0" 4377 | read-pkg-up "^1.0.1" 4378 | require-directory "^2.1.1" 4379 | require-main-filename "^1.0.1" 4380 | set-blocking "^2.0.0" 4381 | string-width "^1.0.2" 4382 | which-module "^1.0.0" 4383 | y18n "^3.2.1" 4384 | yargs-parser "^5.0.0" 4385 | 4386 | yargs@~3.10.0: 4387 | version "3.10.0" 4388 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4389 | dependencies: 4390 | camelcase "^1.0.2" 4391 | cliui "^2.1.0" 4392 | decamelize "^1.0.0" 4393 | window-size "0.1.0" 4394 | --------------------------------------------------------------------------------