├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── example └── testForm.html ├── package.json ├── rollup.config.js ├── src └── index.js ├── umd └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["@babel/preset-env", { "modules": false }] 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "eslint:recommended" 4 | ], 5 | "parserOptions": { 6 | "sourceType": "module" 7 | }, 8 | "env": { 9 | "browser": true, 10 | "node": true, 11 | "es6": true 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | /dist/ 3 | .DS_Store 4 | package-lock.json 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Anton 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # dom-focus-lock 2 | 3 | It is a trap! We got your focus and will not let him out! 4 | 5 | [![NPM](https://nodei.co/npm/dom-focus-lock.png?downloads=true&stars=true)](https://nodei.co/npm/dom-focus-lock/) 6 | 7 | This is a small, but very useful for: 8 | 9 | - Modal dialogs. You can not leave it with "Tab", ie tab-out. 10 | - Focused tasks. It will aways brings you back. 11 | 12 | You have to use it in _every_ modal dialog, or you accessibility will be shitty. 13 | 14 | # How to use 15 | 16 | Just include script 17 | 18 | ```html 19 | 20 | ``` 21 | Or require it from JS 22 | 23 | ```js 24 | import focusLock from 'dom-focus-lock' 25 | ``` 26 | Then, activate the lock on desired node 27 | 28 | ```js 29 | focusLock.on(domNode); 30 | //..... 31 | focusLock.off(domNode); 32 | ``` 33 | 34 | # Why? 35 | 36 | From [MDN Article about accessible dialogs](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_dialog_role): 37 | 38 | - The dialog must be properly labeled 39 | - Keyboard __focus must be managed__ correctly 40 | 41 | This one is about managing the focus. 42 | 43 | I'v got a good [article about focus management, dialogs and WAI-ARIA](https://medium.com/@antonkorzunov/its-a-focus-trap-699a04d66fb5). 44 | 45 | # Behavior 46 | 47 | 0. It will always keep focus inside Lock. 48 | 1. It will cycle forward then you press Tab. 49 | 2. It will cycle in reverse direction on Shift+Tab. 50 | 3. It will do it using _browser_ tools, not emulation. 51 | 4. It will handle positive tabIndex inside form. 52 | 5. It will prevent any jump outside, returning focus to the last element. 53 | 54 | You can use nested Locks or have more than one Lock on the page. 55 | Only `last`, or `deepest` one will work. No fighting. 56 | 57 | # API 58 | 59 | FocusLock has only 3 props, 2 of them you will never use (I hope): 60 | 61 | - `disabled`, to disable(enable) behavior without altering the tree. 62 | 63 | # How it works 64 | 65 | Everything is simple - dom-focus-lock just dont left focus left boundaries of component, and 66 | do something only if escape attempt was succeeded. 67 | 68 | It is not altering tabbing behavior at all. We are good citizens. 69 | 70 | # Not using a vanilla JS? 71 | 72 | Try [react-focus-lock](https://github.com/theKashey/react-focus-lock) or [vue-focus-lock](https://github.com/theKashey/vue-focus-lock) 73 | 74 | # Licence 75 | 76 | MIT 77 | -------------------------------------------------------------------------------- /example/testForm.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Focus Lock demo 4 | 5 | 6 | 7 |
8 | Focus lock demo: 9 |
10 | first link, second link.
11 | 12 | (first tabbable element) 13 | 14 |
15 | Lock content 16 | first link, second link.
17 | 18 | (second tabbable element) 19 | third link, last link.
20 | 21 | 22 |
23 | 24 | 25 |
26 |
27 | 53 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "dom-focus-lock", 3 | "version": "1.1.0", 4 | "description": "It is a trap! (for a focus)", 5 | "author": "theKashey ", 6 | "license": "MIT", 7 | "main": "dist/index.js", 8 | "module": "dist/index.esm.js", 9 | "unpkg": "umd/index.js", 10 | "scripts": { 11 | "build": "rollup --config rollup.config.js", 12 | "prepublishOnly": "npm run build", 13 | "lint": "eslint src tests", 14 | "lint:fix": "eslint src tests --fix", 15 | "test": "ws --static.index example/testForm.html --open" 16 | }, 17 | "files": [ 18 | "src", 19 | "dist", 20 | "umd" 21 | ], 22 | "dependencies": { 23 | "focus-lock": "^0.11.3" 24 | }, 25 | "devDependencies": { 26 | "@babel/core": "^7.3.4", 27 | "@babel/preset-env": "^7.3.4", 28 | "eslint": "^4.6.0", 29 | "local-web-server": "^2.6.1", 30 | "rollup": "^1.5.0", 31 | "rollup-plugin-babel": "^4.3.2", 32 | "rollup-plugin-commonjs": "^9.2.1", 33 | "rollup-plugin-node-globals": "^1.4.0", 34 | "rollup-plugin-node-resolve": "^4.0.1" 35 | }, 36 | "browserslist": [ 37 | "last 2 versions" 38 | ], 39 | "keywords": [ 40 | "vanilla", 41 | "dom", 42 | "modals", 43 | "focus", 44 | "lock", 45 | "trap", 46 | "tabbable" 47 | ], 48 | "repository": { 49 | "type": "git", 50 | "url": "git+https://github.com/theKashey/dom-focus-lock.git" 51 | }, 52 | "bugs": { 53 | "url": "https://github.com/theKashey/dom-focus-lock/issues" 54 | }, 55 | "homepage": "https://github.com/theKashey/dom-focus-lock#readme" 56 | } 57 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const babel = require('rollup-plugin-babel'); 4 | const resolve = require('rollup-plugin-node-resolve'); 5 | const commonjs = require('rollup-plugin-commonjs'); 6 | const globals = require('rollup-plugin-node-globals'); 7 | 8 | module.exports = [{ 9 | input: 'src/index.js', 10 | output: [ 11 | { 12 | file: 'dist/index.js', 13 | format: 'cjs' 14 | }, 15 | { 16 | file: 'dist/index.esm.js', 17 | format: 'esm' 18 | } 19 | ], 20 | plugins: [ 21 | babel({ 22 | exclude: 'node_modules/**' 23 | }) 24 | ], 25 | external: [ 26 | 'focus-lock' 27 | ] 28 | }, { 29 | input: 'src/index.js', 30 | output: [ 31 | { 32 | file: 'umd/index.js', 33 | format: 'umd', 34 | name: 'focusLock' 35 | } 36 | ], 37 | plugins: [ 38 | babel({ 39 | exclude: 'node_modules/**' 40 | }), 41 | resolve(), 42 | commonjs(), 43 | globals() 44 | ] 45 | }]; 46 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import moveFocusInside, {focusInside, focusIsHidden} from 'focus-lock'; 2 | 3 | let lastActiveTrap = 0; 4 | let lastActiveFocus = null; 5 | 6 | 7 | const focusOnBody = () => ( 8 | document && document.activeElement === document.body 9 | ); 10 | 11 | const isFreeFocus = () => focusOnBody() || focusIsHidden(); 12 | 13 | 14 | const activateTrap = () => { 15 | let result = false; 16 | if (lastActiveTrap) { 17 | const observed = lastActiveTrap; 18 | if(!isFreeFocus()) { 19 | if (observed && !focusInside(observed)) { 20 | result = moveFocusInside(observed, lastActiveFocus); 21 | } 22 | lastActiveFocus = document.activeElement; 23 | } 24 | } 25 | return result; 26 | }; 27 | 28 | const reducePropsToState = (propsList) => { 29 | return propsList 30 | .filter(node => node) 31 | .slice(-1)[0]; 32 | }; 33 | 34 | const handleStateChangeOnClient = (trap) => { 35 | lastActiveTrap = trap; 36 | if (trap) { 37 | activateTrap(); 38 | } 39 | }; 40 | 41 | let instances = []; 42 | 43 | const emitChange = (event) => { 44 | if (handleStateChangeOnClient(reducePropsToState(instances))) { 45 | event && event.preventDefault(); 46 | return true; 47 | } 48 | return false; 49 | }; 50 | 51 | const attachHandler = () => { 52 | document.addEventListener('focusin', emitChange); 53 | }; 54 | 55 | const detachHandler = () => { 56 | document.removeEventListener('focusin', emitChange); 57 | }; 58 | 59 | const focusLock = { 60 | on(domNode){ 61 | if (instances.length === 0) { 62 | attachHandler(); 63 | } 64 | if (instances.indexOf(domNode) < 0) { 65 | instances.push(domNode); 66 | emitChange(); 67 | } 68 | }, 69 | 70 | off(domNode){ 71 | instances = instances.filter(node => node !== domNode); 72 | emitChange(); 73 | if (instances.length === 0) { 74 | detachHandler(); 75 | } 76 | } 77 | }; 78 | 79 | export default focusLock; 80 | -------------------------------------------------------------------------------- /umd/index.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, global.focusLock = factory()); 5 | }(this, function () { 'use strict'; 6 | 7 | /** 8 | * defines a focus group 9 | */ 10 | var FOCUS_GROUP = 'data-focus-lock'; 11 | /** 12 | * disables element discovery inside a group marked by key 13 | */ 14 | var FOCUS_DISABLED = 'data-focus-lock-disabled'; 15 | /** 16 | * allows uncontrolled focus within the marked area, effectively disabling focus lock for it's content 17 | */ 18 | var FOCUS_ALLOW = 'data-no-focus-lock'; 19 | /** 20 | * instructs autofocus engine to pick default autofocus inside a given node 21 | * can be set on the element or container 22 | */ 23 | var FOCUS_AUTO = 'data-autofocus-inside'; 24 | /** 25 | * instructs autofocus to ignore elements within a given node 26 | * can be set on the element or container 27 | */ 28 | var FOCUS_NO_AUTOFOCUS = 'data-no-autofocus'; 29 | 30 | /* 31 | IE11 support 32 | */ 33 | var toArray = function (a) { 34 | var ret = Array(a.length); 35 | for (var i = 0; i < a.length; ++i) { 36 | ret[i] = a[i]; 37 | } 38 | return ret; 39 | }; 40 | var asArray = function (a) { return (Array.isArray(a) ? a : [a]); }; 41 | 42 | var isElementHidden = function (node) { 43 | // we can measure only "elements" 44 | // consider others as "visible" 45 | if (node.nodeType !== Node.ELEMENT_NODE) { 46 | return false; 47 | } 48 | var computedStyle = window.getComputedStyle(node, null); 49 | if (!computedStyle || !computedStyle.getPropertyValue) { 50 | return false; 51 | } 52 | return (computedStyle.getPropertyValue('display') === 'none' || computedStyle.getPropertyValue('visibility') === 'hidden'); 53 | }; 54 | var getParentNode = function (node) { 55 | // DOCUMENT_FRAGMENT_NODE can also point on ShadowRoot. In this case .host will point on the next node 56 | return node.parentNode && node.parentNode.nodeType === Node.DOCUMENT_FRAGMENT_NODE 57 | ? // eslint-disable-next-line @typescript-eslint/no-explicit-any 58 | node.parentNode.host 59 | : node.parentNode; 60 | }; 61 | var isTopNode = function (node) { 62 | // @ts-ignore 63 | return node === document || (node && node.nodeType === Node.DOCUMENT_NODE); 64 | }; 65 | var isVisibleUncached = function (node, checkParent) { 66 | return !node || isTopNode(node) || (!isElementHidden(node) && checkParent(getParentNode(node))); 67 | }; 68 | var isVisibleCached = function (visibilityCache, node) { 69 | var cached = visibilityCache.get(node); 70 | if (cached !== undefined) { 71 | return cached; 72 | } 73 | var result = isVisibleUncached(node, isVisibleCached.bind(undefined, visibilityCache)); 74 | visibilityCache.set(node, result); 75 | return result; 76 | }; 77 | var isAutoFocusAllowedUncached = function (node, checkParent) { 78 | return node && !isTopNode(node) ? (isAutoFocusAllowed(node) ? checkParent(getParentNode(node)) : false) : true; 79 | }; 80 | var isAutoFocusAllowedCached = function (cache, node) { 81 | var cached = cache.get(node); 82 | if (cached !== undefined) { 83 | return cached; 84 | } 85 | var result = isAutoFocusAllowedUncached(node, isAutoFocusAllowedCached.bind(undefined, cache)); 86 | cache.set(node, result); 87 | return result; 88 | }; 89 | var getDataset = function (node) { 90 | // @ts-ignore 91 | return node.dataset; 92 | }; 93 | var isHTMLButtonElement = function (node) { return node.tagName === 'BUTTON'; }; 94 | var isHTMLInputElement = function (node) { return node.tagName === 'INPUT'; }; 95 | var isRadioElement = function (node) { 96 | return isHTMLInputElement(node) && node.type === 'radio'; 97 | }; 98 | var notHiddenInput = function (node) { 99 | return !((isHTMLInputElement(node) || isHTMLButtonElement(node)) && (node.type === 'hidden' || node.disabled)); 100 | }; 101 | var isAutoFocusAllowed = function (node) { 102 | var attribute = node.getAttribute(FOCUS_NO_AUTOFOCUS); 103 | return ![true, 'true', ''].includes(attribute); 104 | }; 105 | var isGuard = function (node) { var _a; return Boolean(node && ((_a = getDataset(node)) === null || _a === void 0 ? void 0 : _a.focusGuard)); }; 106 | var isNotAGuard = function (node) { return !isGuard(node); }; 107 | var isDefined = function (x) { return Boolean(x); }; 108 | 109 | var tabSort = function (a, b) { 110 | var tabDiff = a.tabIndex - b.tabIndex; 111 | var indexDiff = a.index - b.index; 112 | if (tabDiff) { 113 | if (!a.tabIndex) { 114 | return 1; 115 | } 116 | if (!b.tabIndex) { 117 | return -1; 118 | } 119 | } 120 | return tabDiff || indexDiff; 121 | }; 122 | var orderByTabIndex = function (nodes, filterNegative, keepGuards) { 123 | return toArray(nodes) 124 | .map(function (node, index) { return ({ 125 | node: node, 126 | index: index, 127 | tabIndex: keepGuards && node.tabIndex === -1 ? ((node.dataset || {}).focusGuard ? 0 : -1) : node.tabIndex, 128 | }); }) 129 | .filter(function (data) { return !filterNegative || data.tabIndex >= 0; }) 130 | .sort(tabSort); 131 | }; 132 | 133 | /** 134 | * list of the object to be considered as focusable 135 | */ 136 | var tabbables = [ 137 | 'button:enabled', 138 | 'select:enabled', 139 | 'textarea:enabled', 140 | 'input:enabled', 141 | // elements with explicit roles will also use explicit tabindex 142 | // '[role="button"]', 143 | 'a[href]', 144 | 'area[href]', 145 | 'summary', 146 | 'iframe', 147 | 'object', 148 | 'embed', 149 | 'audio[controls]', 150 | 'video[controls]', 151 | '[tabindex]', 152 | '[contenteditable]', 153 | '[autofocus]', 154 | ]; 155 | 156 | var queryTabbables = tabbables.join(','); 157 | var queryGuardTabbables = "".concat(queryTabbables, ", [data-focus-guard]"); 158 | var getFocusablesWithShadowDom = function (parent, withGuards) { 159 | var _a; 160 | return toArray(((_a = parent.shadowRoot) === null || _a === void 0 ? void 0 : _a.children) || parent.children).reduce(function (acc, child) { 161 | return acc.concat(child.matches(withGuards ? queryGuardTabbables : queryTabbables) ? [child] : [], getFocusablesWithShadowDom(child)); 162 | }, []); 163 | }; 164 | var getFocusables = function (parents, withGuards) { 165 | return parents.reduce(function (acc, parent) { 166 | return acc.concat( 167 | // add all tabbables inside and within shadow DOMs in DOM order 168 | getFocusablesWithShadowDom(parent, withGuards), 169 | // add if node is tabbable itself 170 | parent.parentNode 171 | ? toArray(parent.parentNode.querySelectorAll(queryTabbables)).filter(function (node) { return node === parent; }) 172 | : []); 173 | }, []); 174 | }; 175 | /** 176 | * return a list of focusable nodes within an area marked as "auto-focusable" 177 | * @param parent 178 | */ 179 | var getParentAutofocusables = function (parent) { 180 | var parentFocus = parent.querySelectorAll("[".concat(FOCUS_AUTO, "]")); 181 | return toArray(parentFocus) 182 | .map(function (node) { return getFocusables([node]); }) 183 | .reduce(function (acc, nodes) { return acc.concat(nodes); }, []); 184 | }; 185 | 186 | /** 187 | * given list of focusable elements keeps the ones user can interact with 188 | * @param nodes 189 | * @param visibilityCache 190 | */ 191 | var filterFocusable = function (nodes, visibilityCache) { 192 | return toArray(nodes) 193 | .filter(function (node) { return isVisibleCached(visibilityCache, node); }) 194 | .filter(function (node) { return notHiddenInput(node); }); 195 | }; 196 | var filterAutoFocusable = function (nodes, cache) { 197 | if (cache === void 0) { cache = new Map(); } 198 | return toArray(nodes).filter(function (node) { return isAutoFocusAllowedCached(cache, node); }); 199 | }; 200 | /** 201 | * only tabbable ones 202 | * (but with guards which would be ignored) 203 | */ 204 | var getTabbableNodes = function (topNodes, visibilityCache, withGuards) { 205 | return orderByTabIndex(filterFocusable(getFocusables(topNodes, withGuards), visibilityCache), true, withGuards); 206 | }; 207 | /** 208 | * actually anything "focusable", not only tabbable 209 | * (without guards, as long as they are not expected to be focused) 210 | */ 211 | var getAllTabbableNodes = function (topNodes, visibilityCache) { 212 | return orderByTabIndex(filterFocusable(getFocusables(topNodes), visibilityCache), false); 213 | }; 214 | /** 215 | * return list of nodes which are expected to be auto-focused 216 | * @param topNode 217 | * @param visibilityCache 218 | */ 219 | var parentAutofocusables = function (topNode, visibilityCache) { 220 | return filterFocusable(getParentAutofocusables(topNode), visibilityCache); 221 | }; 222 | /* 223 | * Determines if element is contained in scope, including nested shadow DOMs 224 | */ 225 | var contains = function (scope, element) { 226 | if (scope.shadowRoot) { 227 | return contains(scope.shadowRoot, element); 228 | } 229 | else { 230 | if (Object.getPrototypeOf(scope).contains !== undefined && 231 | Object.getPrototypeOf(scope).contains.call(scope, element)) { 232 | return true; 233 | } 234 | return toArray(scope.children).some(function (child) { return contains(child, element); }); 235 | } 236 | }; 237 | 238 | /** 239 | * in case of multiple nodes nested inside each other 240 | * keeps only top ones 241 | * this is O(nlogn) 242 | * @param nodes 243 | * @returns {*} 244 | */ 245 | var filterNested = function (nodes) { 246 | var contained = new Set(); 247 | var l = nodes.length; 248 | for (var i = 0; i < l; i += 1) { 249 | for (var j = i + 1; j < l; j += 1) { 250 | var position = nodes[i].compareDocumentPosition(nodes[j]); 251 | /* eslint-disable no-bitwise */ 252 | if ((position & Node.DOCUMENT_POSITION_CONTAINED_BY) > 0) { 253 | contained.add(j); 254 | } 255 | if ((position & Node.DOCUMENT_POSITION_CONTAINS) > 0) { 256 | contained.add(i); 257 | } 258 | /* eslint-enable */ 259 | } 260 | } 261 | return nodes.filter(function (_, index) { return !contained.has(index); }); 262 | }; 263 | /** 264 | * finds top most parent for a node 265 | * @param node 266 | * @returns {*} 267 | */ 268 | var getTopParent = function (node) { 269 | return node.parentNode ? getTopParent(node.parentNode) : node; 270 | }; 271 | /** 272 | * returns all "focus containers" inside a given node 273 | * @param node 274 | * @returns {T} 275 | */ 276 | var getAllAffectedNodes = function (node) { 277 | var nodes = asArray(node); 278 | return nodes.filter(Boolean).reduce(function (acc, currentNode) { 279 | var group = currentNode.getAttribute(FOCUS_GROUP); 280 | acc.push.apply(acc, (group 281 | ? filterNested(toArray(getTopParent(currentNode).querySelectorAll("[".concat(FOCUS_GROUP, "=\"").concat(group, "\"]:not([").concat(FOCUS_DISABLED, "=\"disabled\"])")))) 282 | : [currentNode])); 283 | return acc; 284 | }, []); 285 | }; 286 | 287 | var getNestedShadowActiveElement = function (shadowRoot) { 288 | return shadowRoot.activeElement 289 | ? shadowRoot.activeElement.shadowRoot 290 | ? getNestedShadowActiveElement(shadowRoot.activeElement.shadowRoot) 291 | : shadowRoot.activeElement 292 | : undefined; 293 | }; 294 | /** 295 | * returns active element from document or from nested shadowdoms 296 | */ 297 | var getActiveElement = function () { 298 | return (document.activeElement 299 | ? document.activeElement.shadowRoot 300 | ? getNestedShadowActiveElement(document.activeElement.shadowRoot) 301 | : document.activeElement 302 | : undefined); // eslint-disable-next-line @typescript-eslint/no-explicit-any 303 | }; 304 | 305 | var focusInFrame = function (frame) { return frame === document.activeElement; }; 306 | var focusInsideIframe = function (topNode) { 307 | return Boolean(toArray(topNode.querySelectorAll('iframe')).some(function (node) { return focusInFrame(node); })); 308 | }; 309 | /** 310 | * @returns {Boolean} true, if the current focus is inside given node or nodes 311 | */ 312 | var focusInside = function (topNode) { 313 | var activeElement = document && getActiveElement(); 314 | if (!activeElement || (activeElement.dataset && activeElement.dataset.focusGuard)) { 315 | return false; 316 | } 317 | return getAllAffectedNodes(topNode).some(function (node) { return contains(node, activeElement) || focusInsideIframe(node); }); 318 | }; 319 | 320 | /** 321 | * focus is hidden FROM the focus-lock 322 | * ie contained inside a node focus-lock shall ignore 323 | * @returns {boolean} focus is currently is in "allow" area 324 | */ 325 | var focusIsHidden = function () { 326 | var activeElement = document && getActiveElement(); 327 | if (!activeElement) { 328 | return false; 329 | } 330 | // this does not support setting FOCUS_ALLOW within shadow dom 331 | return toArray(document.querySelectorAll("[".concat(FOCUS_ALLOW, "]"))).some(function (node) { return contains(node, activeElement); }); 332 | }; 333 | 334 | var findSelectedRadio = function (node, nodes) { 335 | return nodes 336 | .filter(isRadioElement) 337 | .filter(function (el) { return el.name === node.name; }) 338 | .filter(function (el) { return el.checked; })[0] || node; 339 | }; 340 | var correctNode = function (node, nodes) { 341 | if (isRadioElement(node) && node.name) { 342 | return findSelectedRadio(node, nodes); 343 | } 344 | return node; 345 | }; 346 | /** 347 | * giving a set of radio inputs keeps only selected (tabbable) ones 348 | * @param nodes 349 | */ 350 | var correctNodes = function (nodes) { 351 | // IE11 has no Set(array) constructor 352 | var resultSet = new Set(); 353 | nodes.forEach(function (node) { return resultSet.add(correctNode(node, nodes)); }); 354 | // using filter to support IE11 355 | return nodes.filter(function (node) { return resultSet.has(node); }); 356 | }; 357 | 358 | var pickFirstFocus = function (nodes) { 359 | if (nodes[0] && nodes.length > 1) { 360 | return correctNode(nodes[0], nodes); 361 | } 362 | return nodes[0]; 363 | }; 364 | var pickFocusable = function (nodes, index) { 365 | if (nodes.length > 1) { 366 | return nodes.indexOf(correctNode(nodes[index], nodes)); 367 | } 368 | return index; 369 | }; 370 | 371 | var NEW_FOCUS = 'NEW_FOCUS'; 372 | /** 373 | * Main solver for the "find next focus" question 374 | * @param innerNodes 375 | * @param outerNodes 376 | * @param activeElement 377 | * @param lastNode 378 | * @returns {number|string|undefined|*} 379 | */ 380 | var newFocus = function (innerNodes, outerNodes, activeElement, lastNode) { 381 | var cnt = innerNodes.length; 382 | var firstFocus = innerNodes[0]; 383 | var lastFocus = innerNodes[cnt - 1]; 384 | var isOnGuard = isGuard(activeElement); 385 | // focus is inside 386 | if (activeElement && innerNodes.indexOf(activeElement) >= 0) { 387 | return undefined; 388 | } 389 | var activeIndex = activeElement !== undefined ? outerNodes.indexOf(activeElement) : -1; 390 | var lastIndex = lastNode ? outerNodes.indexOf(lastNode) : activeIndex; 391 | var lastNodeInside = lastNode ? innerNodes.indexOf(lastNode) : -1; 392 | var indexDiff = activeIndex - lastIndex; 393 | var firstNodeIndex = outerNodes.indexOf(firstFocus); 394 | var lastNodeIndex = outerNodes.indexOf(lastFocus); 395 | var correctedNodes = correctNodes(outerNodes); 396 | var correctedIndex = activeElement !== undefined ? correctedNodes.indexOf(activeElement) : -1; 397 | var correctedIndexDiff = correctedIndex - (lastNode ? correctedNodes.indexOf(lastNode) : activeIndex); 398 | var returnFirstNode = pickFocusable(innerNodes, 0); 399 | var returnLastNode = pickFocusable(innerNodes, cnt - 1); 400 | // new focus 401 | if (activeIndex === -1 || lastNodeInside === -1) { 402 | return NEW_FOCUS; 403 | } 404 | // old focus 405 | if (!indexDiff && lastNodeInside >= 0) { 406 | return lastNodeInside; 407 | } 408 | // first element 409 | if (activeIndex <= firstNodeIndex && isOnGuard && Math.abs(indexDiff) > 1) { 410 | return returnLastNode; 411 | } 412 | // last element 413 | if (activeIndex >= lastNodeIndex && isOnGuard && Math.abs(indexDiff) > 1) { 414 | return returnFirstNode; 415 | } 416 | // jump out, but not on the guard 417 | if (indexDiff && Math.abs(correctedIndexDiff) > 1) { 418 | return lastNodeInside; 419 | } 420 | // focus above lock 421 | if (activeIndex <= firstNodeIndex) { 422 | return returnLastNode; 423 | } 424 | // focus below lock 425 | if (activeIndex > lastNodeIndex) { 426 | return returnFirstNode; 427 | } 428 | // index is inside tab order, but outside Lock 429 | if (indexDiff) { 430 | if (Math.abs(indexDiff) > 1) { 431 | return lastNodeInside; 432 | } 433 | return (cnt + lastNodeInside + indexDiff) % cnt; 434 | } 435 | // do nothing 436 | return undefined; 437 | }; 438 | 439 | var findAutoFocused = function (autoFocusables) { 440 | return function (node) { 441 | var _a; 442 | var autofocus = (_a = getDataset(node)) === null || _a === void 0 ? void 0 : _a.autofocus; 443 | return ( 444 | // @ts-expect-error 445 | node.autofocus || 446 | // 447 | (autofocus !== undefined && autofocus !== 'false') || 448 | // 449 | autoFocusables.indexOf(node) >= 0); 450 | }; 451 | }; 452 | var pickAutofocus = function (nodesIndexes, orderedNodes, groups) { 453 | var nodes = nodesIndexes.map(function (_a) { 454 | var node = _a.node; 455 | return node; 456 | }); 457 | var autoFocusable = filterAutoFocusable(nodes.filter(findAutoFocused(groups))); 458 | if (autoFocusable && autoFocusable.length) { 459 | return pickFirstFocus(autoFocusable); 460 | } 461 | return pickFirstFocus(filterAutoFocusable(orderedNodes)); 462 | }; 463 | 464 | var getParents = function (node, parents) { 465 | if (parents === void 0) { parents = []; } 466 | parents.push(node); 467 | if (node.parentNode) { 468 | getParents(node.parentNode.host || node.parentNode, parents); 469 | } 470 | return parents; 471 | }; 472 | /** 473 | * finds a parent for both nodeA and nodeB 474 | * @param nodeA 475 | * @param nodeB 476 | * @returns {boolean|*} 477 | */ 478 | var getCommonParent = function (nodeA, nodeB) { 479 | var parentsA = getParents(nodeA); 480 | var parentsB = getParents(nodeB); 481 | // tslint:disable-next-line:prefer-for-of 482 | for (var i = 0; i < parentsA.length; i += 1) { 483 | var currentParent = parentsA[i]; 484 | if (parentsB.indexOf(currentParent) >= 0) { 485 | return currentParent; 486 | } 487 | } 488 | return false; 489 | }; 490 | var getTopCommonParent = function (baseActiveElement, leftEntry, rightEntries) { 491 | var activeElements = asArray(baseActiveElement); 492 | var leftEntries = asArray(leftEntry); 493 | var activeElement = activeElements[0]; 494 | var topCommon = false; 495 | leftEntries.filter(Boolean).forEach(function (entry) { 496 | topCommon = getCommonParent(topCommon || entry, entry) || topCommon; 497 | rightEntries.filter(Boolean).forEach(function (subEntry) { 498 | var common = getCommonParent(activeElement, subEntry); 499 | if (common) { 500 | if (!topCommon || contains(common, topCommon)) { 501 | topCommon = common; 502 | } 503 | else { 504 | topCommon = getCommonParent(common, topCommon); 505 | } 506 | } 507 | }); 508 | }); 509 | // TODO: add assert here? 510 | return topCommon; 511 | }; 512 | /** 513 | * return list of nodes which are expected to be autofocused inside a given top nodes 514 | * @param entries 515 | * @param visibilityCache 516 | */ 517 | var allParentAutofocusables = function (entries, visibilityCache) { 518 | return entries.reduce(function (acc, node) { return acc.concat(parentAutofocusables(node, visibilityCache)); }, []); 519 | }; 520 | 521 | var reorderNodes = function (srcNodes, dstNodes) { 522 | var remap = new Map(); 523 | // no Set(dstNodes) for IE11 :( 524 | dstNodes.forEach(function (entity) { return remap.set(entity.node, entity); }); 525 | // remap to dstNodes 526 | return srcNodes.map(function (node) { return remap.get(node); }).filter(isDefined); 527 | }; 528 | /** 529 | * given top node(s) and the last active element return the element to be focused next 530 | * @param topNode 531 | * @param lastNode 532 | */ 533 | var getFocusMerge = function (topNode, lastNode) { 534 | var activeElement = document && getActiveElement(); 535 | var entries = getAllAffectedNodes(topNode).filter(isNotAGuard); 536 | var commonParent = getTopCommonParent(activeElement || topNode, topNode, entries); 537 | var visibilityCache = new Map(); 538 | var anyFocusable = getAllTabbableNodes(entries, visibilityCache); 539 | var innerElements = getTabbableNodes(entries, visibilityCache).filter(function (_a) { 540 | var node = _a.node; 541 | return isNotAGuard(node); 542 | }); 543 | if (!innerElements[0]) { 544 | innerElements = anyFocusable; 545 | if (!innerElements[0]) { 546 | return undefined; 547 | } 548 | } 549 | var outerNodes = getAllTabbableNodes([commonParent], visibilityCache).map(function (_a) { 550 | var node = _a.node; 551 | return node; 552 | }); 553 | var orderedInnerElements = reorderNodes(outerNodes, innerElements); 554 | var innerNodes = orderedInnerElements.map(function (_a) { 555 | var node = _a.node; 556 | return node; 557 | }); 558 | var newId = newFocus(innerNodes, outerNodes, activeElement, lastNode); 559 | if (newId === NEW_FOCUS) { 560 | return { node: pickAutofocus(anyFocusable, innerNodes, allParentAutofocusables(entries, visibilityCache)) }; 561 | } 562 | if (newId === undefined) { 563 | return newId; 564 | } 565 | return orderedInnerElements[newId]; 566 | }; 567 | 568 | var focusOn = function (target, focusOptions) { 569 | if ('focus' in target) { 570 | target.focus(focusOptions); 571 | } 572 | if ('contentWindow' in target && target.contentWindow) { 573 | target.contentWindow.focus(); 574 | } 575 | }; 576 | var guardCount = 0; 577 | var lockDisabled = false; 578 | /** 579 | * Sets focus at a given node. The last focused element will help to determine which element(first or last) should be focused. 580 | * HTML markers (see {@link import('./constants').FOCUS_AUTO} constants) can control autofocus 581 | * @param topNode 582 | * @param lastNode 583 | * @param options 584 | */ 585 | var setFocus = function (topNode, lastNode, options) { 586 | if (options === void 0) { options = {}; } 587 | var focusable = getFocusMerge(topNode, lastNode); 588 | if (lockDisabled) { 589 | return; 590 | } 591 | if (focusable) { 592 | if (guardCount > 2) { 593 | // tslint:disable-next-line:no-console 594 | console.error('FocusLock: focus-fighting detected. Only one focus management system could be active. ' + 595 | 'See https://github.com/theKashey/focus-lock/#focus-fighting'); 596 | lockDisabled = true; 597 | setTimeout(function () { 598 | lockDisabled = false; 599 | }, 1); 600 | return; 601 | } 602 | guardCount++; 603 | focusOn(focusable.node, options.focusOptions); 604 | guardCount--; 605 | } 606 | }; 607 | 608 | /* eslint-disable */ 609 | 610 | // 611 | 612 | var lastActiveTrap = 0; 613 | var lastActiveFocus = null; 614 | 615 | var focusOnBody = function focusOnBody() { 616 | return document && document.activeElement === document.body; 617 | }; 618 | 619 | var isFreeFocus = function isFreeFocus() { 620 | return focusOnBody() || focusIsHidden(); 621 | }; 622 | 623 | var activateTrap = function activateTrap() { 624 | var result = false; 625 | 626 | if (lastActiveTrap) { 627 | var observed = lastActiveTrap; 628 | 629 | if (!isFreeFocus()) { 630 | if (observed && !focusInside(observed)) { 631 | result = setFocus(observed, lastActiveFocus); 632 | } 633 | 634 | lastActiveFocus = document.activeElement; 635 | } 636 | } 637 | 638 | return result; 639 | }; 640 | 641 | var reducePropsToState = function reducePropsToState(propsList) { 642 | return propsList.filter(function (node) { 643 | return node; 644 | }).slice(-1)[0]; 645 | }; 646 | 647 | var handleStateChangeOnClient = function handleStateChangeOnClient(trap) { 648 | lastActiveTrap = trap; 649 | 650 | if (trap) { 651 | activateTrap(); 652 | } 653 | }; 654 | 655 | var instances = []; 656 | 657 | var emitChange = function emitChange(event) { 658 | if (handleStateChangeOnClient(reducePropsToState(instances))) { 659 | event && event.preventDefault(); 660 | return true; 661 | } 662 | 663 | return false; 664 | }; 665 | 666 | var attachHandler = function attachHandler() { 667 | document.addEventListener('focusin', emitChange); 668 | }; 669 | 670 | var detachHandler = function detachHandler() { 671 | document.removeEventListener('focusin', emitChange); 672 | }; 673 | 674 | var focusLock = { 675 | on: function on(domNode) { 676 | if (instances.length === 0) { 677 | attachHandler(); 678 | } 679 | 680 | if (instances.indexOf(domNode) < 0) { 681 | instances.push(domNode); 682 | emitChange(); 683 | } 684 | }, 685 | off: function off(domNode) { 686 | instances = instances.filter(function (node) { 687 | return node !== domNode; 688 | }); 689 | emitChange(); 690 | 691 | if (instances.length === 0) { 692 | detachHandler(); 693 | } 694 | } 695 | }; 696 | 697 | return focusLock; 698 | 699 | })); 700 | -------------------------------------------------------------------------------- /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/core@^7.3.4": 13 | version "7.3.4" 14 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.3.4.tgz#921a5a13746c21e32445bf0798680e9d11a6530b" 15 | integrity sha512-jRsuseXBo9pN197KnDwhhaaBzyZr2oIcLHHTt2oDdQrej5Qp57dCCJafWx5ivU8/alEYDpssYqv1MUqcxwQlrA== 16 | dependencies: 17 | "@babel/code-frame" "^7.0.0" 18 | "@babel/generator" "^7.3.4" 19 | "@babel/helpers" "^7.2.0" 20 | "@babel/parser" "^7.3.4" 21 | "@babel/template" "^7.2.2" 22 | "@babel/traverse" "^7.3.4" 23 | "@babel/types" "^7.3.4" 24 | convert-source-map "^1.1.0" 25 | debug "^4.1.0" 26 | json5 "^2.1.0" 27 | lodash "^4.17.11" 28 | resolve "^1.3.2" 29 | semver "^5.4.1" 30 | source-map "^0.5.0" 31 | 32 | "@babel/generator@^7.3.4": 33 | version "7.3.4" 34 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.3.4.tgz#9aa48c1989257877a9d971296e5b73bfe72e446e" 35 | integrity sha512-8EXhHRFqlVVWXPezBW5keTiQi/rJMQTg/Y9uVCEZ0CAF3PKtCCaVRnp64Ii1ujhkoDhhF1fVsImoN4yJ2uz4Wg== 36 | dependencies: 37 | "@babel/types" "^7.3.4" 38 | jsesc "^2.5.1" 39 | lodash "^4.17.11" 40 | source-map "^0.5.0" 41 | trim-right "^1.0.1" 42 | 43 | "@babel/helper-annotate-as-pure@^7.0.0": 44 | version "7.0.0" 45 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" 46 | integrity sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q== 47 | dependencies: 48 | "@babel/types" "^7.0.0" 49 | 50 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0": 51 | version "7.1.0" 52 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f" 53 | integrity sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w== 54 | dependencies: 55 | "@babel/helper-explode-assignable-expression" "^7.1.0" 56 | "@babel/types" "^7.0.0" 57 | 58 | "@babel/helper-call-delegate@^7.1.0": 59 | version "7.1.0" 60 | resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.1.0.tgz#6a957f105f37755e8645343d3038a22e1449cc4a" 61 | integrity sha512-YEtYZrw3GUK6emQHKthltKNZwszBcHK58Ygcis+gVUrF4/FmTVr5CCqQNSfmvg2y+YDEANyYoaLz/SHsnusCwQ== 62 | dependencies: 63 | "@babel/helper-hoist-variables" "^7.0.0" 64 | "@babel/traverse" "^7.1.0" 65 | "@babel/types" "^7.0.0" 66 | 67 | "@babel/helper-define-map@^7.1.0": 68 | version "7.1.0" 69 | resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.1.0.tgz#3b74caec329b3c80c116290887c0dd9ae468c20c" 70 | integrity sha512-yPPcW8dc3gZLN+U1mhYV91QU3n5uTbx7DUdf8NnPbjS0RMwBuHi9Xt2MUgppmNz7CJxTBWsGczTiEp1CSOTPRg== 71 | dependencies: 72 | "@babel/helper-function-name" "^7.1.0" 73 | "@babel/types" "^7.0.0" 74 | lodash "^4.17.10" 75 | 76 | "@babel/helper-explode-assignable-expression@^7.1.0": 77 | version "7.1.0" 78 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6" 79 | integrity sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA== 80 | dependencies: 81 | "@babel/traverse" "^7.1.0" 82 | "@babel/types" "^7.0.0" 83 | 84 | "@babel/helper-function-name@^7.1.0": 85 | version "7.1.0" 86 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" 87 | integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw== 88 | dependencies: 89 | "@babel/helper-get-function-arity" "^7.0.0" 90 | "@babel/template" "^7.1.0" 91 | "@babel/types" "^7.0.0" 92 | 93 | "@babel/helper-get-function-arity@^7.0.0": 94 | version "7.0.0" 95 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" 96 | integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ== 97 | dependencies: 98 | "@babel/types" "^7.0.0" 99 | 100 | "@babel/helper-hoist-variables@^7.0.0": 101 | version "7.0.0" 102 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.0.0.tgz#46adc4c5e758645ae7a45deb92bab0918c23bb88" 103 | integrity sha512-Ggv5sldXUeSKsuzLkddtyhyHe2YantsxWKNi7A+7LeD12ExRDWTRk29JCXpaHPAbMaIPZSil7n+lq78WY2VY7w== 104 | dependencies: 105 | "@babel/types" "^7.0.0" 106 | 107 | "@babel/helper-member-expression-to-functions@^7.0.0": 108 | version "7.0.0" 109 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd14b0a0df7ff00f009e7d7a436945f47c7a16f" 110 | integrity sha512-avo+lm/QmZlv27Zsi0xEor2fKcqWG56D5ae9dzklpIaY7cQMK5N8VSpaNVPPagiqmy7LrEjK1IWdGMOqPu5csg== 111 | dependencies: 112 | "@babel/types" "^7.0.0" 113 | 114 | "@babel/helper-module-imports@^7.0.0": 115 | version "7.0.0" 116 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" 117 | integrity sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A== 118 | dependencies: 119 | "@babel/types" "^7.0.0" 120 | 121 | "@babel/helper-module-transforms@^7.1.0": 122 | version "7.2.2" 123 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.2.2.tgz#ab2f8e8d231409f8370c883d20c335190284b963" 124 | integrity sha512-YRD7I6Wsv+IHuTPkAmAS4HhY0dkPobgLftHp0cRGZSdrRvmZY8rFvae/GVu3bD00qscuvK3WPHB3YdNpBXUqrA== 125 | dependencies: 126 | "@babel/helper-module-imports" "^7.0.0" 127 | "@babel/helper-simple-access" "^7.1.0" 128 | "@babel/helper-split-export-declaration" "^7.0.0" 129 | "@babel/template" "^7.2.2" 130 | "@babel/types" "^7.2.2" 131 | lodash "^4.17.10" 132 | 133 | "@babel/helper-optimise-call-expression@^7.0.0": 134 | version "7.0.0" 135 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" 136 | integrity sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g== 137 | dependencies: 138 | "@babel/types" "^7.0.0" 139 | 140 | "@babel/helper-plugin-utils@^7.0.0": 141 | version "7.0.0" 142 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" 143 | integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA== 144 | 145 | "@babel/helper-regex@^7.0.0": 146 | version "7.0.0" 147 | resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.0.0.tgz#2c1718923b57f9bbe64705ffe5640ac64d9bdb27" 148 | integrity sha512-TR0/N0NDCcUIUEbqV6dCO+LptmmSQFQ7q70lfcEB4URsjD0E1HzicrwUH+ap6BAQ2jhCX9Q4UqZy4wilujWlkg== 149 | dependencies: 150 | lodash "^4.17.10" 151 | 152 | "@babel/helper-remap-async-to-generator@^7.1.0": 153 | version "7.1.0" 154 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f" 155 | integrity sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg== 156 | dependencies: 157 | "@babel/helper-annotate-as-pure" "^7.0.0" 158 | "@babel/helper-wrap-function" "^7.1.0" 159 | "@babel/template" "^7.1.0" 160 | "@babel/traverse" "^7.1.0" 161 | "@babel/types" "^7.0.0" 162 | 163 | "@babel/helper-replace-supers@^7.1.0", "@babel/helper-replace-supers@^7.3.4": 164 | version "7.3.4" 165 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.3.4.tgz#a795208e9b911a6eeb08e5891faacf06e7013e13" 166 | integrity sha512-pvObL9WVf2ADs+ePg0jrqlhHoxRXlOa+SHRHzAXIz2xkYuOHfGl+fKxPMaS4Fq+uje8JQPobnertBBvyrWnQ1A== 167 | dependencies: 168 | "@babel/helper-member-expression-to-functions" "^7.0.0" 169 | "@babel/helper-optimise-call-expression" "^7.0.0" 170 | "@babel/traverse" "^7.3.4" 171 | "@babel/types" "^7.3.4" 172 | 173 | "@babel/helper-simple-access@^7.1.0": 174 | version "7.1.0" 175 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c" 176 | integrity sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w== 177 | dependencies: 178 | "@babel/template" "^7.1.0" 179 | "@babel/types" "^7.0.0" 180 | 181 | "@babel/helper-split-export-declaration@^7.0.0": 182 | version "7.0.0" 183 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz#3aae285c0311c2ab095d997b8c9a94cad547d813" 184 | integrity sha512-MXkOJqva62dfC0w85mEf/LucPPS/1+04nmmRMPEBUB++hiiThQ2zPtX/mEWQ3mtzCEjIJvPY8nuwxXtQeQwUag== 185 | dependencies: 186 | "@babel/types" "^7.0.0" 187 | 188 | "@babel/helper-wrap-function@^7.1.0": 189 | version "7.2.0" 190 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa" 191 | integrity sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ== 192 | dependencies: 193 | "@babel/helper-function-name" "^7.1.0" 194 | "@babel/template" "^7.1.0" 195 | "@babel/traverse" "^7.1.0" 196 | "@babel/types" "^7.2.0" 197 | 198 | "@babel/helpers@^7.2.0": 199 | version "7.3.1" 200 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.3.1.tgz#949eec9ea4b45d3210feb7dc1c22db664c9e44b9" 201 | integrity sha512-Q82R3jKsVpUV99mgX50gOPCWwco9Ec5Iln/8Vyu4osNIOQgSrd9RFrQeUvmvddFNoLwMyOUWU+5ckioEKpDoGA== 202 | dependencies: 203 | "@babel/template" "^7.1.2" 204 | "@babel/traverse" "^7.1.5" 205 | "@babel/types" "^7.3.0" 206 | 207 | "@babel/highlight@^7.0.0": 208 | version "7.0.0" 209 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" 210 | integrity sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw== 211 | dependencies: 212 | chalk "^2.0.0" 213 | esutils "^2.0.2" 214 | js-tokens "^4.0.0" 215 | 216 | "@babel/parser@^7.2.2", "@babel/parser@^7.3.4": 217 | version "7.3.4" 218 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.3.4.tgz#a43357e4bbf4b92a437fb9e465c192848287f27c" 219 | integrity sha512-tXZCqWtlOOP4wgCp6RjRvLmfuhnqTLy9VHwRochJBCP2nDm27JnnuFEnXFASVyQNHk36jD1tAammsCEEqgscIQ== 220 | 221 | "@babel/plugin-proposal-async-generator-functions@^7.2.0": 222 | version "7.2.0" 223 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e" 224 | integrity sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ== 225 | dependencies: 226 | "@babel/helper-plugin-utils" "^7.0.0" 227 | "@babel/helper-remap-async-to-generator" "^7.1.0" 228 | "@babel/plugin-syntax-async-generators" "^7.2.0" 229 | 230 | "@babel/plugin-proposal-json-strings@^7.2.0": 231 | version "7.2.0" 232 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317" 233 | integrity sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg== 234 | dependencies: 235 | "@babel/helper-plugin-utils" "^7.0.0" 236 | "@babel/plugin-syntax-json-strings" "^7.2.0" 237 | 238 | "@babel/plugin-proposal-object-rest-spread@^7.3.4": 239 | version "7.3.4" 240 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.3.4.tgz#47f73cf7f2a721aad5c0261205405c642e424654" 241 | integrity sha512-j7VQmbbkA+qrzNqbKHrBsW3ddFnOeva6wzSe/zB7T+xaxGc+RCpwo44wCmRixAIGRoIpmVgvzFzNJqQcO3/9RA== 242 | dependencies: 243 | "@babel/helper-plugin-utils" "^7.0.0" 244 | "@babel/plugin-syntax-object-rest-spread" "^7.2.0" 245 | 246 | "@babel/plugin-proposal-optional-catch-binding@^7.2.0": 247 | version "7.2.0" 248 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5" 249 | integrity sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g== 250 | dependencies: 251 | "@babel/helper-plugin-utils" "^7.0.0" 252 | "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" 253 | 254 | "@babel/plugin-proposal-unicode-property-regex@^7.2.0": 255 | version "7.2.0" 256 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.2.0.tgz#abe7281fe46c95ddc143a65e5358647792039520" 257 | integrity sha512-LvRVYb7kikuOtIoUeWTkOxQEV1kYvL5B6U3iWEGCzPNRus1MzJweFqORTj+0jkxozkTSYNJozPOddxmqdqsRpw== 258 | dependencies: 259 | "@babel/helper-plugin-utils" "^7.0.0" 260 | "@babel/helper-regex" "^7.0.0" 261 | regexpu-core "^4.2.0" 262 | 263 | "@babel/plugin-syntax-async-generators@^7.2.0": 264 | version "7.2.0" 265 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f" 266 | integrity sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg== 267 | dependencies: 268 | "@babel/helper-plugin-utils" "^7.0.0" 269 | 270 | "@babel/plugin-syntax-json-strings@^7.2.0": 271 | version "7.2.0" 272 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470" 273 | integrity sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg== 274 | dependencies: 275 | "@babel/helper-plugin-utils" "^7.0.0" 276 | 277 | "@babel/plugin-syntax-object-rest-spread@^7.2.0": 278 | version "7.2.0" 279 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" 280 | integrity sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA== 281 | dependencies: 282 | "@babel/helper-plugin-utils" "^7.0.0" 283 | 284 | "@babel/plugin-syntax-optional-catch-binding@^7.2.0": 285 | version "7.2.0" 286 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c" 287 | integrity sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w== 288 | dependencies: 289 | "@babel/helper-plugin-utils" "^7.0.0" 290 | 291 | "@babel/plugin-transform-arrow-functions@^7.2.0": 292 | version "7.2.0" 293 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550" 294 | integrity sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg== 295 | dependencies: 296 | "@babel/helper-plugin-utils" "^7.0.0" 297 | 298 | "@babel/plugin-transform-async-to-generator@^7.3.4": 299 | version "7.3.4" 300 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.3.4.tgz#4e45408d3c3da231c0e7b823f407a53a7eb3048c" 301 | integrity sha512-Y7nCzv2fw/jEZ9f678MuKdMo99MFDJMT/PvD9LisrR5JDFcJH6vYeH6RnjVt3p5tceyGRvTtEN0VOlU+rgHZjA== 302 | dependencies: 303 | "@babel/helper-module-imports" "^7.0.0" 304 | "@babel/helper-plugin-utils" "^7.0.0" 305 | "@babel/helper-remap-async-to-generator" "^7.1.0" 306 | 307 | "@babel/plugin-transform-block-scoped-functions@^7.2.0": 308 | version "7.2.0" 309 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190" 310 | integrity sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w== 311 | dependencies: 312 | "@babel/helper-plugin-utils" "^7.0.0" 313 | 314 | "@babel/plugin-transform-block-scoping@^7.3.4": 315 | version "7.3.4" 316 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.3.4.tgz#5c22c339de234076eee96c8783b2fed61202c5c4" 317 | integrity sha512-blRr2O8IOZLAOJklXLV4WhcEzpYafYQKSGT3+R26lWG41u/FODJuBggehtOwilVAcFu393v3OFj+HmaE6tVjhA== 318 | dependencies: 319 | "@babel/helper-plugin-utils" "^7.0.0" 320 | lodash "^4.17.11" 321 | 322 | "@babel/plugin-transform-classes@^7.3.4": 323 | version "7.3.4" 324 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.3.4.tgz#dc173cb999c6c5297e0b5f2277fdaaec3739d0cc" 325 | integrity sha512-J9fAvCFBkXEvBimgYxCjvaVDzL6thk0j0dBvCeZmIUDBwyt+nv6HfbImsSrWsYXfDNDivyANgJlFXDUWRTZBuA== 326 | dependencies: 327 | "@babel/helper-annotate-as-pure" "^7.0.0" 328 | "@babel/helper-define-map" "^7.1.0" 329 | "@babel/helper-function-name" "^7.1.0" 330 | "@babel/helper-optimise-call-expression" "^7.0.0" 331 | "@babel/helper-plugin-utils" "^7.0.0" 332 | "@babel/helper-replace-supers" "^7.3.4" 333 | "@babel/helper-split-export-declaration" "^7.0.0" 334 | globals "^11.1.0" 335 | 336 | "@babel/plugin-transform-computed-properties@^7.2.0": 337 | version "7.2.0" 338 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da" 339 | integrity sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA== 340 | dependencies: 341 | "@babel/helper-plugin-utils" "^7.0.0" 342 | 343 | "@babel/plugin-transform-destructuring@^7.2.0": 344 | version "7.3.2" 345 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.3.2.tgz#f2f5520be055ba1c38c41c0e094d8a461dd78f2d" 346 | integrity sha512-Lrj/u53Ufqxl/sGxyjsJ2XNtNuEjDyjpqdhMNh5aZ+XFOdThL46KBj27Uem4ggoezSYBxKWAil6Hu8HtwqesYw== 347 | dependencies: 348 | "@babel/helper-plugin-utils" "^7.0.0" 349 | 350 | "@babel/plugin-transform-dotall-regex@^7.2.0": 351 | version "7.2.0" 352 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.2.0.tgz#f0aabb93d120a8ac61e925ea0ba440812dbe0e49" 353 | integrity sha512-sKxnyHfizweTgKZf7XsXu/CNupKhzijptfTM+bozonIuyVrLWVUvYjE2bhuSBML8VQeMxq4Mm63Q9qvcvUcciQ== 354 | dependencies: 355 | "@babel/helper-plugin-utils" "^7.0.0" 356 | "@babel/helper-regex" "^7.0.0" 357 | regexpu-core "^4.1.3" 358 | 359 | "@babel/plugin-transform-duplicate-keys@^7.2.0": 360 | version "7.2.0" 361 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz#d952c4930f312a4dbfff18f0b2914e60c35530b3" 362 | integrity sha512-q+yuxW4DsTjNceUiTzK0L+AfQ0zD9rWaTLiUqHA8p0gxx7lu1EylenfzjeIWNkPy6e/0VG/Wjw9uf9LueQwLOw== 363 | dependencies: 364 | "@babel/helper-plugin-utils" "^7.0.0" 365 | 366 | "@babel/plugin-transform-exponentiation-operator@^7.2.0": 367 | version "7.2.0" 368 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008" 369 | integrity sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A== 370 | dependencies: 371 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0" 372 | "@babel/helper-plugin-utils" "^7.0.0" 373 | 374 | "@babel/plugin-transform-for-of@^7.2.0": 375 | version "7.2.0" 376 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.2.0.tgz#ab7468befa80f764bb03d3cb5eef8cc998e1cad9" 377 | integrity sha512-Kz7Mt0SsV2tQk6jG5bBv5phVbkd0gd27SgYD4hH1aLMJRchM0dzHaXvrWhVZ+WxAlDoAKZ7Uy3jVTW2mKXQ1WQ== 378 | dependencies: 379 | "@babel/helper-plugin-utils" "^7.0.0" 380 | 381 | "@babel/plugin-transform-function-name@^7.2.0": 382 | version "7.2.0" 383 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.2.0.tgz#f7930362829ff99a3174c39f0afcc024ef59731a" 384 | integrity sha512-kWgksow9lHdvBC2Z4mxTsvc7YdY7w/V6B2vy9cTIPtLEE9NhwoWivaxdNM/S37elu5bqlLP/qOY906LukO9lkQ== 385 | dependencies: 386 | "@babel/helper-function-name" "^7.1.0" 387 | "@babel/helper-plugin-utils" "^7.0.0" 388 | 389 | "@babel/plugin-transform-literals@^7.2.0": 390 | version "7.2.0" 391 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1" 392 | integrity sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg== 393 | dependencies: 394 | "@babel/helper-plugin-utils" "^7.0.0" 395 | 396 | "@babel/plugin-transform-modules-amd@^7.2.0": 397 | version "7.2.0" 398 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz#82a9bce45b95441f617a24011dc89d12da7f4ee6" 399 | integrity sha512-mK2A8ucqz1qhrdqjS9VMIDfIvvT2thrEsIQzbaTdc5QFzhDjQv2CkJJ5f6BXIkgbmaoax3zBr2RyvV/8zeoUZw== 400 | dependencies: 401 | "@babel/helper-module-transforms" "^7.1.0" 402 | "@babel/helper-plugin-utils" "^7.0.0" 403 | 404 | "@babel/plugin-transform-modules-commonjs@^7.2.0": 405 | version "7.2.0" 406 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.2.0.tgz#c4f1933f5991d5145e9cfad1dfd848ea1727f404" 407 | integrity sha512-V6y0uaUQrQPXUrmj+hgnks8va2L0zcZymeU7TtWEgdRLNkceafKXEduv7QzgQAE4lT+suwooG9dC7LFhdRAbVQ== 408 | dependencies: 409 | "@babel/helper-module-transforms" "^7.1.0" 410 | "@babel/helper-plugin-utils" "^7.0.0" 411 | "@babel/helper-simple-access" "^7.1.0" 412 | 413 | "@babel/plugin-transform-modules-systemjs@^7.3.4": 414 | version "7.3.4" 415 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.3.4.tgz#813b34cd9acb6ba70a84939f3680be0eb2e58861" 416 | integrity sha512-VZ4+jlGOF36S7TjKs8g4ojp4MEI+ebCQZdswWb/T9I4X84j8OtFAyjXjt/M16iIm5RIZn0UMQgg/VgIwo/87vw== 417 | dependencies: 418 | "@babel/helper-hoist-variables" "^7.0.0" 419 | "@babel/helper-plugin-utils" "^7.0.0" 420 | 421 | "@babel/plugin-transform-modules-umd@^7.2.0": 422 | version "7.2.0" 423 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae" 424 | integrity sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw== 425 | dependencies: 426 | "@babel/helper-module-transforms" "^7.1.0" 427 | "@babel/helper-plugin-utils" "^7.0.0" 428 | 429 | "@babel/plugin-transform-named-capturing-groups-regex@^7.3.0": 430 | version "7.3.0" 431 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.3.0.tgz#140b52985b2d6ef0cb092ef3b29502b990f9cd50" 432 | integrity sha512-NxIoNVhk9ZxS+9lSoAQ/LM0V2UEvARLttEHUrRDGKFaAxOYQcrkN/nLRE+BbbicCAvZPl7wMP0X60HsHE5DtQw== 433 | dependencies: 434 | regexp-tree "^0.1.0" 435 | 436 | "@babel/plugin-transform-new-target@^7.0.0": 437 | version "7.0.0" 438 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.0.0.tgz#ae8fbd89517fa7892d20e6564e641e8770c3aa4a" 439 | integrity sha512-yin069FYjah+LbqfGeTfzIBODex/e++Yfa0rH0fpfam9uTbuEeEOx5GLGr210ggOV77mVRNoeqSYqeuaqSzVSw== 440 | dependencies: 441 | "@babel/helper-plugin-utils" "^7.0.0" 442 | 443 | "@babel/plugin-transform-object-super@^7.2.0": 444 | version "7.2.0" 445 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz#b35d4c10f56bab5d650047dad0f1d8e8814b6598" 446 | integrity sha512-VMyhPYZISFZAqAPVkiYb7dUe2AsVi2/wCT5+wZdsNO31FojQJa9ns40hzZ6U9f50Jlq4w6qwzdBB2uwqZ00ebg== 447 | dependencies: 448 | "@babel/helper-plugin-utils" "^7.0.0" 449 | "@babel/helper-replace-supers" "^7.1.0" 450 | 451 | "@babel/plugin-transform-parameters@^7.2.0": 452 | version "7.3.3" 453 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.3.3.tgz#3a873e07114e1a5bee17d04815662c8317f10e30" 454 | integrity sha512-IrIP25VvXWu/VlBWTpsjGptpomtIkYrN/3aDp4UKm7xK6UxZY88kcJ1UwETbzHAlwN21MnNfwlar0u8y3KpiXw== 455 | dependencies: 456 | "@babel/helper-call-delegate" "^7.1.0" 457 | "@babel/helper-get-function-arity" "^7.0.0" 458 | "@babel/helper-plugin-utils" "^7.0.0" 459 | 460 | "@babel/plugin-transform-regenerator@^7.3.4": 461 | version "7.3.4" 462 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.3.4.tgz#1601655c362f5b38eead6a52631f5106b29fa46a" 463 | integrity sha512-hvJg8EReQvXT6G9H2MvNPXkv9zK36Vxa1+csAVTpE1J3j0zlHplw76uudEbJxgvqZzAq9Yh45FLD4pk5mKRFQA== 464 | dependencies: 465 | regenerator-transform "^0.13.4" 466 | 467 | "@babel/plugin-transform-shorthand-properties@^7.2.0": 468 | version "7.2.0" 469 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0" 470 | integrity sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg== 471 | dependencies: 472 | "@babel/helper-plugin-utils" "^7.0.0" 473 | 474 | "@babel/plugin-transform-spread@^7.2.0": 475 | version "7.2.2" 476 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz#3103a9abe22f742b6d406ecd3cd49b774919b406" 477 | integrity sha512-KWfky/58vubwtS0hLqEnrWJjsMGaOeSBn90Ezn5Jeg9Z8KKHmELbP1yGylMlm5N6TPKeY9A2+UaSYLdxahg01w== 478 | dependencies: 479 | "@babel/helper-plugin-utils" "^7.0.0" 480 | 481 | "@babel/plugin-transform-sticky-regex@^7.2.0": 482 | version "7.2.0" 483 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1" 484 | integrity sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw== 485 | dependencies: 486 | "@babel/helper-plugin-utils" "^7.0.0" 487 | "@babel/helper-regex" "^7.0.0" 488 | 489 | "@babel/plugin-transform-template-literals@^7.2.0": 490 | version "7.2.0" 491 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.2.0.tgz#d87ed01b8eaac7a92473f608c97c089de2ba1e5b" 492 | integrity sha512-FkPix00J9A/XWXv4VoKJBMeSkyY9x/TqIh76wzcdfl57RJJcf8CehQ08uwfhCDNtRQYtHQKBTwKZDEyjE13Lwg== 493 | dependencies: 494 | "@babel/helper-annotate-as-pure" "^7.0.0" 495 | "@babel/helper-plugin-utils" "^7.0.0" 496 | 497 | "@babel/plugin-transform-typeof-symbol@^7.2.0": 498 | version "7.2.0" 499 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2" 500 | integrity sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw== 501 | dependencies: 502 | "@babel/helper-plugin-utils" "^7.0.0" 503 | 504 | "@babel/plugin-transform-unicode-regex@^7.2.0": 505 | version "7.2.0" 506 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.2.0.tgz#4eb8db16f972f8abb5062c161b8b115546ade08b" 507 | integrity sha512-m48Y0lMhrbXEJnVUaYly29jRXbQ3ksxPrS1Tg8t+MHqzXhtBYAvI51euOBaoAlZLPHsieY9XPVMf80a5x0cPcA== 508 | dependencies: 509 | "@babel/helper-plugin-utils" "^7.0.0" 510 | "@babel/helper-regex" "^7.0.0" 511 | regexpu-core "^4.1.3" 512 | 513 | "@babel/preset-env@^7.3.4": 514 | version "7.3.4" 515 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.3.4.tgz#887cf38b6d23c82f19b5135298bdb160062e33e1" 516 | integrity sha512-2mwqfYMK8weA0g0uBKOt4FE3iEodiHy9/CW0b+nWXcbL+pGzLx8ESYc+j9IIxr6LTDHWKgPm71i9smo02bw+gA== 517 | dependencies: 518 | "@babel/helper-module-imports" "^7.0.0" 519 | "@babel/helper-plugin-utils" "^7.0.0" 520 | "@babel/plugin-proposal-async-generator-functions" "^7.2.0" 521 | "@babel/plugin-proposal-json-strings" "^7.2.0" 522 | "@babel/plugin-proposal-object-rest-spread" "^7.3.4" 523 | "@babel/plugin-proposal-optional-catch-binding" "^7.2.0" 524 | "@babel/plugin-proposal-unicode-property-regex" "^7.2.0" 525 | "@babel/plugin-syntax-async-generators" "^7.2.0" 526 | "@babel/plugin-syntax-json-strings" "^7.2.0" 527 | "@babel/plugin-syntax-object-rest-spread" "^7.2.0" 528 | "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" 529 | "@babel/plugin-transform-arrow-functions" "^7.2.0" 530 | "@babel/plugin-transform-async-to-generator" "^7.3.4" 531 | "@babel/plugin-transform-block-scoped-functions" "^7.2.0" 532 | "@babel/plugin-transform-block-scoping" "^7.3.4" 533 | "@babel/plugin-transform-classes" "^7.3.4" 534 | "@babel/plugin-transform-computed-properties" "^7.2.0" 535 | "@babel/plugin-transform-destructuring" "^7.2.0" 536 | "@babel/plugin-transform-dotall-regex" "^7.2.0" 537 | "@babel/plugin-transform-duplicate-keys" "^7.2.0" 538 | "@babel/plugin-transform-exponentiation-operator" "^7.2.0" 539 | "@babel/plugin-transform-for-of" "^7.2.0" 540 | "@babel/plugin-transform-function-name" "^7.2.0" 541 | "@babel/plugin-transform-literals" "^7.2.0" 542 | "@babel/plugin-transform-modules-amd" "^7.2.0" 543 | "@babel/plugin-transform-modules-commonjs" "^7.2.0" 544 | "@babel/plugin-transform-modules-systemjs" "^7.3.4" 545 | "@babel/plugin-transform-modules-umd" "^7.2.0" 546 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.3.0" 547 | "@babel/plugin-transform-new-target" "^7.0.0" 548 | "@babel/plugin-transform-object-super" "^7.2.0" 549 | "@babel/plugin-transform-parameters" "^7.2.0" 550 | "@babel/plugin-transform-regenerator" "^7.3.4" 551 | "@babel/plugin-transform-shorthand-properties" "^7.2.0" 552 | "@babel/plugin-transform-spread" "^7.2.0" 553 | "@babel/plugin-transform-sticky-regex" "^7.2.0" 554 | "@babel/plugin-transform-template-literals" "^7.2.0" 555 | "@babel/plugin-transform-typeof-symbol" "^7.2.0" 556 | "@babel/plugin-transform-unicode-regex" "^7.2.0" 557 | browserslist "^4.3.4" 558 | invariant "^2.2.2" 559 | js-levenshtein "^1.1.3" 560 | semver "^5.3.0" 561 | 562 | "@babel/template@^7.1.0", "@babel/template@^7.1.2", "@babel/template@^7.2.2": 563 | version "7.2.2" 564 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.2.2.tgz#005b3fdf0ed96e88041330379e0da9a708eb2907" 565 | integrity sha512-zRL0IMM02AUDwghf5LMSSDEz7sBCO2YnNmpg3uWTZj/v1rcG2BmQUvaGU8GhU8BvfMh1k2KIAYZ7Ji9KXPUg7g== 566 | dependencies: 567 | "@babel/code-frame" "^7.0.0" 568 | "@babel/parser" "^7.2.2" 569 | "@babel/types" "^7.2.2" 570 | 571 | "@babel/traverse@^7.1.0", "@babel/traverse@^7.1.5", "@babel/traverse@^7.3.4": 572 | version "7.3.4" 573 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.3.4.tgz#1330aab72234f8dea091b08c4f8b9d05c7119e06" 574 | integrity sha512-TvTHKp6471OYEcE/91uWmhR6PrrYywQntCHSaZ8CM8Vmp+pjAusal4nGB2WCCQd0rvI7nOMKn9GnbcvTUz3/ZQ== 575 | dependencies: 576 | "@babel/code-frame" "^7.0.0" 577 | "@babel/generator" "^7.3.4" 578 | "@babel/helper-function-name" "^7.1.0" 579 | "@babel/helper-split-export-declaration" "^7.0.0" 580 | "@babel/parser" "^7.3.4" 581 | "@babel/types" "^7.3.4" 582 | debug "^4.1.0" 583 | globals "^11.1.0" 584 | lodash "^4.17.11" 585 | 586 | "@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0", "@babel/types@^7.3.4": 587 | version "7.3.4" 588 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.3.4.tgz#bf482eaeaffb367a28abbf9357a94963235d90ed" 589 | integrity sha512-WEkp8MsLftM7O/ty580wAmZzN1nDmCACc5+jFzUt+GUFNNIi3LdRlueYz0YIlmJhlZx1QYDMZL5vdWCL0fNjFQ== 590 | dependencies: 591 | esutils "^2.0.2" 592 | lodash "^4.17.11" 593 | to-fast-properties "^2.0.0" 594 | 595 | "@koa/cors@^2.2.1": 596 | version "2.2.3" 597 | resolved "https://registry.yarnpkg.com/@koa/cors/-/cors-2.2.3.tgz#c32a9907acbee1e72fedfb0b9ac840d2e6f9be57" 598 | integrity sha512-tCVVXa39ETsit5kGBtEWWimjLn1sDaeu8+0phgb8kT3GmBDZOykkI3ZO8nMjV2p3MGkJI4K5P+bxR8Ztq0bwsA== 599 | dependencies: 600 | vary "^1.1.2" 601 | 602 | "@types/estree@0.0.39": 603 | version "0.0.39" 604 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" 605 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== 606 | 607 | "@types/node@^11.9.5": 608 | version "11.11.1" 609 | resolved "https://registry.yarnpkg.com/@types/node/-/node-11.11.1.tgz#9ee55ffce20f72e141863b0036a6e51c6fc09a1f" 610 | integrity sha512-2azXFP9n4aA2QNLkKm/F9pzKxgYj1SMawZ5Eh9iC21RH3XNcFsivLVU2NhpMgQm7YobSByvIol4c42ZFusXFHQ== 611 | 612 | JSONStream@^1.3.1: 613 | version "1.3.5" 614 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" 615 | integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== 616 | dependencies: 617 | jsonparse "^1.2.0" 618 | through ">=2.2.7 <3" 619 | 620 | accepts@^1.3.5, accepts@~1.3.4: 621 | version "1.3.5" 622 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2" 623 | integrity sha1-63d99gEXI6OxTopywIBcjoZ0a9I= 624 | dependencies: 625 | mime-types "~2.1.18" 626 | negotiator "0.6.1" 627 | 628 | acorn-jsx@^3.0.0: 629 | version "3.0.1" 630 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 631 | integrity sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s= 632 | dependencies: 633 | acorn "^3.0.4" 634 | 635 | acorn@^3.0.4: 636 | version "3.3.0" 637 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 638 | integrity sha1-ReN/s56No/JbruP/U2niu18iAXo= 639 | 640 | acorn@^5.1.1: 641 | version "5.1.2" 642 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7" 643 | integrity sha512-o96FZLJBPY1lvTuJylGA9Bk3t/GKPPJG8H0ydQQl01crzwJgspa4AEIq/pVTXigmK0PHVQhiAtn8WMBLL9D2WA== 644 | 645 | acorn@^5.7.3: 646 | version "5.7.3" 647 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" 648 | integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== 649 | 650 | acorn@^6.1.1: 651 | version "6.1.1" 652 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.1.1.tgz#7d25ae05bb8ad1f9b699108e1094ecd7884adc1f" 653 | integrity sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA== 654 | 655 | ajv-keywords@^1.0.0: 656 | version "1.5.1" 657 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 658 | integrity sha1-MU3QpLM2j609/NxU7eYXG4htrzw= 659 | 660 | ajv@^4.7.0: 661 | version "4.11.8" 662 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 663 | integrity sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY= 664 | dependencies: 665 | co "^4.6.0" 666 | json-stable-stringify "^1.0.1" 667 | 668 | ajv@^5.2.0: 669 | version "5.2.2" 670 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.2.tgz#47c68d69e86f5d953103b0074a9430dc63da5e39" 671 | integrity sha1-R8aNaehvXZUxA7AHSpQw3GPaXjk= 672 | dependencies: 673 | co "^4.6.0" 674 | fast-deep-equal "^1.0.0" 675 | json-schema-traverse "^0.3.0" 676 | json-stable-stringify "^1.0.1" 677 | 678 | ansi-escape-sequences@^3.0.0: 679 | version "3.0.0" 680 | resolved "https://registry.yarnpkg.com/ansi-escape-sequences/-/ansi-escape-sequences-3.0.0.tgz#1c18394b6af9b76ff9a63509fa497669fd2ce53e" 681 | integrity sha1-HBg5S2r5t2/5pjUJ+kl2af0s5T4= 682 | dependencies: 683 | array-back "^1.0.3" 684 | 685 | ansi-escape-sequences@^4.0.1: 686 | version "4.1.0" 687 | resolved "https://registry.yarnpkg.com/ansi-escape-sequences/-/ansi-escape-sequences-4.1.0.tgz#2483c8773f50dd9174dd9557e92b1718f1816097" 688 | integrity sha512-dzW9kHxH011uBsidTXd14JXgzye/YLb2LzeKZ4bsgl/Knwx8AtbSFkkGxagdNOoh0DlqHCmfiEjWKBaqjOanVw== 689 | dependencies: 690 | array-back "^3.0.1" 691 | 692 | ansi-escapes@^2.0.0: 693 | version "2.0.0" 694 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" 695 | integrity sha1-W65SvkJIeN2Xg+iRDj/Cki6DyBs= 696 | 697 | ansi-regex@^2.0.0: 698 | version "2.1.1" 699 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 700 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 701 | 702 | ansi-regex@^3.0.0: 703 | version "3.0.0" 704 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 705 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 706 | 707 | ansi-styles@^2.2.1: 708 | version "2.2.1" 709 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 710 | integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= 711 | 712 | ansi-styles@^3.1.0: 713 | version "3.2.0" 714 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 715 | integrity sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug== 716 | dependencies: 717 | color-convert "^1.9.0" 718 | 719 | ansi-styles@^3.2.1: 720 | version "3.2.1" 721 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 722 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 723 | dependencies: 724 | color-convert "^1.9.0" 725 | 726 | any-promise@^1.0.0, any-promise@^1.1.0: 727 | version "1.3.0" 728 | resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" 729 | integrity sha1-q8av7tzqUugJzcA3au0845Y10X8= 730 | 731 | argparse@^1.0.7: 732 | version "1.0.9" 733 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 734 | integrity sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY= 735 | dependencies: 736 | sprintf-js "~1.0.2" 737 | 738 | argv-tools@^0.1.1: 739 | version "0.1.1" 740 | resolved "https://registry.yarnpkg.com/argv-tools/-/argv-tools-0.1.1.tgz#588283f3393ada47141440b12981cd41bf6b7032" 741 | integrity sha512-Cc0dBvx4dvrjjKpyDA6w8RlNAw8Su30NvZbWl/Tv9ZALEVlLVkWQiHMi84Q0xNfpVuSaiQbYkdmWK8g1PLGhKw== 742 | dependencies: 743 | array-back "^2.0.0" 744 | find-replace "^2.0.1" 745 | 746 | arr-diff@^4.0.0: 747 | version "4.0.0" 748 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 749 | integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= 750 | 751 | arr-flatten@^1.1.0: 752 | version "1.1.0" 753 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 754 | integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== 755 | 756 | arr-union@^3.1.0: 757 | version "3.1.0" 758 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 759 | integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= 760 | 761 | array-back@^1.0.3: 762 | version "1.0.4" 763 | resolved "https://registry.yarnpkg.com/array-back/-/array-back-1.0.4.tgz#644ba7f095f7ffcf7c43b5f0dc39d3c1f03c063b" 764 | integrity sha1-ZEun8JX3/898Q7Xw3DnTwfA8Bjs= 765 | dependencies: 766 | typical "^2.6.0" 767 | 768 | array-back@^2.0.0: 769 | version "2.0.0" 770 | resolved "https://registry.yarnpkg.com/array-back/-/array-back-2.0.0.tgz#6877471d51ecc9c9bfa6136fb6c7d5fe69748022" 771 | integrity sha512-eJv4pLLufP3g5kcZry0j6WXpIbzYw9GUB4mVJZno9wfwiBxbizTnHCw3VJb07cBihbFX48Y7oSrW9y+gt4glyw== 772 | dependencies: 773 | typical "^2.6.1" 774 | 775 | array-back@^3.0.1: 776 | version "3.0.1" 777 | resolved "https://registry.yarnpkg.com/array-back/-/array-back-3.0.1.tgz#66ad7b8261bbacead49f1c3898befdcaee748d0b" 778 | integrity sha512-nzD+aqgQPTZlUGH6tE8JEjYPpnuBUFghPbq6zEWBHUmCHGQKWD9pf1PIuc2bMBtzi2OoIaoTJwgBV3h0ztdrFg== 779 | 780 | array-union@^1.0.1: 781 | version "1.0.2" 782 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 783 | integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= 784 | dependencies: 785 | array-uniq "^1.0.1" 786 | 787 | array-uniq@^1.0.1: 788 | version "1.0.3" 789 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 790 | integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= 791 | 792 | array-unique@^0.3.2: 793 | version "0.3.2" 794 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 795 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= 796 | 797 | arrify@^1.0.0: 798 | version "1.0.1" 799 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 800 | integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= 801 | 802 | assign-symbols@^1.0.0: 803 | version "1.0.0" 804 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 805 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 806 | 807 | async-limiter@~1.0.0: 808 | version "1.0.0" 809 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 810 | integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg== 811 | 812 | atob@^2.1.1: 813 | version "2.1.2" 814 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 815 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 816 | 817 | babel-code-frame@^6.22.0: 818 | version "6.26.0" 819 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 820 | integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= 821 | dependencies: 822 | chalk "^1.1.3" 823 | esutils "^2.0.2" 824 | js-tokens "^3.0.2" 825 | 826 | balanced-match@^1.0.0: 827 | version "1.0.0" 828 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 829 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 830 | 831 | base@^0.11.1: 832 | version "0.11.2" 833 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 834 | integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== 835 | dependencies: 836 | cache-base "^1.0.1" 837 | class-utils "^0.3.5" 838 | component-emitter "^1.2.1" 839 | define-property "^1.0.0" 840 | isobject "^3.0.1" 841 | mixin-deep "^1.2.0" 842 | pascalcase "^0.1.1" 843 | 844 | basic-auth@^1.1.0: 845 | version "1.1.0" 846 | resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-1.1.0.tgz#45221ee429f7ee1e5035be3f51533f1cdfd29884" 847 | integrity sha1-RSIe5Cn37h5QNb4/UVM/HN/SmIQ= 848 | 849 | basic-auth@~2.0.0: 850 | version "2.0.1" 851 | resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.1.tgz#b998279bf47ce38344b4f3cf916d4679bbf51e3a" 852 | integrity sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg== 853 | dependencies: 854 | safe-buffer "5.1.2" 855 | 856 | batch@0.6.1: 857 | version "0.6.1" 858 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" 859 | integrity sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY= 860 | 861 | brace-expansion@^1.1.7: 862 | version "1.1.8" 863 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 864 | integrity sha1-wHshHHyVLsH479Uad+8NHTmQopI= 865 | dependencies: 866 | balanced-match "^1.0.0" 867 | concat-map "0.0.1" 868 | 869 | braces@^2.3.1: 870 | version "2.3.2" 871 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 872 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== 873 | dependencies: 874 | arr-flatten "^1.1.0" 875 | array-unique "^0.3.2" 876 | extend-shallow "^2.0.1" 877 | fill-range "^4.0.0" 878 | isobject "^3.0.1" 879 | repeat-element "^1.1.2" 880 | snapdragon "^0.8.1" 881 | snapdragon-node "^2.0.1" 882 | split-string "^3.0.2" 883 | to-regex "^3.0.1" 884 | 885 | browserslist@^4.3.4: 886 | version "4.4.2" 887 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.4.2.tgz#6ea8a74d6464bb0bd549105f659b41197d8f0ba2" 888 | integrity sha512-ISS/AIAiHERJ3d45Fz0AVYKkgcy+F/eJHzKEvv1j0wwKGKD9T3BrwKr/5g45L+Y4XIK5PlTqefHciRFcfE1Jxg== 889 | dependencies: 890 | caniuse-lite "^1.0.30000939" 891 | electron-to-chromium "^1.3.113" 892 | node-releases "^1.1.8" 893 | 894 | buffer-es6@^4.9.3: 895 | version "4.9.3" 896 | resolved "https://registry.yarnpkg.com/buffer-es6/-/buffer-es6-4.9.3.tgz#f26347b82df76fd37e18bcb5288c4970cfd5c404" 897 | integrity sha1-8mNHuC33b9N+GLy1KIxJcM/VxAQ= 898 | 899 | builtin-modules@^3.0.0: 900 | version "3.0.0" 901 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.0.0.tgz#1e587d44b006620d90286cc7a9238bbc6129cab1" 902 | integrity sha512-hMIeU4K2ilbXV6Uv93ZZ0Avg/M91RaKXucQ+4me2Do1txxBDyDZWCBa5bJSLqoNTRpXTLwEzIk1KmloenDDjhg== 903 | 904 | byte-size@^3.0.0: 905 | version "3.0.0" 906 | resolved "https://registry.yarnpkg.com/byte-size/-/byte-size-3.0.0.tgz#406f9e2366aa5dabf63672eb291d7bb09495da75" 907 | integrity sha1-QG+eI2aqXav2NnLrKR17sJSV2nU= 908 | 909 | byte-size@^4.0.2: 910 | version "4.0.4" 911 | resolved "https://registry.yarnpkg.com/byte-size/-/byte-size-4.0.4.tgz#29d381709f41aae0d89c631f1c81aec88cd40b23" 912 | integrity sha512-82RPeneC6nqCdSwCX2hZUz3JPOvN5at/nTEw/CMf05Smu3Hrpo9Psb7LjN+k+XndNArG1EY8L4+BM3aTM4BCvw== 913 | 914 | byte-size@^5.0.1: 915 | version "5.0.1" 916 | resolved "https://registry.yarnpkg.com/byte-size/-/byte-size-5.0.1.tgz#4b651039a5ecd96767e71a3d7ed380e48bed4191" 917 | integrity sha512-/XuKeqWocKsYa/cBY1YbSJSWWqTi4cFgr9S6OyM7PBaPbr9zvNGwWP33vt0uqGhwDdN+y3yhbXVILEUpnwEWGw== 918 | 919 | bytes@3.0.0: 920 | version "3.0.0" 921 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" 922 | integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= 923 | 924 | bytes@^2.3.0: 925 | version "2.5.0" 926 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.5.0.tgz#4c9423ea2d252c270c41b2bdefeff9bb6b62c06a" 927 | integrity sha1-TJQj6i0lLCcMQbK97+/5u2tiwGo= 928 | 929 | cache-base@^1.0.1: 930 | version "1.0.1" 931 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 932 | integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== 933 | dependencies: 934 | collection-visit "^1.0.0" 935 | component-emitter "^1.2.1" 936 | get-value "^2.0.6" 937 | has-value "^1.0.0" 938 | isobject "^3.0.1" 939 | set-value "^2.0.0" 940 | to-object-path "^0.3.0" 941 | union-value "^1.0.0" 942 | unset-value "^1.0.0" 943 | 944 | cache-content-type@^1.0.0: 945 | version "1.0.1" 946 | resolved "https://registry.yarnpkg.com/cache-content-type/-/cache-content-type-1.0.1.tgz#035cde2b08ee2129f4a8315ea8f00a00dba1453c" 947 | integrity sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA== 948 | dependencies: 949 | mime-types "^2.1.18" 950 | ylru "^1.2.0" 951 | 952 | caller-path@^0.1.0: 953 | version "0.1.0" 954 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 955 | integrity sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8= 956 | dependencies: 957 | callsites "^0.2.0" 958 | 959 | callsites@^0.2.0: 960 | version "0.2.0" 961 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 962 | integrity sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo= 963 | 964 | caniuse-lite@^1.0.30000939: 965 | version "1.0.30000945" 966 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000945.tgz#d51e3750416dd05126d5ac94a9c57d1c26c6fd21" 967 | integrity sha512-PSGwYChNIXJ4FZr9Z9mrVzBCB1TF3yyiRmIDRIdKDHZ6u+1jYH6xeR28XaquxnMwcZVX3f48S9zi7eswO/G1nQ== 968 | 969 | chalk@^1.1.1, chalk@^1.1.3: 970 | version "1.1.3" 971 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 972 | integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= 973 | dependencies: 974 | ansi-styles "^2.2.1" 975 | escape-string-regexp "^1.0.2" 976 | has-ansi "^2.0.0" 977 | strip-ansi "^3.0.0" 978 | supports-color "^2.0.0" 979 | 980 | chalk@^2.0.0, chalk@^2.1.0: 981 | version "2.1.0" 982 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 983 | integrity sha512-LUHGS/dge4ujbXMJrnihYMcL4AoOweGnw9Tp3kQuqy1Kx5c1qKjqvMJZ6nVJPMWJtKCTN72ZogH3oeSO9g9rXQ== 984 | dependencies: 985 | ansi-styles "^3.1.0" 986 | escape-string-regexp "^1.0.5" 987 | supports-color "^4.0.0" 988 | 989 | chalk@^2.4.1: 990 | version "2.4.2" 991 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 992 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 993 | dependencies: 994 | ansi-styles "^3.2.1" 995 | escape-string-regexp "^1.0.5" 996 | supports-color "^5.3.0" 997 | 998 | circular-json@^0.3.1: 999 | version "0.3.3" 1000 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 1001 | integrity sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A== 1002 | 1003 | class-utils@^0.3.5: 1004 | version "0.3.6" 1005 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 1006 | integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== 1007 | dependencies: 1008 | arr-union "^3.1.0" 1009 | define-property "^0.2.5" 1010 | isobject "^3.0.0" 1011 | static-extend "^0.1.1" 1012 | 1013 | cli-commands@^0.4.0: 1014 | version "0.4.0" 1015 | resolved "https://registry.yarnpkg.com/cli-commands/-/cli-commands-0.4.0.tgz#75b79bba16733267b71c60def2dd76f3a07cda8a" 1016 | integrity sha512-zAvJlR7roeMgpUIhMDYATYL90vz+9ffuyPr0+qq4LzcZ0Jq+gM+H1KdYKxerc6U2nhitiDEx79YiJlXdrooEOA== 1017 | dependencies: 1018 | command-line-args "^5.0.2" 1019 | command-line-commands "^2.0.1" 1020 | 1021 | cli-cursor@^2.1.0: 1022 | version "2.1.0" 1023 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 1024 | integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= 1025 | dependencies: 1026 | restore-cursor "^2.0.0" 1027 | 1028 | cli-width@^2.0.0: 1029 | version "2.2.0" 1030 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 1031 | integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= 1032 | 1033 | co-body@^6.0.0: 1034 | version "6.0.0" 1035 | resolved "https://registry.yarnpkg.com/co-body/-/co-body-6.0.0.tgz#965b9337d7f5655480787471f4237664820827e3" 1036 | integrity sha512-9ZIcixguuuKIptnY8yemEOuhb71L/lLf+Rl5JfJEUiDNJk0e02MBt7BPxR2GEh5mw8dPthQYR4jPI/BnS1MQgw== 1037 | dependencies: 1038 | inflation "^2.0.0" 1039 | qs "^6.5.2" 1040 | raw-body "^2.3.3" 1041 | type-is "^1.6.16" 1042 | 1043 | co@^4.6.0: 1044 | version "4.6.0" 1045 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1046 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= 1047 | 1048 | collection-visit@^1.0.0: 1049 | version "1.0.0" 1050 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 1051 | integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= 1052 | dependencies: 1053 | map-visit "^1.0.0" 1054 | object-visit "^1.0.0" 1055 | 1056 | color-convert@^1.9.0: 1057 | version "1.9.0" 1058 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 1059 | integrity sha1-Gsz5fdc5uYO/mU1W/sj5WFNkG3o= 1060 | dependencies: 1061 | color-name "^1.1.1" 1062 | 1063 | color-name@^1.1.1: 1064 | version "1.1.3" 1065 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1066 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1067 | 1068 | command-line-args@^5.0.2: 1069 | version "5.0.2" 1070 | resolved "https://registry.yarnpkg.com/command-line-args/-/command-line-args-5.0.2.tgz#c4e56b016636af1323cf485aa25c3cb203dfbbe4" 1071 | integrity sha512-/qPcbL8zpqg53x4rAaqMFlRV4opN3pbla7I7k9x8kyOBMQoGT6WltjN6sXZuxOXw6DgdK7Ad+ijYS5gjcr7vlA== 1072 | dependencies: 1073 | argv-tools "^0.1.1" 1074 | array-back "^2.0.0" 1075 | find-replace "^2.0.1" 1076 | lodash.camelcase "^4.3.0" 1077 | typical "^2.6.1" 1078 | 1079 | command-line-commands@^2.0.1: 1080 | version "2.0.1" 1081 | resolved "https://registry.yarnpkg.com/command-line-commands/-/command-line-commands-2.0.1.tgz#c58aa13dc78c06038ed67077e57ad09a6f858f46" 1082 | integrity sha512-m8c2p1DrNd2ruIAggxd/y6DgygQayf6r8RHwchhXryaLF8I6koYjoYroVP+emeROE9DXN5b9sP1Gh+WtvTTdtQ== 1083 | dependencies: 1084 | array-back "^2.0.0" 1085 | 1086 | command-line-usage@^5.0.5: 1087 | version "5.0.5" 1088 | resolved "https://registry.yarnpkg.com/command-line-usage/-/command-line-usage-5.0.5.tgz#5f25933ffe6dedd983c635d38a21d7e623fda357" 1089 | integrity sha512-d8NrGylA5oCXSbGoKz05FkehDAzSmIm4K03S5VDh4d5lZAtTWfc3D1RuETtuQCn8129nYfJfDdF7P/lwcz1BlA== 1090 | dependencies: 1091 | array-back "^2.0.0" 1092 | chalk "^2.4.1" 1093 | table-layout "^0.4.3" 1094 | typical "^2.6.1" 1095 | 1096 | common-log-format@~0.1.3: 1097 | version "0.1.4" 1098 | resolved "https://registry.yarnpkg.com/common-log-format/-/common-log-format-0.1.4.tgz#39ba6ccb5c46c2f89aa92f232866d18f18075ba9" 1099 | integrity sha512-BXcgq+wzr2htmBmnT7cL7YHzPAWketWbr4kozjoM9kWe4sk3+zMgjcH0HO+EddjDlEw2LZysqLpVRwbF318tDw== 1100 | 1101 | component-emitter@^1.2.1: 1102 | version "1.2.1" 1103 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1104 | integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY= 1105 | 1106 | compressible@^2.0.0: 1107 | version "2.0.16" 1108 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.16.tgz#a49bf9858f3821b64ce1be0296afc7380466a77f" 1109 | integrity sha512-JQfEOdnI7dASwCuSPWIeVYwc/zMsu/+tRhoUvEfXz2gxOA2DNjmG5vhtFdBlhWPPGo+RdT9S3tgc/uH5qgDiiA== 1110 | dependencies: 1111 | mime-db ">= 1.38.0 < 2" 1112 | 1113 | concat-map@0.0.1: 1114 | version "0.0.1" 1115 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1116 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1117 | 1118 | concat-stream@^1.6.0: 1119 | version "1.6.0" 1120 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1121 | integrity sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc= 1122 | dependencies: 1123 | inherits "^2.0.3" 1124 | readable-stream "^2.2.2" 1125 | typedarray "^0.0.6" 1126 | 1127 | content-disposition@~0.5.2: 1128 | version "0.5.3" 1129 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" 1130 | integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== 1131 | dependencies: 1132 | safe-buffer "5.1.2" 1133 | 1134 | content-type@^1.0.4: 1135 | version "1.0.4" 1136 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 1137 | integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== 1138 | 1139 | convert-source-map@^1.1.0: 1140 | version "1.6.0" 1141 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" 1142 | integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== 1143 | dependencies: 1144 | safe-buffer "~5.1.1" 1145 | 1146 | cookies@~0.7.1: 1147 | version "0.7.3" 1148 | resolved "https://registry.yarnpkg.com/cookies/-/cookies-0.7.3.tgz#7912ce21fbf2e8c2da70cf1c3f351aecf59dadfa" 1149 | integrity sha512-+gixgxYSgQLTaTIilDHAdlNPZDENDQernEMiIcZpYYP14zgHsCt4Ce1FEjFtcp6GefhozebB6orvhAAWx/IS0A== 1150 | dependencies: 1151 | depd "~1.1.2" 1152 | keygrip "~1.0.3" 1153 | 1154 | copy-descriptor@^0.1.0: 1155 | version "0.1.1" 1156 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1157 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= 1158 | 1159 | copy-to@^2.0.1: 1160 | version "2.0.1" 1161 | resolved "https://registry.yarnpkg.com/copy-to/-/copy-to-2.0.1.tgz#2680fbb8068a48d08656b6098092bdafc906f4a5" 1162 | integrity sha1-JoD7uAaKSNCGVrYJgJK9r8kG9KU= 1163 | 1164 | core-util-is@~1.0.0: 1165 | version "1.0.2" 1166 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1167 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 1168 | 1169 | cross-spawn@^5.1.0: 1170 | version "5.1.0" 1171 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1172 | integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= 1173 | dependencies: 1174 | lru-cache "^4.0.1" 1175 | shebang-command "^1.2.0" 1176 | which "^1.2.9" 1177 | 1178 | debug@*, debug@^4.1.0: 1179 | version "4.1.1" 1180 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 1181 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 1182 | dependencies: 1183 | ms "^2.1.1" 1184 | 1185 | debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.3: 1186 | version "2.6.9" 1187 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1188 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 1189 | dependencies: 1190 | ms "2.0.0" 1191 | 1192 | debug@^2.6.8: 1193 | version "2.6.8" 1194 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1195 | integrity sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw= 1196 | dependencies: 1197 | ms "2.0.0" 1198 | 1199 | debug@^3.1.0: 1200 | version "3.2.6" 1201 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 1202 | integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== 1203 | dependencies: 1204 | ms "^2.1.1" 1205 | 1206 | debug@~3.1.0: 1207 | version "3.1.0" 1208 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1209 | integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== 1210 | dependencies: 1211 | ms "2.0.0" 1212 | 1213 | decode-uri-component@^0.2.0: 1214 | version "0.2.0" 1215 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1216 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= 1217 | 1218 | deep-equal@~1.0.1: 1219 | version "1.0.1" 1220 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1221 | integrity sha1-9dJgKStmDghO/0zbyfCK0yR0SLU= 1222 | 1223 | deep-extend@~0.6.0: 1224 | version "0.6.0" 1225 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 1226 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 1227 | 1228 | deep-is@~0.1.3: 1229 | version "0.1.3" 1230 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1231 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 1232 | 1233 | defer-promise@^1.0.1: 1234 | version "1.0.2" 1235 | resolved "https://registry.yarnpkg.com/defer-promise/-/defer-promise-1.0.2.tgz#b79521c59cadadaed2d305385d30f8b05cbf9196" 1236 | integrity sha512-5a0iWJvnon50nLLqHPW83pX45BLb4MmlSa1sIg05NBhZoK5EZGz1s8qoZ3888dVGGOT0Ni01NdETuAgdJUZknA== 1237 | 1238 | define-property@^0.2.5: 1239 | version "0.2.5" 1240 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1241 | integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= 1242 | dependencies: 1243 | is-descriptor "^0.1.0" 1244 | 1245 | define-property@^1.0.0: 1246 | version "1.0.0" 1247 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1248 | integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= 1249 | dependencies: 1250 | is-descriptor "^1.0.0" 1251 | 1252 | define-property@^2.0.2: 1253 | version "2.0.2" 1254 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1255 | integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== 1256 | dependencies: 1257 | is-descriptor "^1.0.2" 1258 | isobject "^3.0.1" 1259 | 1260 | del@^2.0.2: 1261 | version "2.2.2" 1262 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1263 | integrity sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag= 1264 | dependencies: 1265 | globby "^5.0.0" 1266 | is-path-cwd "^1.0.0" 1267 | is-path-in-cwd "^1.0.0" 1268 | object-assign "^4.0.1" 1269 | pify "^2.0.0" 1270 | pinkie-promise "^2.0.0" 1271 | rimraf "^2.2.8" 1272 | 1273 | delegates@^1.0.0: 1274 | version "1.0.0" 1275 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1276 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 1277 | 1278 | depd@^1.1.2, depd@~1.1.2: 1279 | version "1.1.2" 1280 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 1281 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= 1282 | 1283 | destroy@^1.0.4: 1284 | version "1.0.4" 1285 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1286 | integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= 1287 | 1288 | doctrine@^2.0.0: 1289 | version "2.0.0" 1290 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1291 | integrity sha1-xz2NKQnSIpHhoAejlYBNqLZl/mM= 1292 | dependencies: 1293 | esutils "^2.0.2" 1294 | isarray "^1.0.0" 1295 | 1296 | ee-first@1.1.1: 1297 | version "1.1.1" 1298 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1299 | integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= 1300 | 1301 | electron-to-chromium@^1.3.113: 1302 | version "1.3.115" 1303 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.115.tgz#fdaa56c19b9f7386dbf29abc1cc632ff5468ff3b" 1304 | integrity sha512-mN2qeapQWdi2B9uddxTZ4nl80y46hbyKY5Wt9Yjih+QZFQLdaujEDK4qJky35WhyxMzHF3ZY41Lgjd2BPDuBhg== 1305 | 1306 | error-inject@^1.0.0: 1307 | version "1.0.0" 1308 | resolved "https://registry.yarnpkg.com/error-inject/-/error-inject-1.0.0.tgz#e2b3d91b54aed672f309d950d154850fa11d4f37" 1309 | integrity sha1-4rPZG1Su1nLzCdlQ0VSFD6EdTzc= 1310 | 1311 | escape-html@^1.0.3, escape-html@~1.0.3: 1312 | version "1.0.3" 1313 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1314 | integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= 1315 | 1316 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1317 | version "1.0.5" 1318 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1319 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1320 | 1321 | eslint-scope@^3.7.1: 1322 | version "3.7.1" 1323 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1324 | integrity sha1-PWPD7f2gLgbgGkUq2IyqzHzctug= 1325 | dependencies: 1326 | esrecurse "^4.1.0" 1327 | estraverse "^4.1.1" 1328 | 1329 | eslint@^4.6.0: 1330 | version "4.6.1" 1331 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.6.1.tgz#ddc7fc7fd70bf93205b0b3449bb16a1e9e7d4950" 1332 | integrity sha1-3cf8f9cL+TIFsLNEm7FqHp59SVA= 1333 | dependencies: 1334 | ajv "^5.2.0" 1335 | babel-code-frame "^6.22.0" 1336 | chalk "^2.1.0" 1337 | concat-stream "^1.6.0" 1338 | cross-spawn "^5.1.0" 1339 | debug "^2.6.8" 1340 | doctrine "^2.0.0" 1341 | eslint-scope "^3.7.1" 1342 | espree "^3.5.0" 1343 | esquery "^1.0.0" 1344 | estraverse "^4.2.0" 1345 | esutils "^2.0.2" 1346 | file-entry-cache "^2.0.0" 1347 | functional-red-black-tree "^1.0.1" 1348 | glob "^7.1.2" 1349 | globals "^9.17.0" 1350 | ignore "^3.3.3" 1351 | imurmurhash "^0.1.4" 1352 | inquirer "^3.0.6" 1353 | is-resolvable "^1.0.0" 1354 | js-yaml "^3.9.1" 1355 | json-stable-stringify "^1.0.1" 1356 | levn "^0.3.0" 1357 | lodash "^4.17.4" 1358 | minimatch "^3.0.2" 1359 | mkdirp "^0.5.1" 1360 | natural-compare "^1.4.0" 1361 | optionator "^0.8.2" 1362 | path-is-inside "^1.0.2" 1363 | pluralize "^4.0.0" 1364 | progress "^2.0.0" 1365 | require-uncached "^1.0.3" 1366 | semver "^5.3.0" 1367 | strip-ansi "^4.0.0" 1368 | strip-json-comments "~2.0.1" 1369 | table "^4.0.1" 1370 | text-table "~0.2.0" 1371 | 1372 | espree@^3.5.0: 1373 | version "3.5.0" 1374 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.0.tgz#98358625bdd055861ea27e2867ea729faf463d8d" 1375 | integrity sha1-mDWGJb3QVYYeon4oZ+pyn69GPY0= 1376 | dependencies: 1377 | acorn "^5.1.1" 1378 | acorn-jsx "^3.0.0" 1379 | 1380 | esprima@^4.0.0: 1381 | version "4.0.0" 1382 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1383 | integrity sha512-oftTcaMu/EGrEIu904mWteKIv8vMuOgGYo7EhVJJN00R/EED9DCua/xxHRdYnKtcECzVg7xOWhflvJMnqcFZjw== 1384 | 1385 | esquery@^1.0.0: 1386 | version "1.0.0" 1387 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1388 | integrity sha1-z7qLV9f7qT8XKYqKAGoEzaE9gPo= 1389 | dependencies: 1390 | estraverse "^4.0.0" 1391 | 1392 | esrecurse@^4.1.0: 1393 | version "4.2.0" 1394 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1395 | integrity sha1-+pVo2Y04I/mkHZHpAtyrnqblsWM= 1396 | dependencies: 1397 | estraverse "^4.1.0" 1398 | object-assign "^4.0.1" 1399 | 1400 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1401 | version "4.2.0" 1402 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1403 | integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= 1404 | 1405 | estree-walker@^0.5.2: 1406 | version "0.5.2" 1407 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.5.2.tgz#d3850be7529c9580d815600b53126515e146dd39" 1408 | integrity sha512-XpCnW/AE10ws/kDAs37cngSkvgIR8aN3G0MS85m7dUpuK2EREo9VJ00uvw6Dg/hXEpfsE1I1TvJOJr+Z+TL+ig== 1409 | 1410 | estree-walker@^0.6.0: 1411 | version "0.6.0" 1412 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.0.tgz#5d865327c44a618dde5699f763891ae31f257dae" 1413 | integrity sha512-peq1RfVAVzr3PU/jL31RaOjUKLoZJpObQWJJ+LgfcxDUifyLZ1RjPQZTl0pzj2uJ45b7A7XpyppXvxdEqzo4rw== 1414 | 1415 | esutils@^2.0.2: 1416 | version "2.0.2" 1417 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1418 | integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= 1419 | 1420 | etag@^1.3.0: 1421 | version "1.8.1" 1422 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 1423 | integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= 1424 | 1425 | expand-brackets@^2.1.4: 1426 | version "2.1.4" 1427 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1428 | integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= 1429 | dependencies: 1430 | debug "^2.3.3" 1431 | define-property "^0.2.5" 1432 | extend-shallow "^2.0.1" 1433 | posix-character-classes "^0.1.0" 1434 | regex-not "^1.0.0" 1435 | snapdragon "^0.8.1" 1436 | to-regex "^3.0.1" 1437 | 1438 | extend-shallow@^2.0.1: 1439 | version "2.0.1" 1440 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1441 | integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= 1442 | dependencies: 1443 | is-extendable "^0.1.0" 1444 | 1445 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1446 | version "3.0.2" 1447 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1448 | integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= 1449 | dependencies: 1450 | assign-symbols "^1.0.0" 1451 | is-extendable "^1.0.1" 1452 | 1453 | external-editor@^2.0.4: 1454 | version "2.0.4" 1455 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" 1456 | integrity sha1-HtkZnanL/i7y96MbL96LDRI2iXI= 1457 | dependencies: 1458 | iconv-lite "^0.4.17" 1459 | jschardet "^1.4.2" 1460 | tmp "^0.0.31" 1461 | 1462 | extglob@^2.0.4: 1463 | version "2.0.4" 1464 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1465 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== 1466 | dependencies: 1467 | array-unique "^0.3.2" 1468 | define-property "^1.0.0" 1469 | expand-brackets "^2.1.4" 1470 | extend-shallow "^2.0.1" 1471 | fragment-cache "^0.2.1" 1472 | regex-not "^1.0.0" 1473 | snapdragon "^0.8.1" 1474 | to-regex "^3.0.1" 1475 | 1476 | fast-deep-equal@^1.0.0: 1477 | version "1.0.0" 1478 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1479 | integrity sha1-liVqO8l1WV6zbYLpkp0GDYk0Of8= 1480 | 1481 | fast-levenshtein@~2.0.4: 1482 | version "2.0.6" 1483 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1484 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1485 | 1486 | figures@^2.0.0: 1487 | version "2.0.0" 1488 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1489 | integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= 1490 | dependencies: 1491 | escape-string-regexp "^1.0.5" 1492 | 1493 | file-entry-cache@^2.0.0: 1494 | version "2.0.0" 1495 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1496 | integrity sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E= 1497 | dependencies: 1498 | flat-cache "^1.2.1" 1499 | object-assign "^4.0.1" 1500 | 1501 | fill-range@^4.0.0: 1502 | version "4.0.0" 1503 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1504 | integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= 1505 | dependencies: 1506 | extend-shallow "^2.0.1" 1507 | is-number "^3.0.0" 1508 | repeat-string "^1.6.1" 1509 | to-regex-range "^2.1.0" 1510 | 1511 | find-replace@^2.0.1: 1512 | version "2.0.1" 1513 | resolved "https://registry.yarnpkg.com/find-replace/-/find-replace-2.0.1.tgz#6d9683a7ca20f8f9aabeabad07e4e2580f528550" 1514 | integrity sha512-LzDo3Fpa30FLIBsh6DCDnMN1KW2g4QKkqKmejlImgWY67dDFPX/x9Kh/op/GK522DchQXEvDi/wD48HKW49XOQ== 1515 | dependencies: 1516 | array-back "^2.0.0" 1517 | test-value "^3.0.0" 1518 | 1519 | flat-cache@^1.2.1: 1520 | version "1.2.2" 1521 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1522 | integrity sha1-+oZxTnLCHbiGAXYezy9VXRq8a5Y= 1523 | dependencies: 1524 | circular-json "^0.3.1" 1525 | del "^2.0.2" 1526 | graceful-fs "^4.1.2" 1527 | write "^0.2.1" 1528 | 1529 | focus-lock@^0.11.3: 1530 | version "0.11.3" 1531 | resolved "https://packages.atlassian.com/api/npm/npm-remote/focus-lock/-/focus-lock-0.11.3.tgz#c094e8f109d780f56038abdeec79328fd56b627f" 1532 | integrity sha512-4n0pYcPTa/uI7Q66BZna61nRT7lDhnuJ9PJr6wiDjx4uStg491ks41y7uOG+s0umaaa+hulNKSldU9aTg9/yVg== 1533 | dependencies: 1534 | tslib "^2.0.3" 1535 | 1536 | for-in@^1.0.2: 1537 | version "1.0.2" 1538 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1539 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= 1540 | 1541 | fragment-cache@^0.2.1: 1542 | version "0.2.1" 1543 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1544 | integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= 1545 | dependencies: 1546 | map-cache "^0.2.2" 1547 | 1548 | fresh@~0.5.2: 1549 | version "0.5.2" 1550 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 1551 | integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= 1552 | 1553 | fs.realpath@^1.0.0: 1554 | version "1.0.0" 1555 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1556 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1557 | 1558 | functional-red-black-tree@^1.0.1: 1559 | version "1.0.1" 1560 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1561 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 1562 | 1563 | get-value@^2.0.3, get-value@^2.0.6: 1564 | version "2.0.6" 1565 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1566 | integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= 1567 | 1568 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.2: 1569 | version "7.1.2" 1570 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1571 | integrity sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ== 1572 | dependencies: 1573 | fs.realpath "^1.0.0" 1574 | inflight "^1.0.4" 1575 | inherits "2" 1576 | minimatch "^3.0.4" 1577 | once "^1.3.0" 1578 | path-is-absolute "^1.0.0" 1579 | 1580 | globals@^11.1.0: 1581 | version "11.11.0" 1582 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.11.0.tgz#dcf93757fa2de5486fbeed7118538adf789e9c2e" 1583 | integrity sha512-WHq43gS+6ufNOEqlrDBxVEbb8ntfXrfAUU2ZOpCxrBdGKW3gyv8mCxAfIBD0DroPKGrJ2eSsXsLtY9MPntsyTw== 1584 | 1585 | globals@^9.17.0: 1586 | version "9.18.0" 1587 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1588 | integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== 1589 | 1590 | globby@^5.0.0: 1591 | version "5.0.0" 1592 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1593 | integrity sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0= 1594 | dependencies: 1595 | array-union "^1.0.1" 1596 | arrify "^1.0.0" 1597 | glob "^7.0.3" 1598 | object-assign "^4.0.1" 1599 | pify "^2.0.0" 1600 | pinkie-promise "^2.0.0" 1601 | 1602 | graceful-fs@^4.1.2: 1603 | version "4.1.11" 1604 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1605 | integrity sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg= 1606 | 1607 | has-ansi@^2.0.0: 1608 | version "2.0.0" 1609 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1610 | integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= 1611 | dependencies: 1612 | ansi-regex "^2.0.0" 1613 | 1614 | has-flag@^2.0.0: 1615 | version "2.0.0" 1616 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1617 | integrity sha1-6CB68cx7MNRGzHC3NLXovhj4jVE= 1618 | 1619 | has-flag@^3.0.0: 1620 | version "3.0.0" 1621 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1622 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1623 | 1624 | has-value@^0.3.1: 1625 | version "0.3.1" 1626 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1627 | integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= 1628 | dependencies: 1629 | get-value "^2.0.3" 1630 | has-values "^0.1.4" 1631 | isobject "^2.0.0" 1632 | 1633 | has-value@^1.0.0: 1634 | version "1.0.0" 1635 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1636 | integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= 1637 | dependencies: 1638 | get-value "^2.0.6" 1639 | has-values "^1.0.0" 1640 | isobject "^3.0.0" 1641 | 1642 | has-values@^0.1.4: 1643 | version "0.1.4" 1644 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1645 | integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= 1646 | 1647 | has-values@^1.0.0: 1648 | version "1.0.0" 1649 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1650 | integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= 1651 | dependencies: 1652 | is-number "^3.0.0" 1653 | kind-of "^4.0.0" 1654 | 1655 | http-assert@^1.3.0: 1656 | version "1.4.0" 1657 | resolved "https://registry.yarnpkg.com/http-assert/-/http-assert-1.4.0.tgz#0e550b4fca6adf121bbeed83248c17e62f593a9a" 1658 | integrity sha512-tPVv62a6l3BbQoM/N5qo969l0OFxqpnQzNUPeYfTP6Spo4zkgWeDBD1D5thI7sDLg7jCCihXTLB0X8UtdyAy8A== 1659 | dependencies: 1660 | deep-equal "~1.0.1" 1661 | http-errors "~1.7.1" 1662 | 1663 | http-errors@1.6.3, http-errors@~1.6.2: 1664 | version "1.6.3" 1665 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" 1666 | integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= 1667 | dependencies: 1668 | depd "~1.1.2" 1669 | inherits "2.0.3" 1670 | setprototypeof "1.1.0" 1671 | statuses ">= 1.4.0 < 2" 1672 | 1673 | http-errors@^1.6.1, http-errors@^1.6.3, http-errors@~1.7.1: 1674 | version "1.7.2" 1675 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" 1676 | integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== 1677 | dependencies: 1678 | depd "~1.1.2" 1679 | inherits "2.0.3" 1680 | setprototypeof "1.1.1" 1681 | statuses ">= 1.5.0 < 2" 1682 | toidentifier "1.0.0" 1683 | 1684 | iconv-lite@0.4.23: 1685 | version "0.4.23" 1686 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 1687 | integrity sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA== 1688 | dependencies: 1689 | safer-buffer ">= 2.1.2 < 3" 1690 | 1691 | iconv-lite@^0.4.17: 1692 | version "0.4.18" 1693 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2" 1694 | integrity sha512-sr1ZQph3UwHTR0XftSbK85OvBbxe/abLGzEnPENCQwmHf7sck8Oyu4ob3LgBxWWxRoM+QszeUyl7jbqapu2TqA== 1695 | 1696 | ignore@^3.3.3: 1697 | version "3.3.5" 1698 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.5.tgz#c4e715455f6073a8d7e5dae72d2fc9d71663dba6" 1699 | integrity sha512-JLH93mL8amZQhh/p6mfQgVBH3M6epNq3DfsXsTSuSrInVjwyYlFE1nv2AgfRCC8PoOhM0jwQ5v8s9LgbK7yGDw== 1700 | 1701 | imurmurhash@^0.1.4: 1702 | version "0.1.4" 1703 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1704 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1705 | 1706 | inflation@^2.0.0: 1707 | version "2.0.0" 1708 | resolved "https://registry.yarnpkg.com/inflation/-/inflation-2.0.0.tgz#8b417e47c28f925a45133d914ca1fd389107f30f" 1709 | integrity sha1-i0F+R8KPklpFEz2RTKH9OJEH8w8= 1710 | 1711 | inflight@^1.0.4: 1712 | version "1.0.6" 1713 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1714 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1715 | dependencies: 1716 | once "^1.3.0" 1717 | wrappy "1" 1718 | 1719 | inherits@2, inherits@2.0.3, inherits@^2.0.3, inherits@~2.0.3: 1720 | version "2.0.3" 1721 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1722 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 1723 | 1724 | inquirer@^3.0.6: 1725 | version "3.2.3" 1726 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.2.3.tgz#1c7b1731cf77b934ec47d22c9ac5aa8fe7fbe095" 1727 | integrity sha512-Bc3KbimpDTOeQdDj18Ir/rlsGuhBSSNqdOnxaAuKhpkdnMMuKsEGbZD2v5KFF9oso2OU+BPh7+/u5obmFDRmWw== 1728 | dependencies: 1729 | ansi-escapes "^2.0.0" 1730 | chalk "^2.0.0" 1731 | cli-cursor "^2.1.0" 1732 | cli-width "^2.0.0" 1733 | external-editor "^2.0.4" 1734 | figures "^2.0.0" 1735 | lodash "^4.3.0" 1736 | mute-stream "0.0.7" 1737 | run-async "^2.2.0" 1738 | rx-lite "^4.0.8" 1739 | rx-lite-aggregates "^4.0.8" 1740 | string-width "^2.1.0" 1741 | strip-ansi "^4.0.0" 1742 | through "^2.3.6" 1743 | 1744 | invariant@^2.2.2: 1745 | version "2.2.2" 1746 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1747 | integrity sha1-nh9WrArNtr8wMwbzOL47IErmA2A= 1748 | dependencies: 1749 | loose-envify "^1.0.0" 1750 | 1751 | is-accessor-descriptor@^0.1.6: 1752 | version "0.1.6" 1753 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1754 | integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= 1755 | dependencies: 1756 | kind-of "^3.0.2" 1757 | 1758 | is-accessor-descriptor@^1.0.0: 1759 | version "1.0.0" 1760 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1761 | integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== 1762 | dependencies: 1763 | kind-of "^6.0.0" 1764 | 1765 | is-buffer@^1.1.5: 1766 | version "1.1.6" 1767 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1768 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 1769 | 1770 | is-data-descriptor@^0.1.4: 1771 | version "0.1.4" 1772 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1773 | integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= 1774 | dependencies: 1775 | kind-of "^3.0.2" 1776 | 1777 | is-data-descriptor@^1.0.0: 1778 | version "1.0.0" 1779 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1780 | integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== 1781 | dependencies: 1782 | kind-of "^6.0.0" 1783 | 1784 | is-descriptor@^0.1.0: 1785 | version "0.1.6" 1786 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1787 | integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== 1788 | dependencies: 1789 | is-accessor-descriptor "^0.1.6" 1790 | is-data-descriptor "^0.1.4" 1791 | kind-of "^5.0.0" 1792 | 1793 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1794 | version "1.0.2" 1795 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1796 | integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== 1797 | dependencies: 1798 | is-accessor-descriptor "^1.0.0" 1799 | is-data-descriptor "^1.0.0" 1800 | kind-of "^6.0.2" 1801 | 1802 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1803 | version "0.1.1" 1804 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1805 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= 1806 | 1807 | is-extendable@^1.0.1: 1808 | version "1.0.1" 1809 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1810 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== 1811 | dependencies: 1812 | is-plain-object "^2.0.4" 1813 | 1814 | is-fullwidth-code-point@^2.0.0: 1815 | version "2.0.0" 1816 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1817 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 1818 | 1819 | is-generator-function@^1.0.7: 1820 | version "1.0.7" 1821 | resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.7.tgz#d2132e529bb0000a7f80794d4bdf5cd5e5813522" 1822 | integrity sha512-YZc5EwyO4f2kWCax7oegfuSr9mFz1ZvieNYBEjmukLxgXfBUbxAWGVF7GZf0zidYtoBl3WvC07YK0wT76a+Rtw== 1823 | 1824 | is-module@^1.0.0: 1825 | version "1.0.0" 1826 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" 1827 | integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= 1828 | 1829 | is-number@^3.0.0: 1830 | version "3.0.0" 1831 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1832 | integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= 1833 | dependencies: 1834 | kind-of "^3.0.2" 1835 | 1836 | is-path-cwd@^1.0.0: 1837 | version "1.0.0" 1838 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1839 | integrity sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0= 1840 | 1841 | is-path-in-cwd@^1.0.0: 1842 | version "1.0.0" 1843 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1844 | integrity sha1-ZHdYK4IU1gI0YJRWcAO+ip6sBNw= 1845 | dependencies: 1846 | is-path-inside "^1.0.0" 1847 | 1848 | is-path-inside@^1.0.0: 1849 | version "1.0.0" 1850 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1851 | integrity sha1-/AbloWg/vaE95mev9xe7wQpI838= 1852 | dependencies: 1853 | path-is-inside "^1.0.1" 1854 | 1855 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1856 | version "2.0.4" 1857 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1858 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 1859 | dependencies: 1860 | isobject "^3.0.1" 1861 | 1862 | is-promise@^2.1.0: 1863 | version "2.1.0" 1864 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1865 | integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= 1866 | 1867 | is-resolvable@^1.0.0: 1868 | version "1.0.0" 1869 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1870 | integrity sha1-jfV8YeouPFAUCNEA+wE8+NbgzGI= 1871 | dependencies: 1872 | tryit "^1.0.1" 1873 | 1874 | is-windows@^1.0.2: 1875 | version "1.0.2" 1876 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1877 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 1878 | 1879 | is-wsl@^1.1.0: 1880 | version "1.1.0" 1881 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" 1882 | integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= 1883 | 1884 | isarray@0.0.1: 1885 | version "0.0.1" 1886 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1887 | integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= 1888 | 1889 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1890 | version "1.0.0" 1891 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1892 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 1893 | 1894 | isexe@^2.0.0: 1895 | version "2.0.0" 1896 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1897 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1898 | 1899 | isobject@^2.0.0: 1900 | version "2.1.0" 1901 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1902 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= 1903 | dependencies: 1904 | isarray "1.0.0" 1905 | 1906 | isobject@^3.0.0, isobject@^3.0.1: 1907 | version "3.0.1" 1908 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1909 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= 1910 | 1911 | js-levenshtein@^1.1.3: 1912 | version "1.1.6" 1913 | resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" 1914 | integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g== 1915 | 1916 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1917 | version "3.0.2" 1918 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1919 | integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= 1920 | 1921 | js-tokens@^4.0.0: 1922 | version "4.0.0" 1923 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1924 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1925 | 1926 | js-yaml@^3.9.1: 1927 | version "3.9.1" 1928 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.1.tgz#08775cebdfdd359209f0d2acd383c8f86a6904a0" 1929 | integrity sha512-CbcG379L1e+mWBnLvHWWeLs8GyV/EMw862uLI3c+GxVyDHWZcjZinwuBd3iW2pgxgIlksW/1vNJa4to+RvDOww== 1930 | dependencies: 1931 | argparse "^1.0.7" 1932 | esprima "^4.0.0" 1933 | 1934 | jschardet@^1.4.2: 1935 | version "1.5.1" 1936 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.1.tgz#c519f629f86b3a5bedba58a88d311309eec097f9" 1937 | integrity sha512-vE2hT1D0HLZCLLclfBSfkfTTedhVj0fubHpJBHKwwUWX0nSbhPAfk+SG9rTX95BYNmau8rGFfCeaT6T5OW1C2A== 1938 | 1939 | jsesc@^2.5.1: 1940 | version "2.5.2" 1941 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1942 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1943 | 1944 | jsesc@~0.5.0: 1945 | version "0.5.0" 1946 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1947 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 1948 | 1949 | json-schema-traverse@^0.3.0: 1950 | version "0.3.1" 1951 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1952 | integrity sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A= 1953 | 1954 | json-stable-stringify@^1.0.1: 1955 | version "1.0.1" 1956 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1957 | integrity sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8= 1958 | dependencies: 1959 | jsonify "~0.0.0" 1960 | 1961 | json-stringify-safe@5: 1962 | version "5.0.1" 1963 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1964 | integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= 1965 | 1966 | json5@^2.1.0: 1967 | version "2.1.0" 1968 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" 1969 | integrity sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ== 1970 | dependencies: 1971 | minimist "^1.2.0" 1972 | 1973 | jsonify@~0.0.0: 1974 | version "0.0.0" 1975 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1976 | integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM= 1977 | 1978 | jsonparse@^1.2.0: 1979 | version "1.3.1" 1980 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 1981 | integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA= 1982 | 1983 | keygrip@~1.0.3: 1984 | version "1.0.3" 1985 | resolved "https://registry.yarnpkg.com/keygrip/-/keygrip-1.0.3.tgz#399d709f0aed2bab0a059e0cdd3a5023a053e1dc" 1986 | integrity sha512-/PpesirAIfaklxUzp4Yb7xBper9MwP6hNRA6BGGUFCgbJ+BM5CKBtsoxinNXkLHAr+GXS1/lSlF2rP7cv5Fl+g== 1987 | 1988 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1989 | version "3.2.2" 1990 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1991 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= 1992 | dependencies: 1993 | is-buffer "^1.1.5" 1994 | 1995 | kind-of@^4.0.0: 1996 | version "4.0.0" 1997 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1998 | integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= 1999 | dependencies: 2000 | is-buffer "^1.1.5" 2001 | 2002 | kind-of@^5.0.0: 2003 | version "5.1.0" 2004 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2005 | integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== 2006 | 2007 | kind-of@^6.0.0, kind-of@^6.0.2: 2008 | version "6.0.2" 2009 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2010 | integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== 2011 | 2012 | koa-bodyparser@^4.2.0: 2013 | version "4.2.1" 2014 | resolved "https://registry.yarnpkg.com/koa-bodyparser/-/koa-bodyparser-4.2.1.tgz#4d7dacb5e6db1106649b595d9e5ccb158b6f3b29" 2015 | integrity sha512-UIjPAlMZfNYDDe+4zBaOAUKYqkwAGcIU6r2ARf1UOXPAlfennQys5IiShaVeNf7KkVBlf88f2LeLvBFvKylttw== 2016 | dependencies: 2017 | co-body "^6.0.0" 2018 | copy-to "^2.0.1" 2019 | 2020 | koa-compose@^3.0.0: 2021 | version "3.2.1" 2022 | resolved "https://registry.yarnpkg.com/koa-compose/-/koa-compose-3.2.1.tgz#a85ccb40b7d986d8e5a345b3a1ace8eabcf54de7" 2023 | integrity sha1-qFzLQLfZhtjlo0Wzoazo6rz1Tec= 2024 | dependencies: 2025 | any-promise "^1.1.0" 2026 | 2027 | koa-compose@^4.1.0: 2028 | version "4.1.0" 2029 | resolved "https://registry.yarnpkg.com/koa-compose/-/koa-compose-4.1.0.tgz#507306b9371901db41121c812e923d0d67d3e877" 2030 | integrity sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw== 2031 | 2032 | koa-compress@^2.0.0: 2033 | version "2.0.0" 2034 | resolved "https://registry.yarnpkg.com/koa-compress/-/koa-compress-2.0.0.tgz#7b7eb2921b847746b5e122ba9f5cd8a671e8ea3a" 2035 | integrity sha1-e36ykhuEd0a14SK6n1zYpnHo6jo= 2036 | dependencies: 2037 | bytes "^2.3.0" 2038 | compressible "^2.0.0" 2039 | koa-is-json "^1.0.0" 2040 | statuses "^1.0.0" 2041 | 2042 | koa-conditional-get@^2.0.0: 2043 | version "2.0.0" 2044 | resolved "https://registry.yarnpkg.com/koa-conditional-get/-/koa-conditional-get-2.0.0.tgz#a43f3723c1d014b730a34ece8adf30b93c8233f2" 2045 | integrity sha1-pD83I8HQFLcwo07Oit8wuTyCM/I= 2046 | 2047 | koa-convert@^1.2.0: 2048 | version "1.2.0" 2049 | resolved "https://registry.yarnpkg.com/koa-convert/-/koa-convert-1.2.0.tgz#da40875df49de0539098d1700b50820cebcd21d0" 2050 | integrity sha1-2kCHXfSd4FOQmNFwC1CCDOvNIdA= 2051 | dependencies: 2052 | co "^4.6.0" 2053 | koa-compose "^3.0.0" 2054 | 2055 | koa-etag@^3.0.0: 2056 | version "3.0.0" 2057 | resolved "https://registry.yarnpkg.com/koa-etag/-/koa-etag-3.0.0.tgz#9ef7382ddd5a82ab0deb153415c915836f771d3f" 2058 | integrity sha1-nvc4Ld1agqsN6xU0FckVg293HT8= 2059 | dependencies: 2060 | etag "^1.3.0" 2061 | mz "^2.1.0" 2062 | 2063 | koa-is-json@1, koa-is-json@^1.0.0: 2064 | version "1.0.0" 2065 | resolved "https://registry.yarnpkg.com/koa-is-json/-/koa-is-json-1.0.0.tgz#273c07edcdcb8df6a2c1ab7d59ee76491451ec14" 2066 | integrity sha1-JzwH7c3Ljfaiwat9We52SRRR7BQ= 2067 | 2068 | koa-json@^2.0.2: 2069 | version "2.0.2" 2070 | resolved "https://registry.yarnpkg.com/koa-json/-/koa-json-2.0.2.tgz#36af14e6ea1f5d646d7c44a285701c6f85a4fde4" 2071 | integrity sha1-Nq8U5uofXWRtfESihXAcb4Wk/eQ= 2072 | dependencies: 2073 | koa-is-json "1" 2074 | streaming-json-stringify "3" 2075 | 2076 | koa-mock-response@0.2.0: 2077 | version "0.2.0" 2078 | resolved "https://registry.yarnpkg.com/koa-mock-response/-/koa-mock-response-0.2.0.tgz#a216490ce75f227fcef3a4b03374e5915e216029" 2079 | integrity sha512-HmybRN1a3WqcSFvf7tycu2YhBIEHeqzm8bwcsShNWGsTgP86coZOpdI8aqYm/1DFsAQMctnpdWrva4rDr1Pibg== 2080 | dependencies: 2081 | array-back "^2.0.0" 2082 | path-to-regexp "^1.7.0" 2083 | typical "^2.6.1" 2084 | 2085 | koa-morgan@^1.0.1: 2086 | version "1.0.1" 2087 | resolved "https://registry.yarnpkg.com/koa-morgan/-/koa-morgan-1.0.1.tgz#08052e0ce0d839d3c43178b90a5bb3424bef1f99" 2088 | integrity sha1-CAUuDODYOdPEMXi5CluzQkvvH5k= 2089 | dependencies: 2090 | morgan "^1.6.1" 2091 | 2092 | koa-range@^0.3.0: 2093 | version "0.3.0" 2094 | resolved "https://registry.yarnpkg.com/koa-range/-/koa-range-0.3.0.tgz#3588e3496473a839a1bd264d2a42b1d85bd7feac" 2095 | integrity sha1-NYjjSWRzqDmhvSZNKkKx2FvX/qw= 2096 | dependencies: 2097 | stream-slice "^0.1.2" 2098 | 2099 | koa-rewrite-75lb@^2.1.1: 2100 | version "2.1.1" 2101 | resolved "https://registry.yarnpkg.com/koa-rewrite-75lb/-/koa-rewrite-75lb-2.1.1.tgz#0dd21290d2857330116f3a0e9f7e2db5c313de8d" 2102 | integrity sha512-i9ofDKLs0xNCb2PW7wKGFzBFX6+Ce3aKoZzNKPh0fkejeUOTWkkDqnjXrgqrJEP2ifX6WWsHp6VtGuXzSYLSWQ== 2103 | dependencies: 2104 | path-to-regexp "1.7.0" 2105 | 2106 | koa-route@^3.2.0: 2107 | version "3.2.0" 2108 | resolved "https://registry.yarnpkg.com/koa-route/-/koa-route-3.2.0.tgz#76298b99a6bcfa9e38cab6fe5c79a8733e758bce" 2109 | integrity sha1-dimLmaa8+p44yrb+XHmocz51i84= 2110 | dependencies: 2111 | debug "*" 2112 | methods "~1.1.0" 2113 | path-to-regexp "^1.2.0" 2114 | 2115 | koa-send@^4.1.3: 2116 | version "4.1.3" 2117 | resolved "https://registry.yarnpkg.com/koa-send/-/koa-send-4.1.3.tgz#0822207bbf5253a414c8f1765ebc29fa41353cb6" 2118 | integrity sha512-3UetMBdaXSiw24qM2Mx5mKmxLKw5ZTPRjACjfhK6Haca55RKm9hr/uHDrkrxhSl5/S1CKI/RivZVIopiatZuTA== 2119 | dependencies: 2120 | debug "^2.6.3" 2121 | http-errors "^1.6.1" 2122 | mz "^2.6.0" 2123 | resolve-path "^1.4.0" 2124 | 2125 | koa-static@^4.0.2: 2126 | version "4.0.3" 2127 | resolved "https://registry.yarnpkg.com/koa-static/-/koa-static-4.0.3.tgz#5f93ad00fb1905db9ce46667c0e8bb7d22abfcd8" 2128 | integrity sha512-JGmxTuPWy4bH7bt6gD/OMWkhprawvRmzJSr8TWKmTL4N7+IMv3s0SedeQi5S4ilxM9Bo6ptkCyXj/7wf+VS5tg== 2129 | dependencies: 2130 | debug "^3.1.0" 2131 | koa-send "^4.1.3" 2132 | 2133 | koa@^2.6.2: 2134 | version "2.7.0" 2135 | resolved "https://registry.yarnpkg.com/koa/-/koa-2.7.0.tgz#7e00843506942b9d82c6cc33749f657c6e5e7adf" 2136 | integrity sha512-7ojD05s2Q+hFudF8tDLZ1CpCdVZw8JQELWSkcfG9bdtoTDzMmkRF6BQBU7JzIzCCOY3xd3tftiy/loHBUYaY2Q== 2137 | dependencies: 2138 | accepts "^1.3.5" 2139 | cache-content-type "^1.0.0" 2140 | content-disposition "~0.5.2" 2141 | content-type "^1.0.4" 2142 | cookies "~0.7.1" 2143 | debug "~3.1.0" 2144 | delegates "^1.0.0" 2145 | depd "^1.1.2" 2146 | destroy "^1.0.4" 2147 | error-inject "^1.0.0" 2148 | escape-html "^1.0.3" 2149 | fresh "~0.5.2" 2150 | http-assert "^1.3.0" 2151 | http-errors "^1.6.3" 2152 | is-generator-function "^1.0.7" 2153 | koa-compose "^4.1.0" 2154 | koa-convert "^1.2.0" 2155 | koa-is-json "^1.0.0" 2156 | on-finished "^2.3.0" 2157 | only "~0.0.2" 2158 | parseurl "^1.3.2" 2159 | statuses "^1.5.0" 2160 | type-is "^1.6.16" 2161 | vary "^1.1.2" 2162 | 2163 | levn@^0.3.0, levn@~0.3.0: 2164 | version "0.3.0" 2165 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2166 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 2167 | dependencies: 2168 | prelude-ls "~1.1.2" 2169 | type-check "~0.3.2" 2170 | 2171 | load-module@^1.0.0: 2172 | version "1.0.0" 2173 | resolved "https://registry.yarnpkg.com/load-module/-/load-module-1.0.0.tgz#d65fbe51f1c1df37231399dcd81d784af473eb9b" 2174 | integrity sha512-FmoAJI/RM4vmvIRk65g/SFCnGQC9BbALY3zy38Z0cMllNnra1+iCdxAf051LVymzE60/FweOo9or9XJiGgFshg== 2175 | dependencies: 2176 | array-back "^2.0.0" 2177 | 2178 | local-web-server@^2.6.1: 2179 | version "2.6.1" 2180 | resolved "https://registry.yarnpkg.com/local-web-server/-/local-web-server-2.6.1.tgz#6c96bc3193edb00b5ba1d483607a71af6d5509e7" 2181 | integrity sha512-KglUDD5jy3CMJ88E04aDjY6mRm387G2MX1XZI1bM6+dzrjLWKHURbef896tw7w7KI997r5UT0Y6NUm8To11/tQ== 2182 | dependencies: 2183 | lws "^1.3.0" 2184 | lws-basic-auth "^0.1.1" 2185 | lws-blacklist "^0.3.0" 2186 | lws-body-parser "^0.2.4" 2187 | lws-compress "^0.2.1" 2188 | lws-conditional-get "^0.3.4" 2189 | lws-cors "^1.0.0" 2190 | lws-index "^0.4.0" 2191 | lws-json "^0.3.2" 2192 | lws-log "^0.3.2" 2193 | lws-mime "^0.2.2" 2194 | lws-mock-response "^0.5.1" 2195 | lws-range "^1.1.0" 2196 | lws-request-monitor "^0.1.5" 2197 | lws-rewrite "^0.4.1" 2198 | lws-spa "^0.3.0" 2199 | lws-static "^0.5.0" 2200 | node-version-matches "^1.0.0" 2201 | 2202 | lodash.assignwith@^4.2.0: 2203 | version "4.2.0" 2204 | resolved "https://registry.yarnpkg.com/lodash.assignwith/-/lodash.assignwith-4.2.0.tgz#127a97f02adc41751a954d24b0de17e100e038eb" 2205 | integrity sha1-EnqX8CrcQXUalU0ksN4X4QDgOOs= 2206 | 2207 | lodash.camelcase@^4.3.0: 2208 | version "4.3.0" 2209 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 2210 | integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= 2211 | 2212 | lodash.padend@^4.6.1: 2213 | version "4.6.1" 2214 | resolved "https://registry.yarnpkg.com/lodash.padend/-/lodash.padend-4.6.1.tgz#53ccba047d06e158d311f45da625f4e49e6f166e" 2215 | integrity sha1-U8y6BH0G4VjTEfRdpiX05J5vFm4= 2216 | 2217 | lodash.pick@^4.4.0: 2218 | version "4.4.0" 2219 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" 2220 | integrity sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM= 2221 | 2222 | lodash.throttle@^4.1.1: 2223 | version "4.1.1" 2224 | resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" 2225 | integrity sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ= 2226 | 2227 | lodash@^4.0.0, lodash@^4.17.4, lodash@^4.3.0: 2228 | version "4.17.4" 2229 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2230 | integrity sha1-eCA6TRwyiuHYbcpkYONptX9AVa4= 2231 | 2232 | lodash@^4.17.10, lodash@^4.17.11: 2233 | version "4.17.11" 2234 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" 2235 | integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== 2236 | 2237 | loose-envify@^1.0.0: 2238 | version "1.3.1" 2239 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2240 | integrity sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg= 2241 | dependencies: 2242 | js-tokens "^3.0.0" 2243 | 2244 | lru-cache@^4.0.1: 2245 | version "4.1.1" 2246 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2247 | integrity sha512-q4spe4KTfsAS1SUHLO0wz8Qiyf1+vMIAgpRYioFYDMNqKfHQbg+AVDH3i4fvpl71/P1L0dBl+fQi+P37UYf0ew== 2248 | dependencies: 2249 | pseudomap "^1.0.2" 2250 | yallist "^2.1.2" 2251 | 2252 | lws-basic-auth@^0.1.1: 2253 | version "0.1.1" 2254 | resolved "https://registry.yarnpkg.com/lws-basic-auth/-/lws-basic-auth-0.1.1.tgz#d28856060572695b3811941d9f038517c4dbb34d" 2255 | integrity sha512-npPpqkOFzJzB9yJ2pGXmiYOswH+0n86ro75WhromeGuNo0GfE18ZLI/VCOVWmBbeXp2pcnPIMUAdkNSgukpAww== 2256 | dependencies: 2257 | basic-auth "^1.1.0" 2258 | 2259 | lws-blacklist@^0.3.0: 2260 | version "0.3.0" 2261 | resolved "https://registry.yarnpkg.com/lws-blacklist/-/lws-blacklist-0.3.0.tgz#34d925a96fd4c8b8b13781e8bb08f98d91f54e80" 2262 | integrity sha512-ZA8dujYaZwRNMBhgP+oGsZi9tum44Ba6VHsA3JrV1JVrjZ8c65kLaO/41rLBqQDKP3SDPu7dLity4YLwe1FuNQ== 2263 | dependencies: 2264 | array-back "^2.0.0" 2265 | path-to-regexp "^2.2.0" 2266 | 2267 | lws-body-parser@^0.2.4: 2268 | version "0.2.4" 2269 | resolved "https://registry.yarnpkg.com/lws-body-parser/-/lws-body-parser-0.2.4.tgz#5c93907cc02f571d59628e2fdfc6a454c4ed1d14" 2270 | integrity sha512-XKJzbzK97TUsewIPA5J2RpEk7kRoJcL+/Du6JlwzqIq84tWuXMfiT2a4Ncj12+tRWrdY2avV6d8uLhqlHLz1yg== 2271 | dependencies: 2272 | koa-bodyparser "^4.2.0" 2273 | 2274 | lws-compress@^0.2.1: 2275 | version "0.2.1" 2276 | resolved "https://registry.yarnpkg.com/lws-compress/-/lws-compress-0.2.1.tgz#7cb3cfab94d4e0488a6be4c8b706b78e29b2d673" 2277 | integrity sha512-14++1o6U8upi3DLx9J2O2sFELsijEJF9utoFxSH4Stoo9SdU2Cxw6BtqQTrb9SEA6O6IsApzstdMYnq8floLSg== 2278 | dependencies: 2279 | koa-compress "^2.0.0" 2280 | 2281 | lws-conditional-get@^0.3.4: 2282 | version "0.3.4" 2283 | resolved "https://registry.yarnpkg.com/lws-conditional-get/-/lws-conditional-get-0.3.4.tgz#d3e52f26ef6c13a261008922d67d8f6056888efa" 2284 | integrity sha512-6asZSfM747snhdz4xexRllm09pebz8pjYeg2d5khLR53D/OJznZWHsIqW0JGiScJObri2D7+H4z7yRLBjokT7g== 2285 | dependencies: 2286 | koa-conditional-get "^2.0.0" 2287 | koa-etag "^3.0.0" 2288 | 2289 | lws-cors@^1.0.0: 2290 | version "1.0.0" 2291 | resolved "https://registry.yarnpkg.com/lws-cors/-/lws-cors-1.0.0.tgz#32a0d4a34b5e331f878632cb853f237b4a002b90" 2292 | integrity sha512-4C0m4lvYdAnpAa03tr9AqziB4d8SRPh4beQBuzPiefv7N9/tpVdrl9kgXrUe1hLHhISnVJ5MoOZuZ6wFeMiU4g== 2293 | dependencies: 2294 | "@koa/cors" "^2.2.1" 2295 | 2296 | lws-index@^0.4.0: 2297 | version "0.4.0" 2298 | resolved "https://registry.yarnpkg.com/lws-index/-/lws-index-0.4.0.tgz#8cfe2433cbbb7c50f00508000cee1404dd18a194" 2299 | integrity sha512-k+mkqgMSzx1ipzVpaxsAJU4Qe7R1kp1B/u+qC+d1Y3l+auBz+bLcIxL4dYKfaxLqiz0IFwg1dZwGzVm/dd7FFw== 2300 | dependencies: 2301 | serve-index-75lb "^2.0.0" 2302 | 2303 | lws-json@^0.3.2: 2304 | version "0.3.2" 2305 | resolved "https://registry.yarnpkg.com/lws-json/-/lws-json-0.3.2.tgz#4356aefb0544c8310a8dc77913d1353d536130c7" 2306 | integrity sha512-ElmCA8hi3GPMfxbtiI015PDHuJovhhcbXX/qTTTifXhopedAzIBzn/rF5dHZHE4k7HQDYfbiaPgPMbmpv9dMvQ== 2307 | dependencies: 2308 | koa-json "^2.0.2" 2309 | 2310 | lws-log@^0.3.2: 2311 | version "0.3.2" 2312 | resolved "https://registry.yarnpkg.com/lws-log/-/lws-log-0.3.2.tgz#167b8dfe32e15788c01418c34129cd2cfe88338d" 2313 | integrity sha512-DRp4bFl4a7hjwR/RjARjhFLEXs8pIeqKbUvojaAl1hhfRBuW2JsDxRSKC+ViQN06CW4Qypg3ZsztMMR8dRO8dA== 2314 | dependencies: 2315 | koa-morgan "^1.0.1" 2316 | stream-log-stats "^2.0.2" 2317 | 2318 | lws-mime@^0.2.2: 2319 | version "0.2.2" 2320 | resolved "https://registry.yarnpkg.com/lws-mime/-/lws-mime-0.2.2.tgz#f2b2d4bd668f7f7ea336bd660dcd49fe0050df5e" 2321 | integrity sha512-cWBj9CuuSvvaqdYMPiXRid0QhzJmr+5gWAA96pEDOiW8tMCMoxl7CIgTpHXZwhJzCqdI84RZDVm+FswByATS5w== 2322 | 2323 | lws-mock-response@^0.5.1: 2324 | version "0.5.1" 2325 | resolved "https://registry.yarnpkg.com/lws-mock-response/-/lws-mock-response-0.5.1.tgz#3c322cc2f3287839aceabbeebae5b5fdbed253d7" 2326 | integrity sha512-4R5Q1RmRglC0pqEwywrS5g62aKaLQsteMnShGmWU9aQ/737Bq0/3qbQ3mb8VbMk3lLzo3ZaNZ1DUsPgVvZaXNQ== 2327 | dependencies: 2328 | array-back "^2.0.0" 2329 | koa-mock-response "0.2.0" 2330 | load-module "^1.0.0" 2331 | reduce-flatten "^2.0.0" 2332 | 2333 | lws-range@^1.1.0: 2334 | version "1.1.1" 2335 | resolved "https://registry.yarnpkg.com/lws-range/-/lws-range-1.1.1.tgz#f54583462d0d5d9efd1a805a5dbc5b221e063dc1" 2336 | integrity sha512-pg+UI3/Y5niQA4+HjBrHRtxWm9oExICC9GX5IhrmDnDSrwR1rNw3wukWlgIX0ZFmAqZt1Gs0Td1qI2hkFMcutg== 2337 | dependencies: 2338 | koa-range "^0.3.0" 2339 | 2340 | lws-request-monitor@^0.1.5: 2341 | version "0.1.5" 2342 | resolved "https://registry.yarnpkg.com/lws-request-monitor/-/lws-request-monitor-0.1.5.tgz#fa075f038e853868c60c82b84b11dd693da4eda6" 2343 | integrity sha512-u9eczHPowH17ftUjQ8ysutGDADNZdDD6k8wgFMzOB7/rRq1Is12lTYA4u8pfKZ8C2oyoy+HYsDSrOzTwespTlA== 2344 | dependencies: 2345 | byte-size "^4.0.2" 2346 | 2347 | lws-rewrite@^0.4.1: 2348 | version "0.4.1" 2349 | resolved "https://registry.yarnpkg.com/lws-rewrite/-/lws-rewrite-0.4.1.tgz#f64bad93e1203cf651e7b2267a69438ea6ef5a3e" 2350 | integrity sha512-EHUdbqfdwc4Baa7iXOdG2y815WC040Cing1GwhM9VsBL7lHtZ7zl3EHzjWFv3styoO3qNqZ4W0xCey4hoo/aYg== 2351 | dependencies: 2352 | array-back "^2.0.0" 2353 | koa-rewrite-75lb "^2.1.1" 2354 | koa-route "^3.2.0" 2355 | path-to-regexp "^1.7.0" 2356 | req-then "^0.6.4" 2357 | stream-read-all "^0.1.2" 2358 | typical "^2.6.1" 2359 | 2360 | lws-spa@^0.3.0: 2361 | version "0.3.0" 2362 | resolved "https://registry.yarnpkg.com/lws-spa/-/lws-spa-0.3.0.tgz#82ab359db40adaaa00c9a14399944f2e9d3f58d0" 2363 | integrity sha512-8wxZl5dOI/CQsJ6oOG8Y7B4khjlQXfB7GlVkjYFPuOYM+JIw/QzMvezKjKweG0qGePmHJVHWa38+CyololV4aw== 2364 | dependencies: 2365 | koa-route "^3.2.0" 2366 | koa-send "^4.1.3" 2367 | 2368 | lws-static@^0.5.0: 2369 | version "0.5.0" 2370 | resolved "https://registry.yarnpkg.com/lws-static/-/lws-static-0.5.0.tgz#f32936e3be220683a6889f237433940b6a73cc15" 2371 | integrity sha512-r3QIeJfBox/hSJLSL7TPhNSZsTKE0r4mWYHbGZ+DwrBcKbLt1ljsh5NAtmJpsqCcjYpyOuD/DlsZ0yQY9VI8bA== 2372 | dependencies: 2373 | koa-static "^4.0.2" 2374 | 2375 | lws@^1.3.0: 2376 | version "1.3.1" 2377 | resolved "https://registry.yarnpkg.com/lws/-/lws-1.3.1.tgz#ee0acfe5bd9a75e3400513b9657b11edd2651219" 2378 | integrity sha512-K4WEK4OdJdvceqzYSN231AfdNCr7punKZckUNw3I4HXx7QlbfNms14rmazPRhmw+BoRYVa1IYNcwivBD6MgcXg== 2379 | dependencies: 2380 | ansi-escape-sequences "^4.0.1" 2381 | array-back "^3.0.1" 2382 | byte-size "^5.0.1" 2383 | cli-commands "^0.4.0" 2384 | command-line-args "^5.0.2" 2385 | command-line-usage "^5.0.5" 2386 | koa "^2.6.2" 2387 | load-module "^1.0.0" 2388 | lodash.assignwith "^4.2.0" 2389 | node-version-matches "^1.0.1" 2390 | opn "^5.4.0" 2391 | reduce-flatten "^2.0.0" 2392 | typical "^3.0.0" 2393 | walk-back "^3.0.1" 2394 | ws "^5.2.1" 2395 | 2396 | magic-string@^0.22.5: 2397 | version "0.22.5" 2398 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.22.5.tgz#8e9cf5afddf44385c1da5bc2a6a0dbd10b03657e" 2399 | integrity sha512-oreip9rJZkzvA8Qzk9HFs8fZGF/u7H/gtrE8EN6RjKJ9kh2HlC+yQ2QezifqTZfGyiuAV0dRv5a+y/8gBb1m9w== 2400 | dependencies: 2401 | vlq "^0.2.2" 2402 | 2403 | magic-string@^0.25.1: 2404 | version "0.25.2" 2405 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.2.tgz#139c3a729515ec55e96e69e82a11fe890a293ad9" 2406 | integrity sha512-iLs9mPjh9IuTtRsqqhNGYcZXGei0Nh/A4xirrsqW7c+QhKVFL2vm7U09ru6cHRD22azaP/wMDgI+HCqbETMTtg== 2407 | dependencies: 2408 | sourcemap-codec "^1.4.4" 2409 | 2410 | map-cache@^0.2.2: 2411 | version "0.2.2" 2412 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2413 | integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= 2414 | 2415 | map-visit@^1.0.0: 2416 | version "1.0.0" 2417 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2418 | integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= 2419 | dependencies: 2420 | object-visit "^1.0.0" 2421 | 2422 | media-typer@0.3.0: 2423 | version "0.3.0" 2424 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2425 | integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= 2426 | 2427 | methods@~1.1.0: 2428 | version "1.1.2" 2429 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 2430 | integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= 2431 | 2432 | micromatch@^3.1.10: 2433 | version "3.1.10" 2434 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2435 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== 2436 | dependencies: 2437 | arr-diff "^4.0.0" 2438 | array-unique "^0.3.2" 2439 | braces "^2.3.1" 2440 | define-property "^2.0.2" 2441 | extend-shallow "^3.0.2" 2442 | extglob "^2.0.4" 2443 | fragment-cache "^0.2.1" 2444 | kind-of "^6.0.2" 2445 | nanomatch "^1.2.9" 2446 | object.pick "^1.3.0" 2447 | regex-not "^1.0.0" 2448 | snapdragon "^0.8.1" 2449 | to-regex "^3.0.2" 2450 | 2451 | "mime-db@>= 1.38.0 < 2", mime-db@~1.38.0: 2452 | version "1.38.0" 2453 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.38.0.tgz#1a2aab16da9eb167b49c6e4df2d9c68d63d8e2ad" 2454 | integrity sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg== 2455 | 2456 | mime-types@^2.1.18, mime-types@~2.1.18: 2457 | version "2.1.22" 2458 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.22.tgz#fe6b355a190926ab7698c9a0556a11199b2199bd" 2459 | integrity sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog== 2460 | dependencies: 2461 | mime-db "~1.38.0" 2462 | 2463 | mimic-fn@^1.0.0: 2464 | version "1.1.0" 2465 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2466 | integrity sha1-5md4PZLonb00KBi1IwudYqZyrRg= 2467 | 2468 | minimatch@^3.0.2, minimatch@^3.0.4: 2469 | version "3.0.4" 2470 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2471 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 2472 | dependencies: 2473 | brace-expansion "^1.1.7" 2474 | 2475 | minimist@0.0.8: 2476 | version "0.0.8" 2477 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2478 | integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= 2479 | 2480 | minimist@^1.2.0: 2481 | version "1.2.0" 2482 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2483 | integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= 2484 | 2485 | mixin-deep@^1.2.0: 2486 | version "1.3.1" 2487 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 2488 | integrity sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ== 2489 | dependencies: 2490 | for-in "^1.0.2" 2491 | is-extendable "^1.0.1" 2492 | 2493 | mkdirp@^0.5.1: 2494 | version "0.5.1" 2495 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2496 | integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= 2497 | dependencies: 2498 | minimist "0.0.8" 2499 | 2500 | morgan@^1.6.1: 2501 | version "1.9.1" 2502 | resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.9.1.tgz#0a8d16734a1d9afbc824b99df87e738e58e2da59" 2503 | integrity sha512-HQStPIV4y3afTiCYVxirakhlCfGkI161c76kKFca7Fk1JusM//Qeo1ej2XaMniiNeaZklMVrh3vTtIzpzwbpmA== 2504 | dependencies: 2505 | basic-auth "~2.0.0" 2506 | debug "2.6.9" 2507 | depd "~1.1.2" 2508 | on-finished "~2.3.0" 2509 | on-headers "~1.0.1" 2510 | 2511 | ms@2.0.0: 2512 | version "2.0.0" 2513 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2514 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 2515 | 2516 | ms@^2.1.1: 2517 | version "2.1.1" 2518 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 2519 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 2520 | 2521 | mute-stream@0.0.7: 2522 | version "0.0.7" 2523 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2524 | integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= 2525 | 2526 | mz@^2.1.0, mz@^2.6.0: 2527 | version "2.7.0" 2528 | resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" 2529 | integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== 2530 | dependencies: 2531 | any-promise "^1.0.0" 2532 | object-assign "^4.0.1" 2533 | thenify-all "^1.0.0" 2534 | 2535 | nanomatch@^1.2.9: 2536 | version "1.2.13" 2537 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 2538 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== 2539 | dependencies: 2540 | arr-diff "^4.0.0" 2541 | array-unique "^0.3.2" 2542 | define-property "^2.0.2" 2543 | extend-shallow "^3.0.2" 2544 | fragment-cache "^0.2.1" 2545 | is-windows "^1.0.2" 2546 | kind-of "^6.0.2" 2547 | object.pick "^1.3.0" 2548 | regex-not "^1.0.0" 2549 | snapdragon "^0.8.1" 2550 | to-regex "^3.0.1" 2551 | 2552 | natural-compare@^1.4.0: 2553 | version "1.4.0" 2554 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2555 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 2556 | 2557 | negotiator@0.6.1: 2558 | version "0.6.1" 2559 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2560 | integrity sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk= 2561 | 2562 | node-releases@^1.1.8: 2563 | version "1.1.10" 2564 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.10.tgz#5dbeb6bc7f4e9c85b899e2e7adcc0635c9b2adf7" 2565 | integrity sha512-KbUPCpfoBvb3oBkej9+nrU0/7xPlVhmhhUJ1PZqwIP5/1dJkRWKWD3OONjo6M2J7tSCBtDCumLwwqeI+DWWaLQ== 2566 | dependencies: 2567 | semver "^5.3.0" 2568 | 2569 | node-version-matches@^1.0.0, node-version-matches@^1.0.1: 2570 | version "1.0.1" 2571 | resolved "https://registry.yarnpkg.com/node-version-matches/-/node-version-matches-1.0.1.tgz#16f30d5dddb32914151af77f45d6378f59070268" 2572 | integrity sha512-L1GRq9vkwvJkOdJynEph63N1gNdKRsThm6CkLn+8X9mFzmDv63iEMkZETVkcWVJowpqK72lNVuMZmeenhDoRhw== 2573 | dependencies: 2574 | semver "^5.6.0" 2575 | 2576 | object-assign@^4.0.1: 2577 | version "4.1.1" 2578 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2579 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 2580 | 2581 | object-copy@^0.1.0: 2582 | version "0.1.0" 2583 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2584 | integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= 2585 | dependencies: 2586 | copy-descriptor "^0.1.0" 2587 | define-property "^0.2.5" 2588 | kind-of "^3.0.3" 2589 | 2590 | object-visit@^1.0.0: 2591 | version "1.0.1" 2592 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2593 | integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= 2594 | dependencies: 2595 | isobject "^3.0.0" 2596 | 2597 | object.pick@^1.3.0: 2598 | version "1.3.0" 2599 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2600 | integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= 2601 | dependencies: 2602 | isobject "^3.0.1" 2603 | 2604 | on-finished@^2.3.0, on-finished@~2.3.0: 2605 | version "2.3.0" 2606 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2607 | integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= 2608 | dependencies: 2609 | ee-first "1.1.1" 2610 | 2611 | on-headers@~1.0.1: 2612 | version "1.0.2" 2613 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" 2614 | integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== 2615 | 2616 | once@^1.3.0: 2617 | version "1.4.0" 2618 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2619 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2620 | dependencies: 2621 | wrappy "1" 2622 | 2623 | onetime@^2.0.0: 2624 | version "2.0.1" 2625 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2626 | integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= 2627 | dependencies: 2628 | mimic-fn "^1.0.0" 2629 | 2630 | only@~0.0.2: 2631 | version "0.0.2" 2632 | resolved "https://registry.yarnpkg.com/only/-/only-0.0.2.tgz#2afde84d03e50b9a8edc444e30610a70295edfb4" 2633 | integrity sha1-Kv3oTQPlC5qO3EROMGEKcCle37Q= 2634 | 2635 | opn@^5.4.0: 2636 | version "5.4.0" 2637 | resolved "https://registry.yarnpkg.com/opn/-/opn-5.4.0.tgz#cb545e7aab78562beb11aa3bfabc7042e1761035" 2638 | integrity sha512-YF9MNdVy/0qvJvDtunAOzFw9iasOQHpVthTCvGzxt61Il64AYSGdK+rYwld7NAfk9qJ7dt+hymBNSc9LNYS+Sw== 2639 | dependencies: 2640 | is-wsl "^1.1.0" 2641 | 2642 | optionator@^0.8.2: 2643 | version "0.8.2" 2644 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2645 | integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= 2646 | dependencies: 2647 | deep-is "~0.1.3" 2648 | fast-levenshtein "~2.0.4" 2649 | levn "~0.3.0" 2650 | prelude-ls "~1.1.2" 2651 | type-check "~0.3.2" 2652 | wordwrap "~1.0.0" 2653 | 2654 | os-tmpdir@~1.0.1: 2655 | version "1.0.2" 2656 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2657 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 2658 | 2659 | parseurl@^1.3.2, parseurl@~1.3.2: 2660 | version "1.3.2" 2661 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" 2662 | integrity sha1-/CidTtiZMRlGDBViUyYs3I3mW/M= 2663 | 2664 | pascalcase@^0.1.1: 2665 | version "0.1.1" 2666 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2667 | integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= 2668 | 2669 | path-is-absolute@1.0.1, path-is-absolute@^1.0.0: 2670 | version "1.0.1" 2671 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2672 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2673 | 2674 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2675 | version "1.0.2" 2676 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2677 | integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= 2678 | 2679 | path-parse@^1.0.6: 2680 | version "1.0.6" 2681 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2682 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 2683 | 2684 | path-to-regexp@1.7.0, path-to-regexp@^1.2.0, path-to-regexp@^1.7.0: 2685 | version "1.7.0" 2686 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" 2687 | integrity sha1-Wf3g9DW62suhA6hOnTvGTpa5k30= 2688 | dependencies: 2689 | isarray "0.0.1" 2690 | 2691 | path-to-regexp@^2.2.0: 2692 | version "2.4.0" 2693 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-2.4.0.tgz#35ce7f333d5616f1c1e1bfe266c3aba2e5b2e704" 2694 | integrity sha512-G6zHoVqC6GGTQkZwF4lkuEyMbVOjoBKAEybQUypI1WTkqinCOrq2x6U2+phkJ1XsEMTy4LjtwPI7HW+NVrRR2w== 2695 | 2696 | pify@^2.0.0: 2697 | version "2.3.0" 2698 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2699 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 2700 | 2701 | pinkie-promise@^2.0.0: 2702 | version "2.0.1" 2703 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2704 | integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= 2705 | dependencies: 2706 | pinkie "^2.0.0" 2707 | 2708 | pinkie@^2.0.0: 2709 | version "2.0.4" 2710 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2711 | integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= 2712 | 2713 | pluralize@^4.0.0: 2714 | version "4.0.0" 2715 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-4.0.0.tgz#59b708c1c0190a2f692f1c7618c446b052fd1762" 2716 | integrity sha1-WbcIwcAZCi9pLxx2GMRGsFL9F2I= 2717 | 2718 | posix-character-classes@^0.1.0: 2719 | version "0.1.1" 2720 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2721 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= 2722 | 2723 | prelude-ls@~1.1.2: 2724 | version "1.1.2" 2725 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2726 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 2727 | 2728 | private@^0.1.6: 2729 | version "0.1.7" 2730 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2731 | integrity sha1-aM5eih7woju1cMwoU3tTMqumPvE= 2732 | 2733 | process-es6@^0.11.6: 2734 | version "0.11.6" 2735 | resolved "https://registry.yarnpkg.com/process-es6/-/process-es6-0.11.6.tgz#c6bb389f9a951f82bd4eb169600105bd2ff9c778" 2736 | integrity sha1-xrs4n5qVH4K9TrFpYAEFvS/5x3g= 2737 | 2738 | process-nextick-args@~1.0.6: 2739 | version "1.0.7" 2740 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2741 | integrity sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M= 2742 | 2743 | process-nextick-args@~2.0.0: 2744 | version "2.0.0" 2745 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2746 | integrity sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw== 2747 | 2748 | progress@^2.0.0: 2749 | version "2.0.0" 2750 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2751 | integrity sha1-ihvjZr+Pwj2yvSPxDG/pILQ4nR8= 2752 | 2753 | pseudomap@^1.0.2: 2754 | version "1.0.2" 2755 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2756 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= 2757 | 2758 | qs@^6.5.2: 2759 | version "6.6.0" 2760 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.6.0.tgz#a99c0f69a8d26bf7ef012f871cdabb0aee4424c2" 2761 | integrity sha512-KIJqT9jQJDQx5h5uAVPimw6yVg2SekOKu959OCtktD3FjzbpvaPr8i4zzg07DOMz+igA4W/aNM7OV8H37pFYfA== 2762 | 2763 | raw-body@^2.3.3: 2764 | version "2.3.3" 2765 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.3.tgz#1b324ece6b5706e153855bc1148c65bb7f6ea0c3" 2766 | integrity sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw== 2767 | dependencies: 2768 | bytes "3.0.0" 2769 | http-errors "1.6.3" 2770 | iconv-lite "0.4.23" 2771 | unpipe "1.0.0" 2772 | 2773 | readable-stream@2: 2774 | version "2.3.6" 2775 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2776 | integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== 2777 | dependencies: 2778 | core-util-is "~1.0.0" 2779 | inherits "~2.0.3" 2780 | isarray "~1.0.0" 2781 | process-nextick-args "~2.0.0" 2782 | safe-buffer "~5.1.1" 2783 | string_decoder "~1.1.1" 2784 | util-deprecate "~1.0.1" 2785 | 2786 | readable-stream@^2.2.2: 2787 | version "2.3.3" 2788 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2789 | integrity sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ== 2790 | dependencies: 2791 | core-util-is "~1.0.0" 2792 | inherits "~2.0.3" 2793 | isarray "~1.0.0" 2794 | process-nextick-args "~1.0.6" 2795 | safe-buffer "~5.1.1" 2796 | string_decoder "~1.0.3" 2797 | util-deprecate "~1.0.1" 2798 | 2799 | reduce-flatten@^1.0.1: 2800 | version "1.0.1" 2801 | resolved "https://registry.yarnpkg.com/reduce-flatten/-/reduce-flatten-1.0.1.tgz#258c78efd153ddf93cb561237f61184f3696e327" 2802 | integrity sha1-JYx479FT3fk8tWEjf2EYTzaW4yc= 2803 | 2804 | reduce-flatten@^2.0.0: 2805 | version "2.0.0" 2806 | resolved "https://registry.yarnpkg.com/reduce-flatten/-/reduce-flatten-2.0.0.tgz#734fd84e65f375d7ca4465c69798c25c9d10ae27" 2807 | integrity sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w== 2808 | 2809 | regenerate-unicode-properties@^8.0.2: 2810 | version "8.0.2" 2811 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.0.2.tgz#7b38faa296252376d363558cfbda90c9ce709662" 2812 | integrity sha512-SbA/iNrBUf6Pv2zU8Ekv1Qbhv92yxL4hiDa2siuxs4KKn4oOoMDHXjAf7+Nz9qinUQ46B1LcWEi/PhJfPWpZWQ== 2813 | dependencies: 2814 | regenerate "^1.4.0" 2815 | 2816 | regenerate@^1.4.0: 2817 | version "1.4.0" 2818 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 2819 | integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== 2820 | 2821 | regenerator-transform@^0.13.4: 2822 | version "0.13.4" 2823 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.13.4.tgz#18f6763cf1382c69c36df76c6ce122cc694284fb" 2824 | integrity sha512-T0QMBjK3J0MtxjPmdIMXm72Wvj2Abb0Bd4HADdfijwMdoIsyQZ6fWC7kDFhk2YinBBEMZDL7Y7wh0J1sGx3S4A== 2825 | dependencies: 2826 | private "^0.1.6" 2827 | 2828 | regex-not@^1.0.0, regex-not@^1.0.2: 2829 | version "1.0.2" 2830 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2831 | integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== 2832 | dependencies: 2833 | extend-shallow "^3.0.2" 2834 | safe-regex "^1.1.0" 2835 | 2836 | regexp-tree@^0.1.0: 2837 | version "0.1.5" 2838 | resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.5.tgz#7cd71fca17198d04b4176efd79713f2998009397" 2839 | integrity sha512-nUmxvfJyAODw+0B13hj8CFVAxhe7fDEAgJgaotBu3nnR+IgGgZq59YedJP5VYTlkEfqjuK6TuRpnymKdatLZfQ== 2840 | 2841 | regexpu-core@^4.1.3, regexpu-core@^4.2.0: 2842 | version "4.5.4" 2843 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.4.tgz#080d9d02289aa87fe1667a4f5136bc98a6aebaae" 2844 | integrity sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ== 2845 | dependencies: 2846 | regenerate "^1.4.0" 2847 | regenerate-unicode-properties "^8.0.2" 2848 | regjsgen "^0.5.0" 2849 | regjsparser "^0.6.0" 2850 | unicode-match-property-ecmascript "^1.0.4" 2851 | unicode-match-property-value-ecmascript "^1.1.0" 2852 | 2853 | regjsgen@^0.5.0: 2854 | version "0.5.0" 2855 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" 2856 | integrity sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA== 2857 | 2858 | regjsparser@^0.6.0: 2859 | version "0.6.0" 2860 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" 2861 | integrity sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ== 2862 | dependencies: 2863 | jsesc "~0.5.0" 2864 | 2865 | repeat-element@^1.1.2: 2866 | version "1.1.3" 2867 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 2868 | integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== 2869 | 2870 | repeat-string@^1.6.1: 2871 | version "1.6.1" 2872 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2873 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= 2874 | 2875 | req-then@^0.6.4: 2876 | version "0.6.4" 2877 | resolved "https://registry.yarnpkg.com/req-then/-/req-then-0.6.4.tgz#9f9c04626afd311ae01d727846a0a1075c0e1965" 2878 | integrity sha512-Uf7xsK1qPqPUetESHemNQ7nGtgOxngSFtlcAOOkx0lDAo+XRZpEA9QDrGBdyOfGq4b+a0z/D5gR2VJ+pp/dzBA== 2879 | dependencies: 2880 | array-back "^2.0.0" 2881 | defer-promise "^1.0.1" 2882 | lodash.pick "^4.4.0" 2883 | stream-read-all "^0.1.0" 2884 | typical "^2.6.1" 2885 | 2886 | require-uncached@^1.0.3: 2887 | version "1.0.3" 2888 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2889 | integrity sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM= 2890 | dependencies: 2891 | caller-path "^0.1.0" 2892 | resolve-from "^1.0.0" 2893 | 2894 | resolve-from@^1.0.0: 2895 | version "1.0.1" 2896 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2897 | integrity sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY= 2898 | 2899 | resolve-path@^1.4.0: 2900 | version "1.4.0" 2901 | resolved "https://registry.yarnpkg.com/resolve-path/-/resolve-path-1.4.0.tgz#c4bda9f5efb2fce65247873ab36bb4d834fe16f7" 2902 | integrity sha1-xL2p9e+y/OZSR4c6s2u02DT+Fvc= 2903 | dependencies: 2904 | http-errors "~1.6.2" 2905 | path-is-absolute "1.0.1" 2906 | 2907 | resolve-url@^0.2.1: 2908 | version "0.2.1" 2909 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2910 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 2911 | 2912 | resolve@^1.10.0, resolve@^1.3.2: 2913 | version "1.10.0" 2914 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba" 2915 | integrity sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg== 2916 | dependencies: 2917 | path-parse "^1.0.6" 2918 | 2919 | restore-cursor@^2.0.0: 2920 | version "2.0.0" 2921 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2922 | integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= 2923 | dependencies: 2924 | onetime "^2.0.0" 2925 | signal-exit "^3.0.2" 2926 | 2927 | ret@~0.1.10: 2928 | version "0.1.15" 2929 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2930 | integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== 2931 | 2932 | rimraf@^2.2.8: 2933 | version "2.6.1" 2934 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2935 | integrity sha1-wjOOxkPfeht/5cVPqG9XQopV8z0= 2936 | dependencies: 2937 | glob "^7.0.5" 2938 | 2939 | rollup-plugin-babel@^4.3.2: 2940 | version "4.3.2" 2941 | resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-4.3.2.tgz#8c0e1bd7aa9826e90769cf76895007098ffd1413" 2942 | integrity sha512-KfnizE258L/4enADKX61ozfwGHoqYauvoofghFJBhFnpH9Sb9dNPpWg8QHOaAfVASUYV8w0mCx430i9z0LJoJg== 2943 | dependencies: 2944 | "@babel/helper-module-imports" "^7.0.0" 2945 | rollup-pluginutils "^2.3.0" 2946 | 2947 | rollup-plugin-commonjs@^9.2.1: 2948 | version "9.2.1" 2949 | resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-9.2.1.tgz#bb151ca8fa23600c7a03e25f9f0a45b1ee922dac" 2950 | integrity sha512-X0A/Cp/t+zbONFinBhiTZrfuUaVwRIp4xsbKq/2ohA2CDULa/7ONSJTelqxon+Vds2R2t2qJTqJQucKUC8GKkw== 2951 | dependencies: 2952 | estree-walker "^0.5.2" 2953 | magic-string "^0.25.1" 2954 | resolve "^1.10.0" 2955 | rollup-pluginutils "^2.3.3" 2956 | 2957 | rollup-plugin-node-globals@^1.4.0: 2958 | version "1.4.0" 2959 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-globals/-/rollup-plugin-node-globals-1.4.0.tgz#5e1f24a9bb97c0ef51249f625e16c7e61b7c020b" 2960 | integrity sha512-xRkB+W/m1KLIzPUmG0ofvR+CPNcvuCuNdjVBVS7ALKSxr3EDhnzNceGkGi1m8MToSli13AzKFYH4ie9w3I5L3g== 2961 | dependencies: 2962 | acorn "^5.7.3" 2963 | buffer-es6 "^4.9.3" 2964 | estree-walker "^0.5.2" 2965 | magic-string "^0.22.5" 2966 | process-es6 "^0.11.6" 2967 | rollup-pluginutils "^2.3.1" 2968 | 2969 | rollup-plugin-node-resolve@^4.0.1: 2970 | version "4.0.1" 2971 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-4.0.1.tgz#f95765d174e5daeef9ea6268566141f53aa9d422" 2972 | integrity sha512-fSS7YDuCe0gYqKsr5OvxMloeZYUSgN43Ypi1WeRZzQcWtHgFayV5tUSPYpxuaioIIWaBXl6NrVk0T2/sKwueLg== 2973 | dependencies: 2974 | builtin-modules "^3.0.0" 2975 | is-module "^1.0.0" 2976 | resolve "^1.10.0" 2977 | 2978 | rollup-pluginutils@^2.3.0, rollup-pluginutils@^2.3.1, rollup-pluginutils@^2.3.3: 2979 | version "2.4.1" 2980 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.4.1.tgz#de43ab54965bbf47843599a7f3adceb723de38db" 2981 | integrity sha512-wesMQ9/172IJDIW/lYWm0vW0LiKe5Ekjws481R7z9WTRtmO59cqyM/2uUlxvf6yzm/fElFmHUobeQOYz46dZJw== 2982 | dependencies: 2983 | estree-walker "^0.6.0" 2984 | micromatch "^3.1.10" 2985 | 2986 | rollup@^1.5.0: 2987 | version "1.6.0" 2988 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-1.6.0.tgz#4329f4634718197c678d18491724d50d8b7ee76c" 2989 | integrity sha512-qu9iWyuiOxAuBM8cAwLuqPclYdarIpayrkfQB7aTGTiyYPbvx+qVF33sIznfq4bxZCiytQux/FvZieUBAXivCw== 2990 | dependencies: 2991 | "@types/estree" "0.0.39" 2992 | "@types/node" "^11.9.5" 2993 | acorn "^6.1.1" 2994 | 2995 | run-async@^2.2.0: 2996 | version "2.3.0" 2997 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2998 | integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= 2999 | dependencies: 3000 | is-promise "^2.1.0" 3001 | 3002 | rx-lite-aggregates@^4.0.8: 3003 | version "4.0.8" 3004 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 3005 | integrity sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74= 3006 | dependencies: 3007 | rx-lite "*" 3008 | 3009 | rx-lite@*, rx-lite@^4.0.8: 3010 | version "4.0.8" 3011 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 3012 | integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ= 3013 | 3014 | safe-buffer@5.1.2: 3015 | version "5.1.2" 3016 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 3017 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 3018 | 3019 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3020 | version "5.1.1" 3021 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3022 | integrity sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg== 3023 | 3024 | safe-regex@^1.1.0: 3025 | version "1.1.0" 3026 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 3027 | integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= 3028 | dependencies: 3029 | ret "~0.1.10" 3030 | 3031 | "safer-buffer@>= 2.1.2 < 3": 3032 | version "2.1.2" 3033 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3034 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 3035 | 3036 | semver@^5.3.0: 3037 | version "5.4.1" 3038 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 3039 | integrity sha512-WfG/X9+oATh81XtllIo/I8gOiY9EXRdv1cQdyykeXK17YcUW3EXUAi2To4pcH6nZtJPr7ZOpM5OMyWJZm+8Rsg== 3040 | 3041 | semver@^5.4.1, semver@^5.6.0: 3042 | version "5.6.0" 3043 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" 3044 | integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg== 3045 | 3046 | serve-index-75lb@^2.0.0: 3047 | version "2.0.1" 3048 | resolved "https://registry.yarnpkg.com/serve-index-75lb/-/serve-index-75lb-2.0.1.tgz#f07da6462df4cdcd49d8a14bba8f2b4b8a8dce1a" 3049 | integrity sha512-/d9r8bqJlFQcwy0a0nb1KnWAA+Mno+V+VaoKocdkbW5aXKRQd/+4bfnRhQRQr6uEoYwTRJ4xgztOyCJvWcpBpQ== 3050 | dependencies: 3051 | accepts "~1.3.4" 3052 | batch "0.6.1" 3053 | debug "2.6.9" 3054 | escape-html "~1.0.3" 3055 | http-errors "~1.6.2" 3056 | mime-types "~2.1.18" 3057 | parseurl "~1.3.2" 3058 | 3059 | set-value@^0.4.3: 3060 | version "0.4.3" 3061 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 3062 | integrity sha1-fbCPnT0i3H945Trzw79GZuzfzPE= 3063 | dependencies: 3064 | extend-shallow "^2.0.1" 3065 | is-extendable "^0.1.1" 3066 | is-plain-object "^2.0.1" 3067 | to-object-path "^0.3.0" 3068 | 3069 | set-value@^2.0.0: 3070 | version "2.0.0" 3071 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 3072 | integrity sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg== 3073 | dependencies: 3074 | extend-shallow "^2.0.1" 3075 | is-extendable "^0.1.1" 3076 | is-plain-object "^2.0.3" 3077 | split-string "^3.0.1" 3078 | 3079 | setprototypeof@1.1.0: 3080 | version "1.1.0" 3081 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" 3082 | integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== 3083 | 3084 | setprototypeof@1.1.1: 3085 | version "1.1.1" 3086 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" 3087 | integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== 3088 | 3089 | shebang-command@^1.2.0: 3090 | version "1.2.0" 3091 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3092 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 3093 | dependencies: 3094 | shebang-regex "^1.0.0" 3095 | 3096 | shebang-regex@^1.0.0: 3097 | version "1.0.0" 3098 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3099 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 3100 | 3101 | signal-exit@^3.0.2: 3102 | version "3.0.2" 3103 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3104 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 3105 | 3106 | slice-ansi@0.0.4: 3107 | version "0.0.4" 3108 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3109 | integrity sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU= 3110 | 3111 | snapdragon-node@^2.0.1: 3112 | version "2.1.1" 3113 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3114 | integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== 3115 | dependencies: 3116 | define-property "^1.0.0" 3117 | isobject "^3.0.0" 3118 | snapdragon-util "^3.0.1" 3119 | 3120 | snapdragon-util@^3.0.1: 3121 | version "3.0.1" 3122 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3123 | integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== 3124 | dependencies: 3125 | kind-of "^3.2.0" 3126 | 3127 | snapdragon@^0.8.1: 3128 | version "0.8.2" 3129 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3130 | integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== 3131 | dependencies: 3132 | base "^0.11.1" 3133 | debug "^2.2.0" 3134 | define-property "^0.2.5" 3135 | extend-shallow "^2.0.1" 3136 | map-cache "^0.2.2" 3137 | source-map "^0.5.6" 3138 | source-map-resolve "^0.5.0" 3139 | use "^3.1.0" 3140 | 3141 | source-map-resolve@^0.5.0: 3142 | version "0.5.2" 3143 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 3144 | integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== 3145 | dependencies: 3146 | atob "^2.1.1" 3147 | decode-uri-component "^0.2.0" 3148 | resolve-url "^0.2.1" 3149 | source-map-url "^0.4.0" 3150 | urix "^0.1.0" 3151 | 3152 | source-map-url@^0.4.0: 3153 | version "0.4.0" 3154 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3155 | integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= 3156 | 3157 | source-map@^0.5.0, source-map@^0.5.6: 3158 | version "0.5.7" 3159 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3160 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 3161 | 3162 | sourcemap-codec@^1.4.4: 3163 | version "1.4.4" 3164 | resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.4.tgz#c63ea927c029dd6bd9a2b7fa03b3fec02ad56e9f" 3165 | integrity sha512-CYAPYdBu34781kLHkaW3m6b/uUSyMOC2R61gcYMWooeuaGtjof86ZA/8T+qVPPt7np1085CR9hmMGrySwEc8Xg== 3166 | 3167 | split-string@^3.0.1, split-string@^3.0.2: 3168 | version "3.1.0" 3169 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3170 | integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== 3171 | dependencies: 3172 | extend-shallow "^3.0.0" 3173 | 3174 | sprintf-js@~1.0.2: 3175 | version "1.0.3" 3176 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3177 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 3178 | 3179 | static-extend@^0.1.1: 3180 | version "0.1.2" 3181 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3182 | integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= 3183 | dependencies: 3184 | define-property "^0.2.5" 3185 | object-copy "^0.1.0" 3186 | 3187 | "statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", statuses@^1.0.0, statuses@^1.5.0: 3188 | version "1.5.0" 3189 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 3190 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= 3191 | 3192 | stream-log-stats@^2.0.2: 3193 | version "2.0.2" 3194 | resolved "https://registry.yarnpkg.com/stream-log-stats/-/stream-log-stats-2.0.2.tgz#a59a4af9e224fa124457dd9b8ba89c757dc3dab0" 3195 | integrity sha512-b1LccxXhMlOQQrzSqapQHyZ3UI00QTAv+8VecFgsJz//sGB5LFl/+mkFeWBVVI2/E4DlCT4sGgvLExB/VTVFfA== 3196 | dependencies: 3197 | JSONStream "^1.3.1" 3198 | ansi-escape-sequences "^3.0.0" 3199 | byte-size "^3.0.0" 3200 | common-log-format "~0.1.3" 3201 | lodash.throttle "^4.1.1" 3202 | stream-via "^1.0.3" 3203 | table-layout "~0.4.0" 3204 | 3205 | stream-read-all@^0.1.0, stream-read-all@^0.1.2: 3206 | version "0.1.2" 3207 | resolved "https://registry.yarnpkg.com/stream-read-all/-/stream-read-all-0.1.2.tgz#748718e89281fff6b0742918233415a6900387e1" 3208 | integrity sha512-KX42xBg853m+KnwRtwCKT95ShopAbY/MNKs2dBQ0WkNeuJdqgQYRtGRbTlxdx0L6t979h3z/wMq2eMSAu7Tygw== 3209 | 3210 | stream-slice@^0.1.2: 3211 | version "0.1.2" 3212 | resolved "https://registry.yarnpkg.com/stream-slice/-/stream-slice-0.1.2.tgz#2dc4f4e1b936fb13f3eb39a2def1932798d07a4b" 3213 | integrity sha1-LcT04bk2+xPz6zmi3vGTJ5jQeks= 3214 | 3215 | stream-via@^1.0.3: 3216 | version "1.0.4" 3217 | resolved "https://registry.yarnpkg.com/stream-via/-/stream-via-1.0.4.tgz#8dccbb0ac909328eb8bc8e2a4bd3934afdaf606c" 3218 | integrity sha512-DBp0lSvX5G9KGRDTkR/R+a29H+Wk2xItOF+MpZLLNDWbEV9tGPnqLPxHEYjmiz8xGtJHRIqmI+hCjmNzqoA4nQ== 3219 | 3220 | streaming-json-stringify@3: 3221 | version "3.1.0" 3222 | resolved "https://registry.yarnpkg.com/streaming-json-stringify/-/streaming-json-stringify-3.1.0.tgz#80200437a993cc39c4fe00263b7b3b903ac87af5" 3223 | integrity sha1-gCAEN6mTzDnE/gAmO3s7kDrIevU= 3224 | dependencies: 3225 | json-stringify-safe "5" 3226 | readable-stream "2" 3227 | 3228 | string-width@^2.0.0, string-width@^2.1.0: 3229 | version "2.1.1" 3230 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3231 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 3232 | dependencies: 3233 | is-fullwidth-code-point "^2.0.0" 3234 | strip-ansi "^4.0.0" 3235 | 3236 | string_decoder@~1.0.3: 3237 | version "1.0.3" 3238 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3239 | integrity sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ== 3240 | dependencies: 3241 | safe-buffer "~5.1.0" 3242 | 3243 | string_decoder@~1.1.1: 3244 | version "1.1.1" 3245 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3246 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 3247 | dependencies: 3248 | safe-buffer "~5.1.0" 3249 | 3250 | strip-ansi@^3.0.0: 3251 | version "3.0.1" 3252 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3253 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 3254 | dependencies: 3255 | ansi-regex "^2.0.0" 3256 | 3257 | strip-ansi@^4.0.0: 3258 | version "4.0.0" 3259 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3260 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 3261 | dependencies: 3262 | ansi-regex "^3.0.0" 3263 | 3264 | strip-json-comments@~2.0.1: 3265 | version "2.0.1" 3266 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3267 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 3268 | 3269 | supports-color@^2.0.0: 3270 | version "2.0.0" 3271 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3272 | integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= 3273 | 3274 | supports-color@^4.0.0: 3275 | version "4.4.0" 3276 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 3277 | integrity sha512-rKC3+DyXWgK0ZLKwmRsrkyHVZAjNkfzeehuFWdGGcqGDTZFH73+RH6S/RDAAxl9GusSjZSUWYLmT9N5pzXFOXQ== 3278 | dependencies: 3279 | has-flag "^2.0.0" 3280 | 3281 | supports-color@^5.3.0: 3282 | version "5.5.0" 3283 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3284 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3285 | dependencies: 3286 | has-flag "^3.0.0" 3287 | 3288 | table-layout@^0.4.3, table-layout@~0.4.0: 3289 | version "0.4.4" 3290 | resolved "https://registry.yarnpkg.com/table-layout/-/table-layout-0.4.4.tgz#bc5398b2a05e58b67b05dd9238354b89ef27be0f" 3291 | integrity sha512-uNaR3SRMJwfdp9OUr36eyEi6LLsbcTqTO/hfTsNviKsNeyMBPICJCC7QXRF3+07bAP6FRwA8rczJPBqXDc0CkQ== 3292 | dependencies: 3293 | array-back "^2.0.0" 3294 | deep-extend "~0.6.0" 3295 | lodash.padend "^4.6.1" 3296 | typical "^2.6.1" 3297 | wordwrapjs "^3.0.0" 3298 | 3299 | table@^4.0.1: 3300 | version "4.0.1" 3301 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435" 3302 | integrity sha1-qBFsEz+sLGH0pCCrbN9cTWHw5DU= 3303 | dependencies: 3304 | ajv "^4.7.0" 3305 | ajv-keywords "^1.0.0" 3306 | chalk "^1.1.1" 3307 | lodash "^4.0.0" 3308 | slice-ansi "0.0.4" 3309 | string-width "^2.0.0" 3310 | 3311 | test-value@^3.0.0: 3312 | version "3.0.0" 3313 | resolved "https://registry.yarnpkg.com/test-value/-/test-value-3.0.0.tgz#9168c062fab11a86b8d444dd968bb4b73851ce92" 3314 | integrity sha512-sVACdAWcZkSU9x7AOmJo5TqE+GyNJknHaHsMrR6ZnhjVlVN9Yx6FjHrsKZ3BjIpPCT68zYesPWkakrNupwfOTQ== 3315 | dependencies: 3316 | array-back "^2.0.0" 3317 | typical "^2.6.1" 3318 | 3319 | text-table@~0.2.0: 3320 | version "0.2.0" 3321 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3322 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 3323 | 3324 | thenify-all@^1.0.0: 3325 | version "1.6.0" 3326 | resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" 3327 | integrity sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY= 3328 | dependencies: 3329 | thenify ">= 3.1.0 < 4" 3330 | 3331 | "thenify@>= 3.1.0 < 4": 3332 | version "3.3.0" 3333 | resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.0.tgz#e69e38a1babe969b0108207978b9f62b88604839" 3334 | integrity sha1-5p44obq+lpsBCCB5eLn2K4hgSDk= 3335 | dependencies: 3336 | any-promise "^1.0.0" 3337 | 3338 | "through@>=2.2.7 <3", through@^2.3.6: 3339 | version "2.3.8" 3340 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3341 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 3342 | 3343 | tmp@^0.0.31: 3344 | version "0.0.31" 3345 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 3346 | integrity sha1-jzirlDjhcxXl29izZX6L+yd65Kc= 3347 | dependencies: 3348 | os-tmpdir "~1.0.1" 3349 | 3350 | to-fast-properties@^2.0.0: 3351 | version "2.0.0" 3352 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3353 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 3354 | 3355 | to-object-path@^0.3.0: 3356 | version "0.3.0" 3357 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3358 | integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= 3359 | dependencies: 3360 | kind-of "^3.0.2" 3361 | 3362 | to-regex-range@^2.1.0: 3363 | version "2.1.1" 3364 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3365 | integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= 3366 | dependencies: 3367 | is-number "^3.0.0" 3368 | repeat-string "^1.6.1" 3369 | 3370 | to-regex@^3.0.1, to-regex@^3.0.2: 3371 | version "3.0.2" 3372 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3373 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== 3374 | dependencies: 3375 | define-property "^2.0.2" 3376 | extend-shallow "^3.0.2" 3377 | regex-not "^1.0.2" 3378 | safe-regex "^1.1.0" 3379 | 3380 | toidentifier@1.0.0: 3381 | version "1.0.0" 3382 | resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" 3383 | integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== 3384 | 3385 | trim-right@^1.0.1: 3386 | version "1.0.1" 3387 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3388 | integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= 3389 | 3390 | tryit@^1.0.1: 3391 | version "1.0.3" 3392 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3393 | integrity sha1-OTvnMKlEb9Hq1tpZoBQwjzbCics= 3394 | 3395 | tslib@^2.0.3: 3396 | version "2.4.1" 3397 | resolved "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e" 3398 | integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA== 3399 | 3400 | type-check@~0.3.2: 3401 | version "0.3.2" 3402 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3403 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 3404 | dependencies: 3405 | prelude-ls "~1.1.2" 3406 | 3407 | type-is@^1.6.16: 3408 | version "1.6.16" 3409 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.16.tgz#f89ce341541c672b25ee7ae3c73dee3b2be50194" 3410 | integrity sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q== 3411 | dependencies: 3412 | media-typer "0.3.0" 3413 | mime-types "~2.1.18" 3414 | 3415 | typedarray@^0.0.6: 3416 | version "0.0.6" 3417 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3418 | integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= 3419 | 3420 | typical@^2.6.0, typical@^2.6.1: 3421 | version "2.6.1" 3422 | resolved "https://registry.yarnpkg.com/typical/-/typical-2.6.1.tgz#5c080e5d661cbbe38259d2e70a3c7253e873881d" 3423 | integrity sha1-XAgOXWYcu+OCWdLnCjxyU+hziB0= 3424 | 3425 | typical@^3.0.0: 3426 | version "3.0.2" 3427 | resolved "https://registry.yarnpkg.com/typical/-/typical-3.0.2.tgz#1891683995b7916822c7ab0ccc238fc462f66e71" 3428 | integrity sha512-uvJvOMwAheCYrxDUsqkMPpYk7t1/R+4VQnBZ3wzkaA6QRQzXxG6+/yA6VGDtK+bgzCxh6Vk5arJ7TG0Gf8GN1w== 3429 | 3430 | unicode-canonical-property-names-ecmascript@^1.0.4: 3431 | version "1.0.4" 3432 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" 3433 | integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== 3434 | 3435 | unicode-match-property-ecmascript@^1.0.4: 3436 | version "1.0.4" 3437 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" 3438 | integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== 3439 | dependencies: 3440 | unicode-canonical-property-names-ecmascript "^1.0.4" 3441 | unicode-property-aliases-ecmascript "^1.0.4" 3442 | 3443 | unicode-match-property-value-ecmascript@^1.1.0: 3444 | version "1.1.0" 3445 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277" 3446 | integrity sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g== 3447 | 3448 | unicode-property-aliases-ecmascript@^1.0.4: 3449 | version "1.0.5" 3450 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57" 3451 | integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw== 3452 | 3453 | union-value@^1.0.0: 3454 | version "1.0.0" 3455 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3456 | integrity sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ= 3457 | dependencies: 3458 | arr-union "^3.1.0" 3459 | get-value "^2.0.6" 3460 | is-extendable "^0.1.1" 3461 | set-value "^0.4.3" 3462 | 3463 | unpipe@1.0.0: 3464 | version "1.0.0" 3465 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3466 | integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= 3467 | 3468 | unset-value@^1.0.0: 3469 | version "1.0.0" 3470 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3471 | integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= 3472 | dependencies: 3473 | has-value "^0.3.1" 3474 | isobject "^3.0.0" 3475 | 3476 | urix@^0.1.0: 3477 | version "0.1.0" 3478 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3479 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 3480 | 3481 | use@^3.1.0: 3482 | version "3.1.1" 3483 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 3484 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== 3485 | 3486 | util-deprecate@~1.0.1: 3487 | version "1.0.2" 3488 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3489 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 3490 | 3491 | vary@^1.1.2: 3492 | version "1.1.2" 3493 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 3494 | integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= 3495 | 3496 | vlq@^0.2.2: 3497 | version "0.2.3" 3498 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26" 3499 | integrity sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow== 3500 | 3501 | walk-back@^3.0.1: 3502 | version "3.0.1" 3503 | resolved "https://registry.yarnpkg.com/walk-back/-/walk-back-3.0.1.tgz#0c0012694725604960d6c2f75aaf1a1e7d455d35" 3504 | integrity sha512-umiNB2qLO731Sxbp6cfZ9pwURJzTnftxE4Gc7hq8n/ehkuXC//s9F65IEIJA2ZytQZ1ZOsm/Fju4IWx0bivkUQ== 3505 | 3506 | which@^1.2.9: 3507 | version "1.3.0" 3508 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3509 | integrity sha512-xcJpopdamTuY5duC/KnTTNBraPK54YwpenP4lzxU8H91GudWpFv38u0CKjclE1Wi2EH2EDz5LRcHcKbCIzqGyg== 3510 | dependencies: 3511 | isexe "^2.0.0" 3512 | 3513 | wordwrap@~1.0.0: 3514 | version "1.0.0" 3515 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3516 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= 3517 | 3518 | wordwrapjs@^3.0.0: 3519 | version "3.0.0" 3520 | resolved "https://registry.yarnpkg.com/wordwrapjs/-/wordwrapjs-3.0.0.tgz#c94c372894cadc6feb1a66bff64e1d9af92c5d1e" 3521 | integrity sha512-mO8XtqyPvykVCsrwj5MlOVWvSnCdT+C+QVbm6blradR7JExAhbkZ7hZ9A+9NUtwzSqrlUo9a67ws0EiILrvRpw== 3522 | dependencies: 3523 | reduce-flatten "^1.0.1" 3524 | typical "^2.6.1" 3525 | 3526 | wrappy@1: 3527 | version "1.0.2" 3528 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3529 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3530 | 3531 | write@^0.2.1: 3532 | version "0.2.1" 3533 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3534 | integrity sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c= 3535 | dependencies: 3536 | mkdirp "^0.5.1" 3537 | 3538 | ws@^5.2.1: 3539 | version "5.2.2" 3540 | resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" 3541 | integrity sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA== 3542 | dependencies: 3543 | async-limiter "~1.0.0" 3544 | 3545 | yallist@^2.1.2: 3546 | version "2.1.2" 3547 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3548 | integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= 3549 | 3550 | ylru@^1.2.0: 3551 | version "1.2.1" 3552 | resolved "https://registry.yarnpkg.com/ylru/-/ylru-1.2.1.tgz#f576b63341547989c1de7ba288760923b27fe84f" 3553 | integrity sha512-faQrqNMzcPCHGVC2aaOINk13K+aaBDUPjGWl0teOXywElLjyVAB6Oe2jj62jHYtwsU49jXhScYbvPENK+6zAvQ== 3554 | --------------------------------------------------------------------------------