├── .babelrc ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── examples ├── basic │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── DragItem.css │ │ ├── DragItem.js │ │ ├── index.css │ │ └── index.js └── mobile-backend │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ ├── favicon.ico │ └── index.html │ └── src │ ├── App.css │ ├── App.js │ ├── DragItem.css │ ├── DragItem.js │ ├── DragPreview.css │ ├── DragPreview.js │ ├── index.css │ └── index.js ├── package.json ├── src ├── index.js └── util.js ├── test ├── fixtures │ └── .gitkeep ├── intBetween.js ├── mocha.opts ├── setup.js └── strength-creators-test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["@babel/preset-env", "@babel/preset-react"], 3 | "plugins": ["@babel/plugin-proposal-class-properties"] 4 | } 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | parser: 'babel-eslint', 3 | extends: 'airbnb', 4 | 5 | rules: { 6 | 'react/jsx-filename-extension': 0, 7 | 'no-unused-vars': 0, 8 | 'react/prop-types': 0, 9 | }, 10 | 11 | env: { 12 | browser: true, 13 | mocha: true 14 | }, 15 | } 16 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | *.log 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | examples 2 | node_modules 3 | src 4 | test 5 | 6 | .babelrc 7 | .eslintrc 8 | .gitignore 9 | .travis.yml 10 | CONTRIBUTING 11 | *.log 12 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '4.2' 4 | - '5.5' 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ### `v4.0.0` 4 | * Change `speed` prop to `strengthMultiplier` 5 | * Adds a hard dependency on using `react-dnd` which was theoretically 6 | optional before. 7 | * Fix double dispatch of `onDragOver` prop 8 | * Default strength functions always return 0 if the point is anywhere 9 | outside the box. 10 | 11 | ### `v3.2.0` 12 | * Use `prop-types` package instead of deprecated `React.PropTypes` 13 | 14 | ### `v3.1.0` 15 | * Add `onScrollChange` prop 16 | 17 | ### `v3.0.0` 18 | * Export a higher order component instead of a component. 19 | * Set displayName on component 20 | * Hoist non-react static properties 21 | 22 | ##### Before (v2) 23 | ```js 24 | import Scrollzone from 'react-dnd-scrollzone'; 25 | const zone = ; 26 | ``` 27 | 28 | ##### After (v3) 29 | ```js 30 | import withScrolling from 'react-dnd-scrollzone'; 31 | const Scrollzone = withScrolling('div'); 32 | const zone = ; 33 | ``` 34 | 35 | ### `v2.0.0` 36 | * Remove `buffer` prop. 37 | * Add `horizontalStrength` and `verticalStrength` props. 38 | * Add `createVerticalStrength` and `createHorizontalStrength` exports. 39 | * Fix bug with strength calculations and large buffers. 40 | * Fix bug with scrolling not always stopping when drop targets are nested. 41 | 42 | ##### Before (v1) 43 | ```js 44 | import Scrollzone from 'react-dnd-scrollzone'; 45 | const zone = ; 46 | ``` 47 | 48 | ##### After (v2) 49 | ```js 50 | import Scrollzone, { createVerticalStrength, createHorizontalStrength } from 'react-dnd-scrollzone'; 51 | const vStrength = createVerticalStrength(300); 52 | const hStrength = createHorizontalStrength(300); 53 | const zone = ; 54 | ``` 55 | 56 | ### `v1.1.0` 57 | * Initial release. 58 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | ## PRs and Contributions 4 | * Tests must pass. 5 | * Follow existing coding style. 6 | * If you fix a bug or add a feature, add a test. 7 | 8 | ## Issues 9 | Things that will help get your question issue looked at: 10 | * Full and runnable JS code. 11 | * Clear description of the problem or unexpected behavior. 12 | * Clear description of the expected result. 13 | * Steps you have taken to debug it yourself. 14 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | (The MIT License) 2 | 3 | Copyright (c) 2016 Nicholas Clawson 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining 6 | a copy of this software and associated documentation files (the 7 | 'Software'), to deal in the Software without restriction, including 8 | without limitation the rights to use, copy, modify, merge, publish, 9 | distribute, sublicense, and/or sell copies of the Software, and to 10 | permit persons to whom the Software is furnished to do so, subject to 11 | the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be 14 | included in all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 20 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 21 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 22 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # frontend-collective-react-dnd-scrollzone 2 | 3 | Forked from https://github.com/azuqua/react-dnd-scrollzone with support for react-dnd@7. 4 | 5 | Cross browser compatible scrolling containers for drag and drop interactions. 6 | 7 | ### [Basic Example](./examples/basic) 8 | 9 | ```js 10 | import React, { Component } from 'react'; 11 | import { DragDropContextProvider } from 'react-dnd'; 12 | import HTML5Backend from 'react-dnd-html5-backend'; 13 | import withScrolling from 'react-dnd-scrollzone'; 14 | import DragItem from './DragItem'; 15 | import './App.css'; 16 | 17 | const ScrollingComponent = withScrolling('div'); 18 | 19 | const ITEMS = [1,2,3,4,5,6,7,8,9,10]; 20 | 21 | export default class App extends Component { 22 | render() { 23 | return ( 24 | 25 | 26 | {ITEMS.map(n => ( 27 | 28 | ))} 29 | 30 | 31 | ); 32 | } 33 | } 34 | ``` 35 | 36 | Note: You should replace the original `div` you would like to make scrollable with the `ScrollingComponent`. 37 | 38 | ### Easing Example 39 | 40 | ```js 41 | import React, { Component } from 'react'; 42 | import { DragDropContextProvider } from 'react-dnd'; 43 | import HTML5Backend from 'react-dnd-html5-backend'; 44 | import withScrolling, { createHorizontalStrength, createVerticalStrength } from 'react-dnd-scrollzone'; 45 | import DragItem from './DragItem'; 46 | import './App.css'; 47 | 48 | 49 | const ScrollZone = withScrolling('ul'); 50 | const linearHorizontalStrength = createHorizontalStrength(150); 51 | const linearVerticalStrength = createVerticalStrength(150); 52 | const ITEMS = [1,2,3,4,5,6,7,8,9,10]; 53 | 54 | // this easing function is from https://gist.github.com/gre/1650294 and 55 | // expects/returns a number between [0, 1], however strength functions 56 | // expects/returns a value between [-1, 1] 57 | function ease(val) { 58 | const t = (val + 1) / 2; // [-1, 1] -> [0, 1] 59 | const easedT = t<.5 ? 2*t*t : -1+(4-2*t)*t; 60 | return easedT * 2 - 1; // [0, 1] -> [-1, 1] 61 | } 62 | 63 | function hStrength(box, point) { 64 | return ease(linearHorizontalStrength(box, point)); 65 | } 66 | 67 | function vStrength(box, point) { 68 | return ease(linearVerticalStrength(box, point)); 69 | } 70 | 71 | export default App(props) { 72 | return ( 73 | 74 | 78 | 79 | {ITEMS.map(n => ( 80 | 81 | ))} 82 | 83 | 84 | ); 85 | } 86 | ``` 87 | Note: You should replace the original `div` you would like to make scrollable with the `ScrollingComponent`. 88 | 89 | ### Virtualized Example 90 | 91 | Since react-dnd-scrollzone utilizes the Higher Order Components (HOC) pattern, drag and drop scrolling behaviour can easily be added to existing components. For example to speedup huge lists by using [react-virtualized](https://github.com/bvaughn/react-virtualized) for a windowed view where only the visible rows are rendered: 92 | 93 | ```js 94 | import React from 'react'; 95 | import { DragDropContextProvider } from 'react-dnd'; 96 | import HTML5Backend from 'react-dnd-html5-backend'; 97 | import withScrolling from 'react-dnd-scrollzone'; 98 | import { List } from 'react-virtualized'; 99 | import DragItem from './DragItem'; 100 | import './App.css'; 101 | 102 | const ScrollingVirtualList = withScrolling(List); 103 | 104 | // creates array with 1000 entries 105 | const ITEMS = Array.from(Array(1000)).map((e,i)=> `Item ${i}`); 106 | 107 | 108 | export default App(props) { 109 | return ( 110 | 111 | ( 119 | 124 | ) 125 | } 126 | /> 127 | 128 | ); 129 | } 130 | ``` 131 | 132 | 133 | ### API 134 | 135 | #### `withScrolling` 136 | 137 | A React higher order component with the following properties: 138 | 139 | ```js 140 | const ScrollZone = withScrolling(String|Component); 141 | 142 | 147 | 148 | {children} 149 | 150 | ``` 151 | Apply the withScrolling function to any html-identifier ("div", "ul" etc) or react component to add drag and drop scrolling behaviour. 152 | 153 | * `horizontalStrength` a function that returns the strength of the horizontal scroll direction 154 | * `verticalStrength` - a function that returns the strength of the vertical scroll direction 155 | * `strengthMultiplier` - strength multiplier, play around with this (default 30) 156 | * `onScrollChange` - a function that is called when `scrollLeft` or `scrollTop` of the component are changed. Called with those two arguments in that order. 157 | 158 | The strength functions are both called with two arguments. An object representing the rectangle occupied by the Scrollzone, and an object representing the coordinates of mouse. 159 | 160 | They should return a value between -1 and 1. 161 | * Negative values scroll up or left. 162 | * Positive values scroll down or right. 163 | * 0 stops all scrolling. 164 | 165 | #### `createVerticalStrength(buffer)` and `createHorizontalStrength(buffer)` 166 | 167 | These allow you to create linearly scaling strength functions with a sensitivity different than the default value of 150px. 168 | 169 | ##### Example 170 | 171 | ```js 172 | import withScrolling, { createVerticalStrength, createHorizontalStrength } from 'react-dnd-scrollzone'; 173 | 174 | const Scrollzone = withScrolling('ul'); 175 | const vStrength = createVerticalStrength(500); 176 | const hStrength = createHorizontalStrength(300); 177 | 178 | // zone will scroll when the cursor drags within 179 | // 500px of the top/bottom and 300px of the left/right 180 | const zone = ( 181 | 182 | 183 | 184 | ); 185 | ``` 186 | -------------------------------------------------------------------------------- /examples/basic/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | 6 | # testing 7 | /coverage 8 | 9 | # production 10 | /build 11 | 12 | # misc 13 | .DS_Store 14 | .env 15 | npm-debug.log* 16 | yarn-debug.log* 17 | yarn-error.log* 18 | 19 | -------------------------------------------------------------------------------- /examples/basic/README.md: -------------------------------------------------------------------------------- 1 | # Basic Example 2 | 3 | ```bash 4 | # in this directory 5 | npm install 6 | npm start 7 | ``` 8 | -------------------------------------------------------------------------------- /examples/basic/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "basic", 3 | "version": "0.1.0", 4 | "private": true, 5 | "devDependencies": { 6 | "react-scripts": "0.9.5" 7 | }, 8 | "dependencies": { 9 | "prop-types": "^15.5.9", 10 | "react": "^15.5.4", 11 | "react-dnd": "^2.4.0", 12 | "react-dnd-html5-backend": "^2.4.1", 13 | "react-dnd-scrollzone": "^3.1.0", 14 | "react-dom": "^15.5.4" 15 | }, 16 | "scripts": { 17 | "start": "react-scripts start", 18 | "build": "react-scripts build", 19 | "test": "react-scripts test --env=jsdom", 20 | "eject": "react-scripts eject" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /examples/basic/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-collective/frontend-collective-react-dnd-scrollzone/9eead370d2dd43687143f536e5d1b14ee375a2a8/examples/basic/public/favicon.ico -------------------------------------------------------------------------------- /examples/basic/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 16 | React App 17 | 18 | 19 |
20 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /examples/basic/src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | width: 500px; 3 | height: 500px; 4 | overflow: scroll; 5 | border: solid 2px black; 6 | } 7 | -------------------------------------------------------------------------------- /examples/basic/src/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import HTML5Backend from 'react-dnd-html5-backend'; 3 | import { DragDropContextProvider } from 'react-dnd'; 4 | import withScrolling from 'react-dnd-scrollzone'; 5 | import DragItem from './DragItem'; 6 | import './App.css'; 7 | 8 | const ScrollingComponent = withScrolling('div'); 9 | 10 | const ITEMS = [1,2,3,4,5,6,7,8,9,10]; 11 | 12 | export default class App extends Component { 13 | render() { 14 | return ( 15 | 16 | 17 | {ITEMS.map(n => ( 18 | 19 | ))} 20 | 21 | 22 | ); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /examples/basic/src/DragItem.css: -------------------------------------------------------------------------------- 1 | .DragItem { 2 | width: 100%; 3 | border: solid 1px black; 4 | padding: 30px; 5 | } 6 | -------------------------------------------------------------------------------- /examples/basic/src/DragItem.js: -------------------------------------------------------------------------------- 1 | import React, { PureComponent } from 'react'; 2 | import PropTypes from 'prop-types'; 3 | import { DragSource } from 'react-dnd'; 4 | import './DragItem.css'; 5 | 6 | class DragItem extends PureComponent { 7 | 8 | static propTypes = { 9 | label: PropTypes.string.isRequired, 10 | }; 11 | 12 | render() { 13 | return this.props.dragSource( 14 |
15 | {this.props.label} 16 |
17 | ); 18 | } 19 | } 20 | 21 | export default DragSource( 22 | 'foo', 23 | { 24 | beginDrag() { 25 | return {} 26 | } 27 | }, 28 | (connect) => ({ 29 | dragSource: connect.dragSource(), 30 | }) 31 | )(DragItem); 32 | -------------------------------------------------------------------------------- /examples/basic/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | padding: 0; 4 | font-family: sans-serif; 5 | } 6 | -------------------------------------------------------------------------------- /examples/basic/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import App from './App'; 4 | import './index.css'; 5 | 6 | ReactDOM.render( 7 | , 8 | document.getElementById('root') 9 | ); 10 | -------------------------------------------------------------------------------- /examples/mobile-backend/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | 6 | # testing 7 | /coverage 8 | 9 | # production 10 | /build 11 | 12 | # misc 13 | .DS_Store 14 | .env 15 | npm-debug.log* 16 | yarn-debug.log* 17 | yarn-error.log* 18 | 19 | -------------------------------------------------------------------------------- /examples/mobile-backend/README.md: -------------------------------------------------------------------------------- 1 | # Basic Example 2 | 3 | ```bash 4 | # in this directory 5 | npm install 6 | npm start 7 | ``` 8 | -------------------------------------------------------------------------------- /examples/mobile-backend/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mobile-backend", 3 | "version": "0.1.0", 4 | "private": true, 5 | "devDependencies": { 6 | "react-scripts": "0.9.5" 7 | }, 8 | "dependencies": { 9 | "prop-types": "^15.5.9", 10 | "react": "^15.5.4", 11 | "react-dnd": "^2.4.0", 12 | "react-dnd-scrollzone": "^4.0.0", 13 | "react-dnd-touch-backend": "^0.3.10", 14 | "react-dom": "^15.5.4" 15 | }, 16 | "scripts": { 17 | "start": "react-scripts start", 18 | "build": "react-scripts build", 19 | "test": "react-scripts test --env=jsdom", 20 | "eject": "react-scripts eject" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /examples/mobile-backend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-collective/frontend-collective-react-dnd-scrollzone/9eead370d2dd43687143f536e5d1b14ee375a2a8/examples/mobile-backend/public/favicon.ico -------------------------------------------------------------------------------- /examples/mobile-backend/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 16 | React App 17 | 18 | 19 |
20 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /examples/mobile-backend/src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | width: 500px; 3 | height: 500px; 4 | overflow: scroll; 5 | border: solid 2px black; 6 | } 7 | -------------------------------------------------------------------------------- /examples/mobile-backend/src/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import TouchBackend from 'react-dnd-touch-backend'; 3 | import { DragDropContextProvider } from 'react-dnd'; 4 | import withScrolling from 'react-dnd-scrollzone'; 5 | import DragItem from './DragItem'; 6 | import DragPreview from './DragPreview'; 7 | import './App.css'; 8 | 9 | const ScrollingComponent = withScrolling('div'); 10 | 11 | const ITEMS = [1,2,3,4,5,6,7,8,9,10]; 12 | 13 | export default class App extends Component { 14 | render() { 15 | return ( 16 | 17 | 18 | {ITEMS.map(n => ( 19 | 20 | ))} 21 | 22 | 23 | 24 | ); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /examples/mobile-backend/src/DragItem.css: -------------------------------------------------------------------------------- 1 | .DragItem { 2 | width: 100%; 3 | border: solid 1px black; 4 | padding: 30px; 5 | } 6 | -------------------------------------------------------------------------------- /examples/mobile-backend/src/DragItem.js: -------------------------------------------------------------------------------- 1 | import React, { PureComponent } from 'react'; 2 | import PropTypes from 'prop-types'; 3 | import { DragSource } from 'react-dnd'; 4 | import './DragItem.css'; 5 | 6 | class DragItem extends PureComponent { 7 | 8 | static propTypes = { 9 | label: PropTypes.string.isRequired, 10 | }; 11 | 12 | render() { 13 | return this.props.dragSource( 14 |
15 | {this.props.label} 16 |
17 | ); 18 | } 19 | } 20 | 21 | export default DragSource( 22 | 'foo', 23 | { 24 | beginDrag() { 25 | return {} 26 | } 27 | }, 28 | (connect) => ({ 29 | dragSource: connect.dragSource(), 30 | }) 31 | )(DragItem); 32 | -------------------------------------------------------------------------------- /examples/mobile-backend/src/DragPreview.css: -------------------------------------------------------------------------------- 1 | .DragPreview { 2 | position: absolute; 3 | top: 0; 4 | left: 0; 5 | height: 100vh; 6 | width: 100vw; 7 | pointer-events: none; 8 | z-index: 1000; 9 | } 10 | 11 | .DragPreview__item { 12 | width: 100px; 13 | height: 100px; 14 | background: white; 15 | border: solid 1px black; 16 | } 17 | -------------------------------------------------------------------------------- /examples/mobile-backend/src/DragPreview.js: -------------------------------------------------------------------------------- 1 | import React, { PureComponent } from 'react'; 2 | import { DragLayer } from 'react-dnd'; 3 | import './DragPreview.css'; 4 | 5 | class DragPreview extends PureComponent { 6 | 7 | render() { 8 | const { 9 | item, 10 | offset, 11 | } = this.props; 12 | 13 | return ( 14 |
15 | {item && ( 16 |
24 | )} 25 |
26 | ); 27 | } 28 | } 29 | 30 | export default DragLayer( 31 | monitor => ({ 32 | item: monitor.getItem(), 33 | offset: monitor.getClientOffset(), 34 | }) 35 | )(DragPreview); 36 | -------------------------------------------------------------------------------- /examples/mobile-backend/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | padding: 0; 4 | font-family: sans-serif; 5 | } 6 | -------------------------------------------------------------------------------- /examples/mobile-backend/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import App from './App'; 4 | import './index.css'; 5 | 6 | ReactDOM.render( 7 | , 8 | document.getElementById('root') 9 | ); 10 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "frontend-collective-react-dnd-scrollzone", 3 | "version": "1.0.2", 4 | "description": "A cross browser solution to scrolling during drag and drop.", 5 | "main": "lib/index.js", 6 | "scripts": { 7 | "build": "rm -rf lib && babel src --out-dir lib", 8 | "lint": "eslint src", 9 | "pretest": "npm run lint", 10 | "test": "mocha test", 11 | "prepublish": "in-publish && npm run test && npm run build || not-in-publish", 12 | "publish:major": "npm version major && npm publish", 13 | "publish:minor": "npm version minor && npm publish", 14 | "publish:patch": "npm version patch && npm publish", 15 | "postpublish": "git push origin master --tags" 16 | }, 17 | "repository": { 18 | "type": "git", 19 | "url": "https://github.com/frontend-collective/react-dnd-scrollzone" 20 | }, 21 | "bugs": { 22 | "url": "http://github.com/frontend-collective/react-dnd-scrollzone/issues" 23 | }, 24 | "keywords": [ 25 | "react", 26 | "drag", 27 | "drop", 28 | "scroll", 29 | "dnd", 30 | "drag and drop", 31 | "polyfill", 32 | "auto" 33 | ], 34 | "author": { 35 | "name": "Nicholas Clawson", 36 | "email": "nickclaw@gmail.com", 37 | "url": "nickclaw.com" 38 | }, 39 | "license": "MIT", 40 | "dependencies": { 41 | "hoist-non-react-statics": "^3.1.0", 42 | "lodash.throttle": "^4.0.1", 43 | "prop-types": "^15.5.9", 44 | "raf": "^3.2.0", 45 | "react-display-name": "^0.2.0" 46 | }, 47 | "devDependencies": { 48 | "@babel/cli": "^7.0.0", 49 | "@babel/core": "^7.0.0", 50 | "@babel/plugin-proposal-class-properties": "^7.0.0", 51 | "@babel/preset-env": "^7.0.0", 52 | "@babel/preset-react": "^7.0.0", 53 | "@babel/register": "^7.0.0", 54 | "babel-eslint": "^10.0.1", 55 | "chai": "^4.2.0", 56 | "eslint": "^5.9.0", 57 | "eslint-config-airbnb": "^17.1.0", 58 | "eslint-plugin-import": "^2.14.0", 59 | "eslint-plugin-jsx-a11y": "^6.1.2", 60 | "eslint-plugin-react": "^7.11.1", 61 | "in-publish": "^2.0.0", 62 | "mocha": "^5.2.0", 63 | "react": "^16.3.0", 64 | "react-dnd": "^7.3.0", 65 | "react-dom": "^16.3.0", 66 | "sinon": "^7.1.1", 67 | "sinon-chai": "^3.2.0" 68 | }, 69 | "peerDependencies": { 70 | "react": "^16.3.0", 71 | "react-dnd": "^7.3.0", 72 | "react-dom": "^16.3.0" 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import PropTypes from 'prop-types'; 3 | import { findDOMNode } from 'react-dom'; 4 | import throttle from 'lodash.throttle'; 5 | import raf from 'raf'; 6 | import getDisplayName from 'react-display-name'; 7 | import { DragDropContextConsumer } from 'react-dnd'; 8 | import hoist from 'hoist-non-react-statics'; 9 | import { noop, intBetween, getCoords } from './util'; 10 | 11 | const DEFAULT_BUFFER = 150; 12 | 13 | export function createHorizontalStrength(_buffer) { 14 | return function defaultHorizontalStrength({ 15 | x, w, y, h, 16 | }, point) { 17 | const buffer = Math.min(w / 2, _buffer); 18 | const inRange = point.x >= x && point.x <= x + w; 19 | const inBox = inRange && point.y >= y && point.y <= y + h; 20 | 21 | if (inBox) { 22 | if (point.x < x + buffer) { 23 | return (point.x - x - buffer) / buffer; 24 | } 25 | if (point.x > (x + w - buffer)) { 26 | return -(x + w - point.x - buffer) / buffer; 27 | } 28 | } 29 | 30 | return 0; 31 | }; 32 | } 33 | 34 | export function createVerticalStrength(_buffer) { 35 | return function defaultVerticalStrength({ 36 | y, h, x, w, 37 | }, point) { 38 | const buffer = Math.min(h / 2, _buffer); 39 | const inRange = point.y >= y && point.y <= y + h; 40 | const inBox = inRange && point.x >= x && point.x <= x + w; 41 | 42 | if (inBox) { 43 | if (point.y < y + buffer) { 44 | return (point.y - y - buffer) / buffer; 45 | } 46 | if (point.y > (y + h - buffer)) { 47 | return -(y + h - point.y - buffer) / buffer; 48 | } 49 | } 50 | 51 | return 0; 52 | }; 53 | } 54 | 55 | export const defaultHorizontalStrength = createHorizontalStrength(DEFAULT_BUFFER); 56 | 57 | export const defaultVerticalStrength = createVerticalStrength(DEFAULT_BUFFER); 58 | 59 | 60 | export function createScrollingComponent(WrappedComponent) { 61 | class ScrollingComponent extends Component { 62 | static displayName = `Scrolling(${getDisplayName(WrappedComponent)})`; 63 | 64 | static propTypes = { 65 | // eslint-disable-next-line react/forbid-prop-types 66 | dragDropManager: PropTypes.object.isRequired, 67 | onScrollChange: PropTypes.func, 68 | verticalStrength: PropTypes.func, 69 | horizontalStrength: PropTypes.func, 70 | strengthMultiplier: PropTypes.number, 71 | }; 72 | 73 | static defaultProps = { 74 | onScrollChange: noop, 75 | verticalStrength: defaultVerticalStrength, 76 | horizontalStrength: defaultHorizontalStrength, 77 | strengthMultiplier: 30, 78 | }; 79 | 80 | // Update scaleX and scaleY every 100ms or so 81 | // and start scrolling if necessary 82 | updateScrolling = throttle((evt) => { 83 | const { 84 | left: x, top: y, width: w, height: h, 85 | } = this.container.getBoundingClientRect(); 86 | const box = { 87 | x, y, w, h, 88 | }; 89 | const coords = getCoords(evt); 90 | 91 | // calculate strength 92 | const { horizontalStrength, verticalStrength } = this.props; 93 | this.scaleX = horizontalStrength(box, coords); 94 | this.scaleY = verticalStrength(box, coords); 95 | 96 | // start scrolling if we need to 97 | if (!this.frame && (this.scaleX || this.scaleY)) { 98 | this.startScrolling(); 99 | } 100 | }, 100, { trailing: false }) 101 | 102 | constructor(props, ctx) { 103 | super(props, ctx); 104 | 105 | this.wrappedInstance = React.createRef(); 106 | 107 | this.scaleX = 0; 108 | this.scaleY = 0; 109 | this.frame = null; 110 | 111 | this.attached = false; 112 | this.dragging = false; 113 | } 114 | 115 | componentDidMount() { 116 | // eslint-disable-next-line react/no-find-dom-node 117 | this.container = findDOMNode(this.wrappedInstance.current); 118 | 119 | if (this.container && typeof this.container.addEventListener === 'function') { 120 | this.container.addEventListener('dragover', this.handleEvent); 121 | } 122 | 123 | // touchmove events don't seem to work across siblings, so we unfortunately 124 | // have to attach the listeners to the body 125 | window.document.body.addEventListener('touchmove', this.handleEvent); 126 | 127 | const { dragDropManager } = this.props; 128 | this.clearMonitorSubscription = dragDropManager 129 | .getMonitor() 130 | .subscribeToStateChange(() => this.handleMonitorChange()); 131 | } 132 | 133 | componentWillUnmount() { 134 | if (this.container && typeof this.container.removeEventListener === 'function') { 135 | this.container.removeEventListener('dragover', this.handleEvent); 136 | } 137 | 138 | window.document.body.removeEventListener('touchmove', this.handleEvent); 139 | this.clearMonitorSubscription(); 140 | this.stopScrolling(); 141 | } 142 | 143 | handleEvent = (evt) => { 144 | if (this.dragging && !this.attached) { 145 | this.attach(); 146 | this.updateScrolling(evt); 147 | } 148 | } 149 | 150 | handleMonitorChange() { 151 | const { dragDropManager } = this.props; 152 | const isDragging = dragDropManager.getMonitor().isDragging(); 153 | 154 | if (!this.dragging && isDragging) { 155 | this.dragging = true; 156 | } else if (this.dragging && !isDragging) { 157 | this.dragging = false; 158 | this.stopScrolling(); 159 | } 160 | } 161 | 162 | attach() { 163 | this.attached = true; 164 | window.document.body.addEventListener('dragover', this.updateScrolling); 165 | window.document.body.addEventListener('touchmove', this.updateScrolling); 166 | } 167 | 168 | detach() { 169 | this.attached = false; 170 | window.document.body.removeEventListener('dragover', this.updateScrolling); 171 | window.document.body.removeEventListener('touchmove', this.updateScrolling); 172 | } 173 | 174 | startScrolling() { 175 | let i = 0; 176 | const tick = () => { 177 | const { scaleX, scaleY, container } = this; 178 | const { strengthMultiplier, onScrollChange } = this.props; 179 | 180 | // stop scrolling if there's nothing to do 181 | if (strengthMultiplier === 0 || scaleX + scaleY === 0) { 182 | this.stopScrolling(); 183 | return; 184 | } 185 | 186 | // there's a bug in safari where it seems like we can't get 187 | // mousemove events from a container that also emits a scroll 188 | // event that same frame. So we double the strengthMultiplier and only adjust 189 | // the scroll position at 30fps 190 | i += 1; 191 | if (i % 2) { 192 | const { 193 | scrollLeft, 194 | scrollTop, 195 | scrollWidth, 196 | scrollHeight, 197 | clientWidth, 198 | clientHeight, 199 | } = container; 200 | 201 | const newLeft = scaleX 202 | ? container.scrollLeft = intBetween( 203 | 0, 204 | scrollWidth - clientWidth, 205 | scrollLeft + scaleX * strengthMultiplier, 206 | ) 207 | : scrollLeft; 208 | 209 | const newTop = scaleY 210 | ? container.scrollTop = intBetween( 211 | 0, 212 | scrollHeight - clientHeight, 213 | scrollTop + scaleY * strengthMultiplier, 214 | ) 215 | : scrollTop; 216 | 217 | onScrollChange(newLeft, newTop); 218 | } 219 | this.frame = raf(tick); 220 | }; 221 | 222 | tick(); 223 | } 224 | 225 | stopScrolling() { 226 | this.detach(); 227 | this.scaleX = 0; 228 | this.scaleY = 0; 229 | 230 | if (this.frame) { 231 | raf.cancel(this.frame); 232 | this.frame = null; 233 | } 234 | } 235 | 236 | render() { 237 | const { 238 | // not passing down these props 239 | strengthMultiplier, 240 | verticalStrength, 241 | horizontalStrength, 242 | onScrollChange, 243 | 244 | ...props 245 | } = this.props; 246 | 247 | return ( 248 | 252 | ); 253 | } 254 | } 255 | 256 | return hoist(ScrollingComponent, WrappedComponent); 257 | } 258 | 259 | export default function createScrollingComponentWithConsumer(WrappedComponent) { 260 | const ScrollingComponent = createScrollingComponent(WrappedComponent); 261 | return props => ( 262 | 263 | {({ dragDropManager }) => ( 264 | dragDropManager === undefined 265 | ? null 266 | : 267 | )} 268 | 269 | ); 270 | } 271 | -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- 1 | 2 | export function noop() { 3 | 4 | } 5 | 6 | export function intBetween(min, max, val) { 7 | return Math.floor( 8 | Math.min(max, Math.max(min, val)), 9 | ); 10 | } 11 | 12 | 13 | export function getCoords(evt) { 14 | if (evt.type === 'touchmove') { 15 | return { x: evt.changedTouches[0].clientX, y: evt.changedTouches[0].clientY }; 16 | } 17 | 18 | return { x: evt.clientX, y: evt.clientY }; 19 | } 20 | -------------------------------------------------------------------------------- /test/fixtures/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-collective/frontend-collective-react-dnd-scrollzone/9eead370d2dd43687143f536e5d1b14ee375a2a8/test/fixtures/.gitkeep -------------------------------------------------------------------------------- /test/intBetween.js: -------------------------------------------------------------------------------- 1 | import { intBetween } from '../src/util'; 2 | 3 | describe('private intBetween()', () => { 4 | 5 | it('should return val if it is an int between min and max', () => { 6 | expect(intBetween(0, 2, 1)).to.equal(1); 7 | }); 8 | 9 | it('should floor the val if it not an int', () => { 10 | expect(intBetween(0, 2, .5)).to.equal(0); 11 | }); 12 | 13 | it('should take the floor of the min if its the bigger than val and not an int', () => { 14 | expect(intBetween(.5, 2, -1)).to.equal(0); 15 | }); 16 | 17 | it('should take the floor of the max if its lower than val and not an int', () => { 18 | expect(intBetween(0, 1.5, 2)).to.equal(1); 19 | }); 20 | }); 21 | -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --require @babel/register 2 | --require test/setup 3 | --check-leaks 4 | --throw-deprecation 5 | -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- 1 | import chai from 'chai'; 2 | import sinon from 'sinon'; 3 | import sinonChai from "sinon-chai"; 4 | 5 | chai.should(); 6 | chai.use(sinonChai); 7 | global.expect = chai.expect; 8 | global.sinon = sinon; 9 | -------------------------------------------------------------------------------- /test/strength-creators-test.js: -------------------------------------------------------------------------------- 1 | import { createHorizontalStrength, createVerticalStrength } from '../src'; 2 | 3 | describe('strength functions', function() { 4 | let hFn = createHorizontalStrength(150); 5 | let vFn = createVerticalStrength(150); 6 | let box = { x: 0, y: 0, w: 600, h: 600 }; 7 | let lilBox = { x: 0, y: 0, w: 100, h: 100 }; 8 | 9 | describe('horizontalStrength', function() { 10 | it('should return -1 when all the way at the left', function() { 11 | expect(hFn(box, { x: 0, y: 0 })).to.equal(-1); 12 | }); 13 | 14 | it('should return 1 when all the way at the right', function() { 15 | expect(hFn(box, { x: 600, y: 0 })).to.equal(1); 16 | }); 17 | 18 | it('should return 0 when in the center', function() { 19 | expect(hFn(box, { x: 300, y: 0 })).to.equal(0); 20 | }); 21 | 22 | it('should return 0 when at either buffer boundary', function() { 23 | expect(hFn(box, { x: 150, y: 0 })).to.equal(0); 24 | expect(hFn(box, { x: 450, y: 0 })).to.equal(0); 25 | }); 26 | 27 | it('should return 0 when outside the box', function() { 28 | expect(hFn(box, { x: 0, y: -100 })).to.equal(0); 29 | expect(hFn(box, { x: 0, y: 900 })).to.equal(0); 30 | }); 31 | 32 | it('should scale linearly from the boundary to respective buffer', function() { 33 | expect(hFn(box, { x: 75, y: 0 })).to.equal(-.5); 34 | expect(hFn(box, { x: 525, y: 0 })).to.equal(.5); 35 | }); 36 | 37 | it('should handle buffers larger than the box gracefully', function() { 38 | expect(hFn(lilBox, { x: 50, y: 0 })).to.equal(0); 39 | }); 40 | }); 41 | 42 | describe('verticalStrength', function() { 43 | it('should return -1 when all the way at the top', function() { 44 | expect(vFn(box, { x: 0, y: 0 })).to.equal(-1); 45 | }); 46 | 47 | it('should return 1 when all the way at the bottom', function() { 48 | expect(vFn(box, { x: 0, y: 600 })).to.equal(1); 49 | }); 50 | 51 | it('should return 0 when in the center', function() { 52 | expect(vFn(box, { x: 0, y: 300 })).to.equal(0); 53 | }); 54 | 55 | it('should return 0 when at the buffer boundary', function() { 56 | expect(vFn(box, { x: 0, y: 150 })).to.equal(0); 57 | expect(vFn(box, { x: 0, y: 450 })).to.equal(0); 58 | }); 59 | 60 | it('should return 0 when outside the box', function() { 61 | expect(vFn(box, { x: -100, y: 0 })).to.equal(0); 62 | expect(vFn(box, { x: 900, y: 0 })).to.equal(0); 63 | }); 64 | 65 | it('should scale linearly from the boundary to respective buffer', function() { 66 | expect(vFn(box, { x: 0, y: 75 })).to.equal(-.5); 67 | expect(vFn(box, { x: 0, y: 525 })).to.equal(.5); 68 | }); 69 | 70 | it('should handle buffers larger than the box gracefully', function() { 71 | expect(vFn(lilBox, { x: 0, y: 50 })).to.equal(0); 72 | }); 73 | }); 74 | }); 75 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/cli@^7.0.0": 6 | version "7.2.0" 7 | resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.2.0.tgz#505ed8d351daee6a88918da02c046c18c8c5a24f" 8 | integrity sha512-FLteTkEoony0DX8NbnT51CmwmLBzINdlXmiJCSqCLmqWCDA/xk8EITPWqwDnVLbuK0bsZONt/grqHnQzQ15j0Q== 9 | dependencies: 10 | commander "^2.8.1" 11 | convert-source-map "^1.1.0" 12 | fs-readdir-recursive "^1.1.0" 13 | glob "^7.0.0" 14 | lodash "^4.17.10" 15 | mkdirp "^0.5.1" 16 | output-file-sync "^2.0.0" 17 | slash "^2.0.0" 18 | source-map "^0.5.0" 19 | optionalDependencies: 20 | chokidar "^2.0.3" 21 | 22 | "@babel/code-frame@^7.0.0": 23 | version "7.0.0" 24 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" 25 | integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA== 26 | dependencies: 27 | "@babel/highlight" "^7.0.0" 28 | 29 | "@babel/core@^7.0.0": 30 | version "7.2.0" 31 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.2.0.tgz#a4dd3814901998e93340f0086e9867fefa163ada" 32 | integrity sha512-7pvAdC4B+iKjFFp9Ztj0QgBndJ++qaMeonT185wAqUnhipw8idm9Rv1UMyBuKtYjfl6ORNkgEgcsYLfHX/GpLw== 33 | dependencies: 34 | "@babel/code-frame" "^7.0.0" 35 | "@babel/generator" "^7.2.0" 36 | "@babel/helpers" "^7.2.0" 37 | "@babel/parser" "^7.2.0" 38 | "@babel/template" "^7.1.2" 39 | "@babel/traverse" "^7.1.6" 40 | "@babel/types" "^7.2.0" 41 | convert-source-map "^1.1.0" 42 | debug "^4.1.0" 43 | json5 "^2.1.0" 44 | lodash "^4.17.10" 45 | resolve "^1.3.2" 46 | semver "^5.4.1" 47 | source-map "^0.5.0" 48 | 49 | "@babel/generator@^7.1.6", "@babel/generator@^7.2.0": 50 | version "7.2.0" 51 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.2.0.tgz#eaf3821fa0301d9d4aef88e63d4bcc19b73ba16c" 52 | integrity sha512-BA75MVfRlFQG2EZgFYIwyT1r6xSkwfP2bdkY/kLZusEYWiJs4xCowab/alaEaT0wSvmVuXGqiefeBlP+7V1yKg== 53 | dependencies: 54 | "@babel/types" "^7.2.0" 55 | jsesc "^2.5.1" 56 | lodash "^4.17.10" 57 | source-map "^0.5.0" 58 | trim-right "^1.0.1" 59 | 60 | "@babel/helper-annotate-as-pure@^7.0.0": 61 | version "7.0.0" 62 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" 63 | integrity sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q== 64 | dependencies: 65 | "@babel/types" "^7.0.0" 66 | 67 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0": 68 | version "7.1.0" 69 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f" 70 | integrity sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w== 71 | dependencies: 72 | "@babel/helper-explode-assignable-expression" "^7.1.0" 73 | "@babel/types" "^7.0.0" 74 | 75 | "@babel/helper-builder-react-jsx@^7.0.0": 76 | version "7.0.0" 77 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.0.0.tgz#fa154cb53eb918cf2a9a7ce928e29eb649c5acdb" 78 | integrity sha512-ebJ2JM6NAKW0fQEqN8hOLxK84RbRz9OkUhGS/Xd5u56ejMfVbayJ4+LykERZCOUM6faa6Fp3SZNX3fcT16MKHw== 79 | dependencies: 80 | "@babel/types" "^7.0.0" 81 | esutils "^2.0.0" 82 | 83 | "@babel/helper-call-delegate@^7.1.0": 84 | version "7.1.0" 85 | resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.1.0.tgz#6a957f105f37755e8645343d3038a22e1449cc4a" 86 | integrity sha512-YEtYZrw3GUK6emQHKthltKNZwszBcHK58Ygcis+gVUrF4/FmTVr5CCqQNSfmvg2y+YDEANyYoaLz/SHsnusCwQ== 87 | dependencies: 88 | "@babel/helper-hoist-variables" "^7.0.0" 89 | "@babel/traverse" "^7.1.0" 90 | "@babel/types" "^7.0.0" 91 | 92 | "@babel/helper-create-class-features-plugin@^7.2.1": 93 | version "7.2.1" 94 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.2.1.tgz#f6e8027291669ef64433220dc8327531233f1161" 95 | integrity sha512-EsEP7XLFmcJHjcuFYBxYD1FkP0irC8C9fsrt2tX/jrAi/eTnFI6DOPgVFb+WREeg1GboF+Ib+nCHbGBodyAXSg== 96 | dependencies: 97 | "@babel/helper-function-name" "^7.1.0" 98 | "@babel/helper-member-expression-to-functions" "^7.0.0" 99 | "@babel/helper-optimise-call-expression" "^7.0.0" 100 | "@babel/helper-plugin-utils" "^7.0.0" 101 | "@babel/helper-replace-supers" "^7.1.0" 102 | 103 | "@babel/helper-define-map@^7.1.0": 104 | version "7.1.0" 105 | resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.1.0.tgz#3b74caec329b3c80c116290887c0dd9ae468c20c" 106 | integrity sha512-yPPcW8dc3gZLN+U1mhYV91QU3n5uTbx7DUdf8NnPbjS0RMwBuHi9Xt2MUgppmNz7CJxTBWsGczTiEp1CSOTPRg== 107 | dependencies: 108 | "@babel/helper-function-name" "^7.1.0" 109 | "@babel/types" "^7.0.0" 110 | lodash "^4.17.10" 111 | 112 | "@babel/helper-explode-assignable-expression@^7.1.0": 113 | version "7.1.0" 114 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6" 115 | integrity sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA== 116 | dependencies: 117 | "@babel/traverse" "^7.1.0" 118 | "@babel/types" "^7.0.0" 119 | 120 | "@babel/helper-function-name@^7.1.0": 121 | version "7.1.0" 122 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" 123 | integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw== 124 | dependencies: 125 | "@babel/helper-get-function-arity" "^7.0.0" 126 | "@babel/template" "^7.1.0" 127 | "@babel/types" "^7.0.0" 128 | 129 | "@babel/helper-get-function-arity@^7.0.0": 130 | version "7.0.0" 131 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" 132 | integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ== 133 | dependencies: 134 | "@babel/types" "^7.0.0" 135 | 136 | "@babel/helper-hoist-variables@^7.0.0": 137 | version "7.0.0" 138 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.0.0.tgz#46adc4c5e758645ae7a45deb92bab0918c23bb88" 139 | integrity sha512-Ggv5sldXUeSKsuzLkddtyhyHe2YantsxWKNi7A+7LeD12ExRDWTRk29JCXpaHPAbMaIPZSil7n+lq78WY2VY7w== 140 | dependencies: 141 | "@babel/types" "^7.0.0" 142 | 143 | "@babel/helper-member-expression-to-functions@^7.0.0": 144 | version "7.0.0" 145 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd14b0a0df7ff00f009e7d7a436945f47c7a16f" 146 | integrity sha512-avo+lm/QmZlv27Zsi0xEor2fKcqWG56D5ae9dzklpIaY7cQMK5N8VSpaNVPPagiqmy7LrEjK1IWdGMOqPu5csg== 147 | dependencies: 148 | "@babel/types" "^7.0.0" 149 | 150 | "@babel/helper-module-imports@^7.0.0": 151 | version "7.0.0" 152 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" 153 | integrity sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A== 154 | dependencies: 155 | "@babel/types" "^7.0.0" 156 | 157 | "@babel/helper-module-transforms@^7.1.0": 158 | version "7.1.0" 159 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.1.0.tgz#470d4f9676d9fad50b324cdcce5fbabbc3da5787" 160 | integrity sha512-0JZRd2yhawo79Rcm4w0LwSMILFmFXjugG3yqf+P/UsKsRS1mJCmMwwlHDlMg7Avr9LrvSpp4ZSULO9r8jpCzcw== 161 | dependencies: 162 | "@babel/helper-module-imports" "^7.0.0" 163 | "@babel/helper-simple-access" "^7.1.0" 164 | "@babel/helper-split-export-declaration" "^7.0.0" 165 | "@babel/template" "^7.1.0" 166 | "@babel/types" "^7.0.0" 167 | lodash "^4.17.10" 168 | 169 | "@babel/helper-optimise-call-expression@^7.0.0": 170 | version "7.0.0" 171 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" 172 | integrity sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g== 173 | dependencies: 174 | "@babel/types" "^7.0.0" 175 | 176 | "@babel/helper-plugin-utils@^7.0.0": 177 | version "7.0.0" 178 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" 179 | integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA== 180 | 181 | "@babel/helper-regex@^7.0.0": 182 | version "7.0.0" 183 | resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.0.0.tgz#2c1718923b57f9bbe64705ffe5640ac64d9bdb27" 184 | integrity sha512-TR0/N0NDCcUIUEbqV6dCO+LptmmSQFQ7q70lfcEB4URsjD0E1HzicrwUH+ap6BAQ2jhCX9Q4UqZy4wilujWlkg== 185 | dependencies: 186 | lodash "^4.17.10" 187 | 188 | "@babel/helper-remap-async-to-generator@^7.1.0": 189 | version "7.1.0" 190 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f" 191 | integrity sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg== 192 | dependencies: 193 | "@babel/helper-annotate-as-pure" "^7.0.0" 194 | "@babel/helper-wrap-function" "^7.1.0" 195 | "@babel/template" "^7.1.0" 196 | "@babel/traverse" "^7.1.0" 197 | "@babel/types" "^7.0.0" 198 | 199 | "@babel/helper-replace-supers@^7.1.0": 200 | version "7.1.0" 201 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.1.0.tgz#5fc31de522ec0ef0899dc9b3e7cf6a5dd655f362" 202 | integrity sha512-BvcDWYZRWVuDeXTYZWxekQNO5D4kO55aArwZOTFXw6rlLQA8ZaDicJR1sO47h+HrnCiDFiww0fSPV0d713KBGQ== 203 | dependencies: 204 | "@babel/helper-member-expression-to-functions" "^7.0.0" 205 | "@babel/helper-optimise-call-expression" "^7.0.0" 206 | "@babel/traverse" "^7.1.0" 207 | "@babel/types" "^7.0.0" 208 | 209 | "@babel/helper-simple-access@^7.1.0": 210 | version "7.1.0" 211 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c" 212 | integrity sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w== 213 | dependencies: 214 | "@babel/template" "^7.1.0" 215 | "@babel/types" "^7.0.0" 216 | 217 | "@babel/helper-split-export-declaration@^7.0.0": 218 | version "7.0.0" 219 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz#3aae285c0311c2ab095d997b8c9a94cad547d813" 220 | integrity sha512-MXkOJqva62dfC0w85mEf/LucPPS/1+04nmmRMPEBUB++hiiThQ2zPtX/mEWQ3mtzCEjIJvPY8nuwxXtQeQwUag== 221 | dependencies: 222 | "@babel/types" "^7.0.0" 223 | 224 | "@babel/helper-wrap-function@^7.1.0": 225 | version "7.2.0" 226 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa" 227 | integrity sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ== 228 | dependencies: 229 | "@babel/helper-function-name" "^7.1.0" 230 | "@babel/template" "^7.1.0" 231 | "@babel/traverse" "^7.1.0" 232 | "@babel/types" "^7.2.0" 233 | 234 | "@babel/helpers@^7.2.0": 235 | version "7.2.0" 236 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.2.0.tgz#8335f3140f3144270dc63c4732a4f8b0a50b7a21" 237 | integrity sha512-Fr07N+ea0dMcMN8nFpuK6dUIT7/ivt9yKQdEEnjVS83tG2pHwPi03gYmk/tyuwONnZ+sY+GFFPlWGgCtW1hF9A== 238 | dependencies: 239 | "@babel/template" "^7.1.2" 240 | "@babel/traverse" "^7.1.5" 241 | "@babel/types" "^7.2.0" 242 | 243 | "@babel/highlight@^7.0.0": 244 | version "7.0.0" 245 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" 246 | integrity sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw== 247 | dependencies: 248 | chalk "^2.0.0" 249 | esutils "^2.0.2" 250 | js-tokens "^4.0.0" 251 | 252 | "@babel/parser@^7.0.0", "@babel/parser@^7.1.2", "@babel/parser@^7.1.6", "@babel/parser@^7.2.0": 253 | version "7.2.0" 254 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.2.0.tgz#02d01dbc330b6cbf36b76ac93c50752c69027065" 255 | integrity sha512-M74+GvK4hn1eejD9lZ7967qAwvqTZayQa3g10ag4s9uewgR7TKjeaT0YMyoq+gVfKYABiWZ4MQD701/t5e1Jhg== 256 | 257 | "@babel/plugin-proposal-async-generator-functions@^7.2.0": 258 | version "7.2.0" 259 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e" 260 | integrity sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ== 261 | dependencies: 262 | "@babel/helper-plugin-utils" "^7.0.0" 263 | "@babel/helper-remap-async-to-generator" "^7.1.0" 264 | "@babel/plugin-syntax-async-generators" "^7.2.0" 265 | 266 | "@babel/plugin-proposal-class-properties@^7.0.0": 267 | version "7.2.1" 268 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.2.1.tgz#c734a53e0a1ec40fe5c22ee5069d26da3b187d05" 269 | integrity sha512-/4FKFChkQ2Jgb8lBDsvFX496YTi7UWTetVgS8oJUpX1e/DlaoeEK57At27ug8Hu2zI2g8bzkJ+8k9qrHZRPGPA== 270 | dependencies: 271 | "@babel/helper-create-class-features-plugin" "^7.2.1" 272 | "@babel/helper-plugin-utils" "^7.0.0" 273 | 274 | "@babel/plugin-proposal-json-strings@^7.2.0": 275 | version "7.2.0" 276 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317" 277 | integrity sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg== 278 | dependencies: 279 | "@babel/helper-plugin-utils" "^7.0.0" 280 | "@babel/plugin-syntax-json-strings" "^7.2.0" 281 | 282 | "@babel/plugin-proposal-object-rest-spread@^7.2.0": 283 | version "7.2.0" 284 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.2.0.tgz#88f5fec3e7ad019014c97f7ee3c992f0adbf7fb8" 285 | integrity sha512-1L5mWLSvR76XYUQJXkd/EEQgjq8HHRP6lQuZTTg0VA4tTGPpGemmCdAfQIz1rzEuWAm+ecP8PyyEm30jC1eQCg== 286 | dependencies: 287 | "@babel/helper-plugin-utils" "^7.0.0" 288 | "@babel/plugin-syntax-object-rest-spread" "^7.2.0" 289 | 290 | "@babel/plugin-proposal-optional-catch-binding@^7.2.0": 291 | version "7.2.0" 292 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5" 293 | integrity sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g== 294 | dependencies: 295 | "@babel/helper-plugin-utils" "^7.0.0" 296 | "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" 297 | 298 | "@babel/plugin-proposal-unicode-property-regex@^7.2.0": 299 | version "7.2.0" 300 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.2.0.tgz#abe7281fe46c95ddc143a65e5358647792039520" 301 | integrity sha512-LvRVYb7kikuOtIoUeWTkOxQEV1kYvL5B6U3iWEGCzPNRus1MzJweFqORTj+0jkxozkTSYNJozPOddxmqdqsRpw== 302 | dependencies: 303 | "@babel/helper-plugin-utils" "^7.0.0" 304 | "@babel/helper-regex" "^7.0.0" 305 | regexpu-core "^4.2.0" 306 | 307 | "@babel/plugin-syntax-async-generators@^7.2.0": 308 | version "7.2.0" 309 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f" 310 | integrity sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg== 311 | dependencies: 312 | "@babel/helper-plugin-utils" "^7.0.0" 313 | 314 | "@babel/plugin-syntax-json-strings@^7.2.0": 315 | version "7.2.0" 316 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470" 317 | integrity sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg== 318 | dependencies: 319 | "@babel/helper-plugin-utils" "^7.0.0" 320 | 321 | "@babel/plugin-syntax-jsx@^7.2.0": 322 | version "7.2.0" 323 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz#0b85a3b4bc7cdf4cc4b8bf236335b907ca22e7c7" 324 | integrity sha512-VyN4QANJkRW6lDBmENzRszvZf3/4AXaj9YR7GwrWeeN9tEBPuXbmDYVU9bYBN0D70zCWVwUy0HWq2553VCb6Hw== 325 | dependencies: 326 | "@babel/helper-plugin-utils" "^7.0.0" 327 | 328 | "@babel/plugin-syntax-object-rest-spread@^7.2.0": 329 | version "7.2.0" 330 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" 331 | integrity sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA== 332 | dependencies: 333 | "@babel/helper-plugin-utils" "^7.0.0" 334 | 335 | "@babel/plugin-syntax-optional-catch-binding@^7.2.0": 336 | version "7.2.0" 337 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c" 338 | integrity sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w== 339 | dependencies: 340 | "@babel/helper-plugin-utils" "^7.0.0" 341 | 342 | "@babel/plugin-transform-arrow-functions@^7.2.0": 343 | version "7.2.0" 344 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550" 345 | integrity sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg== 346 | dependencies: 347 | "@babel/helper-plugin-utils" "^7.0.0" 348 | 349 | "@babel/plugin-transform-async-to-generator@^7.2.0": 350 | version "7.2.0" 351 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.2.0.tgz#68b8a438663e88519e65b776f8938f3445b1a2ff" 352 | integrity sha512-CEHzg4g5UraReozI9D4fblBYABs7IM6UerAVG7EJVrTLC5keh00aEuLUT+O40+mJCEzaXkYfTCUKIyeDfMOFFQ== 353 | dependencies: 354 | "@babel/helper-module-imports" "^7.0.0" 355 | "@babel/helper-plugin-utils" "^7.0.0" 356 | "@babel/helper-remap-async-to-generator" "^7.1.0" 357 | 358 | "@babel/plugin-transform-block-scoped-functions@^7.2.0": 359 | version "7.2.0" 360 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190" 361 | integrity sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w== 362 | dependencies: 363 | "@babel/helper-plugin-utils" "^7.0.0" 364 | 365 | "@babel/plugin-transform-block-scoping@^7.2.0": 366 | version "7.2.0" 367 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.2.0.tgz#f17c49d91eedbcdf5dd50597d16f5f2f770132d4" 368 | integrity sha512-vDTgf19ZEV6mx35yiPJe4fS02mPQUUcBNwWQSZFXSzTSbsJFQvHt7DqyS3LK8oOWALFOsJ+8bbqBgkirZteD5Q== 369 | dependencies: 370 | "@babel/helper-plugin-utils" "^7.0.0" 371 | lodash "^4.17.10" 372 | 373 | "@babel/plugin-transform-classes@^7.2.0": 374 | version "7.2.0" 375 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.2.0.tgz#374f8876075d7d21fea55aeb5c53561259163f96" 376 | integrity sha512-aPCEkrhJYebDXcGTAP+cdUENkH7zqOlgbKwLbghjjHpJRJBWM/FSlCjMoPGA8oUdiMfOrk3+8EFPLLb5r7zj2w== 377 | dependencies: 378 | "@babel/helper-annotate-as-pure" "^7.0.0" 379 | "@babel/helper-define-map" "^7.1.0" 380 | "@babel/helper-function-name" "^7.1.0" 381 | "@babel/helper-optimise-call-expression" "^7.0.0" 382 | "@babel/helper-plugin-utils" "^7.0.0" 383 | "@babel/helper-replace-supers" "^7.1.0" 384 | "@babel/helper-split-export-declaration" "^7.0.0" 385 | globals "^11.1.0" 386 | 387 | "@babel/plugin-transform-computed-properties@^7.2.0": 388 | version "7.2.0" 389 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da" 390 | integrity sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA== 391 | dependencies: 392 | "@babel/helper-plugin-utils" "^7.0.0" 393 | 394 | "@babel/plugin-transform-destructuring@^7.2.0": 395 | version "7.2.0" 396 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.2.0.tgz#e75269b4b7889ec3a332cd0d0c8cff8fed0dc6f3" 397 | integrity sha512-coVO2Ayv7g0qdDbrNiadE4bU7lvCd9H539m2gMknyVjjMdwF/iCOM7R+E8PkntoqLkltO0rk+3axhpp/0v68VQ== 398 | dependencies: 399 | "@babel/helper-plugin-utils" "^7.0.0" 400 | 401 | "@babel/plugin-transform-dotall-regex@^7.2.0": 402 | version "7.2.0" 403 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.2.0.tgz#f0aabb93d120a8ac61e925ea0ba440812dbe0e49" 404 | integrity sha512-sKxnyHfizweTgKZf7XsXu/CNupKhzijptfTM+bozonIuyVrLWVUvYjE2bhuSBML8VQeMxq4Mm63Q9qvcvUcciQ== 405 | dependencies: 406 | "@babel/helper-plugin-utils" "^7.0.0" 407 | "@babel/helper-regex" "^7.0.0" 408 | regexpu-core "^4.1.3" 409 | 410 | "@babel/plugin-transform-duplicate-keys@^7.2.0": 411 | version "7.2.0" 412 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz#d952c4930f312a4dbfff18f0b2914e60c35530b3" 413 | integrity sha512-q+yuxW4DsTjNceUiTzK0L+AfQ0zD9rWaTLiUqHA8p0gxx7lu1EylenfzjeIWNkPy6e/0VG/Wjw9uf9LueQwLOw== 414 | dependencies: 415 | "@babel/helper-plugin-utils" "^7.0.0" 416 | 417 | "@babel/plugin-transform-exponentiation-operator@^7.2.0": 418 | version "7.2.0" 419 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008" 420 | integrity sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A== 421 | dependencies: 422 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0" 423 | "@babel/helper-plugin-utils" "^7.0.0" 424 | 425 | "@babel/plugin-transform-for-of@^7.2.0": 426 | version "7.2.0" 427 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.2.0.tgz#ab7468befa80f764bb03d3cb5eef8cc998e1cad9" 428 | integrity sha512-Kz7Mt0SsV2tQk6jG5bBv5phVbkd0gd27SgYD4hH1aLMJRchM0dzHaXvrWhVZ+WxAlDoAKZ7Uy3jVTW2mKXQ1WQ== 429 | dependencies: 430 | "@babel/helper-plugin-utils" "^7.0.0" 431 | 432 | "@babel/plugin-transform-function-name@^7.2.0": 433 | version "7.2.0" 434 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.2.0.tgz#f7930362829ff99a3174c39f0afcc024ef59731a" 435 | integrity sha512-kWgksow9lHdvBC2Z4mxTsvc7YdY7w/V6B2vy9cTIPtLEE9NhwoWivaxdNM/S37elu5bqlLP/qOY906LukO9lkQ== 436 | dependencies: 437 | "@babel/helper-function-name" "^7.1.0" 438 | "@babel/helper-plugin-utils" "^7.0.0" 439 | 440 | "@babel/plugin-transform-literals@^7.2.0": 441 | version "7.2.0" 442 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1" 443 | integrity sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg== 444 | dependencies: 445 | "@babel/helper-plugin-utils" "^7.0.0" 446 | 447 | "@babel/plugin-transform-modules-amd@^7.2.0": 448 | version "7.2.0" 449 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz#82a9bce45b95441f617a24011dc89d12da7f4ee6" 450 | integrity sha512-mK2A8ucqz1qhrdqjS9VMIDfIvvT2thrEsIQzbaTdc5QFzhDjQv2CkJJ5f6BXIkgbmaoax3zBr2RyvV/8zeoUZw== 451 | dependencies: 452 | "@babel/helper-module-transforms" "^7.1.0" 453 | "@babel/helper-plugin-utils" "^7.0.0" 454 | 455 | "@babel/plugin-transform-modules-commonjs@^7.2.0": 456 | version "7.2.0" 457 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.2.0.tgz#c4f1933f5991d5145e9cfad1dfd848ea1727f404" 458 | integrity sha512-V6y0uaUQrQPXUrmj+hgnks8va2L0zcZymeU7TtWEgdRLNkceafKXEduv7QzgQAE4lT+suwooG9dC7LFhdRAbVQ== 459 | dependencies: 460 | "@babel/helper-module-transforms" "^7.1.0" 461 | "@babel/helper-plugin-utils" "^7.0.0" 462 | "@babel/helper-simple-access" "^7.1.0" 463 | 464 | "@babel/plugin-transform-modules-systemjs@^7.2.0": 465 | version "7.2.0" 466 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.2.0.tgz#912bfe9e5ff982924c81d0937c92d24994bb9068" 467 | integrity sha512-aYJwpAhoK9a+1+O625WIjvMY11wkB/ok0WClVwmeo3mCjcNRjt+/8gHWrB5i+00mUju0gWsBkQnPpdvQ7PImmQ== 468 | dependencies: 469 | "@babel/helper-hoist-variables" "^7.0.0" 470 | "@babel/helper-plugin-utils" "^7.0.0" 471 | 472 | "@babel/plugin-transform-modules-umd@^7.2.0": 473 | version "7.2.0" 474 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae" 475 | integrity sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw== 476 | dependencies: 477 | "@babel/helper-module-transforms" "^7.1.0" 478 | "@babel/helper-plugin-utils" "^7.0.0" 479 | 480 | "@babel/plugin-transform-new-target@^7.0.0": 481 | version "7.0.0" 482 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.0.0.tgz#ae8fbd89517fa7892d20e6564e641e8770c3aa4a" 483 | integrity sha512-yin069FYjah+LbqfGeTfzIBODex/e++Yfa0rH0fpfam9uTbuEeEOx5GLGr210ggOV77mVRNoeqSYqeuaqSzVSw== 484 | dependencies: 485 | "@babel/helper-plugin-utils" "^7.0.0" 486 | 487 | "@babel/plugin-transform-object-super@^7.2.0": 488 | version "7.2.0" 489 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz#b35d4c10f56bab5d650047dad0f1d8e8814b6598" 490 | integrity sha512-VMyhPYZISFZAqAPVkiYb7dUe2AsVi2/wCT5+wZdsNO31FojQJa9ns40hzZ6U9f50Jlq4w6qwzdBB2uwqZ00ebg== 491 | dependencies: 492 | "@babel/helper-plugin-utils" "^7.0.0" 493 | "@babel/helper-replace-supers" "^7.1.0" 494 | 495 | "@babel/plugin-transform-parameters@^7.2.0": 496 | version "7.2.0" 497 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.2.0.tgz#0d5ad15dc805e2ea866df4dd6682bfe76d1408c2" 498 | integrity sha512-kB9+hhUidIgUoBQ0MsxMewhzr8i60nMa2KgeJKQWYrqQpqcBYtnpR+JgkadZVZoaEZ/eKu9mclFaVwhRpLNSzA== 499 | dependencies: 500 | "@babel/helper-call-delegate" "^7.1.0" 501 | "@babel/helper-get-function-arity" "^7.0.0" 502 | "@babel/helper-plugin-utils" "^7.0.0" 503 | 504 | "@babel/plugin-transform-react-display-name@^7.0.0": 505 | version "7.2.0" 506 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.2.0.tgz#ebfaed87834ce8dc4279609a4f0c324c156e3eb0" 507 | integrity sha512-Htf/tPa5haZvRMiNSQSFifK12gtr/8vwfr+A9y69uF0QcU77AVu4K7MiHEkTxF7lQoHOL0F9ErqgfNEAKgXj7A== 508 | dependencies: 509 | "@babel/helper-plugin-utils" "^7.0.0" 510 | 511 | "@babel/plugin-transform-react-jsx-self@^7.0.0": 512 | version "7.2.0" 513 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.2.0.tgz#461e21ad9478f1031dd5e276108d027f1b5240ba" 514 | integrity sha512-v6S5L/myicZEy+jr6ielB0OR8h+EH/1QFx/YJ7c7Ua+7lqsjj/vW6fD5FR9hB/6y7mGbfT4vAURn3xqBxsUcdg== 515 | dependencies: 516 | "@babel/helper-plugin-utils" "^7.0.0" 517 | "@babel/plugin-syntax-jsx" "^7.2.0" 518 | 519 | "@babel/plugin-transform-react-jsx-source@^7.0.0": 520 | version "7.2.0" 521 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.2.0.tgz#20c8c60f0140f5dd3cd63418d452801cf3f7180f" 522 | integrity sha512-A32OkKTp4i5U6aE88GwwcuV4HAprUgHcTq0sSafLxjr6AW0QahrCRCjxogkbbcdtpbXkuTOlgpjophCxb6sh5g== 523 | dependencies: 524 | "@babel/helper-plugin-utils" "^7.0.0" 525 | "@babel/plugin-syntax-jsx" "^7.2.0" 526 | 527 | "@babel/plugin-transform-react-jsx@^7.0.0": 528 | version "7.2.0" 529 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.2.0.tgz#ca36b6561c4d3b45524f8efb6f0fbc9a0d1d622f" 530 | integrity sha512-h/fZRel5wAfCqcKgq3OhbmYaReo7KkoJBpt8XnvpS7wqaNMqtw5xhxutzcm35iMUWucfAdT/nvGTsWln0JTg2Q== 531 | dependencies: 532 | "@babel/helper-builder-react-jsx" "^7.0.0" 533 | "@babel/helper-plugin-utils" "^7.0.0" 534 | "@babel/plugin-syntax-jsx" "^7.2.0" 535 | 536 | "@babel/plugin-transform-regenerator@^7.0.0": 537 | version "7.0.0" 538 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.0.0.tgz#5b41686b4ed40bef874d7ed6a84bdd849c13e0c1" 539 | integrity sha512-sj2qzsEx8KDVv1QuJc/dEfilkg3RRPvPYx/VnKLtItVQRWt1Wqf5eVCOLZm29CiGFfYYsA3VPjfizTCV0S0Dlw== 540 | dependencies: 541 | regenerator-transform "^0.13.3" 542 | 543 | "@babel/plugin-transform-shorthand-properties@^7.2.0": 544 | version "7.2.0" 545 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0" 546 | integrity sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg== 547 | dependencies: 548 | "@babel/helper-plugin-utils" "^7.0.0" 549 | 550 | "@babel/plugin-transform-spread@^7.2.0": 551 | version "7.2.0" 552 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.0.tgz#0c76c12a3b5826130078ee8ec84a7a8e4afd79c4" 553 | integrity sha512-7TtPIdwjS/i5ZBlNiQePQCovDh9pAhVbp/nGVRBZuUdBiVRThyyLend3OHobc0G+RLCPPAN70+z/MAMhsgJd/A== 554 | dependencies: 555 | "@babel/helper-plugin-utils" "^7.0.0" 556 | 557 | "@babel/plugin-transform-sticky-regex@^7.2.0": 558 | version "7.2.0" 559 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1" 560 | integrity sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw== 561 | dependencies: 562 | "@babel/helper-plugin-utils" "^7.0.0" 563 | "@babel/helper-regex" "^7.0.0" 564 | 565 | "@babel/plugin-transform-template-literals@^7.2.0": 566 | version "7.2.0" 567 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.2.0.tgz#d87ed01b8eaac7a92473f608c97c089de2ba1e5b" 568 | integrity sha512-FkPix00J9A/XWXv4VoKJBMeSkyY9x/TqIh76wzcdfl57RJJcf8CehQ08uwfhCDNtRQYtHQKBTwKZDEyjE13Lwg== 569 | dependencies: 570 | "@babel/helper-annotate-as-pure" "^7.0.0" 571 | "@babel/helper-plugin-utils" "^7.0.0" 572 | 573 | "@babel/plugin-transform-typeof-symbol@^7.2.0": 574 | version "7.2.0" 575 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2" 576 | integrity sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw== 577 | dependencies: 578 | "@babel/helper-plugin-utils" "^7.0.0" 579 | 580 | "@babel/plugin-transform-unicode-regex@^7.2.0": 581 | version "7.2.0" 582 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.2.0.tgz#4eb8db16f972f8abb5062c161b8b115546ade08b" 583 | integrity sha512-m48Y0lMhrbXEJnVUaYly29jRXbQ3ksxPrS1Tg8t+MHqzXhtBYAvI51euOBaoAlZLPHsieY9XPVMf80a5x0cPcA== 584 | dependencies: 585 | "@babel/helper-plugin-utils" "^7.0.0" 586 | "@babel/helper-regex" "^7.0.0" 587 | regexpu-core "^4.1.3" 588 | 589 | "@babel/preset-env@^7.0.0": 590 | version "7.2.0" 591 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.2.0.tgz#a5030e7e4306af5a295dd5d7c78dc5464af3fee2" 592 | integrity sha512-haGR38j5vOGVeBatrQPr3l0xHbs14505DcM57cbJy48kgMFvvHHoYEhHuRV+7vi559yyAUAVbTWzbK/B/pzJng== 593 | dependencies: 594 | "@babel/helper-module-imports" "^7.0.0" 595 | "@babel/helper-plugin-utils" "^7.0.0" 596 | "@babel/plugin-proposal-async-generator-functions" "^7.2.0" 597 | "@babel/plugin-proposal-json-strings" "^7.2.0" 598 | "@babel/plugin-proposal-object-rest-spread" "^7.2.0" 599 | "@babel/plugin-proposal-optional-catch-binding" "^7.2.0" 600 | "@babel/plugin-proposal-unicode-property-regex" "^7.2.0" 601 | "@babel/plugin-syntax-async-generators" "^7.2.0" 602 | "@babel/plugin-syntax-object-rest-spread" "^7.2.0" 603 | "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" 604 | "@babel/plugin-transform-arrow-functions" "^7.2.0" 605 | "@babel/plugin-transform-async-to-generator" "^7.2.0" 606 | "@babel/plugin-transform-block-scoped-functions" "^7.2.0" 607 | "@babel/plugin-transform-block-scoping" "^7.2.0" 608 | "@babel/plugin-transform-classes" "^7.2.0" 609 | "@babel/plugin-transform-computed-properties" "^7.2.0" 610 | "@babel/plugin-transform-destructuring" "^7.2.0" 611 | "@babel/plugin-transform-dotall-regex" "^7.2.0" 612 | "@babel/plugin-transform-duplicate-keys" "^7.2.0" 613 | "@babel/plugin-transform-exponentiation-operator" "^7.2.0" 614 | "@babel/plugin-transform-for-of" "^7.2.0" 615 | "@babel/plugin-transform-function-name" "^7.2.0" 616 | "@babel/plugin-transform-literals" "^7.2.0" 617 | "@babel/plugin-transform-modules-amd" "^7.2.0" 618 | "@babel/plugin-transform-modules-commonjs" "^7.2.0" 619 | "@babel/plugin-transform-modules-systemjs" "^7.2.0" 620 | "@babel/plugin-transform-modules-umd" "^7.2.0" 621 | "@babel/plugin-transform-new-target" "^7.0.0" 622 | "@babel/plugin-transform-object-super" "^7.2.0" 623 | "@babel/plugin-transform-parameters" "^7.2.0" 624 | "@babel/plugin-transform-regenerator" "^7.0.0" 625 | "@babel/plugin-transform-shorthand-properties" "^7.2.0" 626 | "@babel/plugin-transform-spread" "^7.2.0" 627 | "@babel/plugin-transform-sticky-regex" "^7.2.0" 628 | "@babel/plugin-transform-template-literals" "^7.2.0" 629 | "@babel/plugin-transform-typeof-symbol" "^7.2.0" 630 | "@babel/plugin-transform-unicode-regex" "^7.2.0" 631 | browserslist "^4.3.4" 632 | invariant "^2.2.2" 633 | js-levenshtein "^1.1.3" 634 | semver "^5.3.0" 635 | 636 | "@babel/preset-react@^7.0.0": 637 | version "7.0.0" 638 | resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.0.0.tgz#e86b4b3d99433c7b3e9e91747e2653958bc6b3c0" 639 | integrity sha512-oayxyPS4Zj+hF6Et11BwuBkmpgT/zMxyuZgFrMeZID6Hdh3dGlk4sHCAhdBCpuCKW2ppBfl2uCCetlrUIJRY3w== 640 | dependencies: 641 | "@babel/helper-plugin-utils" "^7.0.0" 642 | "@babel/plugin-transform-react-display-name" "^7.0.0" 643 | "@babel/plugin-transform-react-jsx" "^7.0.0" 644 | "@babel/plugin-transform-react-jsx-self" "^7.0.0" 645 | "@babel/plugin-transform-react-jsx-source" "^7.0.0" 646 | 647 | "@babel/register@^7.0.0": 648 | version "7.0.0" 649 | resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.0.0.tgz#fa634bae1bfa429f60615b754fc1f1d745edd827" 650 | integrity sha512-f/+CRmaCe7rVEvcvPvxeA8j5aJhHC3aJie7YuqcMDhUOuyWLA7J/aNrTaHIzoWPEhpHA54mec4Mm8fv8KBlv3g== 651 | dependencies: 652 | core-js "^2.5.7" 653 | find-cache-dir "^1.0.0" 654 | home-or-tmp "^3.0.0" 655 | lodash "^4.17.10" 656 | mkdirp "^0.5.1" 657 | pirates "^4.0.0" 658 | source-map-support "^0.5.9" 659 | 660 | "@babel/runtime@^7.0.0": 661 | version "7.2.0" 662 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.2.0.tgz#b03e42eeddf5898e00646e4c840fa07ba8dcad7f" 663 | integrity sha512-oouEibCbHMVdZSDlJBO6bZmID/zA/G/Qx3H1d3rSNPTD+L8UNKvCat7aKWSJ74zYbm5zWGh0GQN0hKj8zYFTCg== 664 | dependencies: 665 | regenerator-runtime "^0.12.0" 666 | 667 | "@babel/template@^7.1.0", "@babel/template@^7.1.2": 668 | version "7.1.2" 669 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.1.2.tgz#090484a574fef5a2d2d7726a674eceda5c5b5644" 670 | integrity sha512-SY1MmplssORfFiLDcOETrW7fCLl+PavlwMh92rrGcikQaRq4iWPVH0MpwPpY3etVMx6RnDjXtr6VZYr/IbP/Ag== 671 | dependencies: 672 | "@babel/code-frame" "^7.0.0" 673 | "@babel/parser" "^7.1.2" 674 | "@babel/types" "^7.1.2" 675 | 676 | "@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.1.5", "@babel/traverse@^7.1.6": 677 | version "7.1.6" 678 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.1.6.tgz#c8db9963ab4ce5b894222435482bd8ea854b7b5c" 679 | integrity sha512-CXedit6GpISz3sC2k2FsGCUpOhUqKdyL0lqNrImQojagnUMXf8hex4AxYFRuMkNGcvJX5QAFGzB5WJQmSv8SiQ== 680 | dependencies: 681 | "@babel/code-frame" "^7.0.0" 682 | "@babel/generator" "^7.1.6" 683 | "@babel/helper-function-name" "^7.1.0" 684 | "@babel/helper-split-export-declaration" "^7.0.0" 685 | "@babel/parser" "^7.1.6" 686 | "@babel/types" "^7.1.6" 687 | debug "^4.1.0" 688 | globals "^11.1.0" 689 | lodash "^4.17.10" 690 | 691 | "@babel/types@^7.0.0", "@babel/types@^7.1.2", "@babel/types@^7.1.6", "@babel/types@^7.2.0": 692 | version "7.2.0" 693 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.2.0.tgz#7941c5b2d8060e06f9601d6be7c223eef906d5d8" 694 | integrity sha512-b4v7dyfApuKDvmPb+O488UlGuR1WbwMXFsO/cyqMrnfvRAChZKJAYeeglWTjUO1b9UghKKgepAQM5tsvBJca6A== 695 | dependencies: 696 | esutils "^2.0.2" 697 | lodash "^4.17.10" 698 | to-fast-properties "^2.0.0" 699 | 700 | "@sinonjs/commons@^1.0.2", "@sinonjs/commons@^1.2.0": 701 | version "1.3.0" 702 | resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.3.0.tgz#50a2754016b6f30a994ceda6d9a0a8c36adda849" 703 | integrity sha512-j4ZwhaHmwsCb4DlDOIWnI5YyKDNMoNThsmwEpfHx6a1EpsGZ9qYLxP++LMlmBRjtGptGHFsGItJ768snllFWpA== 704 | dependencies: 705 | type-detect "4.0.8" 706 | 707 | "@sinonjs/formatio@^3.1.0": 708 | version "3.1.0" 709 | resolved "https://registry.yarnpkg.com/@sinonjs/formatio/-/formatio-3.1.0.tgz#6ac9d1eb1821984d84c4996726e45d1646d8cce5" 710 | integrity sha512-ZAR2bPHOl4Xg6eklUGpsdiIJ4+J1SNag1DHHrG/73Uz/nVwXqjgUtRPLoS+aVyieN9cSbc0E4LsU984tWcDyNg== 711 | dependencies: 712 | "@sinonjs/samsam" "^2 || ^3" 713 | 714 | "@sinonjs/samsam@^2 || ^3", "@sinonjs/samsam@^3.0.1": 715 | version "3.0.2" 716 | resolved "https://registry.yarnpkg.com/@sinonjs/samsam/-/samsam-3.0.2.tgz#304fb33bd5585a0b2df8a4c801fcb47fa84d8e43" 717 | integrity sha512-m08g4CS3J6lwRQk1pj1EO+KEVWbrbXsmi9Pw0ySmrIbcVxVaedoFgLvFsV8wHLwh01EpROVz3KvVcD1Jmks9FQ== 718 | dependencies: 719 | "@sinonjs/commons" "^1.0.2" 720 | array-from "^2.1.1" 721 | lodash.get "^4.4.2" 722 | 723 | abbrev@1: 724 | version "1.1.1" 725 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 726 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 727 | 728 | acorn-jsx@^5.0.0: 729 | version "5.0.1" 730 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz#32a064fd925429216a09b141102bfdd185fae40e" 731 | integrity sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg== 732 | 733 | acorn@^6.0.2: 734 | version "6.0.4" 735 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.0.4.tgz#77377e7353b72ec5104550aa2d2097a2fd40b754" 736 | integrity sha512-VY4i5EKSKkofY2I+6QLTbTTN/UvEQPCo6eiwzzSaSWfpaDhOmStMCMod6wmuPciNq+XS0faCglFu2lHZpdHUtg== 737 | 738 | ajv@^6.5.3, ajv@^6.6.1: 739 | version "6.6.1" 740 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.6.1.tgz#6360f5ed0d80f232cc2b294c362d5dc2e538dd61" 741 | integrity sha512-ZoJjft5B+EJBjUyu9C9Hc0OZyPZSSlOF+plzouTrg6UlA8f+e/n8NIgBFG/9tppJtpPWfthHakK7juJdNDODww== 742 | dependencies: 743 | fast-deep-equal "^2.0.1" 744 | fast-json-stable-stringify "^2.0.0" 745 | json-schema-traverse "^0.4.1" 746 | uri-js "^4.2.2" 747 | 748 | ansi-escapes@^3.0.0: 749 | version "3.1.0" 750 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 751 | integrity sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw== 752 | 753 | ansi-regex@^2.0.0: 754 | version "2.1.1" 755 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 756 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 757 | 758 | ansi-regex@^3.0.0: 759 | version "3.0.0" 760 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 761 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 762 | 763 | ansi-regex@^4.0.0: 764 | version "4.0.0" 765 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.0.0.tgz#70de791edf021404c3fd615aa89118ae0432e5a9" 766 | integrity sha512-iB5Dda8t/UqpPI/IjsejXu5jOGDrzn41wJyljwPH65VCIbk6+1BzFIMJGFwTNrYXT1CrD+B4l19U7awiQ8rk7w== 767 | 768 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 769 | version "3.2.1" 770 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 771 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 772 | dependencies: 773 | color-convert "^1.9.0" 774 | 775 | anymatch@^2.0.0: 776 | version "2.0.0" 777 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 778 | integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== 779 | dependencies: 780 | micromatch "^3.1.4" 781 | normalize-path "^2.1.1" 782 | 783 | aproba@^1.0.3: 784 | version "1.2.0" 785 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 786 | integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== 787 | 788 | are-we-there-yet@~1.1.2: 789 | version "1.1.5" 790 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 791 | integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== 792 | dependencies: 793 | delegates "^1.0.0" 794 | readable-stream "^2.0.6" 795 | 796 | argparse@^1.0.7: 797 | version "1.0.10" 798 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 799 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 800 | dependencies: 801 | sprintf-js "~1.0.2" 802 | 803 | aria-query@^3.0.0: 804 | version "3.0.0" 805 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-3.0.0.tgz#65b3fcc1ca1155a8c9ae64d6eee297f15d5133cc" 806 | integrity sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w= 807 | dependencies: 808 | ast-types-flow "0.0.7" 809 | commander "^2.11.0" 810 | 811 | arr-diff@^4.0.0: 812 | version "4.0.0" 813 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 814 | integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= 815 | 816 | arr-flatten@^1.1.0: 817 | version "1.1.0" 818 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 819 | integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== 820 | 821 | arr-union@^3.1.0: 822 | version "3.1.0" 823 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 824 | integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= 825 | 826 | array-from@^2.1.1: 827 | version "2.1.1" 828 | resolved "https://registry.yarnpkg.com/array-from/-/array-from-2.1.1.tgz#cfe9d8c26628b9dc5aecc62a9f5d8f1f352c1195" 829 | integrity sha1-z+nYwmYoudxa7MYqn12PHzUsEZU= 830 | 831 | array-includes@^3.0.3: 832 | version "3.0.3" 833 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" 834 | integrity sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0= 835 | dependencies: 836 | define-properties "^1.1.2" 837 | es-abstract "^1.7.0" 838 | 839 | array-unique@^0.3.2: 840 | version "0.3.2" 841 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 842 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= 843 | 844 | asap@^2.0.6, asap@~2.0.3: 845 | version "2.0.6" 846 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 847 | integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= 848 | 849 | assertion-error@^1.1.0: 850 | version "1.1.0" 851 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" 852 | integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== 853 | 854 | assign-symbols@^1.0.0: 855 | version "1.0.0" 856 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 857 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 858 | 859 | ast-types-flow@0.0.7, ast-types-flow@^0.0.7: 860 | version "0.0.7" 861 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 862 | integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0= 863 | 864 | astral-regex@^1.0.0: 865 | version "1.0.0" 866 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 867 | integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== 868 | 869 | async-each@^1.0.0: 870 | version "1.0.1" 871 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 872 | integrity sha1-GdOGodntxufByF04iu28xW0zYC0= 873 | 874 | atob@^2.1.1: 875 | version "2.1.2" 876 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 877 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 878 | 879 | axobject-query@^2.0.1: 880 | version "2.0.2" 881 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.0.2.tgz#ea187abe5b9002b377f925d8bf7d1c561adf38f9" 882 | integrity sha512-MCeek8ZH7hKyO1rWUbKNQBbl4l2eY0ntk7OGi+q0RlafrCnfPxC06WZA+uebCfmYp4mNU9jRBP1AhGyf8+W3ww== 883 | dependencies: 884 | ast-types-flow "0.0.7" 885 | 886 | babel-eslint@^10.0.1: 887 | version "10.0.1" 888 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.0.1.tgz#919681dc099614cd7d31d45c8908695092a1faed" 889 | integrity sha512-z7OT1iNV+TjOwHNLLyJk+HN+YVWX+CLE6fPD2SymJZOZQBs+QIexFjhm4keGTm8MW9xr4EC9Q0PbaLB24V5GoQ== 890 | dependencies: 891 | "@babel/code-frame" "^7.0.0" 892 | "@babel/parser" "^7.0.0" 893 | "@babel/traverse" "^7.0.0" 894 | "@babel/types" "^7.0.0" 895 | eslint-scope "3.7.1" 896 | eslint-visitor-keys "^1.0.0" 897 | 898 | balanced-match@^1.0.0: 899 | version "1.0.0" 900 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 901 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 902 | 903 | base@^0.11.1: 904 | version "0.11.2" 905 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 906 | integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== 907 | dependencies: 908 | cache-base "^1.0.1" 909 | class-utils "^0.3.5" 910 | component-emitter "^1.2.1" 911 | define-property "^1.0.0" 912 | isobject "^3.0.1" 913 | mixin-deep "^1.2.0" 914 | pascalcase "^0.1.1" 915 | 916 | binary-extensions@^1.0.0: 917 | version "1.12.0" 918 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.12.0.tgz#c2d780f53d45bba8317a8902d4ceeaf3a6385b14" 919 | integrity sha512-DYWGk01lDcxeS/K9IHPGWfT8PsJmbXRtRd2Sx72Tnb8pcYZQFF1oSDb8hJtS1vhp212q1Rzi5dUf9+nq0o9UIg== 920 | 921 | brace-expansion@^1.1.7: 922 | version "1.1.11" 923 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 924 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 925 | dependencies: 926 | balanced-match "^1.0.0" 927 | concat-map "0.0.1" 928 | 929 | braces@^2.3.0, braces@^2.3.1: 930 | version "2.3.2" 931 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 932 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== 933 | dependencies: 934 | arr-flatten "^1.1.0" 935 | array-unique "^0.3.2" 936 | extend-shallow "^2.0.1" 937 | fill-range "^4.0.0" 938 | isobject "^3.0.1" 939 | repeat-element "^1.1.2" 940 | snapdragon "^0.8.1" 941 | snapdragon-node "^2.0.1" 942 | split-string "^3.0.2" 943 | to-regex "^3.0.1" 944 | 945 | browser-stdout@1.3.1: 946 | version "1.3.1" 947 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" 948 | integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== 949 | 950 | browserslist@^4.3.4: 951 | version "4.3.5" 952 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.3.5.tgz#1a917678acc07b55606748ea1adf9846ea8920f7" 953 | integrity sha512-z9ZhGc3d9e/sJ9dIx5NFXkKoaiQTnrvrMsN3R1fGb1tkWWNSz12UewJn9TNxGo1l7J23h0MRaPmk7jfeTZYs1w== 954 | dependencies: 955 | caniuse-lite "^1.0.30000912" 956 | electron-to-chromium "^1.3.86" 957 | node-releases "^1.0.5" 958 | 959 | buffer-from@^1.0.0: 960 | version "1.1.1" 961 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 962 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 963 | 964 | builtin-modules@^1.0.0: 965 | version "1.1.1" 966 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 967 | integrity sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8= 968 | 969 | cache-base@^1.0.1: 970 | version "1.0.1" 971 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 972 | integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== 973 | dependencies: 974 | collection-visit "^1.0.0" 975 | component-emitter "^1.2.1" 976 | get-value "^2.0.6" 977 | has-value "^1.0.0" 978 | isobject "^3.0.1" 979 | set-value "^2.0.0" 980 | to-object-path "^0.3.0" 981 | union-value "^1.0.0" 982 | unset-value "^1.0.0" 983 | 984 | caller-path@^0.1.0: 985 | version "0.1.0" 986 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 987 | integrity sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8= 988 | dependencies: 989 | callsites "^0.2.0" 990 | 991 | callsites@^0.2.0: 992 | version "0.2.0" 993 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 994 | integrity sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo= 995 | 996 | caniuse-lite@^1.0.30000912: 997 | version "1.0.30000918" 998 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000918.tgz#6288f79da3c5c8b45e502f47ad8f3eb91f1379a9" 999 | integrity sha512-CAZ9QXGViBvhHnmIHhsTPSWFBujDaelKnUj7wwImbyQRxmXynYqKGi3UaZTSz9MoVh+1EVxOS/DFIkrJYgR3aw== 1000 | 1001 | chai@^4.2.0: 1002 | version "4.2.0" 1003 | resolved "https://registry.yarnpkg.com/chai/-/chai-4.2.0.tgz#760aa72cf20e3795e84b12877ce0e83737aa29e5" 1004 | integrity sha512-XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw== 1005 | dependencies: 1006 | assertion-error "^1.1.0" 1007 | check-error "^1.0.2" 1008 | deep-eql "^3.0.1" 1009 | get-func-name "^2.0.0" 1010 | pathval "^1.1.0" 1011 | type-detect "^4.0.5" 1012 | 1013 | chalk@^2.0.0, chalk@^2.1.0: 1014 | version "2.4.1" 1015 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 1016 | integrity sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ== 1017 | dependencies: 1018 | ansi-styles "^3.2.1" 1019 | escape-string-regexp "^1.0.5" 1020 | supports-color "^5.3.0" 1021 | 1022 | change-emitter@^0.1.2: 1023 | version "0.1.6" 1024 | resolved "https://registry.yarnpkg.com/change-emitter/-/change-emitter-0.1.6.tgz#e8b2fe3d7f1ab7d69a32199aff91ea6931409515" 1025 | integrity sha1-6LL+PX8at9aaMhma/5HqaTFAlRU= 1026 | 1027 | chardet@^0.7.0: 1028 | version "0.7.0" 1029 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" 1030 | integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== 1031 | 1032 | check-error@^1.0.2: 1033 | version "1.0.2" 1034 | resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" 1035 | integrity sha1-V00xLt2Iu13YkS6Sht1sCu1KrII= 1036 | 1037 | chokidar@^2.0.3: 1038 | version "2.0.4" 1039 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.4.tgz#356ff4e2b0e8e43e322d18a372460bbcf3accd26" 1040 | integrity sha512-z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ== 1041 | dependencies: 1042 | anymatch "^2.0.0" 1043 | async-each "^1.0.0" 1044 | braces "^2.3.0" 1045 | glob-parent "^3.1.0" 1046 | inherits "^2.0.1" 1047 | is-binary-path "^1.0.0" 1048 | is-glob "^4.0.0" 1049 | lodash.debounce "^4.0.8" 1050 | normalize-path "^2.1.1" 1051 | path-is-absolute "^1.0.0" 1052 | readdirp "^2.0.0" 1053 | upath "^1.0.5" 1054 | optionalDependencies: 1055 | fsevents "^1.2.2" 1056 | 1057 | chownr@^1.1.1: 1058 | version "1.1.1" 1059 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" 1060 | integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g== 1061 | 1062 | circular-json@^0.3.1: 1063 | version "0.3.3" 1064 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 1065 | integrity sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A== 1066 | 1067 | class-utils@^0.3.5: 1068 | version "0.3.6" 1069 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 1070 | integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== 1071 | dependencies: 1072 | arr-union "^3.1.0" 1073 | define-property "^0.2.5" 1074 | isobject "^3.0.0" 1075 | static-extend "^0.1.1" 1076 | 1077 | cli-cursor@^2.1.0: 1078 | version "2.1.0" 1079 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 1080 | integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= 1081 | dependencies: 1082 | restore-cursor "^2.0.0" 1083 | 1084 | cli-width@^2.0.0: 1085 | version "2.2.0" 1086 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 1087 | integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= 1088 | 1089 | code-point-at@^1.0.0: 1090 | version "1.1.0" 1091 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1092 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 1093 | 1094 | collection-visit@^1.0.0: 1095 | version "1.0.0" 1096 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 1097 | integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= 1098 | dependencies: 1099 | map-visit "^1.0.0" 1100 | object-visit "^1.0.0" 1101 | 1102 | color-convert@^1.9.0: 1103 | version "1.9.3" 1104 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1105 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1106 | dependencies: 1107 | color-name "1.1.3" 1108 | 1109 | color-name@1.1.3: 1110 | version "1.1.3" 1111 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1112 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1113 | 1114 | commander@2.15.1: 1115 | version "2.15.1" 1116 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" 1117 | integrity sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag== 1118 | 1119 | commander@^2.11.0, commander@^2.8.1: 1120 | version "2.19.0" 1121 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" 1122 | integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg== 1123 | 1124 | commondir@^1.0.1: 1125 | version "1.0.1" 1126 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1127 | integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= 1128 | 1129 | component-emitter@^1.2.1: 1130 | version "1.2.1" 1131 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1132 | integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY= 1133 | 1134 | concat-map@0.0.1: 1135 | version "0.0.1" 1136 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1137 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1138 | 1139 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1140 | version "1.1.0" 1141 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1142 | integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= 1143 | 1144 | contains-path@^0.1.0: 1145 | version "0.1.0" 1146 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1147 | integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= 1148 | 1149 | convert-source-map@^1.1.0: 1150 | version "1.6.0" 1151 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" 1152 | integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== 1153 | dependencies: 1154 | safe-buffer "~5.1.1" 1155 | 1156 | copy-descriptor@^0.1.0: 1157 | version "0.1.1" 1158 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1159 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= 1160 | 1161 | core-js@^1.0.0: 1162 | version "1.2.7" 1163 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1164 | integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY= 1165 | 1166 | core-js@^2.5.7: 1167 | version "2.6.0" 1168 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.0.tgz#1e30793e9ee5782b307e37ffa22da0eacddd84d4" 1169 | integrity sha512-kLRC6ncVpuEW/1kwrOXYX6KQASCVtrh1gQr/UiaVgFlf9WE5Vp+lNe5+h3LuMr5PAucWnnEXwH0nQHRH/gpGtw== 1170 | 1171 | core-util-is@~1.0.0: 1172 | version "1.0.2" 1173 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1174 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 1175 | 1176 | cross-spawn@^6.0.5: 1177 | version "6.0.5" 1178 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 1179 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 1180 | dependencies: 1181 | nice-try "^1.0.4" 1182 | path-key "^2.0.1" 1183 | semver "^5.5.0" 1184 | shebang-command "^1.2.0" 1185 | which "^1.2.9" 1186 | 1187 | damerau-levenshtein@^1.0.4: 1188 | version "1.0.4" 1189 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz#03191c432cb6eea168bb77f3a55ffdccb8978514" 1190 | integrity sha1-AxkcQyy27qFou3fzpV/9zLiXhRQ= 1191 | 1192 | debug@3.1.0: 1193 | version "3.1.0" 1194 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1195 | integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== 1196 | dependencies: 1197 | ms "2.0.0" 1198 | 1199 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: 1200 | version "2.6.9" 1201 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1202 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 1203 | dependencies: 1204 | ms "2.0.0" 1205 | 1206 | debug@^4.0.1, debug@^4.1.0: 1207 | version "4.1.0" 1208 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.0.tgz#373687bffa678b38b1cd91f861b63850035ddc87" 1209 | integrity sha512-heNPJUJIqC+xB6ayLAMHaIrmN9HKa7aQO8MGqKpvCA+uJYVcvR6l5kgdrhRuwPFHU7P5/A1w0BjByPHwpfTDKg== 1210 | dependencies: 1211 | ms "^2.1.1" 1212 | 1213 | decode-uri-component@^0.2.0: 1214 | version "0.2.0" 1215 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1216 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= 1217 | 1218 | deep-eql@^3.0.1: 1219 | version "3.0.1" 1220 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" 1221 | integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw== 1222 | dependencies: 1223 | type-detect "^4.0.0" 1224 | 1225 | deep-extend@^0.6.0: 1226 | version "0.6.0" 1227 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 1228 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 1229 | 1230 | deep-is@~0.1.3: 1231 | version "0.1.3" 1232 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1233 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 1234 | 1235 | define-properties@^1.1.2: 1236 | version "1.1.3" 1237 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 1238 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 1239 | dependencies: 1240 | object-keys "^1.0.12" 1241 | 1242 | define-property@^0.2.5: 1243 | version "0.2.5" 1244 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1245 | integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= 1246 | dependencies: 1247 | is-descriptor "^0.1.0" 1248 | 1249 | define-property@^1.0.0: 1250 | version "1.0.0" 1251 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1252 | integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= 1253 | dependencies: 1254 | is-descriptor "^1.0.0" 1255 | 1256 | define-property@^2.0.2: 1257 | version "2.0.2" 1258 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1259 | integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== 1260 | dependencies: 1261 | is-descriptor "^1.0.2" 1262 | isobject "^3.0.1" 1263 | 1264 | delegates@^1.0.0: 1265 | version "1.0.0" 1266 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1267 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 1268 | 1269 | detect-libc@^1.0.2: 1270 | version "1.0.3" 1271 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1272 | integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= 1273 | 1274 | diff@3.5.0, diff@^3.5.0: 1275 | version "3.5.0" 1276 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 1277 | integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== 1278 | 1279 | dnd-core@^7.2.0: 1280 | version "7.2.0" 1281 | resolved "https://registry.yarnpkg.com/dnd-core/-/dnd-core-7.2.0.tgz#70d4ab6c0c6f90423c27b1711624b5d834025bf3" 1282 | integrity sha512-KUCI+m2Q4k3QlWWsiyUu2R/d0nJo3oGHknM/lGOD4u1XPA4O+LJyYe7PQBzY4J6ehaHGoQ/soTUu/KfaLSOL8w== 1283 | dependencies: 1284 | asap "^2.0.6" 1285 | invariant "^2.2.4" 1286 | lodash "^4.17.11" 1287 | redux "^4.0.1" 1288 | 1289 | doctrine@1.5.0: 1290 | version "1.5.0" 1291 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1292 | integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo= 1293 | dependencies: 1294 | esutils "^2.0.2" 1295 | isarray "^1.0.0" 1296 | 1297 | doctrine@^2.1.0: 1298 | version "2.1.0" 1299 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 1300 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 1301 | dependencies: 1302 | esutils "^2.0.2" 1303 | 1304 | electron-to-chromium@^1.3.86: 1305 | version "1.3.90" 1306 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.90.tgz#b4c51b8303beff18f2b74817402bf4898e09558a" 1307 | integrity sha512-IjJZKRhFbWSOX1w0sdIXgp4CMRguu6UYcTckyFF/Gjtemsu/25eZ+RXwFlV+UWcIueHyQA1UnRJxocTpH5NdGA== 1308 | 1309 | emoji-regex@^6.5.1: 1310 | version "6.5.1" 1311 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.5.1.tgz#9baea929b155565c11ea41c6626eaa65cef992c2" 1312 | integrity sha512-PAHp6TxrCy7MGMFidro8uikr+zlJJKJ/Q6mm2ExZ7HwkyR9lSVFfE3kt36qcwa24BQL7y0G9axycGjK1A/0uNQ== 1313 | 1314 | encoding@^0.1.11: 1315 | version "0.1.12" 1316 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1317 | integrity sha1-U4tm8+5izRq1HsMjgp0flIDHS+s= 1318 | dependencies: 1319 | iconv-lite "~0.4.13" 1320 | 1321 | error-ex@^1.2.0: 1322 | version "1.3.2" 1323 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1324 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1325 | dependencies: 1326 | is-arrayish "^0.2.1" 1327 | 1328 | es-abstract@^1.6.1, es-abstract@^1.7.0: 1329 | version "1.12.0" 1330 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" 1331 | integrity sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA== 1332 | dependencies: 1333 | es-to-primitive "^1.1.1" 1334 | function-bind "^1.1.1" 1335 | has "^1.0.1" 1336 | is-callable "^1.1.3" 1337 | is-regex "^1.0.4" 1338 | 1339 | es-to-primitive@^1.1.1: 1340 | version "1.2.0" 1341 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" 1342 | integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== 1343 | dependencies: 1344 | is-callable "^1.1.4" 1345 | is-date-object "^1.0.1" 1346 | is-symbol "^1.0.2" 1347 | 1348 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.5: 1349 | version "1.0.5" 1350 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1351 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1352 | 1353 | eslint-config-airbnb-base@^13.1.0: 1354 | version "13.1.0" 1355 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-13.1.0.tgz#b5a1b480b80dfad16433d6c4ad84e6605052c05c" 1356 | integrity sha512-XWwQtf3U3zIoKO1BbHh6aUhJZQweOwSt4c2JrPDg9FP3Ltv3+YfEv7jIDB8275tVnO/qOHbfuYg3kzw6Je7uWw== 1357 | dependencies: 1358 | eslint-restricted-globals "^0.1.1" 1359 | object.assign "^4.1.0" 1360 | object.entries "^1.0.4" 1361 | 1362 | eslint-config-airbnb@^17.1.0: 1363 | version "17.1.0" 1364 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-17.1.0.tgz#3964ed4bc198240315ff52030bf8636f42bc4732" 1365 | integrity sha512-R9jw28hFfEQnpPau01NO5K/JWMGLi6aymiF6RsnMURjTk+MqZKllCqGK/0tOvHkPi/NWSSOU2Ced/GX++YxLnw== 1366 | dependencies: 1367 | eslint-config-airbnb-base "^13.1.0" 1368 | object.assign "^4.1.0" 1369 | object.entries "^1.0.4" 1370 | 1371 | eslint-import-resolver-node@^0.3.1: 1372 | version "0.3.2" 1373 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" 1374 | integrity sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q== 1375 | dependencies: 1376 | debug "^2.6.9" 1377 | resolve "^1.5.0" 1378 | 1379 | eslint-module-utils@^2.2.0: 1380 | version "2.2.0" 1381 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz#b270362cd88b1a48ad308976ce7fa54e98411746" 1382 | integrity sha1-snA2LNiLGkitMIl2zn+lTphBF0Y= 1383 | dependencies: 1384 | debug "^2.6.8" 1385 | pkg-dir "^1.0.0" 1386 | 1387 | eslint-plugin-import@^2.14.0: 1388 | version "2.14.0" 1389 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.14.0.tgz#6b17626d2e3e6ad52cfce8807a845d15e22111a8" 1390 | integrity sha512-FpuRtniD/AY6sXByma2Wr0TXvXJ4nA/2/04VPlfpmUDPOpOY264x+ILiwnrk/k4RINgDAyFZByxqPUbSQ5YE7g== 1391 | dependencies: 1392 | contains-path "^0.1.0" 1393 | debug "^2.6.8" 1394 | doctrine "1.5.0" 1395 | eslint-import-resolver-node "^0.3.1" 1396 | eslint-module-utils "^2.2.0" 1397 | has "^1.0.1" 1398 | lodash "^4.17.4" 1399 | minimatch "^3.0.3" 1400 | read-pkg-up "^2.0.0" 1401 | resolve "^1.6.0" 1402 | 1403 | eslint-plugin-jsx-a11y@^6.1.2: 1404 | version "6.1.2" 1405 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.1.2.tgz#69bca4890b36dcf0fe16dd2129d2d88b98f33f88" 1406 | integrity sha512-7gSSmwb3A+fQwtw0arguwMdOdzmKUgnUcbSNlo+GjKLAQFuC2EZxWqG9XHRI8VscBJD5a8raz3RuxQNFW+XJbw== 1407 | dependencies: 1408 | aria-query "^3.0.0" 1409 | array-includes "^3.0.3" 1410 | ast-types-flow "^0.0.7" 1411 | axobject-query "^2.0.1" 1412 | damerau-levenshtein "^1.0.4" 1413 | emoji-regex "^6.5.1" 1414 | has "^1.0.3" 1415 | jsx-ast-utils "^2.0.1" 1416 | 1417 | eslint-plugin-react@^7.11.1: 1418 | version "7.11.1" 1419 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.11.1.tgz#c01a7af6f17519457d6116aa94fc6d2ccad5443c" 1420 | integrity sha512-cVVyMadRyW7qsIUh3FHp3u6QHNhOgVrLQYdQEB1bPWBsgbNCHdFAeNMquBMCcZJu59eNthX053L70l7gRt4SCw== 1421 | dependencies: 1422 | array-includes "^3.0.3" 1423 | doctrine "^2.1.0" 1424 | has "^1.0.3" 1425 | jsx-ast-utils "^2.0.1" 1426 | prop-types "^15.6.2" 1427 | 1428 | eslint-restricted-globals@^0.1.1: 1429 | version "0.1.1" 1430 | resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7" 1431 | integrity sha1-NfDVy8ZMLj7WLpO0saevBbp+1Nc= 1432 | 1433 | eslint-scope@3.7.1: 1434 | version "3.7.1" 1435 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1436 | integrity sha1-PWPD7f2gLgbgGkUq2IyqzHzctug= 1437 | dependencies: 1438 | esrecurse "^4.1.0" 1439 | estraverse "^4.1.1" 1440 | 1441 | eslint-scope@^4.0.0: 1442 | version "4.0.0" 1443 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.0.tgz#50bf3071e9338bcdc43331794a0cb533f0136172" 1444 | integrity sha512-1G6UTDi7Jc1ELFwnR58HV4fK9OQK4S6N985f166xqXxpjU6plxFISJa2Ba9KCQuFa8RCnj/lSFJbHo7UFDBnUA== 1445 | dependencies: 1446 | esrecurse "^4.1.0" 1447 | estraverse "^4.1.1" 1448 | 1449 | eslint-utils@^1.3.1: 1450 | version "1.3.1" 1451 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.3.1.tgz#9a851ba89ee7c460346f97cf8939c7298827e512" 1452 | integrity sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q== 1453 | 1454 | eslint-visitor-keys@^1.0.0: 1455 | version "1.0.0" 1456 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 1457 | integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ== 1458 | 1459 | eslint@^5.9.0: 1460 | version "5.10.0" 1461 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.10.0.tgz#24adcbe92bf5eb1fc2d2f2b1eebe0c5e0713903a" 1462 | integrity sha512-HpqzC+BHULKlnPwWae9MaVZ5AXJKpkxCVXQHrFaRw3hbDj26V/9ArYM4Rr/SQ8pi6qUPLXSSXC4RBJlyq2Z2OQ== 1463 | dependencies: 1464 | "@babel/code-frame" "^7.0.0" 1465 | ajv "^6.5.3" 1466 | chalk "^2.1.0" 1467 | cross-spawn "^6.0.5" 1468 | debug "^4.0.1" 1469 | doctrine "^2.1.0" 1470 | eslint-scope "^4.0.0" 1471 | eslint-utils "^1.3.1" 1472 | eslint-visitor-keys "^1.0.0" 1473 | espree "^5.0.0" 1474 | esquery "^1.0.1" 1475 | esutils "^2.0.2" 1476 | file-entry-cache "^2.0.0" 1477 | functional-red-black-tree "^1.0.1" 1478 | glob "^7.1.2" 1479 | globals "^11.7.0" 1480 | ignore "^4.0.6" 1481 | imurmurhash "^0.1.4" 1482 | inquirer "^6.1.0" 1483 | js-yaml "^3.12.0" 1484 | json-stable-stringify-without-jsonify "^1.0.1" 1485 | levn "^0.3.0" 1486 | lodash "^4.17.5" 1487 | minimatch "^3.0.4" 1488 | mkdirp "^0.5.1" 1489 | natural-compare "^1.4.0" 1490 | optionator "^0.8.2" 1491 | path-is-inside "^1.0.2" 1492 | pluralize "^7.0.0" 1493 | progress "^2.0.0" 1494 | regexpp "^2.0.1" 1495 | require-uncached "^1.0.3" 1496 | semver "^5.5.1" 1497 | strip-ansi "^4.0.0" 1498 | strip-json-comments "^2.0.1" 1499 | table "^5.0.2" 1500 | text-table "^0.2.0" 1501 | 1502 | espree@^5.0.0: 1503 | version "5.0.0" 1504 | resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.0.tgz#fc7f984b62b36a0f543b13fb9cd7b9f4a7f5b65c" 1505 | integrity sha512-1MpUfwsdS9MMoN7ZXqAr9e9UKdVHDcvrJpyx7mm1WuQlx/ygErEQBzgi5Nh5qBHIoYweprhtMkTCb9GhcAIcsA== 1506 | dependencies: 1507 | acorn "^6.0.2" 1508 | acorn-jsx "^5.0.0" 1509 | eslint-visitor-keys "^1.0.0" 1510 | 1511 | esprima@^4.0.0: 1512 | version "4.0.1" 1513 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1514 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1515 | 1516 | esquery@^1.0.1: 1517 | version "1.0.1" 1518 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" 1519 | integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== 1520 | dependencies: 1521 | estraverse "^4.0.0" 1522 | 1523 | esrecurse@^4.1.0: 1524 | version "4.2.1" 1525 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 1526 | integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== 1527 | dependencies: 1528 | estraverse "^4.1.0" 1529 | 1530 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 1531 | version "4.2.0" 1532 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1533 | integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= 1534 | 1535 | esutils@^2.0.0, esutils@^2.0.2: 1536 | version "2.0.2" 1537 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1538 | integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= 1539 | 1540 | expand-brackets@^2.1.4: 1541 | version "2.1.4" 1542 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1543 | integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= 1544 | dependencies: 1545 | debug "^2.3.3" 1546 | define-property "^0.2.5" 1547 | extend-shallow "^2.0.1" 1548 | posix-character-classes "^0.1.0" 1549 | regex-not "^1.0.0" 1550 | snapdragon "^0.8.1" 1551 | to-regex "^3.0.1" 1552 | 1553 | extend-shallow@^2.0.1: 1554 | version "2.0.1" 1555 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1556 | integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= 1557 | dependencies: 1558 | is-extendable "^0.1.0" 1559 | 1560 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1561 | version "3.0.2" 1562 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1563 | integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= 1564 | dependencies: 1565 | assign-symbols "^1.0.0" 1566 | is-extendable "^1.0.1" 1567 | 1568 | external-editor@^3.0.0: 1569 | version "3.0.3" 1570 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.3.tgz#5866db29a97826dbe4bf3afd24070ead9ea43a27" 1571 | integrity sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA== 1572 | dependencies: 1573 | chardet "^0.7.0" 1574 | iconv-lite "^0.4.24" 1575 | tmp "^0.0.33" 1576 | 1577 | extglob@^2.0.4: 1578 | version "2.0.4" 1579 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1580 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== 1581 | dependencies: 1582 | array-unique "^0.3.2" 1583 | define-property "^1.0.0" 1584 | expand-brackets "^2.1.4" 1585 | extend-shallow "^2.0.1" 1586 | fragment-cache "^0.2.1" 1587 | regex-not "^1.0.0" 1588 | snapdragon "^0.8.1" 1589 | to-regex "^3.0.1" 1590 | 1591 | fast-deep-equal@^2.0.1: 1592 | version "2.0.1" 1593 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 1594 | integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= 1595 | 1596 | fast-json-stable-stringify@^2.0.0: 1597 | version "2.0.0" 1598 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1599 | integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= 1600 | 1601 | fast-levenshtein@~2.0.4: 1602 | version "2.0.6" 1603 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1604 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1605 | 1606 | fbjs@^0.8.1: 1607 | version "0.8.17" 1608 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd" 1609 | integrity sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90= 1610 | dependencies: 1611 | core-js "^1.0.0" 1612 | isomorphic-fetch "^2.1.1" 1613 | loose-envify "^1.0.0" 1614 | object-assign "^4.1.0" 1615 | promise "^7.1.1" 1616 | setimmediate "^1.0.5" 1617 | ua-parser-js "^0.7.18" 1618 | 1619 | figures@^2.0.0: 1620 | version "2.0.0" 1621 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1622 | integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= 1623 | dependencies: 1624 | escape-string-regexp "^1.0.5" 1625 | 1626 | file-entry-cache@^2.0.0: 1627 | version "2.0.0" 1628 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1629 | integrity sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E= 1630 | dependencies: 1631 | flat-cache "^1.2.1" 1632 | object-assign "^4.0.1" 1633 | 1634 | fill-range@^4.0.0: 1635 | version "4.0.0" 1636 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1637 | integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= 1638 | dependencies: 1639 | extend-shallow "^2.0.1" 1640 | is-number "^3.0.0" 1641 | repeat-string "^1.6.1" 1642 | to-regex-range "^2.1.0" 1643 | 1644 | find-cache-dir@^1.0.0: 1645 | version "1.0.0" 1646 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" 1647 | integrity sha1-kojj6ePMN0hxfTnq3hfPcfww7m8= 1648 | dependencies: 1649 | commondir "^1.0.1" 1650 | make-dir "^1.0.0" 1651 | pkg-dir "^2.0.0" 1652 | 1653 | find-up@^1.0.0: 1654 | version "1.1.2" 1655 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1656 | integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= 1657 | dependencies: 1658 | path-exists "^2.0.0" 1659 | pinkie-promise "^2.0.0" 1660 | 1661 | find-up@^2.0.0, find-up@^2.1.0: 1662 | version "2.1.0" 1663 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1664 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= 1665 | dependencies: 1666 | locate-path "^2.0.0" 1667 | 1668 | flat-cache@^1.2.1: 1669 | version "1.3.4" 1670 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.4.tgz#2c2ef77525cc2929007dfffa1dd314aa9c9dee6f" 1671 | integrity sha512-VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg== 1672 | dependencies: 1673 | circular-json "^0.3.1" 1674 | graceful-fs "^4.1.2" 1675 | rimraf "~2.6.2" 1676 | write "^0.2.1" 1677 | 1678 | for-in@^1.0.2: 1679 | version "1.0.2" 1680 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1681 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= 1682 | 1683 | fragment-cache@^0.2.1: 1684 | version "0.2.1" 1685 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1686 | integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= 1687 | dependencies: 1688 | map-cache "^0.2.2" 1689 | 1690 | fs-minipass@^1.2.5: 1691 | version "1.2.5" 1692 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 1693 | integrity sha512-JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ== 1694 | dependencies: 1695 | minipass "^2.2.1" 1696 | 1697 | fs-readdir-recursive@^1.1.0: 1698 | version "1.1.0" 1699 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1700 | integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA== 1701 | 1702 | fs.realpath@^1.0.0: 1703 | version "1.0.0" 1704 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1705 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1706 | 1707 | fsevents@^1.2.2: 1708 | version "1.2.4" 1709 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 1710 | integrity sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg== 1711 | dependencies: 1712 | nan "^2.9.2" 1713 | node-pre-gyp "^0.10.0" 1714 | 1715 | function-bind@^1.1.0, function-bind@^1.1.1: 1716 | version "1.1.1" 1717 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1718 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1719 | 1720 | functional-red-black-tree@^1.0.1: 1721 | version "1.0.1" 1722 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1723 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 1724 | 1725 | gauge@~2.7.3: 1726 | version "2.7.4" 1727 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1728 | integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= 1729 | dependencies: 1730 | aproba "^1.0.3" 1731 | console-control-strings "^1.0.0" 1732 | has-unicode "^2.0.0" 1733 | object-assign "^4.1.0" 1734 | signal-exit "^3.0.0" 1735 | string-width "^1.0.1" 1736 | strip-ansi "^3.0.1" 1737 | wide-align "^1.1.0" 1738 | 1739 | get-func-name@^2.0.0: 1740 | version "2.0.0" 1741 | resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" 1742 | integrity sha1-6td0q+5y4gQJQzoGY2YCPdaIekE= 1743 | 1744 | get-value@^2.0.3, get-value@^2.0.6: 1745 | version "2.0.6" 1746 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1747 | integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= 1748 | 1749 | glob-parent@^3.1.0: 1750 | version "3.1.0" 1751 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1752 | integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= 1753 | dependencies: 1754 | is-glob "^3.1.0" 1755 | path-dirname "^1.0.0" 1756 | 1757 | glob@7.1.2: 1758 | version "7.1.2" 1759 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1760 | integrity sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ== 1761 | dependencies: 1762 | fs.realpath "^1.0.0" 1763 | inflight "^1.0.4" 1764 | inherits "2" 1765 | minimatch "^3.0.4" 1766 | once "^1.3.0" 1767 | path-is-absolute "^1.0.0" 1768 | 1769 | glob@^7.0.0, glob@^7.0.5, glob@^7.1.2: 1770 | version "7.1.3" 1771 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" 1772 | integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== 1773 | dependencies: 1774 | fs.realpath "^1.0.0" 1775 | inflight "^1.0.4" 1776 | inherits "2" 1777 | minimatch "^3.0.4" 1778 | once "^1.3.0" 1779 | path-is-absolute "^1.0.0" 1780 | 1781 | globals@^11.1.0, globals@^11.7.0: 1782 | version "11.9.0" 1783 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.9.0.tgz#bde236808e987f290768a93d065060d78e6ab249" 1784 | integrity sha512-5cJVtyXWH8PiJPVLZzzoIizXx944O4OmRro5MWKx5fT4MgcN7OfaMutPeaTdJCCURwbWdhhcCWcKIffPnmTzBg== 1785 | 1786 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1787 | version "4.1.15" 1788 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" 1789 | integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== 1790 | 1791 | growl@1.10.5: 1792 | version "1.10.5" 1793 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" 1794 | integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== 1795 | 1796 | has-flag@^3.0.0: 1797 | version "3.0.0" 1798 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1799 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1800 | 1801 | has-symbols@^1.0.0: 1802 | version "1.0.0" 1803 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 1804 | integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= 1805 | 1806 | has-unicode@^2.0.0: 1807 | version "2.0.1" 1808 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1809 | integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= 1810 | 1811 | has-value@^0.3.1: 1812 | version "0.3.1" 1813 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1814 | integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= 1815 | dependencies: 1816 | get-value "^2.0.3" 1817 | has-values "^0.1.4" 1818 | isobject "^2.0.0" 1819 | 1820 | has-value@^1.0.0: 1821 | version "1.0.0" 1822 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1823 | integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= 1824 | dependencies: 1825 | get-value "^2.0.6" 1826 | has-values "^1.0.0" 1827 | isobject "^3.0.0" 1828 | 1829 | has-values@^0.1.4: 1830 | version "0.1.4" 1831 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1832 | integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= 1833 | 1834 | has-values@^1.0.0: 1835 | version "1.0.0" 1836 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1837 | integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= 1838 | dependencies: 1839 | is-number "^3.0.0" 1840 | kind-of "^4.0.0" 1841 | 1842 | has@^1.0.1, has@^1.0.3: 1843 | version "1.0.3" 1844 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1845 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1846 | dependencies: 1847 | function-bind "^1.1.1" 1848 | 1849 | he@1.1.1: 1850 | version "1.1.1" 1851 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1852 | integrity sha1-k0EP0hsAlzUVH4howvJx80J+I/0= 1853 | 1854 | hoist-non-react-statics@^2.3.1: 1855 | version "2.5.5" 1856 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz#c5903cf409c0dfd908f388e619d86b9c1174cb47" 1857 | integrity sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw== 1858 | 1859 | hoist-non-react-statics@^3.1.0: 1860 | version "3.2.1" 1861 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.2.1.tgz#c09c0555c84b38a7ede6912b61efddafd6e75e1e" 1862 | integrity sha512-TFsu3TV3YLY+zFTZDrN8L2DTFanObwmBLpWvJs1qfUuEQ5bTAdFcwfx2T/bsCXfM9QHSLvjfP+nihEl0yvozxw== 1863 | dependencies: 1864 | react-is "^16.3.2" 1865 | 1866 | hoist-non-react-statics@^3.3.0: 1867 | version "3.3.0" 1868 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.0.tgz#b09178f0122184fb95acf525daaecb4d8f45958b" 1869 | integrity sha512-0XsbTXxgiaCDYDIWFcwkmerZPSwywfUqYmwT4jzewKTQSWoE6FCMoUVOeBJWK3E/CrWbxRG3m5GzY4lnIwGRBA== 1870 | dependencies: 1871 | react-is "^16.7.0" 1872 | 1873 | home-or-tmp@^3.0.0: 1874 | version "3.0.0" 1875 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-3.0.0.tgz#57a8fe24cf33cdd524860a15821ddc25c86671fb" 1876 | integrity sha1-V6j+JM8zzdUkhgoVgh3cJchmcfs= 1877 | 1878 | hosted-git-info@^2.1.4: 1879 | version "2.7.1" 1880 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" 1881 | integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w== 1882 | 1883 | iconv-lite@^0.4.24, iconv-lite@^0.4.4, iconv-lite@~0.4.13: 1884 | version "0.4.24" 1885 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1886 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1887 | dependencies: 1888 | safer-buffer ">= 2.1.2 < 3" 1889 | 1890 | ignore-walk@^3.0.1: 1891 | version "3.0.1" 1892 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1893 | integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ== 1894 | dependencies: 1895 | minimatch "^3.0.4" 1896 | 1897 | ignore@^4.0.6: 1898 | version "4.0.6" 1899 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 1900 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 1901 | 1902 | imurmurhash@^0.1.4: 1903 | version "0.1.4" 1904 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1905 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1906 | 1907 | in-publish@^2.0.0: 1908 | version "2.0.0" 1909 | resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51" 1910 | integrity sha1-4g/146KvwmkDILbcVSaCqcf631E= 1911 | 1912 | inflight@^1.0.4: 1913 | version "1.0.6" 1914 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1915 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1916 | dependencies: 1917 | once "^1.3.0" 1918 | wrappy "1" 1919 | 1920 | inherits@2, inherits@^2.0.1, inherits@~2.0.3: 1921 | version "2.0.3" 1922 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1923 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 1924 | 1925 | ini@~1.3.0: 1926 | version "1.3.5" 1927 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1928 | integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== 1929 | 1930 | inquirer@^6.1.0: 1931 | version "6.2.1" 1932 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.1.tgz#9943fc4882161bdb0b0c9276769c75b32dbfcd52" 1933 | integrity sha512-088kl3DRT2dLU5riVMKKr1DlImd6X7smDhpXUCkJDCKvTEJeRiXh0G132HG9u5a+6Ylw9plFRY7RuTnwohYSpg== 1934 | dependencies: 1935 | ansi-escapes "^3.0.0" 1936 | chalk "^2.0.0" 1937 | cli-cursor "^2.1.0" 1938 | cli-width "^2.0.0" 1939 | external-editor "^3.0.0" 1940 | figures "^2.0.0" 1941 | lodash "^4.17.10" 1942 | mute-stream "0.0.7" 1943 | run-async "^2.2.0" 1944 | rxjs "^6.1.0" 1945 | string-width "^2.1.0" 1946 | strip-ansi "^5.0.0" 1947 | through "^2.3.6" 1948 | 1949 | invariant@^2.1.0, invariant@^2.2.2, invariant@^2.2.4: 1950 | version "2.2.4" 1951 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1952 | integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== 1953 | dependencies: 1954 | loose-envify "^1.0.0" 1955 | 1956 | is-accessor-descriptor@^0.1.6: 1957 | version "0.1.6" 1958 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1959 | integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= 1960 | dependencies: 1961 | kind-of "^3.0.2" 1962 | 1963 | is-accessor-descriptor@^1.0.0: 1964 | version "1.0.0" 1965 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1966 | integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== 1967 | dependencies: 1968 | kind-of "^6.0.0" 1969 | 1970 | is-arrayish@^0.2.1: 1971 | version "0.2.1" 1972 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1973 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1974 | 1975 | is-binary-path@^1.0.0: 1976 | version "1.0.1" 1977 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1978 | integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= 1979 | dependencies: 1980 | binary-extensions "^1.0.0" 1981 | 1982 | is-buffer@^1.1.5: 1983 | version "1.1.6" 1984 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1985 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 1986 | 1987 | is-builtin-module@^1.0.0: 1988 | version "1.0.0" 1989 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1990 | integrity sha1-VAVy0096wxGfj3bDDLwbHgN6/74= 1991 | dependencies: 1992 | builtin-modules "^1.0.0" 1993 | 1994 | is-callable@^1.1.3, is-callable@^1.1.4: 1995 | version "1.1.4" 1996 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" 1997 | integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== 1998 | 1999 | is-data-descriptor@^0.1.4: 2000 | version "0.1.4" 2001 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 2002 | integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= 2003 | dependencies: 2004 | kind-of "^3.0.2" 2005 | 2006 | is-data-descriptor@^1.0.0: 2007 | version "1.0.0" 2008 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 2009 | integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== 2010 | dependencies: 2011 | kind-of "^6.0.0" 2012 | 2013 | is-date-object@^1.0.1: 2014 | version "1.0.1" 2015 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 2016 | integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= 2017 | 2018 | is-descriptor@^0.1.0: 2019 | version "0.1.6" 2020 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 2021 | integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== 2022 | dependencies: 2023 | is-accessor-descriptor "^0.1.6" 2024 | is-data-descriptor "^0.1.4" 2025 | kind-of "^5.0.0" 2026 | 2027 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 2028 | version "1.0.2" 2029 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 2030 | integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== 2031 | dependencies: 2032 | is-accessor-descriptor "^1.0.0" 2033 | is-data-descriptor "^1.0.0" 2034 | kind-of "^6.0.2" 2035 | 2036 | is-extendable@^0.1.0, is-extendable@^0.1.1: 2037 | version "0.1.1" 2038 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2039 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= 2040 | 2041 | is-extendable@^1.0.1: 2042 | version "1.0.1" 2043 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 2044 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== 2045 | dependencies: 2046 | is-plain-object "^2.0.4" 2047 | 2048 | is-extglob@^2.1.0, is-extglob@^2.1.1: 2049 | version "2.1.1" 2050 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 2051 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 2052 | 2053 | is-fullwidth-code-point@^1.0.0: 2054 | version "1.0.0" 2055 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2056 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 2057 | dependencies: 2058 | number-is-nan "^1.0.0" 2059 | 2060 | is-fullwidth-code-point@^2.0.0: 2061 | version "2.0.0" 2062 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2063 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 2064 | 2065 | is-glob@^3.1.0: 2066 | version "3.1.0" 2067 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 2068 | integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= 2069 | dependencies: 2070 | is-extglob "^2.1.0" 2071 | 2072 | is-glob@^4.0.0: 2073 | version "4.0.0" 2074 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 2075 | integrity sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A= 2076 | dependencies: 2077 | is-extglob "^2.1.1" 2078 | 2079 | is-number@^3.0.0: 2080 | version "3.0.0" 2081 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2082 | integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= 2083 | dependencies: 2084 | kind-of "^3.0.2" 2085 | 2086 | is-plain-obj@^1.1.0: 2087 | version "1.1.0" 2088 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 2089 | integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= 2090 | 2091 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 2092 | version "2.0.4" 2093 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 2094 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 2095 | dependencies: 2096 | isobject "^3.0.1" 2097 | 2098 | is-promise@^2.1.0: 2099 | version "2.1.0" 2100 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2101 | integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= 2102 | 2103 | is-regex@^1.0.4: 2104 | version "1.0.4" 2105 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2106 | integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= 2107 | dependencies: 2108 | has "^1.0.1" 2109 | 2110 | is-stream@^1.0.1: 2111 | version "1.1.0" 2112 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2113 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 2114 | 2115 | is-symbol@^1.0.2: 2116 | version "1.0.2" 2117 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" 2118 | integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== 2119 | dependencies: 2120 | has-symbols "^1.0.0" 2121 | 2122 | is-windows@^1.0.2: 2123 | version "1.0.2" 2124 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 2125 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 2126 | 2127 | isarray@0.0.1: 2128 | version "0.0.1" 2129 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2130 | integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= 2131 | 2132 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2133 | version "1.0.0" 2134 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2135 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 2136 | 2137 | isexe@^2.0.0: 2138 | version "2.0.0" 2139 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2140 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 2141 | 2142 | isobject@^2.0.0: 2143 | version "2.1.0" 2144 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2145 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= 2146 | dependencies: 2147 | isarray "1.0.0" 2148 | 2149 | isobject@^3.0.0, isobject@^3.0.1: 2150 | version "3.0.1" 2151 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 2152 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= 2153 | 2154 | isomorphic-fetch@^2.1.1: 2155 | version "2.2.1" 2156 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 2157 | integrity sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk= 2158 | dependencies: 2159 | node-fetch "^1.0.1" 2160 | whatwg-fetch ">=0.10.0" 2161 | 2162 | js-levenshtein@^1.1.3: 2163 | version "1.1.4" 2164 | resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.4.tgz#3a56e3cbf589ca0081eb22cd9ba0b1290a16d26e" 2165 | integrity sha512-PxfGzSs0ztShKrUYPIn5r0MtyAhYcCwmndozzpz8YObbPnD1jFxzlBGbRnX2mIu6Z13xN6+PTu05TQFnZFlzow== 2166 | 2167 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 2168 | version "4.0.0" 2169 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2170 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 2171 | 2172 | js-yaml@^3.12.0: 2173 | version "3.12.0" 2174 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" 2175 | integrity sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A== 2176 | dependencies: 2177 | argparse "^1.0.7" 2178 | esprima "^4.0.0" 2179 | 2180 | jsesc@^2.5.1: 2181 | version "2.5.2" 2182 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 2183 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 2184 | 2185 | jsesc@~0.5.0: 2186 | version "0.5.0" 2187 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2188 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 2189 | 2190 | json-schema-traverse@^0.4.1: 2191 | version "0.4.1" 2192 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 2193 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 2194 | 2195 | json-stable-stringify-without-jsonify@^1.0.1: 2196 | version "1.0.1" 2197 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2198 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 2199 | 2200 | json5@^2.1.0: 2201 | version "2.1.0" 2202 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" 2203 | integrity sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ== 2204 | dependencies: 2205 | minimist "^1.2.0" 2206 | 2207 | jsx-ast-utils@^2.0.1: 2208 | version "2.0.1" 2209 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz#e801b1b39985e20fffc87b40e3748080e2dcac7f" 2210 | integrity sha1-6AGxs5mF4g//yHtA43SAgOLcrH8= 2211 | dependencies: 2212 | array-includes "^3.0.3" 2213 | 2214 | just-extend@^3.0.0: 2215 | version "3.0.0" 2216 | resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-3.0.0.tgz#cee004031eaabf6406da03a7b84e4fe9d78ef288" 2217 | integrity sha512-Fu3T6pKBuxjWT/p4DkqGHFRsysc8OauWr4ZRTY9dIx07Y9O0RkoR5jcv28aeD1vuAwhm3nLkDurwLXoALp4DpQ== 2218 | 2219 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2220 | version "3.2.2" 2221 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2222 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= 2223 | dependencies: 2224 | is-buffer "^1.1.5" 2225 | 2226 | kind-of@^4.0.0: 2227 | version "4.0.0" 2228 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2229 | integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= 2230 | dependencies: 2231 | is-buffer "^1.1.5" 2232 | 2233 | kind-of@^5.0.0: 2234 | version "5.1.0" 2235 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2236 | integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== 2237 | 2238 | kind-of@^6.0.0, kind-of@^6.0.2: 2239 | version "6.0.2" 2240 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2241 | integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== 2242 | 2243 | levn@^0.3.0, levn@~0.3.0: 2244 | version "0.3.0" 2245 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2246 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 2247 | dependencies: 2248 | prelude-ls "~1.1.2" 2249 | type-check "~0.3.2" 2250 | 2251 | load-json-file@^2.0.0: 2252 | version "2.0.0" 2253 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2254 | integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= 2255 | dependencies: 2256 | graceful-fs "^4.1.2" 2257 | parse-json "^2.2.0" 2258 | pify "^2.0.0" 2259 | strip-bom "^3.0.0" 2260 | 2261 | locate-path@^2.0.0: 2262 | version "2.0.0" 2263 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2264 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= 2265 | dependencies: 2266 | p-locate "^2.0.0" 2267 | path-exists "^3.0.0" 2268 | 2269 | lodash.debounce@^4.0.8: 2270 | version "4.0.8" 2271 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 2272 | integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= 2273 | 2274 | lodash.get@^4.4.2: 2275 | version "4.4.2" 2276 | resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" 2277 | integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= 2278 | 2279 | lodash.throttle@^4.0.1: 2280 | version "4.1.1" 2281 | resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" 2282 | integrity sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ= 2283 | 2284 | lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.4, lodash@^4.17.5: 2285 | version "4.17.11" 2286 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" 2287 | integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== 2288 | 2289 | lolex@^2.3.2: 2290 | version "2.7.5" 2291 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-2.7.5.tgz#113001d56bfc7e02d56e36291cc5c413d1aa0733" 2292 | integrity sha512-l9x0+1offnKKIzYVjyXU2SiwhXDLekRzKyhnbyldPHvC7BvLPVpdNUNR2KeMAiCN2D/kLNttZgQD5WjSxuBx3Q== 2293 | 2294 | lolex@^3.0.0: 2295 | version "3.0.0" 2296 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-3.0.0.tgz#f04ee1a8aa13f60f1abd7b0e8f4213ec72ec193e" 2297 | integrity sha512-hcnW80h3j2lbUfFdMArd5UPA/vxZJ+G8vobd+wg3nVEQA0EigStbYcrG030FJxL6xiDDPEkoMatV9xIh5OecQQ== 2298 | 2299 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1, loose-envify@^1.4.0: 2300 | version "1.4.0" 2301 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 2302 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 2303 | dependencies: 2304 | js-tokens "^3.0.0 || ^4.0.0" 2305 | 2306 | make-dir@^1.0.0: 2307 | version "1.3.0" 2308 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" 2309 | integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== 2310 | dependencies: 2311 | pify "^3.0.0" 2312 | 2313 | map-cache@^0.2.2: 2314 | version "0.2.2" 2315 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2316 | integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= 2317 | 2318 | map-visit@^1.0.0: 2319 | version "1.0.0" 2320 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2321 | integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= 2322 | dependencies: 2323 | object-visit "^1.0.0" 2324 | 2325 | micromatch@^3.1.10, micromatch@^3.1.4: 2326 | version "3.1.10" 2327 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2328 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== 2329 | dependencies: 2330 | arr-diff "^4.0.0" 2331 | array-unique "^0.3.2" 2332 | braces "^2.3.1" 2333 | define-property "^2.0.2" 2334 | extend-shallow "^3.0.2" 2335 | extglob "^2.0.4" 2336 | fragment-cache "^0.2.1" 2337 | kind-of "^6.0.2" 2338 | nanomatch "^1.2.9" 2339 | object.pick "^1.3.0" 2340 | regex-not "^1.0.0" 2341 | snapdragon "^0.8.1" 2342 | to-regex "^3.0.2" 2343 | 2344 | mimic-fn@^1.0.0: 2345 | version "1.2.0" 2346 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2347 | integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== 2348 | 2349 | minimatch@3.0.4, minimatch@^3.0.3, minimatch@^3.0.4: 2350 | version "3.0.4" 2351 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2352 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 2353 | dependencies: 2354 | brace-expansion "^1.1.7" 2355 | 2356 | minimist@0.0.8: 2357 | version "0.0.8" 2358 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2359 | integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= 2360 | 2361 | minimist@^1.2.0: 2362 | version "1.2.0" 2363 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2364 | integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= 2365 | 2366 | minipass@^2.2.1, minipass@^2.3.4: 2367 | version "2.3.5" 2368 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" 2369 | integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA== 2370 | dependencies: 2371 | safe-buffer "^5.1.2" 2372 | yallist "^3.0.0" 2373 | 2374 | minizlib@^1.1.1: 2375 | version "1.2.1" 2376 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" 2377 | integrity sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA== 2378 | dependencies: 2379 | minipass "^2.2.1" 2380 | 2381 | mixin-deep@^1.2.0: 2382 | version "1.3.1" 2383 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 2384 | integrity sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ== 2385 | dependencies: 2386 | for-in "^1.0.2" 2387 | is-extendable "^1.0.1" 2388 | 2389 | mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1: 2390 | version "0.5.1" 2391 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2392 | integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= 2393 | dependencies: 2394 | minimist "0.0.8" 2395 | 2396 | mocha@^5.2.0: 2397 | version "5.2.0" 2398 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-5.2.0.tgz#6d8ae508f59167f940f2b5b3c4a612ae50c90ae6" 2399 | integrity sha512-2IUgKDhc3J7Uug+FxMXuqIyYzH7gJjXECKe/w43IGgQHTSj3InJi+yAA7T24L9bQMRKiUEHxEX37G5JpVUGLcQ== 2400 | dependencies: 2401 | browser-stdout "1.3.1" 2402 | commander "2.15.1" 2403 | debug "3.1.0" 2404 | diff "3.5.0" 2405 | escape-string-regexp "1.0.5" 2406 | glob "7.1.2" 2407 | growl "1.10.5" 2408 | he "1.1.1" 2409 | minimatch "3.0.4" 2410 | mkdirp "0.5.1" 2411 | supports-color "5.4.0" 2412 | 2413 | ms@2.0.0: 2414 | version "2.0.0" 2415 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2416 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 2417 | 2418 | ms@^2.1.1: 2419 | version "2.1.1" 2420 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 2421 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 2422 | 2423 | mute-stream@0.0.7: 2424 | version "0.0.7" 2425 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2426 | integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= 2427 | 2428 | nan@^2.9.2: 2429 | version "2.11.1" 2430 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.11.1.tgz#90e22bccb8ca57ea4cd37cc83d3819b52eea6766" 2431 | integrity sha512-iji6k87OSXa0CcrLl9z+ZiYSuR2o+c0bGuNmXdrhTQTakxytAFsC56SArGYoiHlJlFoHSnvmhpceZJaXkVuOtA== 2432 | 2433 | nanomatch@^1.2.9: 2434 | version "1.2.13" 2435 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 2436 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== 2437 | dependencies: 2438 | arr-diff "^4.0.0" 2439 | array-unique "^0.3.2" 2440 | define-property "^2.0.2" 2441 | extend-shallow "^3.0.2" 2442 | fragment-cache "^0.2.1" 2443 | is-windows "^1.0.2" 2444 | kind-of "^6.0.2" 2445 | object.pick "^1.3.0" 2446 | regex-not "^1.0.0" 2447 | snapdragon "^0.8.1" 2448 | to-regex "^3.0.1" 2449 | 2450 | natural-compare@^1.4.0: 2451 | version "1.4.0" 2452 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2453 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 2454 | 2455 | needle@^2.2.1: 2456 | version "2.2.4" 2457 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e" 2458 | integrity sha512-HyoqEb4wr/rsoaIDfTH2aVL9nWtQqba2/HvMv+++m8u0dz808MaagKILxtfeSN7QU7nvbQ79zk3vYOJp9zsNEA== 2459 | dependencies: 2460 | debug "^2.1.2" 2461 | iconv-lite "^0.4.4" 2462 | sax "^1.2.4" 2463 | 2464 | nice-try@^1.0.4: 2465 | version "1.0.5" 2466 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 2467 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 2468 | 2469 | nise@^1.4.7: 2470 | version "1.4.7" 2471 | resolved "https://registry.yarnpkg.com/nise/-/nise-1.4.7.tgz#180d723df5071a3d3fc0e83fe8eb0c02b7db1f59" 2472 | integrity sha512-5cxvo/pEAEHBX5s0zl+zd96BvHHuua/zttIHeQuTWSDjGrWsEHamty8xbZNfocC+fx7NMrle7XHvvxtFxobIZQ== 2473 | dependencies: 2474 | "@sinonjs/formatio" "^3.1.0" 2475 | just-extend "^3.0.0" 2476 | lolex "^2.3.2" 2477 | path-to-regexp "^1.7.0" 2478 | text-encoding "^0.6.4" 2479 | 2480 | node-fetch@^1.0.1: 2481 | version "1.7.3" 2482 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 2483 | integrity sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ== 2484 | dependencies: 2485 | encoding "^0.1.11" 2486 | is-stream "^1.0.1" 2487 | 2488 | node-modules-regexp@^1.0.0: 2489 | version "1.0.0" 2490 | resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" 2491 | integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= 2492 | 2493 | node-pre-gyp@^0.10.0: 2494 | version "0.10.3" 2495 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" 2496 | integrity sha512-d1xFs+C/IPS8Id0qPTZ4bUT8wWryfR/OzzAFxweG+uLN85oPzyo2Iw6bVlLQ/JOdgNonXLCoRyqDzDWq4iw72A== 2497 | dependencies: 2498 | detect-libc "^1.0.2" 2499 | mkdirp "^0.5.1" 2500 | needle "^2.2.1" 2501 | nopt "^4.0.1" 2502 | npm-packlist "^1.1.6" 2503 | npmlog "^4.0.2" 2504 | rc "^1.2.7" 2505 | rimraf "^2.6.1" 2506 | semver "^5.3.0" 2507 | tar "^4" 2508 | 2509 | node-releases@^1.0.5: 2510 | version "1.1.1" 2511 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.1.tgz#8fff8aea1cfcad1fb4205f805149054fbf73cafd" 2512 | integrity sha512-2UXrBr6gvaebo5TNF84C66qyJJ6r0kxBObgZIDX3D3/mt1ADKiHux3NJPWisq0wxvJJdkjECH+9IIKYViKj71Q== 2513 | dependencies: 2514 | semver "^5.3.0" 2515 | 2516 | nopt@^4.0.1: 2517 | version "4.0.1" 2518 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2519 | integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= 2520 | dependencies: 2521 | abbrev "1" 2522 | osenv "^0.1.4" 2523 | 2524 | normalize-package-data@^2.3.2: 2525 | version "2.4.0" 2526 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2527 | integrity sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw== 2528 | dependencies: 2529 | hosted-git-info "^2.1.4" 2530 | is-builtin-module "^1.0.0" 2531 | semver "2 || 3 || 4 || 5" 2532 | validate-npm-package-license "^3.0.1" 2533 | 2534 | normalize-path@^2.1.1: 2535 | version "2.1.1" 2536 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2537 | integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= 2538 | dependencies: 2539 | remove-trailing-separator "^1.0.1" 2540 | 2541 | npm-bundled@^1.0.1: 2542 | version "1.0.5" 2543 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979" 2544 | integrity sha512-m/e6jgWu8/v5niCUKQi9qQl8QdeEduFA96xHDDzFGqly0OOjI7c+60KM/2sppfnUU9JJagf+zs+yGhqSOFj71g== 2545 | 2546 | npm-packlist@^1.1.6: 2547 | version "1.1.12" 2548 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.12.tgz#22bde2ebc12e72ca482abd67afc51eb49377243a" 2549 | integrity sha512-WJKFOVMeAlsU/pjXuqVdzU0WfgtIBCupkEVwn+1Y0ERAbUfWw8R4GjgVbaKnUjRoD2FoQbHOCbOyT5Mbs9Lw4g== 2550 | dependencies: 2551 | ignore-walk "^3.0.1" 2552 | npm-bundled "^1.0.1" 2553 | 2554 | npmlog@^4.0.2: 2555 | version "4.1.2" 2556 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2557 | integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== 2558 | dependencies: 2559 | are-we-there-yet "~1.1.2" 2560 | console-control-strings "~1.1.0" 2561 | gauge "~2.7.3" 2562 | set-blocking "~2.0.0" 2563 | 2564 | number-is-nan@^1.0.0: 2565 | version "1.0.1" 2566 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2567 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 2568 | 2569 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 2570 | version "4.1.1" 2571 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2572 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 2573 | 2574 | object-copy@^0.1.0: 2575 | version "0.1.0" 2576 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2577 | integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= 2578 | dependencies: 2579 | copy-descriptor "^0.1.0" 2580 | define-property "^0.2.5" 2581 | kind-of "^3.0.3" 2582 | 2583 | object-keys@^1.0.11, object-keys@^1.0.12: 2584 | version "1.0.12" 2585 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" 2586 | integrity sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag== 2587 | 2588 | object-visit@^1.0.0: 2589 | version "1.0.1" 2590 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2591 | integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= 2592 | dependencies: 2593 | isobject "^3.0.0" 2594 | 2595 | object.assign@^4.1.0: 2596 | version "4.1.0" 2597 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 2598 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== 2599 | dependencies: 2600 | define-properties "^1.1.2" 2601 | function-bind "^1.1.1" 2602 | has-symbols "^1.0.0" 2603 | object-keys "^1.0.11" 2604 | 2605 | object.entries@^1.0.4: 2606 | version "1.0.4" 2607 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.0.4.tgz#1bf9a4dd2288f5b33f3a993d257661f05d161a5f" 2608 | integrity sha1-G/mk3SKI9bM/Opk9JXZh8F0WGl8= 2609 | dependencies: 2610 | define-properties "^1.1.2" 2611 | es-abstract "^1.6.1" 2612 | function-bind "^1.1.0" 2613 | has "^1.0.1" 2614 | 2615 | object.pick@^1.3.0: 2616 | version "1.3.0" 2617 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2618 | integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= 2619 | dependencies: 2620 | isobject "^3.0.1" 2621 | 2622 | once@^1.3.0: 2623 | version "1.4.0" 2624 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2625 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2626 | dependencies: 2627 | wrappy "1" 2628 | 2629 | onetime@^2.0.0: 2630 | version "2.0.1" 2631 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2632 | integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= 2633 | dependencies: 2634 | mimic-fn "^1.0.0" 2635 | 2636 | optionator@^0.8.2: 2637 | version "0.8.2" 2638 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2639 | integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= 2640 | dependencies: 2641 | deep-is "~0.1.3" 2642 | fast-levenshtein "~2.0.4" 2643 | levn "~0.3.0" 2644 | prelude-ls "~1.1.2" 2645 | type-check "~0.3.2" 2646 | wordwrap "~1.0.0" 2647 | 2648 | os-homedir@^1.0.0: 2649 | version "1.0.2" 2650 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2651 | integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= 2652 | 2653 | os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: 2654 | version "1.0.2" 2655 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2656 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 2657 | 2658 | osenv@^0.1.4: 2659 | version "0.1.5" 2660 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2661 | integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== 2662 | dependencies: 2663 | os-homedir "^1.0.0" 2664 | os-tmpdir "^1.0.0" 2665 | 2666 | output-file-sync@^2.0.0: 2667 | version "2.0.1" 2668 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-2.0.1.tgz#f53118282f5f553c2799541792b723a4c71430c0" 2669 | integrity sha512-mDho4qm7WgIXIGf4eYU1RHN2UU5tPfVYVSRwDJw0uTmj35DQUt/eNp19N7v6T3SrR0ESTEf2up2CGO73qI35zQ== 2670 | dependencies: 2671 | graceful-fs "^4.1.11" 2672 | is-plain-obj "^1.1.0" 2673 | mkdirp "^0.5.1" 2674 | 2675 | p-limit@^1.1.0: 2676 | version "1.3.0" 2677 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 2678 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 2679 | dependencies: 2680 | p-try "^1.0.0" 2681 | 2682 | p-locate@^2.0.0: 2683 | version "2.0.0" 2684 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2685 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= 2686 | dependencies: 2687 | p-limit "^1.1.0" 2688 | 2689 | p-try@^1.0.0: 2690 | version "1.0.0" 2691 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2692 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= 2693 | 2694 | parse-json@^2.2.0: 2695 | version "2.2.0" 2696 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2697 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= 2698 | dependencies: 2699 | error-ex "^1.2.0" 2700 | 2701 | pascalcase@^0.1.1: 2702 | version "0.1.1" 2703 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2704 | integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= 2705 | 2706 | path-dirname@^1.0.0: 2707 | version "1.0.2" 2708 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2709 | integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= 2710 | 2711 | path-exists@^2.0.0: 2712 | version "2.1.0" 2713 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2714 | integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= 2715 | dependencies: 2716 | pinkie-promise "^2.0.0" 2717 | 2718 | path-exists@^3.0.0: 2719 | version "3.0.0" 2720 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2721 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 2722 | 2723 | path-is-absolute@^1.0.0: 2724 | version "1.0.1" 2725 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2726 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2727 | 2728 | path-is-inside@^1.0.2: 2729 | version "1.0.2" 2730 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2731 | integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= 2732 | 2733 | path-key@^2.0.1: 2734 | version "2.0.1" 2735 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2736 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 2737 | 2738 | path-parse@^1.0.5: 2739 | version "1.0.6" 2740 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2741 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 2742 | 2743 | path-to-regexp@^1.7.0: 2744 | version "1.7.0" 2745 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" 2746 | integrity sha1-Wf3g9DW62suhA6hOnTvGTpa5k30= 2747 | dependencies: 2748 | isarray "0.0.1" 2749 | 2750 | path-type@^2.0.0: 2751 | version "2.0.0" 2752 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2753 | integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= 2754 | dependencies: 2755 | pify "^2.0.0" 2756 | 2757 | pathval@^1.1.0: 2758 | version "1.1.0" 2759 | resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" 2760 | integrity sha1-uULm1L3mUwBe9rcTYd74cn0GReA= 2761 | 2762 | performance-now@^2.1.0: 2763 | version "2.1.0" 2764 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2765 | integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= 2766 | 2767 | pify@^2.0.0: 2768 | version "2.3.0" 2769 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2770 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 2771 | 2772 | pify@^3.0.0: 2773 | version "3.0.0" 2774 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2775 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= 2776 | 2777 | pinkie-promise@^2.0.0: 2778 | version "2.0.1" 2779 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2780 | integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= 2781 | dependencies: 2782 | pinkie "^2.0.0" 2783 | 2784 | pinkie@^2.0.0: 2785 | version "2.0.4" 2786 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2787 | integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= 2788 | 2789 | pirates@^4.0.0: 2790 | version "4.0.0" 2791 | resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.0.tgz#850b18781b4ac6ec58a43c9ed9ec5fe6796addbd" 2792 | integrity sha512-8t5BsXy1LUIjn3WWOlOuFDuKswhQb/tkak641lvBgmPOBUQHXveORtlMCp6OdPV1dtuTaEahKA8VNz6uLfKBtA== 2793 | dependencies: 2794 | node-modules-regexp "^1.0.0" 2795 | 2796 | pkg-dir@^1.0.0: 2797 | version "1.0.0" 2798 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2799 | integrity sha1-ektQio1bstYp1EcFb/TpyTFM89Q= 2800 | dependencies: 2801 | find-up "^1.0.0" 2802 | 2803 | pkg-dir@^2.0.0: 2804 | version "2.0.0" 2805 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2806 | integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= 2807 | dependencies: 2808 | find-up "^2.1.0" 2809 | 2810 | pluralize@^7.0.0: 2811 | version "7.0.0" 2812 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 2813 | integrity sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow== 2814 | 2815 | posix-character-classes@^0.1.0: 2816 | version "0.1.1" 2817 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2818 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= 2819 | 2820 | prelude-ls@~1.1.2: 2821 | version "1.1.2" 2822 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2823 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 2824 | 2825 | private@^0.1.6: 2826 | version "0.1.8" 2827 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2828 | integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== 2829 | 2830 | process-nextick-args@~2.0.0: 2831 | version "2.0.0" 2832 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2833 | integrity sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw== 2834 | 2835 | progress@^2.0.0: 2836 | version "2.0.3" 2837 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 2838 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 2839 | 2840 | promise@^7.1.1: 2841 | version "7.3.1" 2842 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 2843 | integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== 2844 | dependencies: 2845 | asap "~2.0.3" 2846 | 2847 | prop-types@^15.5.9, prop-types@^15.6.2: 2848 | version "15.6.2" 2849 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.2.tgz#05d5ca77b4453e985d60fc7ff8c859094a497102" 2850 | integrity sha512-3pboPvLiWD7dkI3qf3KbUe6hKFKa52w+AE0VCqECtf+QHAKgOL37tTaNCnuX1nAAQ4ZhyP+kYVKf8rLmJ/feDQ== 2851 | dependencies: 2852 | loose-envify "^1.3.1" 2853 | object-assign "^4.1.1" 2854 | 2855 | punycode@^2.1.0: 2856 | version "2.1.1" 2857 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2858 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2859 | 2860 | raf@^3.2.0: 2861 | version "3.4.1" 2862 | resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39" 2863 | integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA== 2864 | dependencies: 2865 | performance-now "^2.1.0" 2866 | 2867 | rc@^1.2.7: 2868 | version "1.2.8" 2869 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2870 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 2871 | dependencies: 2872 | deep-extend "^0.6.0" 2873 | ini "~1.3.0" 2874 | minimist "^1.2.0" 2875 | strip-json-comments "~2.0.1" 2876 | 2877 | react-display-name@^0.2.0: 2878 | version "0.2.4" 2879 | resolved "https://registry.yarnpkg.com/react-display-name/-/react-display-name-0.2.4.tgz#e2a670b81d79a2204335510c01246f4c92ff12cf" 2880 | integrity sha512-zvU6iouW+SWwHTyThwxGICjJYCMZFk/6r/+jmOdC7ntQoPlS/Pqb81MkxaMf2bHTSq9TN3K3zX2/ayMW/jCtyA== 2881 | 2882 | react-dnd@^7.3.0: 2883 | version "7.3.2" 2884 | resolved "https://registry.yarnpkg.com/react-dnd/-/react-dnd-7.3.2.tgz#c8660f0266caf8995b8f5bdea962ce00bc7b664d" 2885 | integrity sha512-chMQT4y+6CTQdRSpNEl+0JTNevCAkE7TmDewqF2GVejsgdCtVEMz/3SGk+fluMXMYPfhYlMDMHa+xWWO5QfM8Q== 2886 | dependencies: 2887 | dnd-core "^7.2.0" 2888 | hoist-non-react-statics "^3.3.0" 2889 | invariant "^2.1.0" 2890 | lodash "^4.17.11" 2891 | recompose "^0.30.0" 2892 | shallowequal "^1.1.0" 2893 | 2894 | react-dom@^16.3.0: 2895 | version "16.8.4" 2896 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.8.4.tgz#1061a8e01a2b3b0c8160037441c3bf00a0e3bc48" 2897 | integrity sha512-Ob2wK7XG2tUDt7ps7LtLzGYYB6DXMCLj0G5fO6WeEICtT4/HdpOi7W/xLzZnR6RCG1tYza60nMdqtxzA8FaPJQ== 2898 | dependencies: 2899 | loose-envify "^1.1.0" 2900 | object-assign "^4.1.1" 2901 | prop-types "^15.6.2" 2902 | scheduler "^0.13.4" 2903 | 2904 | react-is@^16.3.2: 2905 | version "16.6.3" 2906 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.6.3.tgz#d2d7462fcfcbe6ec0da56ad69047e47e56e7eac0" 2907 | integrity sha512-u7FDWtthB4rWibG/+mFbVd5FvdI20yde86qKGx4lVUTWmPlSWQ4QxbBIrrs+HnXGbxOUlUzTAP/VDmvCwaP2yA== 2908 | 2909 | react-is@^16.7.0: 2910 | version "16.8.4" 2911 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.4.tgz#90f336a68c3a29a096a3d648ab80e87ec61482a2" 2912 | integrity sha512-PVadd+WaUDOAciICm/J1waJaSvgq+4rHE/K70j0PFqKhkTBsPv/82UGQJNXAngz1fOQLLxI6z1sEDmJDQhCTAA== 2913 | 2914 | react-lifecycles-compat@^3.0.2: 2915 | version "3.0.4" 2916 | resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" 2917 | integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== 2918 | 2919 | react@^16.3.0: 2920 | version "16.8.4" 2921 | resolved "https://registry.yarnpkg.com/react/-/react-16.8.4.tgz#fdf7bd9ae53f03a9c4cd1a371432c206be1c4768" 2922 | integrity sha512-0GQ6gFXfUH7aZcjGVymlPOASTuSjlQL4ZtVC5YKH+3JL6bBLCVO21DknzmaPlI90LN253ojj02nsapy+j7wIjg== 2923 | dependencies: 2924 | loose-envify "^1.1.0" 2925 | object-assign "^4.1.1" 2926 | prop-types "^15.6.2" 2927 | scheduler "^0.13.4" 2928 | 2929 | read-pkg-up@^2.0.0: 2930 | version "2.0.0" 2931 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2932 | integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= 2933 | dependencies: 2934 | find-up "^2.0.0" 2935 | read-pkg "^2.0.0" 2936 | 2937 | read-pkg@^2.0.0: 2938 | version "2.0.0" 2939 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2940 | integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= 2941 | dependencies: 2942 | load-json-file "^2.0.0" 2943 | normalize-package-data "^2.3.2" 2944 | path-type "^2.0.0" 2945 | 2946 | readable-stream@^2.0.2, readable-stream@^2.0.6: 2947 | version "2.3.6" 2948 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2949 | integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== 2950 | dependencies: 2951 | core-util-is "~1.0.0" 2952 | inherits "~2.0.3" 2953 | isarray "~1.0.0" 2954 | process-nextick-args "~2.0.0" 2955 | safe-buffer "~5.1.1" 2956 | string_decoder "~1.1.1" 2957 | util-deprecate "~1.0.1" 2958 | 2959 | readdirp@^2.0.0: 2960 | version "2.2.1" 2961 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" 2962 | integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== 2963 | dependencies: 2964 | graceful-fs "^4.1.11" 2965 | micromatch "^3.1.10" 2966 | readable-stream "^2.0.2" 2967 | 2968 | recompose@^0.30.0: 2969 | version "0.30.0" 2970 | resolved "https://registry.yarnpkg.com/recompose/-/recompose-0.30.0.tgz#82773641b3927e8c7d24a0d87d65aeeba18aabd0" 2971 | integrity sha512-ZTrzzUDa9AqUIhRk4KmVFihH0rapdCSMFXjhHbNrjAWxBuUD/guYlyysMnuHjlZC/KRiOKRtB4jf96yYSkKE8w== 2972 | dependencies: 2973 | "@babel/runtime" "^7.0.0" 2974 | change-emitter "^0.1.2" 2975 | fbjs "^0.8.1" 2976 | hoist-non-react-statics "^2.3.1" 2977 | react-lifecycles-compat "^3.0.2" 2978 | symbol-observable "^1.0.4" 2979 | 2980 | redux@^4.0.1: 2981 | version "4.0.1" 2982 | resolved "https://registry.yarnpkg.com/redux/-/redux-4.0.1.tgz#436cae6cc40fbe4727689d7c8fae44808f1bfef5" 2983 | integrity sha512-R7bAtSkk7nY6O/OYMVR9RiBI+XghjF9rlbl5806HJbQph0LJVHZrU5oaO4q70eUKiqMRqm4y07KLTlMZ2BlVmg== 2984 | dependencies: 2985 | loose-envify "^1.4.0" 2986 | symbol-observable "^1.2.0" 2987 | 2988 | regenerate-unicode-properties@^7.0.0: 2989 | version "7.0.0" 2990 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-7.0.0.tgz#107405afcc4a190ec5ed450ecaa00ed0cafa7a4c" 2991 | integrity sha512-s5NGghCE4itSlUS+0WUj88G6cfMVMmH8boTPNvABf8od+2dhT9WDlWu8n01raQAJZMOK8Ch6jSexaRO7swd6aw== 2992 | dependencies: 2993 | regenerate "^1.4.0" 2994 | 2995 | regenerate@^1.4.0: 2996 | version "1.4.0" 2997 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 2998 | integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== 2999 | 3000 | regenerator-runtime@^0.12.0: 3001 | version "0.12.1" 3002 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz#fa1a71544764c036f8c49b13a08b2594c9f8a0de" 3003 | integrity sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg== 3004 | 3005 | regenerator-transform@^0.13.3: 3006 | version "0.13.3" 3007 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.13.3.tgz#264bd9ff38a8ce24b06e0636496b2c856b57bcbb" 3008 | integrity sha512-5ipTrZFSq5vU2YoGoww4uaRVAK4wyYC4TSICibbfEPOruUu8FFP7ErV0BjmbIOEpn3O/k9na9UEdYR/3m7N6uA== 3009 | dependencies: 3010 | private "^0.1.6" 3011 | 3012 | regex-not@^1.0.0, regex-not@^1.0.2: 3013 | version "1.0.2" 3014 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 3015 | integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== 3016 | dependencies: 3017 | extend-shallow "^3.0.2" 3018 | safe-regex "^1.1.0" 3019 | 3020 | regexpp@^2.0.1: 3021 | version "2.0.1" 3022 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" 3023 | integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== 3024 | 3025 | regexpu-core@^4.1.3, regexpu-core@^4.2.0: 3026 | version "4.4.0" 3027 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.4.0.tgz#8d43e0d1266883969720345e70c275ee0aec0d32" 3028 | integrity sha512-eDDWElbwwI3K0Lo6CqbQbA6FwgtCz4kYTarrri1okfkRLZAqstU+B3voZBCjg8Fl6iq0gXrJG6MvRgLthfvgOA== 3029 | dependencies: 3030 | regenerate "^1.4.0" 3031 | regenerate-unicode-properties "^7.0.0" 3032 | regjsgen "^0.5.0" 3033 | regjsparser "^0.6.0" 3034 | unicode-match-property-ecmascript "^1.0.4" 3035 | unicode-match-property-value-ecmascript "^1.0.2" 3036 | 3037 | regjsgen@^0.5.0: 3038 | version "0.5.0" 3039 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" 3040 | integrity sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA== 3041 | 3042 | regjsparser@^0.6.0: 3043 | version "0.6.0" 3044 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" 3045 | integrity sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ== 3046 | dependencies: 3047 | jsesc "~0.5.0" 3048 | 3049 | remove-trailing-separator@^1.0.1: 3050 | version "1.1.0" 3051 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3052 | integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= 3053 | 3054 | repeat-element@^1.1.2: 3055 | version "1.1.3" 3056 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 3057 | integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== 3058 | 3059 | repeat-string@^1.6.1: 3060 | version "1.6.1" 3061 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3062 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= 3063 | 3064 | require-uncached@^1.0.3: 3065 | version "1.0.3" 3066 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3067 | integrity sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM= 3068 | dependencies: 3069 | caller-path "^0.1.0" 3070 | resolve-from "^1.0.0" 3071 | 3072 | resolve-from@^1.0.0: 3073 | version "1.0.1" 3074 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3075 | integrity sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY= 3076 | 3077 | resolve-url@^0.2.1: 3078 | version "0.2.1" 3079 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 3080 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 3081 | 3082 | resolve@^1.3.2, resolve@^1.5.0, resolve@^1.6.0: 3083 | version "1.8.1" 3084 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" 3085 | integrity sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA== 3086 | dependencies: 3087 | path-parse "^1.0.5" 3088 | 3089 | restore-cursor@^2.0.0: 3090 | version "2.0.0" 3091 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3092 | integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= 3093 | dependencies: 3094 | onetime "^2.0.0" 3095 | signal-exit "^3.0.2" 3096 | 3097 | ret@~0.1.10: 3098 | version "0.1.15" 3099 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 3100 | integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== 3101 | 3102 | rimraf@^2.6.1, rimraf@~2.6.2: 3103 | version "2.6.2" 3104 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3105 | integrity sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w== 3106 | dependencies: 3107 | glob "^7.0.5" 3108 | 3109 | run-async@^2.2.0: 3110 | version "2.3.0" 3111 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3112 | integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= 3113 | dependencies: 3114 | is-promise "^2.1.0" 3115 | 3116 | rxjs@^6.1.0: 3117 | version "6.3.3" 3118 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.3.3.tgz#3c6a7fa420e844a81390fb1158a9ec614f4bad55" 3119 | integrity sha512-JTWmoY9tWCs7zvIk/CvRjhjGaOd+OVBM987mxFo+OW66cGpdKjZcpmc74ES1sB//7Kl/PAe8+wEakuhG4pcgOw== 3120 | dependencies: 3121 | tslib "^1.9.0" 3122 | 3123 | safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3124 | version "5.1.2" 3125 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 3126 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 3127 | 3128 | safe-regex@^1.1.0: 3129 | version "1.1.0" 3130 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 3131 | integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= 3132 | dependencies: 3133 | ret "~0.1.10" 3134 | 3135 | "safer-buffer@>= 2.1.2 < 3": 3136 | version "2.1.2" 3137 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3138 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 3139 | 3140 | sax@^1.2.4: 3141 | version "1.2.4" 3142 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3143 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 3144 | 3145 | scheduler@^0.13.4: 3146 | version "0.13.4" 3147 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.13.4.tgz#8fef05e7a3580c76c0364d2df5e550e4c9140298" 3148 | integrity sha512-cvSOlRPxOHs5dAhP9yiS/6IDmVAVxmk33f0CtTJRkmUWcb1Us+t7b1wqdzoC0REw2muC9V5f1L/w5R5uKGaepA== 3149 | dependencies: 3150 | loose-envify "^1.1.0" 3151 | object-assign "^4.1.1" 3152 | 3153 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1: 3154 | version "5.6.0" 3155 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" 3156 | integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg== 3157 | 3158 | set-blocking@~2.0.0: 3159 | version "2.0.0" 3160 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3161 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 3162 | 3163 | set-value@^0.4.3: 3164 | version "0.4.3" 3165 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 3166 | integrity sha1-fbCPnT0i3H945Trzw79GZuzfzPE= 3167 | dependencies: 3168 | extend-shallow "^2.0.1" 3169 | is-extendable "^0.1.1" 3170 | is-plain-object "^2.0.1" 3171 | to-object-path "^0.3.0" 3172 | 3173 | set-value@^2.0.0: 3174 | version "2.0.0" 3175 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 3176 | integrity sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg== 3177 | dependencies: 3178 | extend-shallow "^2.0.1" 3179 | is-extendable "^0.1.1" 3180 | is-plain-object "^2.0.3" 3181 | split-string "^3.0.1" 3182 | 3183 | setimmediate@^1.0.5: 3184 | version "1.0.5" 3185 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3186 | integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= 3187 | 3188 | shallowequal@^1.1.0: 3189 | version "1.1.0" 3190 | resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8" 3191 | integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ== 3192 | 3193 | shebang-command@^1.2.0: 3194 | version "1.2.0" 3195 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3196 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 3197 | dependencies: 3198 | shebang-regex "^1.0.0" 3199 | 3200 | shebang-regex@^1.0.0: 3201 | version "1.0.0" 3202 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3203 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 3204 | 3205 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3206 | version "3.0.2" 3207 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3208 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 3209 | 3210 | sinon-chai@^3.2.0: 3211 | version "3.3.0" 3212 | resolved "https://registry.yarnpkg.com/sinon-chai/-/sinon-chai-3.3.0.tgz#8084ff99451064910fbe2c2cb8ab540c00b740ea" 3213 | integrity sha512-r2JhDY7gbbmh5z3Q62pNbrjxZdOAjpsqW/8yxAZRSqLZqowmfGZPGUZPFf3UX36NLis0cv8VEM5IJh9HgkSOAA== 3214 | 3215 | sinon@^7.1.1: 3216 | version "7.2.0" 3217 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-7.2.0.tgz#929472d3a85cb7e9ad7eec42b41e17bfa40fb165" 3218 | integrity sha512-N+ebPVqU55E6IUUGPSia57D5nTlCjfxrVR/33KTMRjsJJP5ZoGW1TXyLa2kDREgMtzqdnnksv7gA9oGC2v2LGw== 3219 | dependencies: 3220 | "@sinonjs/commons" "^1.2.0" 3221 | "@sinonjs/formatio" "^3.1.0" 3222 | "@sinonjs/samsam" "^3.0.1" 3223 | diff "^3.5.0" 3224 | lolex "^3.0.0" 3225 | nise "^1.4.7" 3226 | supports-color "^5.5.0" 3227 | 3228 | slash@^2.0.0: 3229 | version "2.0.0" 3230 | resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" 3231 | integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== 3232 | 3233 | slice-ansi@2.0.0: 3234 | version "2.0.0" 3235 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.0.0.tgz#5373bdb8559b45676e8541c66916cdd6251612e7" 3236 | integrity sha512-4j2WTWjp3GsZ+AOagyzVbzp4vWGtZ0hEZ/gDY/uTvm6MTxUfTUIsnMIFb1bn8o0RuXiqUw15H1bue8f22Vw2oQ== 3237 | dependencies: 3238 | ansi-styles "^3.2.0" 3239 | astral-regex "^1.0.0" 3240 | is-fullwidth-code-point "^2.0.0" 3241 | 3242 | snapdragon-node@^2.0.1: 3243 | version "2.1.1" 3244 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3245 | integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== 3246 | dependencies: 3247 | define-property "^1.0.0" 3248 | isobject "^3.0.0" 3249 | snapdragon-util "^3.0.1" 3250 | 3251 | snapdragon-util@^3.0.1: 3252 | version "3.0.1" 3253 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3254 | integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== 3255 | dependencies: 3256 | kind-of "^3.2.0" 3257 | 3258 | snapdragon@^0.8.1: 3259 | version "0.8.2" 3260 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3261 | integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== 3262 | dependencies: 3263 | base "^0.11.1" 3264 | debug "^2.2.0" 3265 | define-property "^0.2.5" 3266 | extend-shallow "^2.0.1" 3267 | map-cache "^0.2.2" 3268 | source-map "^0.5.6" 3269 | source-map-resolve "^0.5.0" 3270 | use "^3.1.0" 3271 | 3272 | source-map-resolve@^0.5.0: 3273 | version "0.5.2" 3274 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 3275 | integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== 3276 | dependencies: 3277 | atob "^2.1.1" 3278 | decode-uri-component "^0.2.0" 3279 | resolve-url "^0.2.1" 3280 | source-map-url "^0.4.0" 3281 | urix "^0.1.0" 3282 | 3283 | source-map-support@^0.5.9: 3284 | version "0.5.9" 3285 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.9.tgz#41bc953b2534267ea2d605bccfa7bfa3111ced5f" 3286 | integrity sha512-gR6Rw4MvUlYy83vP0vxoVNzM6t8MUXqNuRsuBmBHQDu1Fh6X015FrLdgoDKcNdkwGubozq0P4N0Q37UyFVr1EA== 3287 | dependencies: 3288 | buffer-from "^1.0.0" 3289 | source-map "^0.6.0" 3290 | 3291 | source-map-url@^0.4.0: 3292 | version "0.4.0" 3293 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3294 | integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= 3295 | 3296 | source-map@^0.5.0, source-map@^0.5.6: 3297 | version "0.5.7" 3298 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3299 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 3300 | 3301 | source-map@^0.6.0: 3302 | version "0.6.1" 3303 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3304 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 3305 | 3306 | spdx-correct@^3.0.0: 3307 | version "3.1.0" 3308 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" 3309 | integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== 3310 | dependencies: 3311 | spdx-expression-parse "^3.0.0" 3312 | spdx-license-ids "^3.0.0" 3313 | 3314 | spdx-exceptions@^2.1.0: 3315 | version "2.2.0" 3316 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" 3317 | integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== 3318 | 3319 | spdx-expression-parse@^3.0.0: 3320 | version "3.0.0" 3321 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 3322 | integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== 3323 | dependencies: 3324 | spdx-exceptions "^2.1.0" 3325 | spdx-license-ids "^3.0.0" 3326 | 3327 | spdx-license-ids@^3.0.0: 3328 | version "3.0.2" 3329 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.2.tgz#a59efc09784c2a5bada13cfeaf5c75dd214044d2" 3330 | integrity sha512-qky9CVt0lVIECkEsYbNILVnPvycuEBkXoMFLRWsREkomQLevYhtRKC+R91a5TOAQ3bCMjikRwhyaRqj1VYatYg== 3331 | 3332 | split-string@^3.0.1, split-string@^3.0.2: 3333 | version "3.1.0" 3334 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3335 | integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== 3336 | dependencies: 3337 | extend-shallow "^3.0.0" 3338 | 3339 | sprintf-js@~1.0.2: 3340 | version "1.0.3" 3341 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3342 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 3343 | 3344 | static-extend@^0.1.1: 3345 | version "0.1.2" 3346 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3347 | integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= 3348 | dependencies: 3349 | define-property "^0.2.5" 3350 | object-copy "^0.1.0" 3351 | 3352 | string-width@^1.0.1: 3353 | version "1.0.2" 3354 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3355 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 3356 | dependencies: 3357 | code-point-at "^1.0.0" 3358 | is-fullwidth-code-point "^1.0.0" 3359 | strip-ansi "^3.0.0" 3360 | 3361 | "string-width@^1.0.2 || 2", string-width@^2.1.0, string-width@^2.1.1: 3362 | version "2.1.1" 3363 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3364 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 3365 | dependencies: 3366 | is-fullwidth-code-point "^2.0.0" 3367 | strip-ansi "^4.0.0" 3368 | 3369 | string_decoder@~1.1.1: 3370 | version "1.1.1" 3371 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3372 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 3373 | dependencies: 3374 | safe-buffer "~5.1.0" 3375 | 3376 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3377 | version "3.0.1" 3378 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3379 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 3380 | dependencies: 3381 | ansi-regex "^2.0.0" 3382 | 3383 | strip-ansi@^4.0.0: 3384 | version "4.0.0" 3385 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3386 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 3387 | dependencies: 3388 | ansi-regex "^3.0.0" 3389 | 3390 | strip-ansi@^5.0.0: 3391 | version "5.0.0" 3392 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.0.0.tgz#f78f68b5d0866c20b2c9b8c61b5298508dc8756f" 3393 | integrity sha512-Uu7gQyZI7J7gn5qLn1Np3G9vcYGTVqB+lFTytnDJv83dd8T22aGH451P3jueT2/QemInJDfxHB5Tde5OzgG1Ow== 3394 | dependencies: 3395 | ansi-regex "^4.0.0" 3396 | 3397 | strip-bom@^3.0.0: 3398 | version "3.0.0" 3399 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3400 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 3401 | 3402 | strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: 3403 | version "2.0.1" 3404 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3405 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 3406 | 3407 | supports-color@5.4.0: 3408 | version "5.4.0" 3409 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 3410 | integrity sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w== 3411 | dependencies: 3412 | has-flag "^3.0.0" 3413 | 3414 | supports-color@^5.3.0, supports-color@^5.5.0: 3415 | version "5.5.0" 3416 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3417 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3418 | dependencies: 3419 | has-flag "^3.0.0" 3420 | 3421 | symbol-observable@^1.0.4, symbol-observable@^1.2.0: 3422 | version "1.2.0" 3423 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" 3424 | integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== 3425 | 3426 | table@^5.0.2: 3427 | version "5.1.1" 3428 | resolved "https://registry.yarnpkg.com/table/-/table-5.1.1.tgz#92030192f1b7b51b6eeab23ed416862e47b70837" 3429 | integrity sha512-NUjapYb/qd4PeFW03HnAuOJ7OMcBkJlqeClWxeNlQ0lXGSb52oZXGzkO0/I0ARegQ2eUT1g2VDJH0eUxDRcHmw== 3430 | dependencies: 3431 | ajv "^6.6.1" 3432 | lodash "^4.17.11" 3433 | slice-ansi "2.0.0" 3434 | string-width "^2.1.1" 3435 | 3436 | tar@^4: 3437 | version "4.4.8" 3438 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d" 3439 | integrity sha512-LzHF64s5chPQQS0IYBn9IN5h3i98c12bo4NCO7e0sGM2llXQ3p2FGC5sdENN4cTW48O915Sh+x+EXx7XW96xYQ== 3440 | dependencies: 3441 | chownr "^1.1.1" 3442 | fs-minipass "^1.2.5" 3443 | minipass "^2.3.4" 3444 | minizlib "^1.1.1" 3445 | mkdirp "^0.5.0" 3446 | safe-buffer "^5.1.2" 3447 | yallist "^3.0.2" 3448 | 3449 | text-encoding@^0.6.4: 3450 | version "0.6.4" 3451 | resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.6.4.tgz#e399a982257a276dae428bb92845cb71bdc26d19" 3452 | integrity sha1-45mpgiV6J22uQou5KEXLcb3CbRk= 3453 | 3454 | text-table@^0.2.0: 3455 | version "0.2.0" 3456 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3457 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 3458 | 3459 | through@^2.3.6: 3460 | version "2.3.8" 3461 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3462 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 3463 | 3464 | tmp@^0.0.33: 3465 | version "0.0.33" 3466 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3467 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== 3468 | dependencies: 3469 | os-tmpdir "~1.0.2" 3470 | 3471 | to-fast-properties@^2.0.0: 3472 | version "2.0.0" 3473 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3474 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 3475 | 3476 | to-object-path@^0.3.0: 3477 | version "0.3.0" 3478 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3479 | integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= 3480 | dependencies: 3481 | kind-of "^3.0.2" 3482 | 3483 | to-regex-range@^2.1.0: 3484 | version "2.1.1" 3485 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3486 | integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= 3487 | dependencies: 3488 | is-number "^3.0.0" 3489 | repeat-string "^1.6.1" 3490 | 3491 | to-regex@^3.0.1, to-regex@^3.0.2: 3492 | version "3.0.2" 3493 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3494 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== 3495 | dependencies: 3496 | define-property "^2.0.2" 3497 | extend-shallow "^3.0.2" 3498 | regex-not "^1.0.2" 3499 | safe-regex "^1.1.0" 3500 | 3501 | trim-right@^1.0.1: 3502 | version "1.0.1" 3503 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3504 | integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= 3505 | 3506 | tslib@^1.9.0: 3507 | version "1.9.3" 3508 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" 3509 | integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ== 3510 | 3511 | type-check@~0.3.2: 3512 | version "0.3.2" 3513 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3514 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 3515 | dependencies: 3516 | prelude-ls "~1.1.2" 3517 | 3518 | type-detect@4.0.8, type-detect@^4.0.0, type-detect@^4.0.5: 3519 | version "4.0.8" 3520 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 3521 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 3522 | 3523 | ua-parser-js@^0.7.18: 3524 | version "0.7.19" 3525 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.19.tgz#94151be4c0a7fb1d001af7022fdaca4642659e4b" 3526 | integrity sha512-T3PVJ6uz8i0HzPxOF9SWzWAlfN/DavlpQqepn22xgve/5QecC+XMCAtmUNnY7C9StehaV6exjUCI801lOI7QlQ== 3527 | 3528 | unicode-canonical-property-names-ecmascript@^1.0.4: 3529 | version "1.0.4" 3530 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" 3531 | integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== 3532 | 3533 | unicode-match-property-ecmascript@^1.0.4: 3534 | version "1.0.4" 3535 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" 3536 | integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== 3537 | dependencies: 3538 | unicode-canonical-property-names-ecmascript "^1.0.4" 3539 | unicode-property-aliases-ecmascript "^1.0.4" 3540 | 3541 | unicode-match-property-value-ecmascript@^1.0.2: 3542 | version "1.0.2" 3543 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.0.2.tgz#9f1dc76926d6ccf452310564fd834ace059663d4" 3544 | integrity sha512-Rx7yODZC1L/T8XKo/2kNzVAQaRE88AaMvI1EF/Xnj3GW2wzN6fop9DDWuFAKUVFH7vozkz26DzP0qyWLKLIVPQ== 3545 | 3546 | unicode-property-aliases-ecmascript@^1.0.4: 3547 | version "1.0.4" 3548 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.4.tgz#5a533f31b4317ea76f17d807fa0d116546111dd0" 3549 | integrity sha512-2WSLa6OdYd2ng8oqiGIWnJqyFArvhn+5vgx5GTxMbUYjCYKUcuKS62YLFF0R/BDGlB1yzXjQOLtPAfHsgirEpg== 3550 | 3551 | union-value@^1.0.0: 3552 | version "1.0.0" 3553 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3554 | integrity sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ= 3555 | dependencies: 3556 | arr-union "^3.1.0" 3557 | get-value "^2.0.6" 3558 | is-extendable "^0.1.1" 3559 | set-value "^0.4.3" 3560 | 3561 | unset-value@^1.0.0: 3562 | version "1.0.0" 3563 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3564 | integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= 3565 | dependencies: 3566 | has-value "^0.3.1" 3567 | isobject "^3.0.0" 3568 | 3569 | upath@^1.0.5: 3570 | version "1.1.0" 3571 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.0.tgz#35256597e46a581db4793d0ce47fa9aebfc9fabd" 3572 | integrity sha512-bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw== 3573 | 3574 | uri-js@^4.2.2: 3575 | version "4.2.2" 3576 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 3577 | integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== 3578 | dependencies: 3579 | punycode "^2.1.0" 3580 | 3581 | urix@^0.1.0: 3582 | version "0.1.0" 3583 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3584 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 3585 | 3586 | use@^3.1.0: 3587 | version "3.1.1" 3588 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 3589 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== 3590 | 3591 | util-deprecate@~1.0.1: 3592 | version "1.0.2" 3593 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3594 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 3595 | 3596 | validate-npm-package-license@^3.0.1: 3597 | version "3.0.4" 3598 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 3599 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 3600 | dependencies: 3601 | spdx-correct "^3.0.0" 3602 | spdx-expression-parse "^3.0.0" 3603 | 3604 | whatwg-fetch@>=0.10.0: 3605 | version "3.0.0" 3606 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb" 3607 | integrity sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q== 3608 | 3609 | which@^1.2.9: 3610 | version "1.3.1" 3611 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3612 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 3613 | dependencies: 3614 | isexe "^2.0.0" 3615 | 3616 | wide-align@^1.1.0: 3617 | version "1.1.3" 3618 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 3619 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 3620 | dependencies: 3621 | string-width "^1.0.2 || 2" 3622 | 3623 | wordwrap@~1.0.0: 3624 | version "1.0.0" 3625 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3626 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= 3627 | 3628 | wrappy@1: 3629 | version "1.0.2" 3630 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3631 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3632 | 3633 | write@^0.2.1: 3634 | version "0.2.1" 3635 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3636 | integrity sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c= 3637 | dependencies: 3638 | mkdirp "^0.5.1" 3639 | 3640 | yallist@^3.0.0, yallist@^3.0.2: 3641 | version "3.0.3" 3642 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" 3643 | integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== 3644 | --------------------------------------------------------------------------------