├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README.md ├── demo.js ├── demo.tsx ├── index.html ├── package.json ├── rollup.config.js ├── src ├── Animate.ts ├── MultiSpring.ts ├── index.ts ├── style.ts └── useAnimation.ts ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "@typescript-eslint/parser", 3 | "parserOptions": { 4 | "jsx": true 5 | }, 6 | "extends": [ 7 | "eslint:recommended", 8 | "problems", 9 | "plugin:@typescript-eslint/recommended", 10 | "plugin:react/all", 11 | "prettier", 12 | "prettier/@typescript-eslint" 13 | ], 14 | "plugins": ["@typescript-eslint", "react", "react-hooks"], 15 | "rules": { 16 | "@typescript-eslint/explicit-function-return-type": "off", 17 | "react/jsx-filename-extension": ["warn", {"extensions": [".tsx"]}], 18 | "react/jsx-handler-names": [ 19 | "warn", 20 | {"eventHandlerPrefix": "on", "eventHandlerPropPrefix": "on"} 21 | ], 22 | 23 | // Common sources of bugs 24 | "no-inner-declarations": "error", 25 | "react-hooks/rules-of-hooks": "error", 26 | "react-hooks/exhaustive-deps": "error", 27 | 28 | // Potential syntax pitfalls 29 | "no-bitwise": "warn", 30 | "no-cond-assign": "warn", 31 | 32 | // Other pitfalls? 33 | "no-constant-condition": "warn", 34 | "no-control-regex": "warn", 35 | "no-duplicate-case": "warn", 36 | "no-empty-character-class": "warn", 37 | "no-ex-assign": "warn", 38 | "no-extra-boolean-cast": "warn", 39 | "no-invalid-regexp": "warn", 40 | "no-regex-spaces": "warn", 41 | "no-shadow": "warn", 42 | "valid-typeof": "warn", 43 | "prefer-template": "warn", 44 | "no-sparse-arrays": "warn", 45 | 46 | // Redundant because of TypeScript 47 | "no-undef": "off", 48 | "no-unused-vars": "off", 49 | 50 | // Redundant because of Prettier 51 | "react/jsx-indent": "off", 52 | "react/jsx-indent-props": "off", 53 | "react/jsx-closing-bracket-location": "off", 54 | "react/jsx-max-depth": "off", 55 | "react/jsx-max-props-per-line": "off", 56 | "react/jsx-one-expression-per-line": "off", 57 | "react/jsx-child-element-spacing": "off", 58 | 59 | // Downgrade 60 | 61 | // Annoying syntax quirks 62 | "no-underscore-dangle": "warn", 63 | 64 | // Questionable 65 | "@typescript-eslint/prefer-interface": "off", 66 | "@typescript-eslint/interface-name-prefix": "off", 67 | "@typescript-eslint/no-object-literal-type-assertion": "off", 68 | "react/jsx-no-literals": "off", 69 | "react/jsx-sort-props": "off", 70 | "react/no-array-index-key": "off", 71 | "react/no-set-state": "off", 72 | "react/no-multi-comp": "off", 73 | "react/button-has-type": "off", 74 | "no-else-return": "off", 75 | 76 | // Too ambitious 77 | "react/display-name": "off", 78 | "@typescript-eslint/no-non-null-assertion": "off", 79 | 80 | // Other 81 | "brace-style": ["warn", "1tbs", {"allowSingleLine": false}], 82 | "camelcase": 1, 83 | "comma-dangle": ["warn", "always-multiline"], 84 | "comma-style": ["warn", "last"], 85 | "curly": ["warn", "multi-line"], 86 | "eol-last": "warn", 87 | "eqeqeq": [1, "smart"], 88 | "generator-star-spacing": ["warn", "before"], 89 | "jsx-quotes": "warn", 90 | "key-spacing": "warn", 91 | "no-func-assign": "warn", 92 | "no-lonely-if": 1, 93 | "no-loop-func": 1, 94 | "no-nested-ternary": 0, 95 | "no-shadow-restricted-names": 1, 96 | "no-throw-literal": "warn", 97 | "object-curly-spacing": 0, 98 | "radix": "warn", 99 | "react/forbid-prop-types": "warn", 100 | "react/jsx-curly-spacing": "warn", 101 | "react/jsx-no-duplicate-props": "warn", 102 | "react/jsx-no-undef": "warn", 103 | "react/jsx-uses-react": "warn", 104 | "react/jsx-uses-vars": "warn", 105 | "react/no-did-mount-set-state": "warn", 106 | "react/no-did-update-set-state": "warn", 107 | "react/no-direct-mutation-state": "warn", 108 | "react/no-unknown-property": "warn", 109 | "react/prefer-es6-class": 1, 110 | "react/react-in-jsx-scope": "warn", 111 | "react/self-closing-comp": "warn" 112 | } 113 | } 114 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | .cache 3 | .rpt2_cache 4 | demo.d.ts 5 | *.d.ts 6 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "trailingComma": "all", 4 | "bracketSpacing": false, 5 | "jsxBracketSameLine": true, 6 | "printWidth": 100 7 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React Rebound 2 | 3 | A spring-based React animation library that animates elements directly in the DOM for maximum performance. Hooks and component-based API available. Spring physics are based on [rebound](https://github.com/facebook/rebound-js). 4 | 5 | Check out some demos [here](http://steadicat.github.io/react-rebound/). 6 | 7 | ## The `useAnimation` hook 8 | 9 | `useAnimation` takes a “ref” to the element you want to animate, and an object containing the end values for the spring animation. 10 | 11 | ```js 12 | import {useAnimation} from 'react-rebound'; 13 | 14 | function Example() { 15 | const [hovered] = React.useState(false); 16 | const ref = React.useRef(); 17 | 18 | // A little “pop” on hover 19 | useAnimation(ref, {scaleX: hovered ? 1.1 : 1, scaleY: hovered ? 1.1 : 1}); 20 | 21 | return ( 22 | 28 | ); 29 | } 30 | ``` 31 | 32 | ## The `Animate` component 33 | 34 | The `Animate` component wraps the DOM element you want to animate. It takes the end values for the spring animation as props. 35 | 36 | ```js 37 | import {Animate} from 'react-rebound'; 38 | 39 | function Example() { 40 | const [hovered] = React.useState(false); 41 | 42 | return ( 43 | 44 | 47 | 48 | ); 49 | } 50 | ``` 51 | 52 | ## Configuring springs 53 | 54 | You can configure the `tension` and `friction` for the spring that’s driving the animation. Use props on `Animate`, and a third parameter to `useAnimation`. 55 | 56 | A `delay` parameter is also available. It defers the animation by the specified number of milliseconds. This is useful for cascading animations. 57 | 58 | ```js 59 | // Using useAnimation 60 | useAnimation(ref, {translateX: clicked ? 200 : 0}, {tension: 200, friction: 400, delay: 100}); 61 | 62 | 63 | 64 | // Using Animate 65 | 66 | 67 | 68 | ``` 69 | 70 | ## Animating colors 71 | 72 | You can animate between two colors by representing colors as RGB(A) arrays. See [Supported properties](#supported-properties) for the list of color properties supported. 73 | 74 | ```js 75 | 76 | Hover Me 77 | 78 | ``` 79 | 80 | ## Render function with `animating` parameter 81 | 82 | Sometimes it’s useful to render children differently during animations. To do that, provide a function as the only child. The function takes one parameter, a boolean that tells you whether an animation is in progress. 83 | 84 | This option is only avaliable with the `Animate` component. If you’re using the `useAnimation` hook, use [start and end callbacks](#start-and-end-callbacks). 85 | 86 | ```js 87 | 88 | {animating => } 89 | 90 | ``` 91 | 92 | ## Start and end callbacks 93 | 94 | In complex situations it might be useful to be notified when an animation starts or ends. `useCallback` and `Animate` provide two callbacks: `onStart` and `onEnd`. 95 | 96 | ```js 97 | 98 | // Using useAnimation 99 | useAnimation( 100 | ref, 101 | {scaleX: expanded ? : 5 : 1, scaleY: expanded ? 5 : 1}, 102 | {onStart: onExpandStart, onEnd: onExpandEnd}, 103 | ); 104 | 105 | // Using Animate 106 | 111 | 112 | 113 | ``` 114 | 115 | ## Animating on first render 116 | 117 | To animate an element in on mount, first render with the initial value, then trigger an animation using `componentDidMount` or `useEffect`: 118 | 119 | ```js 120 | // Using useAnimation 121 | const ref = React.useRef(); 122 | const [visible, setVisible] = React.useState(false); 123 | 124 | React.useEffect(() => setVisible(true), []); 125 | 126 | useAnimation(ref, {opacity: visible ? 1 : 0}); 127 | 128 | ; 129 | 130 | // Using Animate 131 | const [visible, setVisible] = React.useState(false); 132 | 133 | React.useEffect(() => setVisible(true), []); 134 | 135 | 136 | 137 | ; 138 | ``` 139 | 140 | ## Setting initial values 141 | 142 | Spring animations should always start from their previous value: this is why with `react-rebound` you only specify the end value of the animation. 143 | 144 | In some special cases, it might be necessary to override the start value. You have two options: 145 | 146 | 1. Use the `setCurrentValue` imperative API (see [Setting current values and velocity](#setting-current-values-and-velocity)). 147 | 2. Render with an initial value and `animate={false}`, then render again with your end value and `animate={true}`. 148 | 149 | ```js 150 | // Using useAnimation 151 | const [visible, setVisible] = React.useState(false); 152 | const instantHide = React.useCallback(() => setVisible(false)); 153 | const fadeIn = React.useCallback(() => setVisible(true)); 154 | useAnimation(ref, {opacity: visible ? 1 : 0}, {animate: visible}); 155 | 156 | ; 157 | 158 | // Using Animate 159 | const [visible, setVisible] = React.useState(false); 160 | const instantHide = React.useCallback(() => setVisible(false)); 161 | const fadeIn = React.useCallback(() => setVisible(true)); 162 | 163 | 164 | 165 | ; 166 | ``` 167 | 168 | ## Setting current values and velocity 169 | 170 | `useAnimation` returns an object containing all the Rebound springs, indexed by 171 | property name. This gives you full control if you need it, including the option 172 | of calling `setCurrentValue` and `setVelocity` on the springs directly. This is 173 | useful for swipes and drags, where you want to override the spring animation 174 | while dragging, and preserve velocity when the drag ends. 175 | 176 | ```js 177 | const ref = React.useRef(); 178 | const springs = useAnimation(ref, {translateX: restingPosition}); 179 | 180 | const onSwipeMove = React.useCallback(() => { 181 | springs.translateX.setCurrentValue(currentPosition); 182 | }); 183 | 184 | const onSwipeEnd = React.useCallback(() => { 185 | springs.translateX.setVelocity(200); 186 | }); 187 | 188 | ; 189 | ``` 190 | 191 | When using `Animate`, you can override the current value and velocity of an 192 | animation using the public methods `setCurrentValue` and `setVelocity` on the 193 | component instance. 194 | 195 | ```js 196 | const animation = React.useRef(); 197 | 198 | const onSwipeMove = React.useCallback(() => { 199 | animation.current.setCurrentValue('translateX', currentPosition); 200 | }); 201 | 202 | const onSwipeEnd = React.useCallback(() => { 203 | animation.current.setVelocity('translateX', 200); 204 | }); 205 | 206 | 207 | 208 | ; 209 | ``` 210 | 211 | ## Supported properties 212 | 213 | This is the full list of properties you can animate: 214 | 215 | ### Transforms 216 | 217 | - **translateX**: number in px 218 | - **translateY**: number in px 219 | - **translateZ**: number in px 220 | - **scaleX**: number representing the scale ratio (1 is the default) 221 | - **scaleY**: number representing the scale ratio (1 is the default) 222 | - **rotateX**: number in deg 223 | - **rotateY**: number in deg 224 | - **rotateZ**: number in deg 225 | - **skewX**: number in deg 226 | - **skewY**: number in deg 227 | 228 | ### Position and opacity 229 | 230 | - **top**: number in px 231 | - **left**: number in px 232 | - **right**: number in px 233 | - **bottom**: number in px 234 | - **width**: number in px 235 | - **height**: number in px 236 | - **opacity**: number between 0 and 1 237 | 238 | ### Colors 239 | 240 | **Warning**: animating colors causes a paint on every frame. Consider animating using opacity instead. 241 | 242 | - **color**: array of numbers, either [r, g, b] or [r, g, b, a] 243 | - **background**: array of numbers, either [r, g, b] or [r, g, b, a] 244 | - **backgroundColor**: array of numbers, either [r, g, b] or [r, g, b, a] 245 | - **borderBottomColor**: array of numbers, either [r, g, b] or [r, g, b, a] 246 | - **borderColor**: array of numbers, either [r, g, b] or [r, g, b, a] 247 | - **borderLeftColor**: array of numbers, either [r, g, b] or [r, g, b, a] 248 | - **borderRightColor**: array of numbers, either [r, g, b] or [r, g, b, a] 249 | - **borderTopColor**: array of numbers, either [r, g, b] or [r, g, b, a] 250 | - **outlineColor**: array of numbers, either [r, g, b] or [r, g, b, a] 251 | - **textDecorationColor**: array of numbers, either [r, g, b] or [r, g, b, a] 252 | 253 | ### Text 254 | 255 | **Warning**: animating text properties can create slow and jittery animations. Consider using scale and translate transforms instead. 256 | 257 | - **fontSize**: number in px 258 | - **lineHeight**: number in px 259 | - **letterSpacing**: number in px 260 | -------------------------------------------------------------------------------- /demo.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import {Animate, AnimateAPI, useAnimation} from './src/index'; 4 | 5 | function toggle(Inner) { 6 | return props => { 7 | const [toggled, setToggled] = React.useState(false); 8 | const onClick = React.useCallback(() => setToggled(t => !t), []); 9 | return ; 10 | }; 11 | } 12 | 13 | const ScaleDemo = toggle(({toggled, ...props}) => ( 14 |
15 |

Scale

16 | 17 | 20 | 21 |
22 | )); 23 | 24 | const TranslateDemo = toggle(({toggled, ...props}) => ( 25 |
26 |

Translate

27 | 28 | 31 | 32 |
33 | )); 34 | 35 | const FrictionDemo = toggle(({toggled, ...props}) => ( 36 |
37 |

Translate with high friction

38 | 39 | 42 | 43 |
44 | )); 45 | 46 | const TensionDemo = toggle(({toggled, ...props}) => ( 47 |
48 |

Translate with high tension

49 | 50 | 53 | 54 |
55 | )); 56 | 57 | const FrictionAndTensionDemo = toggle(({toggled, ...props}) => ( 58 |
59 |

Translate with high friction and tension

60 | 61 | 64 | 65 |
66 | )); 67 | 68 | const ClampingDemo = toggle(({toggled, ...props}) => ( 69 |
70 |

Clamping and thresholds

71 | 72 | 75 | 76 | 77 | 80 | 81 |
82 | )); 83 | 84 | const ThresholdsDemo = toggle(({toggled, ...props}) => ( 85 |
86 |

Speed and displacement rest thresholds

87 | 88 | 91 | 92 | 93 | 96 | 97 | 98 | 101 | 102 | 108 | 111 | 112 |
113 | )); 114 | 115 | const CascadeWithDelayDemo = toggle(({toggled, ...props}) => ( 116 |
117 |

Cascade with delay

118 | {[1, 2, 3, 4, 5, 6, 7].map(index => ( 119 | 120 | 123 | 124 | ))} 125 |
126 | )); 127 | 128 | const CascadeWithFrictionDemo = toggle(({toggled, ...props}) => ( 129 |
130 |

Cascade with friction

131 | {[1, 2, 3, 4, 5, 6, 7].map(index => ( 132 | 133 | 136 | 137 | ))} 138 |
139 | )); 140 | 141 | const CascadeWithTensionDemo = toggle(({toggled, ...props}) => ( 142 |
143 |

Cascade with tension

144 | {[1, 2, 3, 4, 5, 6, 7].map(index => ( 145 | 146 | 149 | 150 | ))} 151 |
152 | )); 153 | 154 | const ColorDemo = toggle(({toggled, ...props}) => ( 155 |
156 |

Color

157 | 158 | 159 | 160 |
161 | )); 162 | 163 | const AppearDemo = () => { 164 | const [visible, setVisible] = React.useState(false); 165 | 166 | React.useEffect(() => setVisible(true), []); 167 | 168 | return ( 169 |
170 |

Animate in on first render

171 | 172 | 173 | 174 |
175 | ); 176 | }; 177 | 178 | const AnimatePropDemo = () => { 179 | const [visible, setVisible] = React.useState(true); 180 | 181 | const instantHide = React.useCallback(() => setVisible(false), []); 182 | 183 | const fadeIn = React.useCallback(() => setVisible(true), []); 184 | 185 | const onClick = React.useCallback(() => { 186 | visible ? instantHide() : fadeIn(); 187 | }, [visible, instantHide, fadeIn]); 188 | 189 | return ( 190 |
191 |

Selectively disabling the animation

192 | 193 | 196 | 197 |
198 | ); 199 | }; 200 | 201 | const DragDemo = () => { 202 | const animation = React.useRef(); 203 | const lastDrag = React.useRef(null); 204 | const velocity = React.useRef(null); 205 | const onDragStart = React.useCallback((event: React.MouseEvent) => { 206 | lastDrag.current = event.clientX; 207 | }, []); 208 | const onMouseMove = React.useCallback((event: React.MouseEvent) => { 209 | if (lastDrag.current === null) return; 210 | velocity.current = event.clientX - lastDrag.current; 211 | animation.current.setCurrentValue( 212 | 'translateX', 213 | animation.current.getCurrentValue('translateX') + velocity.current, 214 | ); 215 | lastDrag.current = event.clientX; 216 | }, []); 217 | const onDragEnd = React.useCallback(() => { 218 | if (lastDrag.current === null) return; 219 | lastDrag.current = null; 220 | animation.current.setVelocity('translateX', velocity.current * 100); 221 | velocity.current = 0; 222 | }, []); 223 | 224 | return ( 225 |
226 |

Drag with momentum

227 | 228 | 234 | 235 |
236 | ); 237 | }; 238 | 239 | const HooksDemo = () => { 240 | const ref = React.useRef(null); 241 | const springs = useAnimation(ref, {translateX: 0}, {tension: 0}); 242 | 243 | const lastDrag = React.useRef(null); 244 | const velocity = React.useRef(null); 245 | const onDragStart = React.useCallback((event: React.MouseEvent) => { 246 | lastDrag.current = event.clientX; 247 | }, []); 248 | const onMouseMove = React.useCallback( 249 | (event: React.MouseEvent) => { 250 | if (lastDrag.current === null) return; 251 | velocity.current = event.clientX - lastDrag.current; 252 | springs.translateX.setCurrentValue(springs.translateX.getCurrentValue() + velocity.current); 253 | lastDrag.current = event.clientX; 254 | }, 255 | [springs], 256 | ); 257 | const onDragEnd = React.useCallback(() => { 258 | if (lastDrag.current === null) return; 259 | lastDrag.current = null; 260 | springs.translateX.setVelocity(velocity.current * 100); 261 | velocity.current = 0; 262 | }, [springs]); 263 | 264 | return ( 265 |
266 |

Hooks API

267 | 274 |
275 | ); 276 | }; 277 | 278 | const Demo = () => ( 279 |
280 |

react-rebound demos

281 |

282 | See react-rebound on GitHub for code 283 | and instructions. 284 |

285 |

286 | Source for these examples is{' '} 287 | here. 288 |

289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 |
305 | ); 306 | 307 | ReactDOM.render(, document.getElementById('wrapper')); 308 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | react-rebound demo 4 | 5 | 57 | 58 | 59 |
60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-rebound", 3 | "version": "0.8.3", 4 | "description": "High-performance spring animations in React.", 5 | "author": "Stefano J. Attardi (http://github.com/steadicat)", 6 | "main": "dist/index.js", 7 | "module": "dist/index.es.js", 8 | "jsnext:main": "dist/index.es.js", 9 | "files": [ 10 | "dist" 11 | ], 12 | "types": "dist/index.d.ts", 13 | "scripts": { 14 | "lint": "eslint src", 15 | "build": "rollup -c", 16 | "watch": "rollup -cw", 17 | "prepublish": "npm run build" 18 | }, 19 | "homepage": "https://github.com/steadicat/react-rebound", 20 | "repository": { 21 | "type": "git", 22 | "url": "git@github.com:steadicat/react-rebound.git" 23 | }, 24 | "bugs": { 25 | "url": "https://github.com/steadicat/react-rebound/issues" 26 | }, 27 | "keywords": [ 28 | "react", 29 | "animation", 30 | "animate", 31 | "springs", 32 | "rebound", 33 | "motion" 34 | ], 35 | "dependencies": { 36 | "rebound": "^0.1.0" 37 | }, 38 | "peerDependencies": { 39 | "react": "*", 40 | "react-dom": "*" 41 | }, 42 | "devDependencies": { 43 | "@types/raf": "^3.4.0", 44 | "@types/react": "^16.8.10", 45 | "@types/react-dom": "^16.8.3", 46 | "@typescript-eslint/eslint-plugin": "^1.5.0", 47 | "eslint": "^5.15.3", 48 | "eslint-config-prettier": "^4.1.0", 49 | "eslint-config-problems": "^2.0.0", 50 | "eslint-plugin-react": "^7.12.4", 51 | "eslint-plugin-react-hooks": "^1.6.0", 52 | "raf": "^3.4.1", 53 | "react": "^16.8.6", 54 | "react-dom": "^16.8.6", 55 | "rollup": "^1.7.4", 56 | "rollup-plugin-commonjs": "^9.2.2", 57 | "rollup-plugin-node-resolve": "^4.0.1", 58 | "rollup-plugin-replace": "^2.1.1", 59 | "rollup-plugin-typescript2": "^0.20.1", 60 | "typescript": "^3.3.4000" 61 | }, 62 | "license": "MIT" 63 | } 64 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | import typescript from 'rollup-plugin-typescript2'; 2 | import resolve from 'rollup-plugin-node-resolve'; 3 | import replace from 'rollup-plugin-replace'; 4 | import commonjs from 'rollup-plugin-commonjs'; 5 | 6 | export default [ 7 | { 8 | input: './src/index.ts', 9 | output: [{file: './dist/index.js', format: 'cjs'}, {file: './dist/index.es.js', format: 'es'}], 10 | external: ['rebound', 'react', 'react-dom'], 11 | plugins: [ 12 | resolve({}), 13 | commonjs({ 14 | namedExports: { 15 | './node_modules/react/index.js': ['useState'], 16 | './node_modules/rebound/dist/rebound.js': ['SpringConfig'], 17 | }, 18 | }), 19 | typescript({ 20 | typescript: require('typescript'), 21 | check: false, 22 | }), 23 | ], 24 | }, 25 | { 26 | input: './demo.tsx', 27 | output: [{file: './demo.js', format: 'iife'}], 28 | plugins: [ 29 | resolve({browser: true}), 30 | commonjs({ 31 | namedExports: { 32 | './node_modules/react/index.js': ['useState'], 33 | './node_modules/rebound/dist/rebound.js': ['SpringConfig'], 34 | }, 35 | }), 36 | typescript({ 37 | typescript: require('typescript'), 38 | check: false, 39 | }), 40 | replace({ 41 | 'process.env.NODE_ENV': JSON.stringify('production'), 42 | }), 43 | ], 44 | }, 45 | ]; 46 | -------------------------------------------------------------------------------- /src/Animate.ts: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import {AnimatableProps} from './style'; 3 | import {useAnimation} from './useAnimation'; 4 | 5 | export interface AnimateAPI { 6 | setVelocity(prop: Prop, value: AnimatableProps[Prop]): void; 7 | setCurrentValue( 8 | prop: keyof AnimatableProps, 9 | value: AnimatableProps[Prop], 10 | ): void; 11 | getCurrentValue(prop: Prop): AnimatableProps[Prop]; 12 | } 13 | 14 | export const Animate = React.forwardRef( 15 | ( 16 | { 17 | animate = true, 18 | tension = 230, 19 | friction = 22, 20 | delay = 0, 21 | displacementThreshold = 0.001, 22 | speedThreshold = 0.001, 23 | clamp = false, 24 | onStart, 25 | onEnd, 26 | children, 27 | ...props 28 | }: { 29 | animate?: boolean; 30 | tension?: number; 31 | friction?: number; 32 | delay?: number; 33 | displacementThreshold?: number; 34 | speedThreshold?: number; 35 | clamp?: boolean; 36 | onStart?: () => void; 37 | onEnd?: () => void; 38 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 39 | children: React.ReactElement | ((animating: boolean) => React.ReactElement); 40 | } & Partial, 41 | forwardedRef: React.Ref, 42 | ) => { 43 | const ref = React.useRef(); 44 | const animating = React.useRef(false); 45 | const [, setState] = React.useState(null); 46 | const latestChildren = React.useRef(children); 47 | latestChildren.current = children; 48 | 49 | const springs = useAnimation(ref, props, { 50 | animate, 51 | tension, 52 | friction, 53 | delay, 54 | displacementThreshold, 55 | speedThreshold, 56 | clamp, 57 | onStart() { 58 | animating.current = true; 59 | if (typeof latestChildren.current === 'function') { 60 | setState(null); // Trigger a re-render 61 | } 62 | 63 | onStart && onStart(); 64 | }, 65 | onEnd() { 66 | animating.current = false; 67 | if (typeof latestChildren.current === 'function') { 68 | setState(null); // Trigger a re-render 69 | } 70 | 71 | onEnd && onEnd(); 72 | }, 73 | }); 74 | 75 | React.useImperativeHandle( 76 | forwardedRef, 77 | () => ({ 78 | setVelocity(prop: Prop, value: AnimatableProps[Prop]) { 79 | const spring = springs[prop]; 80 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 81 | spring && spring.setVelocity(value as any); 82 | }, 83 | setCurrentValue( 84 | prop: Prop, 85 | value: AnimatableProps[Prop], 86 | ) { 87 | const spring = springs[prop]; 88 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 89 | spring && spring.setCurrentValue(value as any); 90 | }, 91 | getCurrentValue(prop: Prop) { 92 | const spring = springs[prop]; 93 | return spring && (spring.getCurrentValue() as AnimatableProps[keyof AnimatableProps]); 94 | }, 95 | }), 96 | [springs], 97 | ); 98 | 99 | if (typeof children === 'function') { 100 | children = children(animating.current); 101 | } 102 | const child = React.Children.only(children); 103 | return React.cloneElement(child, { 104 | ref: (element: HTMLElement | undefined) => { 105 | ref.current = element; 106 | // Hack to forward ref to caller 107 | if (child.ref && 'current' in child.ref) { 108 | child.ref.current = element; 109 | } else if (typeof child.ref === 'function') { 110 | child.ref(element); 111 | } 112 | }, 113 | }); 114 | }, 115 | ); 116 | 117 | Animate.displayName = 'Animate'; 118 | -------------------------------------------------------------------------------- /src/MultiSpring.ts: -------------------------------------------------------------------------------- 1 | import {Listener, Spring, SpringSystem, SpringConfig} from 'rebound'; 2 | 3 | type Mapped = {[K in keyof Tuple]: Type}; 4 | 5 | type SpringsForNumbers = Mapped; 6 | 7 | export default class MultiSpring { 8 | private system: SpringSystem; 9 | private config: SpringConfig; 10 | private springs: SpringsForNumbers = ([] as Spring[]) as SpringsForNumbers; 11 | 12 | public constructor(system: SpringSystem, config: SpringConfig) { 13 | this.system = system; 14 | this.config = config; 15 | } 16 | 17 | public destroy() { 18 | for (const spring of this.springs) spring!.destroy(); 19 | } 20 | 21 | public getCurrentValue() { 22 | return this.springs.map(s => s!.getCurrentValue()) as Numbers; 23 | } 24 | 25 | public setCurrentValue(value: Numbers, skipSetAtRest?: boolean) { 26 | for (let i = 0; i < value.length; i++) { 27 | if (!this.springs[i]) this.springs[i] = this.system.createSpring(); 28 | this.springs[i]!.setCurrentValue(value[i], skipSetAtRest); 29 | } 30 | } 31 | 32 | public getEndValue() { 33 | return this.springs.map(s => s!.getEndValue()); 34 | } 35 | 36 | public setEndValue(value: Numbers) { 37 | for (let i = 0; i < value.length; i++) { 38 | if (!this.springs[i]) this.springs[i] = this.system.createSpringWithConfig(this.config); 39 | this.springs[i]!.setEndValue(value[i]); 40 | } 41 | } 42 | 43 | public getVelocity() { 44 | return this.springs.map(s => s!.getVelocity()); 45 | } 46 | 47 | public setAtRest() { 48 | for (const spring of this.springs) spring!.setAtRest(); 49 | } 50 | 51 | public setVelocity(value: number) { 52 | for (const spring of this.springs) spring!.setVelocity(value); 53 | } 54 | public setRestSpeedThreshold(value: number) { 55 | for (const spring of this.springs) spring!.setRestSpeedThreshold(value); 56 | } 57 | 58 | public setRestDisplacementThreshold(value: number) { 59 | for (const spring of this.springs) spring!.setRestDisplacementThreshold(value); 60 | } 61 | 62 | public setOvershootClampingEnabled(value: boolean) { 63 | for (const spring of this.springs) spring!.setOvershootClampingEnabled(value); 64 | } 65 | 66 | public addListener(value: Listener) { 67 | for (const spring of this.springs) spring!.addListener(value); 68 | } 69 | public removeListener(value: Listener) { 70 | for (const spring of this.springs) spring!.removeListener(value); 71 | } 72 | public removeAllListeners() { 73 | for (const spring of this.springs) spring!.removeAllListeners(); 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export {useAnimation} from './useAnimation'; 2 | export {Animate, AnimateAPI} from './Animate'; 3 | -------------------------------------------------------------------------------- /src/style.ts: -------------------------------------------------------------------------------- 1 | import {CSSProperties} from 'react'; 2 | 3 | function cssFunction( 4 | name: string, 5 | ...params: {[Value in keyof Values]: (k: Values[Value]) => string} 6 | ) { 7 | return (...values: Values) => `${name}(${params.map((p, i) => p(values[i]))})`; 8 | } 9 | 10 | function px(n: number) { 11 | return `${n || 0}px`; 12 | } 13 | function alpha(x: number) { 14 | return `${x < 0 ? 0 : x > 1 ? 1 : x}`; 15 | } 16 | function ratio(n: number) { 17 | return `${n}`; 18 | } 19 | function deg(n: number) { 20 | return `${n}deg`; 21 | } 22 | 23 | function colorComponent(x: number) { 24 | return `${x < 0 ? 0 : x > 255 ? 255 : Math.round(x)}`; 25 | } 26 | 27 | const rgb = cssFunction<[number, number, number]>( 28 | 'rgb', 29 | colorComponent, 30 | colorComponent, 31 | colorComponent, 32 | ); 33 | 34 | const rgba = cssFunction<[number, number, number, number]>( 35 | 'rgba', 36 | colorComponent, 37 | colorComponent, 38 | colorComponent, 39 | alpha, 40 | ); 41 | 42 | const translate = cssFunction('translate', px, px); 43 | const translate3d = cssFunction('translate3d', px, px, px); 44 | const scale = cssFunction('scale', ratio, ratio); 45 | const rotate = cssFunction('rotate', deg, deg); 46 | const rotateZ = cssFunction('rotateZ', deg); 47 | const skew = cssFunction('skew', deg, deg); 48 | 49 | function color([r, g, b]: [number, number, number]): string; 50 | function color([r, g, b, a]: [number, number, number, number?]) { 51 | return typeof a === 'undefined' ? rgb(r, g, b) : rgba(r, g, b, a); 52 | } 53 | 54 | export const numericalProperties = { 55 | top: px, 56 | left: px, 57 | right: px, 58 | bottom: px, 59 | width: px, 60 | height: px, 61 | opacity: alpha, 62 | color, 63 | background: color, 64 | backgroundColor: color, 65 | borderBottomColor: color, 66 | borderColor: color, 67 | borderLeftColor: color, 68 | borderRightColor: color, 69 | borderTopColor: color, 70 | outlineColor: color, 71 | textDecorationColor: color, 72 | fontSize: px, 73 | lineHeight: px, 74 | letterSpacing: px, 75 | }; 76 | 77 | export const transformProperties = { 78 | translateX: true, 79 | translateY: true, 80 | translateZ: true, 81 | scaleX: true, 82 | scaleY: true, 83 | rotateX: true, 84 | rotateY: true, 85 | rotateZ: true, 86 | skewX: true, 87 | skewY: true, 88 | }; 89 | 90 | type NumericalProperties = { 91 | [key in keyof typeof numericalProperties]: Parameters[0] 92 | }; 93 | 94 | type TransformProperties = {[key in keyof typeof transformProperties]: number}; 95 | 96 | export type AnimatableProps = TransformProperties & NumericalProperties; 97 | 98 | function toTransformStyle({ 99 | translateX: tx, 100 | translateY: ty, 101 | translateZ: tz, 102 | scaleX: sx, 103 | scaleY: sy, 104 | rotateX: rx, 105 | rotateY: ry, 106 | rotateZ: rz, 107 | skewX: kx, 108 | skewY: ky, 109 | }: Partial) { 110 | const transforms = []; 111 | if (tz !== undefined) { 112 | transforms.push(translate3d(tx || 0, ty || 0, tz || 0)); 113 | } else if (tx !== undefined || ty !== undefined) { 114 | transforms.push(translate(tx || 0, ty || 0)); 115 | } 116 | if (sx !== undefined || sy !== undefined) { 117 | transforms.push(scale(sx || 1, sy || 1)); 118 | } 119 | if (rx !== undefined || ry !== undefined) { 120 | transforms.push(rotate(rx || 0, ry || 0)); 121 | } 122 | if (rz !== undefined) { 123 | transforms.push(rotateZ(rz || 0)); 124 | } 125 | if (kx !== undefined || ky !== undefined) { 126 | transforms.push(skew(kx || 0, ky || 0)); 127 | } 128 | if (transforms.length === 0) return 'none'; 129 | return transforms.join(' '); 130 | } 131 | 132 | export function toStyle(props: Partial): Partial { 133 | const transformProps: Partial = {}; 134 | const style: Partial = {}; 135 | 136 | for (const p in props) { 137 | const val = props[p as keyof typeof props]; 138 | if (val === undefined || val === null) continue; 139 | if (p in transformProperties) { 140 | const prop = p as keyof TransformProperties; 141 | transformProps[prop] = val as number; 142 | } else if (p in numericalProperties) { 143 | const prop = p as keyof NumericalProperties; 144 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 145 | style[prop as keyof typeof style] = numericalProperties[prop](val as any); 146 | } else { 147 | // eslint-disable-next-line no-console 148 | console.warn('Unsupported prop', p); 149 | } 150 | } 151 | 152 | return {...style, transform: toTransformStyle(transformProps)}; 153 | } 154 | -------------------------------------------------------------------------------- /src/useAnimation.ts: -------------------------------------------------------------------------------- 1 | import raf from 'raf'; 2 | import React, {MutableRefObject, CSSProperties} from 'react'; 3 | import rebound, {Spring, SpringConfig} from 'rebound'; 4 | import MultiSpring from './MultiSpring'; 5 | import {AnimatableProps, toStyle} from './style'; 6 | 7 | type SpringForProp = AnimatableProps[Prop] extends number[] 8 | ? MultiSpring 9 | : Spring; 10 | 11 | const springSystem = new rebound.SpringSystem(); 12 | 13 | function usePersisted(value: Value) { 14 | const ref = React.useRef(value); 15 | ref.current = value; 16 | return ref; 17 | } 18 | 19 | function createSpring( 20 | startValue: AnimatableProps[Prop], 21 | tension: number, 22 | friction: number, 23 | ) { 24 | let spring; 25 | if (Array.isArray(startValue)) { 26 | spring = new MultiSpring(springSystem, new SpringConfig(tension, friction)); 27 | spring.setCurrentValue(startValue); 28 | } else { 29 | spring = springSystem.createSpringWithConfig(new SpringConfig(tension, friction)); 30 | spring.setCurrentValue((startValue as unknown) as number); 31 | } 32 | return spring as SpringForProp; 33 | } 34 | 35 | export function useAnimation>( 36 | ref: MutableRefObject, 37 | props: {[prop in Props]: AnimatableProps[prop]}, 38 | { 39 | animate = true, 40 | tension = 230, 41 | friction = 22, 42 | delay = 0, 43 | displacementThreshold = 0.001, 44 | speedThreshold = 0.001, 45 | clamp = false, 46 | onStart, 47 | onEnd, 48 | }: { 49 | animate?: boolean; 50 | tension?: number; 51 | friction?: number; 52 | delay?: number; 53 | displacementThreshold?: number; 54 | speedThreshold?: number; 55 | clamp?: boolean; 56 | onStart?: () => void; 57 | onEnd?: () => void; 58 | } = {}, 59 | ) { 60 | const springs = React.useRef({} as {[Prop in Props]: SpringForProp}); 61 | const animating = React.useRef(0); 62 | 63 | const onStartRef = usePersisted(onStart); 64 | const onSpringActivate = React.useCallback(() => { 65 | animating.current += 1; 66 | animating.current === 1 && onStartRef.current && onStartRef.current(); 67 | }, [onStartRef]); 68 | 69 | const onEndRef = usePersisted(onEnd); 70 | const onSpringAtRest = React.useCallback(() => { 71 | animating.current -= 1; 72 | animating.current === 0 && onEndRef.current && onEndRef.current(); 73 | }, [onEndRef]); 74 | 75 | const request = React.useRef(null); 76 | const onSpringUpdate = React.useCallback(() => { 77 | function performUpdate() { 78 | if (!ref.current) return; 79 | 80 | request.current = null; 81 | const currentValues: {[Prop in Props]?: AnimatableProps[Prop]} = {}; 82 | 83 | for (const prop in springs.current) { 84 | currentValues[prop] = springs.current[prop].getCurrentValue(); 85 | } 86 | 87 | const style = toStyle(currentValues); 88 | for (const p in style) { 89 | const prop = p as keyof CSSProperties; 90 | ref.current.style[prop as Exclude] = 91 | style[prop]; 92 | } 93 | } 94 | 95 | if (!request.current) { 96 | request.current = raf(performUpdate); 97 | } 98 | }, [ref]); 99 | 100 | React.useEffect(() => { 101 | for (const prop in props) { 102 | const value = props[prop]; 103 | if (value === undefined) continue; 104 | let spring = springs.current[prop]; 105 | if (!spring) { 106 | spring = springs.current[prop] = createSpring(value, tension, friction); 107 | spring.setRestSpeedThreshold(speedThreshold); 108 | spring.setRestDisplacementThreshold(displacementThreshold); 109 | spring.setOvershootClampingEnabled(clamp); 110 | spring.addListener({onSpringActivate, onSpringAtRest, onSpringUpdate}); 111 | } 112 | if (!animate) { 113 | spring.setCurrentValue(value); 114 | continue; 115 | } 116 | if (delay) { 117 | setTimeout(() => spring.setEndValue(value), delay); 118 | } else { 119 | spring.setEndValue(value); 120 | } 121 | } 122 | }); 123 | 124 | // Cleanup 125 | React.useEffect(() => { 126 | () => { 127 | for (const prop in springs.current) { 128 | springs.current[prop].setAtRest(); 129 | springs.current[prop].destroy(); 130 | } 131 | }; 132 | }, []); 133 | 134 | return springs.current; 135 | } 136 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "outDir": "./dist", 4 | "declaration": true, 5 | "declarationDir": "./dist", 6 | "target": "es5", 7 | "sourceMap": true, 8 | "inlineSources": true, 9 | "jsx": "react", 10 | "importHelpers": true, 11 | "module": "esNext", 12 | "moduleResolution": "node", 13 | "esModuleInterop": true, 14 | "strict": true, 15 | "noEmit": true, 16 | "noUnusedLocals": true, 17 | "noUnusedParameters": true, 18 | "noFallthroughCasesInSwitch": true, 19 | "noImplicitReturns": true, 20 | "lib": [ 21 | "dom", 22 | "es2017" 23 | ] 24 | }, 25 | "include": [ 26 | "src/**/*.ts", 27 | "src/**/*.tsx", 28 | ], 29 | "exclude": ["node_modules"], 30 | } -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0": 6 | version "7.0.0" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" 8 | integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA== 9 | dependencies: 10 | "@babel/highlight" "^7.0.0" 11 | 12 | "@babel/highlight@^7.0.0": 13 | version "7.0.0" 14 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" 15 | integrity sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw== 16 | dependencies: 17 | chalk "^2.0.0" 18 | esutils "^2.0.2" 19 | js-tokens "^4.0.0" 20 | 21 | "@types/estree@0.0.39": 22 | version "0.0.39" 23 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" 24 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== 25 | 26 | "@types/node@^11.11.6": 27 | version "11.12.0" 28 | resolved "https://registry.yarnpkg.com/@types/node/-/node-11.12.0.tgz#ec5594728811dc2797e42396cfcdf786f2052c12" 29 | integrity sha512-Lg00egj78gM+4aE0Erw05cuDbvX9sLJbaaPwwRtdCdAMnIudqrQZ0oZX98Ek0yiSK/A2nubHgJfvII/rTT2Dwg== 30 | 31 | "@types/prop-types@*": 32 | version "15.7.0" 33 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.0.tgz#4c48fed958d6dcf9487195a0ef6456d5f6e0163a" 34 | integrity sha512-eItQyV43bj4rR3JPV0Skpl1SncRCdziTEK9/v8VwXmV6d/qOUO8/EuWeHBbCZcsfSHfzI5UyMJLCSXtxxznyZg== 35 | 36 | "@types/raf@^3.4.0": 37 | version "3.4.0" 38 | resolved "https://registry.yarnpkg.com/@types/raf/-/raf-3.4.0.tgz#2b72cbd55405e071f1c4d29992638e022b20acc2" 39 | integrity sha512-taW5/WYqo36N7V39oYyHP9Ipfd5pNFvGTIQsNGj86xV88YQ7GnI30/yMfKDF7Zgin0m3e+ikX88FvImnK4RjGw== 40 | 41 | "@types/react-dom@^16.8.3": 42 | version "16.8.3" 43 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.8.3.tgz#6131b7b6158bc7ed1925a3374b88b7c00481f0cb" 44 | integrity sha512-HF5hD5YR3z9Mn6kXcW1VKe4AQ04ZlZj1EdLBae61hzQ3eEWWxMgNLUbIxeZp40BnSxqY1eAYLsH9QopQcxzScA== 45 | dependencies: 46 | "@types/react" "*" 47 | 48 | "@types/react@*": 49 | version "16.8.8" 50 | resolved "https://registry.yarnpkg.com/@types/react/-/react-16.8.8.tgz#4b60a469fd2469f7aa6eaa0f8cfbc51f6d76e662" 51 | integrity sha512-xwEvyet96u7WnB96kqY0yY7qxx/pEpU51QeACkKFtrgjjXITQn0oO1iwPEraXVgh10ZFPix7gs1R4OJXF7P5sg== 52 | dependencies: 53 | "@types/prop-types" "*" 54 | csstype "^2.2.0" 55 | 56 | "@types/react@^16.8.10": 57 | version "16.8.10" 58 | resolved "https://registry.yarnpkg.com/@types/react/-/react-16.8.10.tgz#1ccb6fde17f71a62ef055382ec68bdc379d4d8d9" 59 | integrity sha512-7bUQeZKP4XZH/aB4i7k1i5yuwymDu/hnLMhD9NjVZvQQH7ZUgRN3d6iu8YXzx4sN/tNr0bj8jgguk8hhObzGvA== 60 | dependencies: 61 | "@types/prop-types" "*" 62 | csstype "^2.2.0" 63 | 64 | "@typescript-eslint/eslint-plugin@^1.5.0": 65 | version "1.5.0" 66 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-1.5.0.tgz#85c509bcfc2eb35f37958fa677379c80b7a8f66f" 67 | integrity sha512-TZ5HRDFz6CswqBUviPX8EfS+iOoGbclYroZKT3GWGYiGScX0qo6QjHc5uuM7JN920voP2zgCkHgF5SDEVlCtjQ== 68 | dependencies: 69 | "@typescript-eslint/parser" "1.5.0" 70 | "@typescript-eslint/typescript-estree" "1.5.0" 71 | requireindex "^1.2.0" 72 | tsutils "^3.7.0" 73 | 74 | "@typescript-eslint/parser@1.5.0": 75 | version "1.5.0" 76 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-1.5.0.tgz#a96114d195dff2a49534e4c4850fb676f905a072" 77 | integrity sha512-pRWTnJrnxuT0ragdY26hZL+bxqDd4liMlftpH2CBlMPryOIOb1J+MdZuw6R4tIu6bWVdwbHKPTs+Q34LuGvfGw== 78 | dependencies: 79 | "@typescript-eslint/typescript-estree" "1.5.0" 80 | eslint-scope "^4.0.0" 81 | eslint-visitor-keys "^1.0.0" 82 | 83 | "@typescript-eslint/typescript-estree@1.5.0": 84 | version "1.5.0" 85 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-1.5.0.tgz#986b356ecdf5a0c3bc9889d221802149cf5dbd4e" 86 | integrity sha512-XqR14d4BcYgxcrpxIwcee7UEjncl9emKc/MgkeUfIk2u85KlsGYyaxC7Zxjmb17JtWERk/NaO+KnBsqgpIXzwA== 87 | dependencies: 88 | lodash.unescape "4.0.1" 89 | semver "5.5.0" 90 | 91 | acorn-jsx@^5.0.0: 92 | version "5.0.1" 93 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz#32a064fd925429216a09b141102bfdd185fae40e" 94 | integrity sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg== 95 | 96 | acorn@^6.0.7, acorn@^6.1.1: 97 | version "6.1.1" 98 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.1.1.tgz#7d25ae05bb8ad1f9b699108e1094ecd7884adc1f" 99 | integrity sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA== 100 | 101 | ajv@^6.9.1: 102 | version "6.10.0" 103 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.0.tgz#90d0d54439da587cd7e843bfb7045f50bd22bdf1" 104 | integrity sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg== 105 | dependencies: 106 | fast-deep-equal "^2.0.1" 107 | fast-json-stable-stringify "^2.0.0" 108 | json-schema-traverse "^0.4.1" 109 | uri-js "^4.2.2" 110 | 111 | ansi-escapes@^3.2.0: 112 | version "3.2.0" 113 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" 114 | integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== 115 | 116 | ansi-regex@^3.0.0: 117 | version "3.0.0" 118 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 119 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 120 | 121 | ansi-regex@^4.1.0: 122 | version "4.1.0" 123 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 124 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 125 | 126 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 127 | version "3.2.1" 128 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 129 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 130 | dependencies: 131 | color-convert "^1.9.0" 132 | 133 | argparse@^1.0.7: 134 | version "1.0.9" 135 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 136 | dependencies: 137 | sprintf-js "~1.0.2" 138 | 139 | arr-diff@^4.0.0: 140 | version "4.0.0" 141 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 142 | integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= 143 | 144 | arr-flatten@^1.1.0: 145 | version "1.1.0" 146 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 147 | integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== 148 | 149 | arr-union@^3.1.0: 150 | version "3.1.0" 151 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 152 | integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= 153 | 154 | array-includes@^3.0.3: 155 | version "3.0.3" 156 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" 157 | integrity sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0= 158 | dependencies: 159 | define-properties "^1.1.2" 160 | es-abstract "^1.7.0" 161 | 162 | array-unique@^0.3.2: 163 | version "0.3.2" 164 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 165 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= 166 | 167 | assign-symbols@^1.0.0: 168 | version "1.0.0" 169 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 170 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 171 | 172 | astral-regex@^1.0.0: 173 | version "1.0.0" 174 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 175 | integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== 176 | 177 | atob@^2.1.1: 178 | version "2.1.2" 179 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 180 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 181 | 182 | balanced-match@^1.0.0: 183 | version "1.0.0" 184 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 185 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 186 | 187 | base@^0.11.1: 188 | version "0.11.2" 189 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 190 | integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== 191 | dependencies: 192 | cache-base "^1.0.1" 193 | class-utils "^0.3.5" 194 | component-emitter "^1.2.1" 195 | define-property "^1.0.0" 196 | isobject "^3.0.1" 197 | mixin-deep "^1.2.0" 198 | pascalcase "^0.1.1" 199 | 200 | brace-expansion@^1.1.7: 201 | version "1.1.11" 202 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 203 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 204 | dependencies: 205 | balanced-match "^1.0.0" 206 | concat-map "0.0.1" 207 | 208 | braces@^2.3.1: 209 | version "2.3.2" 210 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 211 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== 212 | dependencies: 213 | arr-flatten "^1.1.0" 214 | array-unique "^0.3.2" 215 | extend-shallow "^2.0.1" 216 | fill-range "^4.0.0" 217 | isobject "^3.0.1" 218 | repeat-element "^1.1.2" 219 | snapdragon "^0.8.1" 220 | snapdragon-node "^2.0.1" 221 | split-string "^3.0.2" 222 | to-regex "^3.0.1" 223 | 224 | builtin-modules@^3.0.0: 225 | version "3.0.0" 226 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.0.0.tgz#1e587d44b006620d90286cc7a9238bbc6129cab1" 227 | integrity sha512-hMIeU4K2ilbXV6Uv93ZZ0Avg/M91RaKXucQ+4me2Do1txxBDyDZWCBa5bJSLqoNTRpXTLwEzIk1KmloenDDjhg== 228 | 229 | cache-base@^1.0.1: 230 | version "1.0.1" 231 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 232 | integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== 233 | dependencies: 234 | collection-visit "^1.0.0" 235 | component-emitter "^1.2.1" 236 | get-value "^2.0.6" 237 | has-value "^1.0.0" 238 | isobject "^3.0.1" 239 | set-value "^2.0.0" 240 | to-object-path "^0.3.0" 241 | union-value "^1.0.0" 242 | unset-value "^1.0.0" 243 | 244 | callsites@^3.0.0: 245 | version "3.0.0" 246 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.0.0.tgz#fb7eb569b72ad7a45812f93fd9430a3e410b3dd3" 247 | integrity sha512-tWnkwu9YEq2uzlBDI4RcLn8jrFvF9AOi8PxDNU3hZZjJcjkcRAq3vCI+vZcg1SuxISDYe86k9VZFwAxDiJGoAw== 248 | 249 | chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.2: 250 | version "2.4.2" 251 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 252 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 253 | dependencies: 254 | ansi-styles "^3.2.1" 255 | escape-string-regexp "^1.0.5" 256 | supports-color "^5.3.0" 257 | 258 | chardet@^0.7.0: 259 | version "0.7.0" 260 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" 261 | integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== 262 | 263 | class-utils@^0.3.5: 264 | version "0.3.6" 265 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 266 | integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== 267 | dependencies: 268 | arr-union "^3.1.0" 269 | define-property "^0.2.5" 270 | isobject "^3.0.0" 271 | static-extend "^0.1.1" 272 | 273 | cli-cursor@^2.1.0: 274 | version "2.1.0" 275 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 276 | integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= 277 | dependencies: 278 | restore-cursor "^2.0.0" 279 | 280 | cli-width@^2.0.0: 281 | version "2.1.0" 282 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 283 | 284 | collection-visit@^1.0.0: 285 | version "1.0.0" 286 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 287 | integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= 288 | dependencies: 289 | map-visit "^1.0.0" 290 | object-visit "^1.0.0" 291 | 292 | color-convert@^1.9.0: 293 | version "1.9.3" 294 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 295 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 296 | dependencies: 297 | color-name "1.1.3" 298 | 299 | color-name@1.1.3: 300 | version "1.1.3" 301 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 302 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 303 | 304 | component-emitter@^1.2.1: 305 | version "1.2.1" 306 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 307 | integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY= 308 | 309 | concat-map@0.0.1: 310 | version "0.0.1" 311 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 312 | 313 | copy-descriptor@^0.1.0: 314 | version "0.1.1" 315 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 316 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= 317 | 318 | cross-spawn@^6.0.5: 319 | version "6.0.5" 320 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 321 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 322 | dependencies: 323 | nice-try "^1.0.4" 324 | path-key "^2.0.1" 325 | semver "^5.5.0" 326 | shebang-command "^1.2.0" 327 | which "^1.2.9" 328 | 329 | csstype@^2.2.0: 330 | version "2.6.3" 331 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.3.tgz#b701e5968245bf9b08d54ac83d00b624e622a9fa" 332 | integrity sha512-rINUZXOkcBmoHWEyu7JdHu5JMzkGRoMX4ov9830WNgxf5UYxcBUO0QTKAqeJ5EZfSdlrcJYkC8WwfVW7JYi4yg== 333 | 334 | debug@^2.2.0: 335 | version "2.6.0" 336 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" 337 | dependencies: 338 | ms "0.7.2" 339 | 340 | debug@^2.3.3: 341 | version "2.6.9" 342 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 343 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 344 | dependencies: 345 | ms "2.0.0" 346 | 347 | debug@^4.0.1: 348 | version "4.1.1" 349 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 350 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 351 | dependencies: 352 | ms "^2.1.1" 353 | 354 | decode-uri-component@^0.2.0: 355 | version "0.2.0" 356 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 357 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= 358 | 359 | deep-is@~0.1.3: 360 | version "0.1.3" 361 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 362 | 363 | define-properties@^1.1.2: 364 | version "1.1.2" 365 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 366 | dependencies: 367 | foreach "^2.0.5" 368 | object-keys "^1.0.8" 369 | 370 | define-property@^0.2.5: 371 | version "0.2.5" 372 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 373 | integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= 374 | dependencies: 375 | is-descriptor "^0.1.0" 376 | 377 | define-property@^1.0.0: 378 | version "1.0.0" 379 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 380 | integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= 381 | dependencies: 382 | is-descriptor "^1.0.0" 383 | 384 | define-property@^2.0.2: 385 | version "2.0.2" 386 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 387 | integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== 388 | dependencies: 389 | is-descriptor "^1.0.2" 390 | isobject "^3.0.1" 391 | 392 | doctrine@^2.1.0: 393 | version "2.1.0" 394 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 395 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 396 | dependencies: 397 | esutils "^2.0.2" 398 | 399 | doctrine@^3.0.0: 400 | version "3.0.0" 401 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 402 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 403 | dependencies: 404 | esutils "^2.0.2" 405 | 406 | emoji-regex@^7.0.1: 407 | version "7.0.3" 408 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 409 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 410 | 411 | es-abstract@^1.11.0: 412 | version "1.13.0" 413 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" 414 | integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg== 415 | dependencies: 416 | es-to-primitive "^1.2.0" 417 | function-bind "^1.1.1" 418 | has "^1.0.3" 419 | is-callable "^1.1.4" 420 | is-regex "^1.0.4" 421 | object-keys "^1.0.12" 422 | 423 | es-abstract@^1.7.0: 424 | version "1.7.0" 425 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 426 | dependencies: 427 | es-to-primitive "^1.1.1" 428 | function-bind "^1.1.0" 429 | is-callable "^1.1.3" 430 | is-regex "^1.0.3" 431 | 432 | es-to-primitive@^1.1.1: 433 | version "1.1.1" 434 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 435 | dependencies: 436 | is-callable "^1.1.1" 437 | is-date-object "^1.0.1" 438 | is-symbol "^1.0.1" 439 | 440 | es-to-primitive@^1.2.0: 441 | version "1.2.0" 442 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" 443 | integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== 444 | dependencies: 445 | is-callable "^1.1.4" 446 | is-date-object "^1.0.1" 447 | is-symbol "^1.0.2" 448 | 449 | escape-string-regexp@^1.0.5: 450 | version "1.0.5" 451 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 452 | 453 | eslint-config-prettier@^4.1.0: 454 | version "4.1.0" 455 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-4.1.0.tgz#181364895899fff9fd3605fecb5c4f20e7d5f395" 456 | integrity sha512-zILwX9/Ocz4SV2vX7ox85AsrAgXV3f2o2gpIicdMIOra48WYqgUnWNH/cR/iHtmD2Vb3dLSC3LiEJnS05Gkw7w== 457 | dependencies: 458 | get-stdin "^6.0.0" 459 | 460 | eslint-config-problems@^2.0.0: 461 | version "2.0.0" 462 | resolved "https://registry.yarnpkg.com/eslint-config-problems/-/eslint-config-problems-2.0.0.tgz#8a7d4a3d7205afef86c463f5fc12b909891a9fa3" 463 | integrity sha512-4QbWmmkyf85cmuTGeqrXNRk3wxDEG9meV3Ss4iH8x5EbqJL200MJZkuK3CNJxNWLWl9sxHVXeJlyPaQIgjBS3w== 464 | 465 | eslint-plugin-react-hooks@^1.6.0: 466 | version "1.6.0" 467 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.6.0.tgz#348efcda8fb426399ac7b8609607c7b4025a6f5f" 468 | integrity sha512-lHBVRIaz5ibnIgNG07JNiAuBUeKhEf8l4etNx5vfAEwqQ5tcuK3jV9yjmopPgQDagQb7HwIuQVsE3IVcGrRnag== 469 | 470 | eslint-plugin-react@^7.12.4: 471 | version "7.12.4" 472 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.12.4.tgz#b1ecf26479d61aee650da612e425c53a99f48c8c" 473 | integrity sha512-1puHJkXJY+oS1t467MjbqjvX53uQ05HXwjqDgdbGBqf5j9eeydI54G3KwiJmWciQ0HTBacIKw2jgwSBSH3yfgQ== 474 | dependencies: 475 | array-includes "^3.0.3" 476 | doctrine "^2.1.0" 477 | has "^1.0.3" 478 | jsx-ast-utils "^2.0.1" 479 | object.fromentries "^2.0.0" 480 | prop-types "^15.6.2" 481 | resolve "^1.9.0" 482 | 483 | eslint-scope@^4.0.0: 484 | version "4.0.2" 485 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.2.tgz#5f10cd6cabb1965bf479fa65745673439e21cb0e" 486 | integrity sha512-5q1+B/ogmHl8+paxtOKx38Z8LtWkVGuNt3+GQNErqwLl6ViNp/gdJGMCjZNxZ8j/VYjDNZ2Fo+eQc1TAVPIzbg== 487 | dependencies: 488 | esrecurse "^4.1.0" 489 | estraverse "^4.1.1" 490 | 491 | eslint-scope@^4.0.3: 492 | version "4.0.3" 493 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" 494 | integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== 495 | dependencies: 496 | esrecurse "^4.1.0" 497 | estraverse "^4.1.1" 498 | 499 | eslint-utils@^1.3.1: 500 | version "1.3.1" 501 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.3.1.tgz#9a851ba89ee7c460346f97cf8939c7298827e512" 502 | integrity sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q== 503 | 504 | eslint-visitor-keys@^1.0.0: 505 | version "1.0.0" 506 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 507 | integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ== 508 | 509 | eslint@^5.15.3: 510 | version "5.15.3" 511 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.15.3.tgz#c79c3909dc8a7fa3714fb340c11e30fd2526b8b5" 512 | integrity sha512-vMGi0PjCHSokZxE0NLp2VneGw5sio7SSiDNgIUn2tC0XkWJRNOIoHIg3CliLVfXnJsiHxGAYrkw0PieAu8+KYQ== 513 | dependencies: 514 | "@babel/code-frame" "^7.0.0" 515 | ajv "^6.9.1" 516 | chalk "^2.1.0" 517 | cross-spawn "^6.0.5" 518 | debug "^4.0.1" 519 | doctrine "^3.0.0" 520 | eslint-scope "^4.0.3" 521 | eslint-utils "^1.3.1" 522 | eslint-visitor-keys "^1.0.0" 523 | espree "^5.0.1" 524 | esquery "^1.0.1" 525 | esutils "^2.0.2" 526 | file-entry-cache "^5.0.1" 527 | functional-red-black-tree "^1.0.1" 528 | glob "^7.1.2" 529 | globals "^11.7.0" 530 | ignore "^4.0.6" 531 | import-fresh "^3.0.0" 532 | imurmurhash "^0.1.4" 533 | inquirer "^6.2.2" 534 | js-yaml "^3.12.0" 535 | json-stable-stringify-without-jsonify "^1.0.1" 536 | levn "^0.3.0" 537 | lodash "^4.17.11" 538 | minimatch "^3.0.4" 539 | mkdirp "^0.5.1" 540 | natural-compare "^1.4.0" 541 | optionator "^0.8.2" 542 | path-is-inside "^1.0.2" 543 | progress "^2.0.0" 544 | regexpp "^2.0.1" 545 | semver "^5.5.1" 546 | strip-ansi "^4.0.0" 547 | strip-json-comments "^2.0.1" 548 | table "^5.2.3" 549 | text-table "^0.2.0" 550 | 551 | espree@^5.0.1: 552 | version "5.0.1" 553 | resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.1.tgz#5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a" 554 | integrity sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A== 555 | dependencies: 556 | acorn "^6.0.7" 557 | acorn-jsx "^5.0.0" 558 | eslint-visitor-keys "^1.0.0" 559 | 560 | esprima@^4.0.0: 561 | version "4.0.1" 562 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 563 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 564 | 565 | esquery@^1.0.1: 566 | version "1.0.1" 567 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" 568 | integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== 569 | dependencies: 570 | estraverse "^4.0.0" 571 | 572 | esrecurse@^4.1.0: 573 | version "4.1.0" 574 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 575 | dependencies: 576 | estraverse "~4.1.0" 577 | object-assign "^4.0.1" 578 | 579 | estraverse@^4.0.0, estraverse@^4.1.1: 580 | version "4.2.0" 581 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 582 | 583 | estraverse@~4.1.0: 584 | version "4.1.1" 585 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 586 | 587 | estree-walker@^0.6.0: 588 | version "0.6.0" 589 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.0.tgz#5d865327c44a618dde5699f763891ae31f257dae" 590 | integrity sha512-peq1RfVAVzr3PU/jL31RaOjUKLoZJpObQWJJ+LgfcxDUifyLZ1RjPQZTl0pzj2uJ45b7A7XpyppXvxdEqzo4rw== 591 | 592 | esutils@^2.0.2: 593 | version "2.0.2" 594 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 595 | 596 | expand-brackets@^2.1.4: 597 | version "2.1.4" 598 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 599 | integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= 600 | dependencies: 601 | debug "^2.3.3" 602 | define-property "^0.2.5" 603 | extend-shallow "^2.0.1" 604 | posix-character-classes "^0.1.0" 605 | regex-not "^1.0.0" 606 | snapdragon "^0.8.1" 607 | to-regex "^3.0.1" 608 | 609 | extend-shallow@^2.0.1: 610 | version "2.0.1" 611 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 612 | integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= 613 | dependencies: 614 | is-extendable "^0.1.0" 615 | 616 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 617 | version "3.0.2" 618 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 619 | integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= 620 | dependencies: 621 | assign-symbols "^1.0.0" 622 | is-extendable "^1.0.1" 623 | 624 | external-editor@^3.0.3: 625 | version "3.0.3" 626 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.3.tgz#5866db29a97826dbe4bf3afd24070ead9ea43a27" 627 | integrity sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA== 628 | dependencies: 629 | chardet "^0.7.0" 630 | iconv-lite "^0.4.24" 631 | tmp "^0.0.33" 632 | 633 | extglob@^2.0.4: 634 | version "2.0.4" 635 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 636 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== 637 | dependencies: 638 | array-unique "^0.3.2" 639 | define-property "^1.0.0" 640 | expand-brackets "^2.1.4" 641 | extend-shallow "^2.0.1" 642 | fragment-cache "^0.2.1" 643 | regex-not "^1.0.0" 644 | snapdragon "^0.8.1" 645 | to-regex "^3.0.1" 646 | 647 | fast-deep-equal@^2.0.1: 648 | version "2.0.1" 649 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 650 | integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= 651 | 652 | fast-json-stable-stringify@^2.0.0: 653 | version "2.0.0" 654 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 655 | integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= 656 | 657 | fast-levenshtein@~2.0.4: 658 | version "2.0.6" 659 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 660 | 661 | figures@^2.0.0: 662 | version "2.0.0" 663 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 664 | integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= 665 | dependencies: 666 | escape-string-regexp "^1.0.5" 667 | 668 | file-entry-cache@^5.0.1: 669 | version "5.0.1" 670 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" 671 | integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== 672 | dependencies: 673 | flat-cache "^2.0.1" 674 | 675 | fill-range@^4.0.0: 676 | version "4.0.0" 677 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 678 | integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= 679 | dependencies: 680 | extend-shallow "^2.0.1" 681 | is-number "^3.0.0" 682 | repeat-string "^1.6.1" 683 | to-regex-range "^2.1.0" 684 | 685 | flat-cache@^2.0.1: 686 | version "2.0.1" 687 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" 688 | integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== 689 | dependencies: 690 | flatted "^2.0.0" 691 | rimraf "2.6.3" 692 | write "1.0.3" 693 | 694 | flatted@^2.0.0: 695 | version "2.0.0" 696 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.0.tgz#55122b6536ea496b4b44893ee2608141d10d9916" 697 | integrity sha512-R+H8IZclI8AAkSBRQJLVOsxwAoHd6WC40b4QTNWIjzAa6BXOBfQcM587MXDTVPeYaopFNWHUFLx7eNmHDSxMWg== 698 | 699 | for-in@^1.0.2: 700 | version "1.0.2" 701 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 702 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= 703 | 704 | foreach@^2.0.5: 705 | version "2.0.5" 706 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 707 | 708 | fragment-cache@^0.2.1: 709 | version "0.2.1" 710 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 711 | integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= 712 | dependencies: 713 | map-cache "^0.2.2" 714 | 715 | fs-extra@7.0.1: 716 | version "7.0.1" 717 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" 718 | integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== 719 | dependencies: 720 | graceful-fs "^4.1.2" 721 | jsonfile "^4.0.0" 722 | universalify "^0.1.0" 723 | 724 | fs.realpath@^1.0.0: 725 | version "1.0.0" 726 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 727 | 728 | function-bind@^1.1.0: 729 | version "1.1.0" 730 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 731 | 732 | function-bind@^1.1.1: 733 | version "1.1.1" 734 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 735 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 736 | 737 | functional-red-black-tree@^1.0.1: 738 | version "1.0.1" 739 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 740 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 741 | 742 | get-stdin@^6.0.0: 743 | version "6.0.0" 744 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" 745 | integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== 746 | 747 | get-value@^2.0.3, get-value@^2.0.6: 748 | version "2.0.6" 749 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 750 | integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= 751 | 752 | glob@^7.1.2, glob@^7.1.3: 753 | version "7.1.3" 754 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" 755 | integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== 756 | dependencies: 757 | fs.realpath "^1.0.0" 758 | inflight "^1.0.4" 759 | inherits "2" 760 | minimatch "^3.0.4" 761 | once "^1.3.0" 762 | path-is-absolute "^1.0.0" 763 | 764 | globals@^11.7.0: 765 | version "11.11.0" 766 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.11.0.tgz#dcf93757fa2de5486fbeed7118538adf789e9c2e" 767 | integrity sha512-WHq43gS+6ufNOEqlrDBxVEbb8ntfXrfAUU2ZOpCxrBdGKW3gyv8mCxAfIBD0DroPKGrJ2eSsXsLtY9MPntsyTw== 768 | 769 | graceful-fs@^4.1.2: 770 | version "4.1.11" 771 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 772 | 773 | graceful-fs@^4.1.6: 774 | version "4.1.15" 775 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" 776 | integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== 777 | 778 | has-flag@^3.0.0: 779 | version "3.0.0" 780 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 781 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 782 | 783 | has-symbols@^1.0.0: 784 | version "1.0.0" 785 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 786 | integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= 787 | 788 | has-value@^0.3.1: 789 | version "0.3.1" 790 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 791 | integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= 792 | dependencies: 793 | get-value "^2.0.3" 794 | has-values "^0.1.4" 795 | isobject "^2.0.0" 796 | 797 | has-value@^1.0.0: 798 | version "1.0.0" 799 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 800 | integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= 801 | dependencies: 802 | get-value "^2.0.6" 803 | has-values "^1.0.0" 804 | isobject "^3.0.0" 805 | 806 | has-values@^0.1.4: 807 | version "0.1.4" 808 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 809 | integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= 810 | 811 | has-values@^1.0.0: 812 | version "1.0.0" 813 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 814 | integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= 815 | dependencies: 816 | is-number "^3.0.0" 817 | kind-of "^4.0.0" 818 | 819 | has@^1.0.1, has@^1.0.3: 820 | version "1.0.3" 821 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 822 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 823 | dependencies: 824 | function-bind "^1.1.1" 825 | 826 | iconv-lite@^0.4.24: 827 | version "0.4.24" 828 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 829 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 830 | dependencies: 831 | safer-buffer ">= 2.1.2 < 3" 832 | 833 | ignore@^4.0.6: 834 | version "4.0.6" 835 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 836 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 837 | 838 | import-fresh@^3.0.0: 839 | version "3.0.0" 840 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.0.0.tgz#a3d897f420cab0e671236897f75bc14b4885c390" 841 | integrity sha512-pOnA9tfM3Uwics+SaBLCNyZZZbK+4PTu0OPZtLlMIrv17EdBoC15S9Kn8ckJ9TZTyKb3ywNE5y1yeDxxGA7nTQ== 842 | dependencies: 843 | parent-module "^1.0.0" 844 | resolve-from "^4.0.0" 845 | 846 | imurmurhash@^0.1.4: 847 | version "0.1.4" 848 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 849 | 850 | inflight@^1.0.4: 851 | version "1.0.6" 852 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 853 | dependencies: 854 | once "^1.3.0" 855 | wrappy "1" 856 | 857 | inherits@2: 858 | version "2.0.3" 859 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 860 | 861 | inquirer@^6.2.2: 862 | version "6.2.2" 863 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.2.tgz#46941176f65c9eb20804627149b743a218f25406" 864 | integrity sha512-Z2rREiXA6cHRR9KBOarR3WuLlFzlIfAEIiB45ll5SSadMg7WqOh1MKEjjndfuH5ewXdixWCxqnVfGOQzPeiztA== 865 | dependencies: 866 | ansi-escapes "^3.2.0" 867 | chalk "^2.4.2" 868 | cli-cursor "^2.1.0" 869 | cli-width "^2.0.0" 870 | external-editor "^3.0.3" 871 | figures "^2.0.0" 872 | lodash "^4.17.11" 873 | mute-stream "0.0.7" 874 | run-async "^2.2.0" 875 | rxjs "^6.4.0" 876 | string-width "^2.1.0" 877 | strip-ansi "^5.0.0" 878 | through "^2.3.6" 879 | 880 | is-accessor-descriptor@^0.1.6: 881 | version "0.1.6" 882 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 883 | integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= 884 | dependencies: 885 | kind-of "^3.0.2" 886 | 887 | is-accessor-descriptor@^1.0.0: 888 | version "1.0.0" 889 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 890 | integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== 891 | dependencies: 892 | kind-of "^6.0.0" 893 | 894 | is-buffer@^1.1.5: 895 | version "1.1.6" 896 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 897 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 898 | 899 | is-callable@^1.1.1, is-callable@^1.1.3: 900 | version "1.1.3" 901 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 902 | 903 | is-callable@^1.1.4: 904 | version "1.1.4" 905 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" 906 | integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== 907 | 908 | is-data-descriptor@^0.1.4: 909 | version "0.1.4" 910 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 911 | integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= 912 | dependencies: 913 | kind-of "^3.0.2" 914 | 915 | is-data-descriptor@^1.0.0: 916 | version "1.0.0" 917 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 918 | integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== 919 | dependencies: 920 | kind-of "^6.0.0" 921 | 922 | is-date-object@^1.0.1: 923 | version "1.0.1" 924 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 925 | 926 | is-descriptor@^0.1.0: 927 | version "0.1.6" 928 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 929 | integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== 930 | dependencies: 931 | is-accessor-descriptor "^0.1.6" 932 | is-data-descriptor "^0.1.4" 933 | kind-of "^5.0.0" 934 | 935 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 936 | version "1.0.2" 937 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 938 | integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== 939 | dependencies: 940 | is-accessor-descriptor "^1.0.0" 941 | is-data-descriptor "^1.0.0" 942 | kind-of "^6.0.2" 943 | 944 | is-extendable@^0.1.0, is-extendable@^0.1.1: 945 | version "0.1.1" 946 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 947 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= 948 | 949 | is-extendable@^1.0.1: 950 | version "1.0.1" 951 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 952 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== 953 | dependencies: 954 | is-plain-object "^2.0.4" 955 | 956 | is-fullwidth-code-point@^2.0.0: 957 | version "2.0.0" 958 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 959 | 960 | is-module@^1.0.0: 961 | version "1.0.0" 962 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" 963 | integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= 964 | 965 | is-number@^3.0.0: 966 | version "3.0.0" 967 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 968 | integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= 969 | dependencies: 970 | kind-of "^3.0.2" 971 | 972 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 973 | version "2.0.4" 974 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 975 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 976 | dependencies: 977 | isobject "^3.0.1" 978 | 979 | is-promise@^2.1.0: 980 | version "2.1.0" 981 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 982 | integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= 983 | 984 | is-regex@^1.0.3: 985 | version "1.0.3" 986 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.3.tgz#0d55182bddf9f2fde278220aec3a75642c908637" 987 | 988 | is-regex@^1.0.4: 989 | version "1.0.4" 990 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 991 | integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= 992 | dependencies: 993 | has "^1.0.1" 994 | 995 | is-symbol@^1.0.1: 996 | version "1.0.1" 997 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 998 | 999 | is-symbol@^1.0.2: 1000 | version "1.0.2" 1001 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" 1002 | integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== 1003 | dependencies: 1004 | has-symbols "^1.0.0" 1005 | 1006 | is-windows@^1.0.2: 1007 | version "1.0.2" 1008 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1009 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 1010 | 1011 | isarray@1.0.0: 1012 | version "1.0.0" 1013 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1014 | 1015 | isexe@^2.0.0: 1016 | version "2.0.0" 1017 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1018 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1019 | 1020 | isobject@^2.0.0: 1021 | version "2.1.0" 1022 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1023 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= 1024 | dependencies: 1025 | isarray "1.0.0" 1026 | 1027 | isobject@^3.0.0, isobject@^3.0.1: 1028 | version "3.0.1" 1029 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1030 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= 1031 | 1032 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1033 | version "4.0.0" 1034 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1035 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1036 | 1037 | js-yaml@^3.12.0: 1038 | version "3.12.2" 1039 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.2.tgz#ef1d067c5a9d9cb65bd72f285b5d8105c77f14fc" 1040 | integrity sha512-QHn/Lh/7HhZ/Twc7vJYQTkjuCa0kaCcDcjK5Zlk2rvnUpy7DxMJ23+Jc2dcyvltwQVg1nygAVlB2oRDFHoRS5Q== 1041 | dependencies: 1042 | argparse "^1.0.7" 1043 | esprima "^4.0.0" 1044 | 1045 | json-schema-traverse@^0.4.1: 1046 | version "0.4.1" 1047 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1048 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1049 | 1050 | json-stable-stringify-without-jsonify@^1.0.1: 1051 | version "1.0.1" 1052 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1053 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 1054 | 1055 | jsonfile@^4.0.0: 1056 | version "4.0.0" 1057 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 1058 | integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= 1059 | optionalDependencies: 1060 | graceful-fs "^4.1.6" 1061 | 1062 | jsx-ast-utils@^2.0.1: 1063 | version "2.0.1" 1064 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz#e801b1b39985e20fffc87b40e3748080e2dcac7f" 1065 | integrity sha1-6AGxs5mF4g//yHtA43SAgOLcrH8= 1066 | dependencies: 1067 | array-includes "^3.0.3" 1068 | 1069 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1070 | version "3.2.2" 1071 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1072 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= 1073 | dependencies: 1074 | is-buffer "^1.1.5" 1075 | 1076 | kind-of@^4.0.0: 1077 | version "4.0.0" 1078 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1079 | integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= 1080 | dependencies: 1081 | is-buffer "^1.1.5" 1082 | 1083 | kind-of@^5.0.0: 1084 | version "5.1.0" 1085 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 1086 | integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== 1087 | 1088 | kind-of@^6.0.0, kind-of@^6.0.2: 1089 | version "6.0.2" 1090 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1091 | integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== 1092 | 1093 | levn@^0.3.0, levn@~0.3.0: 1094 | version "0.3.0" 1095 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1096 | dependencies: 1097 | prelude-ls "~1.1.2" 1098 | type-check "~0.3.2" 1099 | 1100 | lodash.unescape@4.0.1: 1101 | version "4.0.1" 1102 | resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c" 1103 | integrity sha1-vyJJiGzlFM2hEvrpIYzcBlIR/Jw= 1104 | 1105 | lodash@^4.17.11: 1106 | version "4.17.11" 1107 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" 1108 | integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== 1109 | 1110 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1111 | version "1.4.0" 1112 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1113 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1114 | dependencies: 1115 | js-tokens "^3.0.0 || ^4.0.0" 1116 | 1117 | magic-string@^0.25.2: 1118 | version "0.25.2" 1119 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.2.tgz#139c3a729515ec55e96e69e82a11fe890a293ad9" 1120 | integrity sha512-iLs9mPjh9IuTtRsqqhNGYcZXGei0Nh/A4xirrsqW7c+QhKVFL2vm7U09ru6cHRD22azaP/wMDgI+HCqbETMTtg== 1121 | dependencies: 1122 | sourcemap-codec "^1.4.4" 1123 | 1124 | map-cache@^0.2.2: 1125 | version "0.2.2" 1126 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1127 | integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= 1128 | 1129 | map-visit@^1.0.0: 1130 | version "1.0.0" 1131 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 1132 | integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= 1133 | dependencies: 1134 | object-visit "^1.0.0" 1135 | 1136 | micromatch@^3.1.10: 1137 | version "3.1.10" 1138 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 1139 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== 1140 | dependencies: 1141 | arr-diff "^4.0.0" 1142 | array-unique "^0.3.2" 1143 | braces "^2.3.1" 1144 | define-property "^2.0.2" 1145 | extend-shallow "^3.0.2" 1146 | extglob "^2.0.4" 1147 | fragment-cache "^0.2.1" 1148 | kind-of "^6.0.2" 1149 | nanomatch "^1.2.9" 1150 | object.pick "^1.3.0" 1151 | regex-not "^1.0.0" 1152 | snapdragon "^0.8.1" 1153 | to-regex "^3.0.2" 1154 | 1155 | mimic-fn@^1.0.0: 1156 | version "1.2.0" 1157 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 1158 | integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== 1159 | 1160 | minimatch@^3.0.4: 1161 | version "3.0.4" 1162 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1163 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1164 | dependencies: 1165 | brace-expansion "^1.1.7" 1166 | 1167 | minimist@0.0.8: 1168 | version "0.0.8" 1169 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1170 | 1171 | mixin-deep@^1.2.0: 1172 | version "1.3.1" 1173 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 1174 | integrity sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ== 1175 | dependencies: 1176 | for-in "^1.0.2" 1177 | is-extendable "^1.0.1" 1178 | 1179 | mkdirp@^0.5.1: 1180 | version "0.5.1" 1181 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1182 | dependencies: 1183 | minimist "0.0.8" 1184 | 1185 | ms@0.7.2: 1186 | version "0.7.2" 1187 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1188 | 1189 | ms@2.0.0: 1190 | version "2.0.0" 1191 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1192 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1193 | 1194 | ms@^2.1.1: 1195 | version "2.1.1" 1196 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 1197 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 1198 | 1199 | mute-stream@0.0.7: 1200 | version "0.0.7" 1201 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1202 | integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= 1203 | 1204 | nanomatch@^1.2.9: 1205 | version "1.2.13" 1206 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 1207 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== 1208 | dependencies: 1209 | arr-diff "^4.0.0" 1210 | array-unique "^0.3.2" 1211 | define-property "^2.0.2" 1212 | extend-shallow "^3.0.2" 1213 | fragment-cache "^0.2.1" 1214 | is-windows "^1.0.2" 1215 | kind-of "^6.0.2" 1216 | object.pick "^1.3.0" 1217 | regex-not "^1.0.0" 1218 | snapdragon "^0.8.1" 1219 | to-regex "^3.0.1" 1220 | 1221 | natural-compare@^1.4.0: 1222 | version "1.4.0" 1223 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1224 | 1225 | nice-try@^1.0.4: 1226 | version "1.0.5" 1227 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 1228 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 1229 | 1230 | object-assign@^4.0.1, object-assign@^4.1.1: 1231 | version "4.1.1" 1232 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1233 | 1234 | object-copy@^0.1.0: 1235 | version "0.1.0" 1236 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 1237 | integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= 1238 | dependencies: 1239 | copy-descriptor "^0.1.0" 1240 | define-property "^0.2.5" 1241 | kind-of "^3.0.3" 1242 | 1243 | object-keys@^1.0.12: 1244 | version "1.1.0" 1245 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.0.tgz#11bd22348dd2e096a045ab06f6c85bcc340fa032" 1246 | integrity sha512-6OO5X1+2tYkNyNEx6TsCxEqFfRWaqx6EtMiSbGrw8Ob8v9Ne+Hl8rBAgLBZn5wjEz3s/s6U1WXFUFOcxxAwUpg== 1247 | 1248 | object-keys@^1.0.8: 1249 | version "1.0.11" 1250 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 1251 | 1252 | object-visit@^1.0.0: 1253 | version "1.0.1" 1254 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 1255 | integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= 1256 | dependencies: 1257 | isobject "^3.0.0" 1258 | 1259 | object.fromentries@^2.0.0: 1260 | version "2.0.0" 1261 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.0.tgz#49a543d92151f8277b3ac9600f1e930b189d30ab" 1262 | integrity sha512-9iLiI6H083uiqUuvzyY6qrlmc/Gz8hLQFOcb/Ri/0xXFkSNS3ctV+CbE6yM2+AnkYfOB3dGjdzC0wrMLIhQICA== 1263 | dependencies: 1264 | define-properties "^1.1.2" 1265 | es-abstract "^1.11.0" 1266 | function-bind "^1.1.1" 1267 | has "^1.0.1" 1268 | 1269 | object.pick@^1.3.0: 1270 | version "1.3.0" 1271 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 1272 | integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= 1273 | dependencies: 1274 | isobject "^3.0.1" 1275 | 1276 | once@^1.3.0: 1277 | version "1.4.0" 1278 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1279 | dependencies: 1280 | wrappy "1" 1281 | 1282 | onetime@^2.0.0: 1283 | version "2.0.1" 1284 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1285 | integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= 1286 | dependencies: 1287 | mimic-fn "^1.0.0" 1288 | 1289 | optionator@^0.8.2: 1290 | version "0.8.2" 1291 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1292 | dependencies: 1293 | deep-is "~0.1.3" 1294 | fast-levenshtein "~2.0.4" 1295 | levn "~0.3.0" 1296 | prelude-ls "~1.1.2" 1297 | type-check "~0.3.2" 1298 | wordwrap "~1.0.0" 1299 | 1300 | os-tmpdir@~1.0.2: 1301 | version "1.0.2" 1302 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1303 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 1304 | 1305 | parent-module@^1.0.0: 1306 | version "1.0.0" 1307 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.0.tgz#df250bdc5391f4a085fb589dad761f5ad6b865b5" 1308 | integrity sha512-8Mf5juOMmiE4FcmzYc4IaiS9L3+9paz2KOiXzkRviCP6aDmN49Hz6EMWz0lGNp9pX80GvvAuLADtyGfW/Em3TA== 1309 | dependencies: 1310 | callsites "^3.0.0" 1311 | 1312 | pascalcase@^0.1.1: 1313 | version "0.1.1" 1314 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 1315 | integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= 1316 | 1317 | path-is-absolute@^1.0.0: 1318 | version "1.0.1" 1319 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1320 | 1321 | path-is-inside@^1.0.2: 1322 | version "1.0.2" 1323 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1324 | integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= 1325 | 1326 | path-key@^2.0.1: 1327 | version "2.0.1" 1328 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1329 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 1330 | 1331 | path-parse@^1.0.6: 1332 | version "1.0.6" 1333 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 1334 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 1335 | 1336 | performance-now@^2.1.0: 1337 | version "2.1.0" 1338 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 1339 | integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= 1340 | 1341 | posix-character-classes@^0.1.0: 1342 | version "0.1.1" 1343 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 1344 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= 1345 | 1346 | prelude-ls@~1.1.2: 1347 | version "1.1.2" 1348 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1349 | 1350 | progress@^2.0.0: 1351 | version "2.0.3" 1352 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 1353 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 1354 | 1355 | prop-types@^15.6.2: 1356 | version "15.7.2" 1357 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" 1358 | integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== 1359 | dependencies: 1360 | loose-envify "^1.4.0" 1361 | object-assign "^4.1.1" 1362 | react-is "^16.8.1" 1363 | 1364 | punycode@^2.1.0: 1365 | version "2.1.1" 1366 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1367 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1368 | 1369 | raf@^3.4.1: 1370 | version "3.4.1" 1371 | resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39" 1372 | integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA== 1373 | dependencies: 1374 | performance-now "^2.1.0" 1375 | 1376 | react-dom@^16.8.6: 1377 | version "16.8.6" 1378 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.8.6.tgz#71d6303f631e8b0097f56165ef608f051ff6e10f" 1379 | integrity sha512-1nL7PIq9LTL3fthPqwkvr2zY7phIPjYrT0jp4HjyEQrEROnw4dG41VVwi/wfoCneoleqrNX7iAD+pXebJZwrwA== 1380 | dependencies: 1381 | loose-envify "^1.1.0" 1382 | object-assign "^4.1.1" 1383 | prop-types "^15.6.2" 1384 | scheduler "^0.13.6" 1385 | 1386 | react-is@^16.8.1: 1387 | version "16.8.4" 1388 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.4.tgz#90f336a68c3a29a096a3d648ab80e87ec61482a2" 1389 | integrity sha512-PVadd+WaUDOAciICm/J1waJaSvgq+4rHE/K70j0PFqKhkTBsPv/82UGQJNXAngz1fOQLLxI6z1sEDmJDQhCTAA== 1390 | 1391 | react@^16.8.6: 1392 | version "16.8.6" 1393 | resolved "https://registry.yarnpkg.com/react/-/react-16.8.6.tgz#ad6c3a9614fd3a4e9ef51117f54d888da01f2bbe" 1394 | integrity sha512-pC0uMkhLaHm11ZSJULfOBqV4tIZkx87ZLvbbQYunNixAAvjnC+snJCg0XQXn9VIsttVsbZP/H/ewzgsd5fxKXw== 1395 | dependencies: 1396 | loose-envify "^1.1.0" 1397 | object-assign "^4.1.1" 1398 | prop-types "^15.6.2" 1399 | scheduler "^0.13.6" 1400 | 1401 | rebound@^0.1.0: 1402 | version "0.1.0" 1403 | resolved "https://registry.yarnpkg.com/rebound/-/rebound-0.1.0.tgz#0638c61a93666bb515a58a03e1cfb34021e88b72" 1404 | integrity sha1-BjjGGpNma7UVpYoD4c+zQCHoi3I= 1405 | 1406 | regex-not@^1.0.0, regex-not@^1.0.2: 1407 | version "1.0.2" 1408 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 1409 | integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== 1410 | dependencies: 1411 | extend-shallow "^3.0.2" 1412 | safe-regex "^1.1.0" 1413 | 1414 | regexpp@^2.0.1: 1415 | version "2.0.1" 1416 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" 1417 | integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== 1418 | 1419 | repeat-element@^1.1.2: 1420 | version "1.1.3" 1421 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 1422 | integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== 1423 | 1424 | repeat-string@^1.6.1: 1425 | version "1.6.1" 1426 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1427 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= 1428 | 1429 | requireindex@^1.2.0: 1430 | version "1.2.0" 1431 | resolved "https://registry.yarnpkg.com/requireindex/-/requireindex-1.2.0.tgz#3463cdb22ee151902635aa6c9535d4de9c2ef1ef" 1432 | integrity sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww== 1433 | 1434 | resolve-from@^4.0.0: 1435 | version "4.0.0" 1436 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1437 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1438 | 1439 | resolve-url@^0.2.1: 1440 | version "0.2.1" 1441 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 1442 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 1443 | 1444 | resolve@1.10.0, resolve@^1.10.0, resolve@^1.9.0: 1445 | version "1.10.0" 1446 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba" 1447 | integrity sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg== 1448 | dependencies: 1449 | path-parse "^1.0.6" 1450 | 1451 | restore-cursor@^2.0.0: 1452 | version "2.0.0" 1453 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 1454 | integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= 1455 | dependencies: 1456 | onetime "^2.0.0" 1457 | signal-exit "^3.0.2" 1458 | 1459 | ret@~0.1.10: 1460 | version "0.1.15" 1461 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 1462 | integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== 1463 | 1464 | rimraf@2.6.3: 1465 | version "2.6.3" 1466 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 1467 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 1468 | dependencies: 1469 | glob "^7.1.3" 1470 | 1471 | rollup-plugin-commonjs@^9.2.2: 1472 | version "9.2.2" 1473 | resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-9.2.2.tgz#4959f3ff0d9706c132e5247b47ab385f11d9aae6" 1474 | integrity sha512-FXBgY+IvZIV2AZVT/0CPMsP+b1dKkxE+F6SHI9wddqKDV9KCGDA2cV5e/VsJLwXKFgrtliqMr7Rq3QBfPiJ8Xg== 1475 | dependencies: 1476 | estree-walker "^0.6.0" 1477 | magic-string "^0.25.2" 1478 | resolve "^1.10.0" 1479 | rollup-pluginutils "^2.5.0" 1480 | 1481 | rollup-plugin-node-resolve@^4.0.1: 1482 | version "4.0.1" 1483 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-4.0.1.tgz#f95765d174e5daeef9ea6268566141f53aa9d422" 1484 | integrity sha512-fSS7YDuCe0gYqKsr5OvxMloeZYUSgN43Ypi1WeRZzQcWtHgFayV5tUSPYpxuaioIIWaBXl6NrVk0T2/sKwueLg== 1485 | dependencies: 1486 | builtin-modules "^3.0.0" 1487 | is-module "^1.0.0" 1488 | resolve "^1.10.0" 1489 | 1490 | rollup-plugin-replace@^2.1.1: 1491 | version "2.1.1" 1492 | resolved "https://registry.yarnpkg.com/rollup-plugin-replace/-/rollup-plugin-replace-2.1.1.tgz#e49cb8d07d6f91a7bf28b90b66692f2c8c0b9bba" 1493 | integrity sha512-IS5ZYBb3px0UfbDCYzKaKxelLd5dbPHhfplEXbymfvGlz9Ok44At4AjTOWe2qEax73bE8+pnMZN9C7PcVpFNlw== 1494 | dependencies: 1495 | magic-string "^0.25.2" 1496 | rollup-pluginutils "^2.4.1" 1497 | 1498 | rollup-plugin-typescript2@^0.20.1: 1499 | version "0.20.1" 1500 | resolved "https://registry.yarnpkg.com/rollup-plugin-typescript2/-/rollup-plugin-typescript2-0.20.1.tgz#fb1d411975cd875d24882ea66f5f4fd11d2f2240" 1501 | integrity sha512-uxA5JQNOfmJ9rsO0yJKTObb1t4nNYUexCg9zxhEKF+NzZwljYWdfgrA06UzA24cOk8fQjGEe7Q5+Vge2vFlnnw== 1502 | dependencies: 1503 | fs-extra "7.0.1" 1504 | resolve "1.10.0" 1505 | rollup-pluginutils "2.4.1" 1506 | tslib "1.9.3" 1507 | 1508 | rollup-pluginutils@2.4.1: 1509 | version "2.4.1" 1510 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.4.1.tgz#de43ab54965bbf47843599a7f3adceb723de38db" 1511 | integrity sha512-wesMQ9/172IJDIW/lYWm0vW0LiKe5Ekjws481R7z9WTRtmO59cqyM/2uUlxvf6yzm/fElFmHUobeQOYz46dZJw== 1512 | dependencies: 1513 | estree-walker "^0.6.0" 1514 | micromatch "^3.1.10" 1515 | 1516 | rollup-pluginutils@^2.4.1, rollup-pluginutils@^2.5.0: 1517 | version "2.5.0" 1518 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.5.0.tgz#23be0f05ac3972ea7b08fc7870cb91fde5b23a09" 1519 | integrity sha512-9Muh1H+XB5f5ONmKMayUoTYR1EZwHbwJJ9oZLrKT5yuTf/RLIQ5mYIGsrERquVucJmjmaAW0Y7+6Qo1Ep+5w3Q== 1520 | dependencies: 1521 | estree-walker "^0.6.0" 1522 | micromatch "^3.1.10" 1523 | 1524 | rollup@^1.7.4: 1525 | version "1.7.4" 1526 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-1.7.4.tgz#dd9d1d4935d3db38f16e1caaef635d8d1b0831c4" 1527 | integrity sha512-nc86fETLHdozhRWlW/uNVIQ7ODuA1vU2/L8znAxP9TNMx1NA6GTth3llqoxxCle2kkyui+OfGzbKaQxD60NJjA== 1528 | dependencies: 1529 | "@types/estree" "0.0.39" 1530 | "@types/node" "^11.11.6" 1531 | acorn "^6.1.1" 1532 | 1533 | run-async@^2.2.0: 1534 | version "2.3.0" 1535 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 1536 | integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= 1537 | dependencies: 1538 | is-promise "^2.1.0" 1539 | 1540 | rxjs@^6.4.0: 1541 | version "6.4.0" 1542 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.4.0.tgz#f3bb0fe7bda7fb69deac0c16f17b50b0b8790504" 1543 | integrity sha512-Z9Yfa11F6B9Sg/BK9MnqnQ+aQYicPLtilXBp2yUtDt2JRCE0h26d33EnfO3ZxoNxG0T92OUucP3Ct7cpfkdFfw== 1544 | dependencies: 1545 | tslib "^1.9.0" 1546 | 1547 | safe-regex@^1.1.0: 1548 | version "1.1.0" 1549 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 1550 | integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= 1551 | dependencies: 1552 | ret "~0.1.10" 1553 | 1554 | "safer-buffer@>= 2.1.2 < 3": 1555 | version "2.1.2" 1556 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1557 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 1558 | 1559 | scheduler@^0.13.6: 1560 | version "0.13.6" 1561 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.13.6.tgz#466a4ec332467b31a91b9bf74e5347072e4cd889" 1562 | integrity sha512-IWnObHt413ucAYKsD9J1QShUKkbKLQQHdxRyw73sw4FN26iWr3DY/H34xGPe4nmL1DwXyWmSWmMrA9TfQbE/XQ== 1563 | dependencies: 1564 | loose-envify "^1.1.0" 1565 | object-assign "^4.1.1" 1566 | 1567 | semver@5.5.0: 1568 | version "5.5.0" 1569 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 1570 | integrity sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA== 1571 | 1572 | semver@^5.5.0, semver@^5.5.1: 1573 | version "5.6.0" 1574 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" 1575 | integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg== 1576 | 1577 | set-value@^0.4.3: 1578 | version "0.4.3" 1579 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 1580 | integrity sha1-fbCPnT0i3H945Trzw79GZuzfzPE= 1581 | dependencies: 1582 | extend-shallow "^2.0.1" 1583 | is-extendable "^0.1.1" 1584 | is-plain-object "^2.0.1" 1585 | to-object-path "^0.3.0" 1586 | 1587 | set-value@^2.0.0: 1588 | version "2.0.0" 1589 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 1590 | integrity sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg== 1591 | dependencies: 1592 | extend-shallow "^2.0.1" 1593 | is-extendable "^0.1.1" 1594 | is-plain-object "^2.0.3" 1595 | split-string "^3.0.1" 1596 | 1597 | shebang-command@^1.2.0: 1598 | version "1.2.0" 1599 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1600 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 1601 | dependencies: 1602 | shebang-regex "^1.0.0" 1603 | 1604 | shebang-regex@^1.0.0: 1605 | version "1.0.0" 1606 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1607 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 1608 | 1609 | signal-exit@^3.0.2: 1610 | version "3.0.2" 1611 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1612 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 1613 | 1614 | slice-ansi@^2.1.0: 1615 | version "2.1.0" 1616 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" 1617 | integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== 1618 | dependencies: 1619 | ansi-styles "^3.2.0" 1620 | astral-regex "^1.0.0" 1621 | is-fullwidth-code-point "^2.0.0" 1622 | 1623 | snapdragon-node@^2.0.1: 1624 | version "2.1.1" 1625 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 1626 | integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== 1627 | dependencies: 1628 | define-property "^1.0.0" 1629 | isobject "^3.0.0" 1630 | snapdragon-util "^3.0.1" 1631 | 1632 | snapdragon-util@^3.0.1: 1633 | version "3.0.1" 1634 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 1635 | integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== 1636 | dependencies: 1637 | kind-of "^3.2.0" 1638 | 1639 | snapdragon@^0.8.1: 1640 | version "0.8.2" 1641 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 1642 | integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== 1643 | dependencies: 1644 | base "^0.11.1" 1645 | debug "^2.2.0" 1646 | define-property "^0.2.5" 1647 | extend-shallow "^2.0.1" 1648 | map-cache "^0.2.2" 1649 | source-map "^0.5.6" 1650 | source-map-resolve "^0.5.0" 1651 | use "^3.1.0" 1652 | 1653 | source-map-resolve@^0.5.0: 1654 | version "0.5.2" 1655 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 1656 | integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== 1657 | dependencies: 1658 | atob "^2.1.1" 1659 | decode-uri-component "^0.2.0" 1660 | resolve-url "^0.2.1" 1661 | source-map-url "^0.4.0" 1662 | urix "^0.1.0" 1663 | 1664 | source-map-url@^0.4.0: 1665 | version "0.4.0" 1666 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 1667 | integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= 1668 | 1669 | source-map@^0.5.6: 1670 | version "0.5.7" 1671 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1672 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 1673 | 1674 | sourcemap-codec@^1.4.4: 1675 | version "1.4.4" 1676 | resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.4.tgz#c63ea927c029dd6bd9a2b7fa03b3fec02ad56e9f" 1677 | integrity sha512-CYAPYdBu34781kLHkaW3m6b/uUSyMOC2R61gcYMWooeuaGtjof86ZA/8T+qVPPt7np1085CR9hmMGrySwEc8Xg== 1678 | 1679 | split-string@^3.0.1, split-string@^3.0.2: 1680 | version "3.1.0" 1681 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 1682 | integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== 1683 | dependencies: 1684 | extend-shallow "^3.0.0" 1685 | 1686 | sprintf-js@~1.0.2: 1687 | version "1.0.3" 1688 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1689 | 1690 | static-extend@^0.1.1: 1691 | version "0.1.2" 1692 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 1693 | integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= 1694 | dependencies: 1695 | define-property "^0.2.5" 1696 | object-copy "^0.1.0" 1697 | 1698 | string-width@^2.1.0: 1699 | version "2.1.1" 1700 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1701 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 1702 | dependencies: 1703 | is-fullwidth-code-point "^2.0.0" 1704 | strip-ansi "^4.0.0" 1705 | 1706 | string-width@^3.0.0: 1707 | version "3.1.0" 1708 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 1709 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 1710 | dependencies: 1711 | emoji-regex "^7.0.1" 1712 | is-fullwidth-code-point "^2.0.0" 1713 | strip-ansi "^5.1.0" 1714 | 1715 | strip-ansi@^4.0.0: 1716 | version "4.0.0" 1717 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1718 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 1719 | dependencies: 1720 | ansi-regex "^3.0.0" 1721 | 1722 | strip-ansi@^5.0.0, strip-ansi@^5.1.0: 1723 | version "5.1.0" 1724 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.1.0.tgz#55aaa54e33b4c0649a7338a43437b1887d153ec4" 1725 | integrity sha512-TjxrkPONqO2Z8QDCpeE2j6n0M6EwxzyDgzEeGp+FbdvaJAt//ClYi6W5my+3ROlC/hZX2KACUwDfK49Ka5eDvg== 1726 | dependencies: 1727 | ansi-regex "^4.1.0" 1728 | 1729 | strip-json-comments@^2.0.1: 1730 | version "2.0.1" 1731 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1732 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 1733 | 1734 | supports-color@^5.3.0: 1735 | version "5.5.0" 1736 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1737 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1738 | dependencies: 1739 | has-flag "^3.0.0" 1740 | 1741 | table@^5.2.3: 1742 | version "5.2.3" 1743 | resolved "https://registry.yarnpkg.com/table/-/table-5.2.3.tgz#cde0cc6eb06751c009efab27e8c820ca5b67b7f2" 1744 | integrity sha512-N2RsDAMvDLvYwFcwbPyF3VmVSSkuF+G1e+8inhBLtHpvwXGw4QRPEZhihQNeEN0i1up6/f6ObCJXNdlRG3YVyQ== 1745 | dependencies: 1746 | ajv "^6.9.1" 1747 | lodash "^4.17.11" 1748 | slice-ansi "^2.1.0" 1749 | string-width "^3.0.0" 1750 | 1751 | text-table@^0.2.0: 1752 | version "0.2.0" 1753 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1754 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 1755 | 1756 | through@^2.3.6: 1757 | version "2.3.8" 1758 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1759 | 1760 | tmp@^0.0.33: 1761 | version "0.0.33" 1762 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 1763 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== 1764 | dependencies: 1765 | os-tmpdir "~1.0.2" 1766 | 1767 | to-object-path@^0.3.0: 1768 | version "0.3.0" 1769 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 1770 | integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= 1771 | dependencies: 1772 | kind-of "^3.0.2" 1773 | 1774 | to-regex-range@^2.1.0: 1775 | version "2.1.1" 1776 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 1777 | integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= 1778 | dependencies: 1779 | is-number "^3.0.0" 1780 | repeat-string "^1.6.1" 1781 | 1782 | to-regex@^3.0.1, to-regex@^3.0.2: 1783 | version "3.0.2" 1784 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 1785 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== 1786 | dependencies: 1787 | define-property "^2.0.2" 1788 | extend-shallow "^3.0.2" 1789 | regex-not "^1.0.2" 1790 | safe-regex "^1.1.0" 1791 | 1792 | tslib@1.9.3, tslib@^1.8.1, tslib@^1.9.0: 1793 | version "1.9.3" 1794 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" 1795 | integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ== 1796 | 1797 | tsutils@^3.7.0: 1798 | version "3.9.1" 1799 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.9.1.tgz#2a40dc742943c71eca6d5c1994fcf999956be387" 1800 | integrity sha512-hrxVtLtPqQr//p8/msPT1X1UYXUjizqSit5d9AQ5k38TcV38NyecL5xODNxa73cLe/5sdiJ+w1FqzDhRBA/anA== 1801 | dependencies: 1802 | tslib "^1.8.1" 1803 | 1804 | type-check@~0.3.2: 1805 | version "0.3.2" 1806 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1807 | dependencies: 1808 | prelude-ls "~1.1.2" 1809 | 1810 | typescript@^3.3.4000: 1811 | version "3.3.4000" 1812 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.3.4000.tgz#76b0f89cfdbf97827e1112d64f283f1151d6adf0" 1813 | integrity sha512-jjOcCZvpkl2+z7JFn0yBOoLQyLoIkNZAs/fYJkUG6VKy6zLPHJGfQJYFHzibB6GJaF/8QrcECtlQ5cpvRHSMEA== 1814 | 1815 | union-value@^1.0.0: 1816 | version "1.0.0" 1817 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 1818 | integrity sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ= 1819 | dependencies: 1820 | arr-union "^3.1.0" 1821 | get-value "^2.0.6" 1822 | is-extendable "^0.1.1" 1823 | set-value "^0.4.3" 1824 | 1825 | universalify@^0.1.0: 1826 | version "0.1.2" 1827 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 1828 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 1829 | 1830 | unset-value@^1.0.0: 1831 | version "1.0.0" 1832 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 1833 | integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= 1834 | dependencies: 1835 | has-value "^0.3.1" 1836 | isobject "^3.0.0" 1837 | 1838 | uri-js@^4.2.2: 1839 | version "4.2.2" 1840 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 1841 | integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== 1842 | dependencies: 1843 | punycode "^2.1.0" 1844 | 1845 | urix@^0.1.0: 1846 | version "0.1.0" 1847 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 1848 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 1849 | 1850 | use@^3.1.0: 1851 | version "3.1.1" 1852 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 1853 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== 1854 | 1855 | which@^1.2.9: 1856 | version "1.3.1" 1857 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 1858 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 1859 | dependencies: 1860 | isexe "^2.0.0" 1861 | 1862 | wordwrap@~1.0.0: 1863 | version "1.0.0" 1864 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1865 | 1866 | wrappy@1: 1867 | version "1.0.2" 1868 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1869 | 1870 | write@1.0.3: 1871 | version "1.0.3" 1872 | resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" 1873 | integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== 1874 | dependencies: 1875 | mkdirp "^0.5.1" 1876 | --------------------------------------------------------------------------------