├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── rollup.config.js ├── src ├── index.js └── polyfill.min.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "env", 5 | { 6 | "modules": false 7 | } 8 | ] 9 | ], 10 | "plugins": [ 11 | "external-helpers" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | **/*.min.js 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "standard", 3 | "globals": { 4 | "cancelAnimationFrame": true, 5 | "Polyfill": true 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | package-lock.json 4 | dist 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017 [PureCars](https://github.com/PureCars/scroll-snap-polyfill/graphs/contributors) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # css-scroll-snap-polyfill 2 | 3 | Polyfill for CSS scroll snapping draft. 4 | 5 | ## Usage 6 | 7 | #### Yarn 8 | `yarn add css-scroll-snap-polyfill` 9 | 10 | #### NPM 11 | `npm install --save css-scroll-snap-polyfill` 12 | 13 | Code example: 14 | 15 | ```js 16 | import scrollSnapPolyfill from 'css-scroll-snap-polyfill' 17 | 18 | // whenever dom is ready 19 | scrollSnapPolyfill() 20 | ``` 21 | 22 | Usage with React: 23 | 24 | ```js 25 | // must use inside componentDidMount so that the DOM is ready 26 | componentDidMount() { 27 | scrollSnapPolyfill() 28 | } 29 | ``` 30 | 31 | 32 | 33 | ## Dependencies 34 | 35 | This uses [Polyfill.js](https://github.com/philipwalton/polyfill) by [@philipwalton](https://github.com/philipwalton), which is bundled. 36 | No other dependencies. 37 | 38 | 39 | Browser Support 40 | --------------- 41 | 42 | This has been tested successfully in the following browsers: 43 | 44 | * Chrome 63 45 | * Firefox 57 46 | * Safari 11 47 | 48 | 49 | Standards documentation 50 | ----------------------- 51 | 52 | * https://www.w3.org/TR/css-scroll-snap-1/ 53 | 54 | 55 | Limitations 56 | ----------- 57 | 58 | It will not work properly when you use margins on the scroll-snap container or 59 | it's children due to there being a mismatch between the parent and child offsets, 60 | which are used to make calculations. 61 | 62 | This polyfill only supports the properties in the new spec, not the older deprecated 63 | properties like `scoll-snap-points`, `scroll-snap-coordinate`, and `scroll-snap-destination`. 64 | If you want to use those older properties (not recommended) you can use [scrollsnap-polyfill](https://github.com/ckrack/scrollsnap-polyfill) from Github user [@ckrack](https://github.com/ckrack). 65 | 66 | Length units for `scroll-padding` are limited to: 67 | 68 | * vh/vw 69 | * percentages 70 | * pixels 71 | 72 | Roadmap 73 | ------- 74 | 75 | - Code clean up 76 | - Testing 77 | - 100% parity with spec 78 | 79 | ## License 80 | 81 | [MIT](LICENSE). 82 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "css-scroll-snap-polyfill", 3 | "version": "0.1.2", 4 | "main": "dist/css-scroll-snap-polyfill.cjs.js", 5 | "module": "dist/css-scroll-snap-polyfill.esm.js", 6 | "browser": "dist/css-scroll-snap-polyfill.umd.js", 7 | "dependencies": { 8 | "polyfill": "^0.1.0" 9 | }, 10 | "devDependencies": { 11 | "babel-cli": "^6.26.0", 12 | "babel-plugin-external-helpers": "^6.22.0", 13 | "babel-preset-env": "^1.6.1", 14 | "eslint": "^4.13.1", 15 | "eslint-config-standard": "^11.0.0-beta.0", 16 | "eslint-plugin-import": "^2.8.0", 17 | "eslint-plugin-node": "^5.2.1", 18 | "eslint-plugin-promise": "^3.6.0", 19 | "eslint-plugin-standard": "^3.0.1", 20 | "rimraf": "^2.6.2", 21 | "rollup": "^0.50.0", 22 | "rollup-plugin-babel": "^3.0.3", 23 | "rollup-plugin-commonjs": "^8.2.6", 24 | "rollup-plugin-filesize": "^1.5.0", 25 | "rollup-plugin-node-resolve": "^3.0.0", 26 | "rollup-plugin-uglify": "^2.0.1" 27 | }, 28 | "scripts": { 29 | "prepublish": "npm run build", 30 | "build": "rimraf ./dist && rollup -c", 31 | "dev": "rollup -c -w", 32 | "lint": "eslint ." 33 | }, 34 | "files": [ 35 | "dist" 36 | ] 37 | } 38 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | import resolve from 'rollup-plugin-node-resolve' 2 | import commonjs from 'rollup-plugin-commonjs' 3 | import babel from 'rollup-plugin-babel' 4 | import uglify from 'rollup-plugin-uglify' 5 | import filesize from 'rollup-plugin-filesize' 6 | import pkg from './package.json' 7 | 8 | export default [ 9 | // browser-friendly UMD build 10 | { 11 | input: 'src/index.js', 12 | output: { 13 | file: pkg.browser, 14 | format: 'umd' 15 | }, 16 | name: 'scroll-snap-polyfill', 17 | plugins: [ 18 | resolve(), // so Rollup can find `ms` 19 | commonjs(), // so Rollup can convert `ms` to an ES module 20 | babel({ 21 | exclude: 'node_modules/**' 22 | }), 23 | uglify(), 24 | filesize() 25 | ], 26 | sourcemap: true 27 | }, 28 | 29 | // CommonJS (for Node) and ES module (for bundlers) build. 30 | // (We could have three entries in the configuration array 31 | // instead of two, but it's quicker to generate multiple 32 | // builds from a single configuration where possible, using 33 | // an array for the `output` option, where we can specify 34 | // `file` and `format` for each target) 35 | { 36 | input: 'src/index.js', 37 | external: [], 38 | output: [ 39 | { file: pkg.main, format: 'cjs' }, 40 | { file: pkg.module, format: 'es' } 41 | ] 42 | } 43 | ] 44 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import './polyfill.min.js' 2 | 3 | const NONE = 'none' 4 | const START = 'start' 5 | const END = 'end' 6 | const CENTER = 'center' 7 | const LENGTH_PERCENTAGE_REGEX = /(\d+)(px|vh|vw|%)/g 8 | 9 | /** 10 | * constraint to jumping to the next snap-point. 11 | * when scrolling further than SNAP_CONSTRAINT snap-points, 12 | * but the current distance is less than 1-0.18 (read: 18 percent), 13 | * the snap-will go back to the closer snap-point. 14 | */ 15 | const CONSTRAINT = 0.18 16 | 17 | /** 18 | * time in ms after which scrolling is considered finished. 19 | * the scroll timeouts are timed with this. 20 | * whenever a new scroll event is triggered, the previous timeout is deleted. 21 | * @type {Number} 22 | */ 23 | const SCROLL_TIMEOUT = 45 24 | 25 | /** 26 | * time for the smooth scrolling 27 | * @type {Number} 28 | */ 29 | const SCROLL_TIME = 350 30 | 31 | /** 32 | * doMatched is a callback for Polyfill to fill in the desired behaviour. 33 | * @param {array} rules rules found for the polyfill 34 | */ 35 | function doMatched (rules) { 36 | // iterate over rules 37 | rules.each((rule) => { 38 | const elements = document.querySelectorAll(rule.getSelectors()) 39 | const declaration = rule.getDeclaration(); 40 | 41 | // iterate over elements 42 | [].forEach.call(elements, (el) => { 43 | // set up the behaviour 44 | setUpElement(el, declaration) 45 | }) 46 | }) 47 | } 48 | 49 | /** 50 | * unDomatched is a callback for polyfill to undo any polyfilled behaviour 51 | * @param {Object} rules 52 | */ 53 | function undoUnmatched (rules) { 54 | // iterate over rules 55 | rules.each((rule) => { 56 | const elements = document.querySelectorAll(rule.getSelectors()); 57 | 58 | // iterate over elements 59 | [].forEach.call(elements, (el) => { 60 | // tear down the behaviour 61 | tearDownElement(el) 62 | }) 63 | }) 64 | } 65 | 66 | /** 67 | * set up an element for scroll-snap behaviour 68 | * @param {Object} el HTML element 69 | * @param {Object} declaration CSS declarations 70 | */ 71 | function setUpElement (el, declaration) { 72 | // if this is a scroll-snap element in a scroll snap container, attach to the container only. 73 | if (typeof declaration['scroll-snap-align'] !== 'undefined') { 74 | // save declaration 75 | el.scrollSnapAlignment = parseScrollSnapAlignment(declaration) 76 | 77 | return attachToScrollParent(el) 78 | } 79 | 80 | // if the scroll snap attributes are applied on the body/html tag, use the doc for scroll events. 81 | const tag = el.tagName 82 | if (tag.toLowerCase() === 'body' || 83 | tag.toLowerCase() === 'html') { 84 | el = document 85 | } 86 | 87 | // add the event listener 88 | el.addEventListener('scroll', handler, false) 89 | 90 | // set up scroll padding 91 | el.scrollPadding = parseScrollPadding(declaration) 92 | 93 | // save declaration 94 | // if (typeof declaration['scroll-snap-destination'] !== 'undefined') { 95 | // el.snapLengthUnit = parseSnapCoordValue(declaration); 96 | // } else { 97 | // el.snapLengthUnit = parseSnapPointValue(declaration); 98 | // } 99 | 100 | // init possible elements 101 | el.snapElements = [] 102 | } 103 | 104 | /** 105 | * tear down an element. remove all added behaviour. 106 | * @param {Object} el DomElement 107 | */ 108 | function tearDownElement (el) { 109 | // if the scroll snap attributes are applied on the body/html tag, use the doc for scroll events. 110 | const tag = el.tagName 111 | 112 | if (tag.toLowerCase() === 'body' || 113 | tag.toLowerCase() === 'html') { 114 | el = document 115 | } 116 | 117 | document.removeEventListener('scroll', handler, false) 118 | el.removeEventListener('scroll', handler, false) 119 | 120 | el.snapLengthUnit = null 121 | el.snapElements = [] 122 | } 123 | 124 | /** 125 | * parse snap alignment values. 126 | * @param {Object} declaration 127 | * @return {Object} 128 | */ 129 | function parseScrollSnapAlignment (declaration) { 130 | const { 'scroll-snap-align': snapAlign } = declaration 131 | let xAlign = NONE 132 | let yAlign = NONE 133 | 134 | if (typeof snapAlign !== 'undefined') { 135 | // calculate scroll snap align 136 | const parts = snapAlign.split(' ') 137 | xAlign = parts[0] 138 | yAlign = parts.length > 1 ? parts[1] : xAlign 139 | } 140 | 141 | return { 142 | x: xAlign, 143 | y: yAlign 144 | } 145 | } 146 | 147 | function parseLengthPercentage (strValue) { 148 | // regex to parse lengths 149 | const result = LENGTH_PERCENTAGE_REGEX.exec(strValue) 150 | // if result is null return default values 151 | if (result === null) return { value: 0, unit: 'px' } 152 | 153 | const value = result[1] 154 | const unit = result[2] 155 | return { value: parseInt(value, 10), unit } 156 | } 157 | 158 | /** 159 | * parse scroll padding values. 160 | * @param {Object} declaration 161 | * @return {Object} 162 | */ 163 | function parseScrollPadding (declaration) { 164 | const { 165 | 'scroll-padding': scrollPadding, 166 | 'scroll-padding-top': scrollPaddingTop, 167 | 'scroll-padding-right': scrollPaddingRight, 168 | 'scroll-padding-bottom': scrollPaddingBottom, 169 | 'scroll-padding-left': scrollPaddingLeft 170 | } = declaration 171 | let paddingTop = { value: 0, unit: 'px' } 172 | let paddingRight = { value: 0, unit: 'px' } 173 | let paddingBottom = { value: 0, unit: 'px' } 174 | let paddingLeft = { value: 0, unit: 'px' } 175 | 176 | if (typeof scrollPadding !== 'undefined') { 177 | // calculate scroll padding 178 | const parts = scrollPadding.split(' ') 179 | parts.forEach((part, i) => { 180 | const value = parseLengthPercentage(part) 181 | switch (i) { 182 | case 0: 183 | paddingTop = value 184 | paddingRight = value 185 | paddingBottom = value 186 | paddingLeft = value 187 | break 188 | case 1: 189 | paddingRight = value 190 | paddingLeft = value 191 | break 192 | case 2: 193 | paddingBottom = value 194 | break 195 | case 3: 196 | paddingLeft = value 197 | break 198 | default: 199 | } 200 | }) 201 | } 202 | 203 | if (typeof scrollPaddingTop !== 'undefined') { 204 | paddingTop = parseLengthPercentage(scrollPaddingTop) 205 | } 206 | if (typeof scrollPaddingRight !== 'undefined') { 207 | paddingRight = parseLengthPercentage(scrollPaddingRight) 208 | } 209 | if (typeof scrollPaddingBottom !== 'undefined') { 210 | paddingBottom = parseLengthPercentage(scrollPaddingBottom) 211 | } 212 | if (typeof scrollPaddingLeft !== 'undefined') { 213 | paddingLeft = parseLengthPercentage(scrollPaddingLeft) 214 | } 215 | 216 | return { 217 | top: paddingTop, 218 | right: paddingRight, 219 | bottom: paddingBottom, 220 | left: paddingLeft 221 | } 222 | } 223 | 224 | /** 225 | * attach a child-element onto a scroll-container 226 | * @param {Object} el 227 | */ 228 | function attachToScrollParent (el) { 229 | const attach = el 230 | // iterate over parent elements 231 | for (; el && el !== document; el = el.parentNode) { 232 | if (typeof el.snapElements !== 'undefined') { 233 | el.snapElements.push(attach) 234 | } 235 | } 236 | } 237 | 238 | /** 239 | * the last created timeOutId for scroll event timeouts. 240 | * @type int 241 | */ 242 | let timeOutId = null 243 | 244 | /** 245 | * starting point for current scroll 246 | * @type length 247 | */ 248 | let scrollStart = null 249 | 250 | /** 251 | * the last object receiving a scroll event 252 | */ 253 | let lastObj, lastScrollObj 254 | 255 | /** 256 | * scroll handler 257 | * this is the callback for scroll events. 258 | */ 259 | let handler = function (evt) { 260 | // use evt.target as target-element 261 | lastObj = evt.target 262 | lastScrollObj = getScrollObj(lastObj) 263 | 264 | // if currently animating, stop it. this prevents flickering. 265 | if (animationFrame) { 266 | // cross browser 267 | if (!cancelAnimationFrame(animationFrame)) { 268 | clearTimeout(animationFrame) 269 | } 270 | } 271 | 272 | // if a previous timeout exists, clear it. 273 | if (timeOutId) { 274 | // we only want to call a timeout once after scrolling.. 275 | clearTimeout(timeOutId) 276 | } else { 277 | // save new scroll start 278 | scrollStart = { 279 | y: lastScrollObj.scrollTop, 280 | x: lastScrollObj.scrollLeft 281 | } 282 | } 283 | 284 | /* set a timeout for every scroll event. 285 | * if we have new scroll events in that time, the previous timeouts are cleared. 286 | * thus we can be sure that the timeout will be called 50ms after the last scroll event. 287 | * this means a huge improvement in speed, as we just assign a timeout in the scroll event, which will be called only once (after scrolling is finished) 288 | */ 289 | timeOutId = setTimeout(handlerDelayed, SCROLL_TIMEOUT) 290 | } 291 | 292 | /** 293 | * a delayed handler for scrolling. 294 | * this will be called by setTimeout once, after scrolling is finished. 295 | */ 296 | let handlerDelayed = function () { 297 | // if we don't move a thing, we can ignore the timeout: if we did, there'd be another timeout added for scrollStart+1. 298 | if (scrollStart.y === lastScrollObj.scrollTop && scrollStart.x === lastScrollObj.scrollLeft) { 299 | // ignore timeout 300 | return 301 | } 302 | 303 | // detect direction of scroll. negative is up, positive is down. 304 | let direction = { 305 | y: (scrollStart.y - lastScrollObj.scrollTop > 0) ? -1 : 1, 306 | x: (scrollStart.x - lastScrollObj.scrollLeft > 0) ? -1 : 1 307 | } 308 | let snapPoint 309 | 310 | if (typeof lastScrollObj.snapElements !== 'undefined' && lastScrollObj.snapElements.length > 0) { 311 | snapPoint = getNextElementSnapPoint(lastScrollObj, lastObj, direction) 312 | } 313 | 314 | // before doing the move, unbind the event handler (otherwise it calls itself kinda) 315 | lastObj.removeEventListener('scroll', handler, false) 316 | 317 | // smoothly move to the snap point 318 | smoothScroll(lastScrollObj, snapPoint, function () { 319 | // after moving to the snap point, rebind the scroll event handler 320 | lastObj.addEventListener('scroll', handler, false) 321 | }) 322 | 323 | // we just jumped to the snapPoint, so this will be our next scrollStart 324 | if (!isNaN(snapPoint.x) || !isNaN(snapPoint.y)) { 325 | scrollStart = snapPoint 326 | } 327 | } 328 | 329 | let currentIteratedObj = null 330 | let currentIteration = 0 331 | 332 | function toPx (value, unit, containerEl) { 333 | if (unit && unit.toLowerCase() === 'vw') { 334 | return getWidth(document.documentElement) * (value / 100) 335 | } 336 | if (unit && unit.toLowerCase() === 'vh') { 337 | return getHeight(document.documentElement) * (value / 100) 338 | } 339 | if (unit && unit === '%') { 340 | return getWidth(containerEl) * (value / 100) 341 | } 342 | return value 343 | } 344 | 345 | function getNextElementSnapPoint (scrollObj, obj, direction) { 346 | const l = obj.snapElements.length 347 | const top = scrollObj.scrollTop 348 | const left = scrollObj.scrollLeft 349 | // decide upon an iteration direction (favor -1, as 1 is default and will be applied when there is no direction on an axis) 350 | const primaryDirection = Math.min(direction.y, direction.x) 351 | let snapCoords = { y: 0, x: 0 } 352 | 353 | const { top: paddingTop, left: paddingLeft } = scrollObj.scrollPadding 354 | const pTop = roundByDirection(direction, toPx(paddingTop.value, paddingTop.unit, scrollObj)) 355 | const pLeft = roundByDirection(direction, toPx(paddingLeft.value, paddingLeft.unit, scrollObj)) 356 | 357 | function adjustForPadding (value, adjustment) { 358 | if (currentIteration === 0 || currentIteration === l - 1) { 359 | return value 360 | } 361 | return value - adjustment 362 | } 363 | 364 | // handle use-case where scrolling to end 365 | if ((left > 0 && (left + getWidth(scrollObj)) === getScrollWidth(scrollObj)) || (top > 0 && (top + getHeight(scrollObj)) === getScrollHeight(scrollObj))) { 366 | currentIteration = l - 1 367 | const lastSnapElement = obj.snapElements[currentIteration] 368 | const lastSnapCoords = { 369 | x: (getLeft(lastSnapElement) - getLeft(scrollObj)) + getXSnapLength(lastSnapElement, lastSnapElement.scrollSnapAlignment.x, direction), 370 | y: (getTop(lastSnapElement) - getTop(scrollObj)) + getYSnapLength(lastSnapElement, lastSnapElement.scrollSnapAlignment.y, direction) 371 | } 372 | lastSnapElement.snapCoords = lastSnapCoords 373 | // the for loop stopped at the last element 374 | return {y: stayInBounds(0, getScrollHeight(scrollObj), lastSnapCoords.y), 375 | x: stayInBounds(0, getScrollWidth(scrollObj), lastSnapCoords.x)} 376 | } 377 | 378 | const currentSnapElement = obj.snapElements[currentIteration] 379 | const currentSnapCoords = { 380 | x: currentIteration === 0 ? 0 : (getLeft(currentSnapElement) - getLeft(scrollObj)) + getXSnapLength(currentSnapElement, currentSnapElement.scrollSnapAlignment.x, direction) - getXSnapLength(scrollObj, currentSnapElement.scrollSnapAlignment.x, direction), 381 | y: currentIteration === 0 ? 0 : (getTop(currentSnapElement) - getTop(scrollObj)) + getYSnapLength(currentSnapElement, currentSnapElement.scrollSnapAlignment.y, direction) - getYSnapLength(scrollObj, currentSnapElement.scrollSnapAlignment.y, direction) 382 | } 383 | currentSnapElement.snapCoords = currentSnapCoords 384 | const xThreshold = currentSnapCoords.x + (direction.x * getWidth(currentSnapElement) * CONSTRAINT) 385 | const yThreshold = currentSnapCoords.y + (direction.y * getHeight(currentSnapElement) * CONSTRAINT) 386 | 387 | let i 388 | for (i = currentIteration + primaryDirection; i < l && i >= 0; i = i + primaryDirection) { 389 | currentIteratedObj = obj.snapElements[i] 390 | 391 | // get objects snap coords by adding obj.top + obj.snaplength.y 392 | snapCoords = { 393 | y: i === 0 ? 0 : (getTop(currentIteratedObj) - getTop(scrollObj)) + getYSnapLength(currentIteratedObj, currentIteratedObj.scrollSnapAlignment.y, direction) - getYSnapLength(scrollObj, currentIteratedObj.scrollSnapAlignment.y, direction), 394 | x: i === 0 ? 0 : (getLeft(currentIteratedObj) - getLeft(scrollObj)) + getXSnapLength(currentIteratedObj, currentIteratedObj.scrollSnapAlignment.x, direction) - getXSnapLength(scrollObj, currentIteratedObj.scrollSnapAlignment.x, direction) 395 | } 396 | 397 | currentIteratedObj.snapCoords = snapCoords 398 | // check if object snappoint is "close" enough to scrollable snappoint 399 | 400 | // check if not beyond scroll threshold 401 | if ((direction.x === 1 ? left < xThreshold : left > xThreshold) && 402 | (direction.y === 1 ? top < yThreshold : top > yThreshold)) { 403 | break 404 | } 405 | 406 | const elementXThreshold = snapCoords.x + (direction.x * getWidth(currentIteratedObj) * CONSTRAINT) 407 | const elementYThreshold = snapCoords.y + (direction.y * getHeight(currentIteratedObj) * CONSTRAINT) 408 | 409 | // check if not scrolled past element snap point 410 | if ((direction.x === 1 ? left > elementXThreshold : left < elementXThreshold) || 411 | (direction.y === 1 ? top > elementYThreshold : top < elementYThreshold)) { 412 | continue 413 | } 414 | 415 | // ok, we found a snap point. 416 | currentIteration = i 417 | // stay in bounds (minimum: 0, maxmimum: absolute height) 418 | return {y: stayInBounds(0, getScrollHeight(scrollObj), adjustForPadding(snapCoords.y, pTop)), 419 | x: stayInBounds(0, getScrollWidth(scrollObj), adjustForPadding(snapCoords.x, pLeft))} 420 | } 421 | // no snap found, use first or last? 422 | if (primaryDirection === 1 && i === l - 1) { 423 | currentIteration = l - 1 424 | // the for loop stopped at the last element 425 | return {y: stayInBounds(0, getScrollHeight(scrollObj), snapCoords.y), 426 | x: stayInBounds(0, getScrollWidth(scrollObj), snapCoords.x)} 427 | } else if (primaryDirection === -1 && i === 0) { 428 | currentIteration = 0 429 | // the for loop stopped at the first element 430 | return {y: stayInBounds(0, getScrollHeight(scrollObj), snapCoords.y), 431 | x: stayInBounds(0, getScrollWidth(scrollObj), snapCoords.x)} 432 | } 433 | // stay in the same place 434 | return {y: stayInBounds(0, getScrollHeight(scrollObj), adjustForPadding(obj.snapElements[currentIteration].snapCoords.y, pTop)), 435 | x: stayInBounds(0, getScrollWidth(scrollObj), adjustForPadding(obj.snapElements[currentIteration].snapCoords.x, pLeft))} 436 | } 437 | 438 | /** 439 | * ceil or floor a number based on direction 440 | * @param {Number} direction 441 | * @param {Number} currentPoint 442 | * @return {Number} 443 | */ 444 | function roundByDirection (direction, currentPoint) { 445 | if (direction === -1) { 446 | // when we go up, we floor the number to jump to the next snap-point in scroll direction 447 | return Math.floor(currentPoint) 448 | } 449 | // go down, we ceil the number to jump to the next in view. 450 | return Math.ceil(currentPoint) 451 | } 452 | 453 | /** 454 | * keep scrolling in bounds 455 | * @param {Number} min 456 | * @param {Number} max 457 | * @param {Number} destined 458 | * @return {Number} 459 | */ 460 | function stayInBounds (min, max, destined) { 461 | return Math.max(Math.min(destined, max), min) 462 | } 463 | 464 | /** 465 | * calc length of one snap on y-axis 466 | * @param {Object} declaration the parsed declaration 467 | * @return {Number} 468 | */ 469 | function getYSnapLength (obj, alignment, direction) { 470 | if (alignment === START) { 471 | return 0 472 | } else if (alignment === END) { 473 | return getHeight(obj) 474 | } else if (alignment === CENTER) { 475 | return roundByDirection(direction, getHeight(obj) / 2) 476 | } 477 | return 0 478 | } 479 | 480 | /** 481 | * calc length of one snap on x-axis 482 | * @param {Object} declaration the parsed declaration 483 | * @return {Number} 484 | */ 485 | function getXSnapLength (obj, alignment, direction) { 486 | if (alignment === START) { 487 | return 0 488 | } else if (alignment === END) { 489 | return getWidth(obj) 490 | } else if (alignment === CENTER) { 491 | return roundByDirection(direction, getWidth(obj) / 2) 492 | } 493 | return 0 494 | } 495 | 496 | /** 497 | * get an elements scrollable height 498 | * @param {Object} obj 499 | * @return {Number} 500 | */ 501 | function getScrollHeight (obj) { 502 | return obj.scrollHeight 503 | } 504 | 505 | /** 506 | * get an elements scrollable width 507 | * @param {Object} obj 508 | * @return {Number} 509 | */ 510 | function getScrollWidth (obj) { 511 | return obj.scrollWidth 512 | } 513 | 514 | /** 515 | * get an elements height 516 | * @param {Object} obj 517 | * @return {Number} 518 | */ 519 | function getHeight (obj) { 520 | return obj.offsetHeight 521 | } 522 | 523 | /** 524 | * get an elements width 525 | * @param {Object} obj 526 | * @return {Number} 527 | */ 528 | function getWidth (obj) { 529 | return obj.offsetWidth 530 | } 531 | 532 | /** 533 | * get an elements height 534 | * @param {Object} obj 535 | * @return {Number} 536 | */ 537 | function getLeft (obj) { 538 | return obj.offsetLeft + obj.clientLeft 539 | } 540 | 541 | /** 542 | * get an elements width 543 | * @param {Object} obj 544 | * @return {Number} 545 | */ 546 | function getTop (obj) { 547 | return obj.offsetTop + obj.clientTop 548 | } 549 | 550 | /** 551 | * return the element scrolling values are applied to. 552 | * when receiving window.onscroll events, the actual scrolling is on the body. 553 | * @param {Object} obj 554 | * @return {Object} 555 | */ 556 | function getScrollObj (obj) { 557 | // if the scroll container is body, the scrolling is invoked on window/doc. 558 | if (obj === document || obj === window) { 559 | // firefox scrolls on doc.documentElement 560 | if (document.documentElement.scrollTop > 0 || document.documentElement.scrollLeft > 0) { 561 | return document.documentElement 562 | } 563 | // chrome scrolls on body 564 | return document.querySelector('body') 565 | } 566 | 567 | return obj 568 | } 569 | 570 | /** 571 | * calc the duration of the animation proportional to the distance travelled 572 | * @param {Number} start 573 | * @param {Number} end 574 | * @return {Number} scroll time in ms 575 | */ 576 | function getDuration (start, end) { 577 | const distance = Math.abs(start - end) 578 | const procDist = 100 / Math.max(document.documentElement.clientHeight, window.innerHeight || 1) * distance 579 | const duration = 100 / SCROLL_TIME * procDist 580 | 581 | if (isNaN(duration)) { 582 | return 0 583 | } 584 | 585 | return Math.max(SCROLL_TIME / 1.5, Math.min(duration, SCROLL_TIME)) 586 | } 587 | 588 | /** 589 | * ease in out function thanks to: 590 | * http://blog.greweb.fr/2012/02/bezier-curve-based-easing-functions-from-concept-to-implementation/ 591 | * @param {Number} t timing 592 | * @return {Number} easing factor 593 | */ 594 | const easeInCubic = function (t) { 595 | return t * t * t 596 | } 597 | 598 | /** 599 | * calculate the scroll position we should be in 600 | * @param {Number} start the start point of the scroll 601 | * @param {Number} end the end point of the scroll 602 | * @param {Number} elapsed the time elapsed from the beginning of the scroll 603 | * @param {Number} duration the total duration of the scroll (default 500ms) 604 | * @return {Number} the next position 605 | */ 606 | const position = function (start, end, elapsed, duration) { 607 | if (elapsed > duration) { 608 | return end 609 | } 610 | return start + (end - start) * easeInCubic(elapsed / duration) 611 | } 612 | 613 | // a current animation frame 614 | let animationFrame = null 615 | 616 | /** 617 | * smoothScroll function by Alice Lietieur. 618 | * @see https://github.com/alicelieutier/smoothScroll 619 | * we use requestAnimationFrame to be called by the browser before every repaint 620 | * @param {Object} obj the scroll context 621 | * @param {Number} end where to scroll to 622 | * @param {Number} duration scroll duration 623 | * @param {Function} callback called when the scrolling is finished 624 | */ 625 | const smoothScroll = function (obj, end, callback) { 626 | const start = { y: obj.scrollTop, x: obj.scrollLeft } 627 | 628 | const clock = Date.now() 629 | 630 | // get animation frame or a fallback 631 | const requestAnimationFrame = window.requestAnimationFrame || 632 | window.mozRequestAnimationFrame || 633 | window.webkitRequestAnimationFrame || 634 | function (fn) { window.setTimeout(fn, 15) } 635 | const duration = Math.max(getDuration(start.y, end.y), getDuration(start.x, end.x)) 636 | 637 | // setup the stepping function 638 | const step = function () { 639 | // calculate timings 640 | const elapsed = Date.now() - clock 641 | 642 | // change position on y-axis if result is a number. 643 | if (!isNaN(end.y)) { 644 | obj.scrollTop = position(start.y, end.y, elapsed, duration) 645 | } 646 | 647 | // change position on x-axis if result is a number. 648 | if (!isNaN(end.x)) { 649 | obj.scrollLeft = position(start.x, end.x, elapsed, duration) 650 | } 651 | 652 | // check if we are over due 653 | if (elapsed > duration) { 654 | // is there a callback? 655 | if (typeof callback === 'function') { 656 | // stop execution and run the callback 657 | return callback(end) 658 | } 659 | 660 | // stop execution 661 | return 662 | } 663 | 664 | // use a new animation frame 665 | animationFrame = requestAnimationFrame(step) 666 | } 667 | 668 | // start the first step 669 | step() 670 | } 671 | 672 | export default () => { 673 | /** 674 | * Feature detect scroll-snap-type, if it exists then do nothing (return) 675 | */ 676 | if ('scrollSnapAlign' in document.documentElement.style || 677 | 'webkitScrollSnapAlign' in document.documentElement.style || 678 | 'msScrollSnapAlign' in document.documentElement.style) { 679 | // just return void to stop executing the polyfill. 680 | return 681 | } 682 | 683 | Polyfill({ 684 | declarations: [ 685 | 'scroll-snap-type:*', 686 | 'scroll-snap-align:*', 687 | 'scroll-snap-padding:*' 688 | ] 689 | }) 690 | .doMatched(doMatched) 691 | .undoUnmatched(undoUnmatched) 692 | } 693 | -------------------------------------------------------------------------------- /src/polyfill.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Polyfill.js - v0.1.0 3 | * 4 | * Copyright (c) 2015 Philip Walton 5 | * Released under the MIT license 6 | * 7 | * Date: 2015-06-21 8 | */ 9 | !function(a,b,c){"use strict";function d(a){return a.replace(/^\s+|\s+$/g,"")}function e(a,b){var c,d=0;if(!a||!b)return!1;for(;c=b[d++];)if(a===c)return!0;return!1}function f(a){return j.test(a)}function g(a){var b,c=0;for(this._rules=[];b=a[c++];)this._rules.push(new h(b))}function h(a){this._rule=a}function i(a){return this instanceof i?(this._options=a,a.keywords||(this._options={keywords:a}),this._promise=[],this._getStylesheets(),this._downloadStylesheets(),this._parseStylesheets(),this._filterCSSByKeywords(),this._buildMediaQueryMap(),this._reportInitialMatches(),void this._addMediaListeners()):new i(a)}var j=RegExp("^"+String({}.valueOf).replace(/[.*+?\^${}()|\[\]\\]/g,"\\$&").replace(/valueOf|for [^\]]+/g,".+?")+"$"),k=function(){var a=b.getElementsByTagName("base")[0],c=/^([a-zA-Z:]*\/\/)/;return function(b){var d=!c.test(b)&&!a||b.replace(RegExp.$1,"").split("/")[0]===location.host;return d}}(),l={matchMedia:a.matchMedia&&a.matchMedia("only all").matches,nativeMatchMedia:f(a.matchMedia)},m=function(){function b(a){for(var b,c=0;b=a[c++];)i[b]||e(b,j)||j.push(b)}function c(){if(0===m.readyState||4===m.readyState){var a;(a=j[0])&&d(a),a||g()}}function d(a){l++,m.open("GET",a,!0),m.onreadystatechange=function(){4!=m.readyState||200!=m.status&&304!=m.status||(i[a]=m.responseText,j.shift(),c())},m.send(null)}function f(a){for(var b,c=0,d=0;b=a[c++];)i[b]&&d++;return d===a.length}function g(){for(var a;a=k.shift();)h(a.urls,a.fn)}function h(a,b){for(var c,d=[],e=0;c=a[e++];)d.push(i[c]);b.call(null,d)}var i={},j=[],k=[],l=0,m=function(){var b;try{b=new a.XMLHttpRequest}catch(c){b=new a.ActiveXObject("Microsoft.XMLHTTP")}return b}();return{request:function(a,d){k.push({urls:a,fn:d}),f(a)?g():(b(a),c())},clearCache:function(){i={}},_getRequestCount:function(){return l}}}(),n={_cache:{},clearCache:function(){n._cache={}},parse:function(a,b){function c(){return g(/^\{\s*/)}function e(){return g(/^\}\s*/)}function f(){var b,c=[];for(h(),i(c);"}"!=a.charAt(0)&&(b=y()||z());)c.push(b),i(c);return c}function g(b){var c=b.exec(a);if(c)return a=a.slice(c[0].length),c}function h(){g(/^\s*/)}function i(a){a=a||[];for(var b;b=j();)a.push(b);return a}function j(){if("/"==a[0]&&"*"==a[1]){for(var b=2;"*"!=a[b]||"/"!=a[b+1];)++b;b+=2;var c=a.slice(2,b-2);return a=a.slice(b),h(),{comment:c}}}function k(){var a=g(/^([^{]+)/);if(a)return d(a[0]).split(/\s*,\s*/)}function l(){var a=g(/^(\*?[\-\w]+)\s*/);if(a&&(a=a[0],g(/^:\s*/))){var b=g(/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^\)]*?\)|[^};])+)\s*/);if(b)return b=d(b[0]),g(/^[;\s]*/),{property:a,value:b}}}function m(){for(var a,b=[];a=g(/^(from|to|\d+%|\.\d+%|\d+\.\d+%)\s*/);)b.push(a[1]),g(/^,\s*/);return b.length?{values:b,declarations:x()}:void 0}function o(){var a=g(/^@([\-\w]+)?keyframes */);if(a){var b=a[1],a=g(/^([\-\w]+)\s*/);if(a){var d=a[1];if(c()){i();for(var f,h=[];f=m();)h.push(f),i();if(e()){var j={name:d,keyframes:h};return b&&(j.vendor=b),j}}}}}function p(){var a=g(/^@supports *([^{]+)/);if(a){var b=d(a[1]);if(c()){i();var h=f();if(e())return{supports:b,rules:h}}}}function q(){var a=g(/^@media *([^{]+)/);if(a){var b=d(a[1]);if(c()){i();var h=f();if(e())return{media:b,rules:h}}}}function r(){var a=g(/^@page */);if(a){var b=k()||[],d=[];if(c()){i();for(var f;f=l()||s();)d.push(f),i();if(e())return{type:"page",selectors:b,declarations:d}}}}function s(){var a=g(/^@([a-z\-]+) */);if(a){var b=a[1];return{type:b,declarations:x()}}}function t(){return w("import")}function u(){return w("charset")}function v(){return w("namespace")}function w(a){var b=g(new RegExp("^@"+a+" *([^;\\n]+);\\s*"));if(b){var c={};return c[a]=d(b[1]),c}}function x(){var a=[];if(c()){i();for(var b;b=l();)a.push(b),i();if(e())return a}}function y(){return o()||q()||p()||t()||u()||v()||r()}function z(){var a=k();if(a)return i(),{selectors:a,declarations:x()}}return b&&n._cache[b]?n._cache[b]:(a=a.replace(/\/\*[\s\S]*?\*\//g,""),n._cache[b]=f())},filter:function(a,b){function c(a,b){return a||b?a?a.concat(b):[b]:void 0}function e(a){null==a.media&&delete a.media,null==a.supports&&delete a.supports,k.push(a)}function f(a,b){if(b)for(var c=b.length;c--;)if(a.indexOf(b[c])>=0)return!0}function g(a,b){for(var c,e,f,g,h=/\*/,i=0;c=b[i++];)if(e=c.split(":"),f=new RegExp("^"+d(e[0]).replace(h,".*")+"$"),g=new RegExp("^"+d(e[1]).replace(h,".*")+"$"),f.test(a.property)&&g.test(a.value))return!0}function h(a,c,d){return b.selectors&&f(a.selectors.join(","),b.selectors)?(e({media:c,supports:d,selectors:a.selectors,declarations:a.declarations}),!0):void 0}function i(a,c,d){if(b.declarations)for(var f,h=0;f=a.declarations[h++];)if(g(f,b.declarations))return e({media:c,supports:d,selectors:a.selectors,declarations:a.declarations}),!0}function j(a,b,d){for(var e,f=0;e=a[f++];)e.declarations?h(e,b,d)||i(e,b,d):e.rules&&e.media?j(e.rules,c(b,e.media),d):e.rules&&e.supports&&j(e.rules,b,c(d,e.supports))}var k=[];return j(a),k}},o=function(){function c(){if(f)return f;var a=b.documentElement,c=b.body,d=a.style.fontSize,e=c.style.fontSize,g=b.createElement("div");return a.style.fontSize="1em",c.style.fontSize="1em",c.appendChild(g),g.style.width="1em",g.style.position="absolute",f=g.offsetWidth,c.removeChild(g),c.style.fontSize=e,a.style.fontSize=d,f}function d(b){return a.matchMedia(b)}function e(a){var d,e,f=!1;return g=b.documentElement.clientWidth,h.test(a)&&(d="em"===RegExp.$2?parseFloat(RegExp.$1)*c():parseFloat(RegExp.$1)),i.test(a)&&(e="em"===RegExp.$2?parseFloat(RegExp.$1)*c():parseFloat(RegExp.$1)),d&&e?f=g>=d&&e>=g:(d&&g>=d&&(f=!0),e&&e>=g&&(f=!0)),{matches:f,media:a}}var f,g,h=/\(min\-width:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/,i=/\(max\-width:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/,j={};return{matchMedia:function(a){return l.matchMedia?d(a):e(a)},clearCache:function(){l.nativeMatchMedia||(g=null,j={})}}}(),p=function(){function b(a,b){var c;return function(){clearTimeout(c),c=setTimeout(a,b)}}var c=function(){var a=[];return{add:function(b,c,d){for(var e,f=0;e=a[f++];)if(e.polyfill==b&&e.mql===c&&e.fn===d)return!1;c.addListener(d),a.push({polyfill:b,mql:c,fn:d})},remove:function(b){for(var c,d=0;c=a[d++];)c.polyfill===b&&(c.mql.removeListener(c.fn),a.splice(--d,1))}}}(),d=function(b){function c(){for(var a,c=0;a=b[c++];)a.fn()}return{add:function(d,e){b.length||(a.addEventListener?a.addEventListener("resize",c,!1):a.attachEvent("onresize",c)),b.push({polyfill:d,fn:e})},remove:function(d){for(var e,f=0;e=b[f++];)e.polyfill===d&&b.splice(--f,1);b.length||(a.removeEventListener?a.removeEventListener("resize",c,!1):a.detachEvent&&a.detachEvent("onresize",c))}}}([]);return{removeListeners:function(a){l.nativeMatchMedia?c.remove(a):d.remove(a)},addListeners:function(a,e){function f(){if(l.nativeMatchMedia)for(var f in h)h.hasOwnProperty(f)&&!function(b,d){c.add(a,b,function(){e.call(a,d,b.matches)})}(h[f],f);else{var i=b(function(a,b){return function(){g(a,b)}}(a,h),a._options.debounceTimeout||100);d.add(a,i)}}function g(a,b){var c,d={};o.clearCache();for(c in b)b.hasOwnProperty(c)&&(d[c]=o.matchMedia(c).matches,d[c]!=i[c]&&e.call(a,c,o.matchMedia(c).matches));i=d}var h=a._mediaQueryMap,i={};!function(){for(var a in h)h.hasOwnProperty(a)&&(i[a]=o.matchMedia(a).matches)}(),f()}}}();g.prototype.each=function(a,b){var c,d=0;for(b||(b=this);c=this._rules[d++];)a.call(b,c)},g.prototype.size=function(){return this._rules.length},g.prototype.at=function(a){return this._rules[a]},h.prototype.getDeclaration=function(){for(var a,b={},c=0,d=this._rule.declarations;a=d[c++];)b[a.property]=a.value;return b},h.prototype.getSelectors=function(){return this._rule.selectors.join(", ")},h.prototype.getMedia=function(){return this._rule.media.join(" and ")},i.prototype.doMatched=function(a){return this._doMatched=a,this._resolve(),this},i.prototype.undoUnmatched=function(a){return this._undoUnmatched=a,this._resolve(),this},i.prototype.getCurrentMatches=function(){for(var a,b,c=0,d=[];a=this._filteredRules[c++];)b=a.media&&a.media.join(" and "),(!b||o.matchMedia(b).matches)&&d.push(a);return new g(d)},i.prototype.destroy=function(){this._undoUnmatched&&(this._undoUnmatched(this.getCurrentMatches()),p.removeListeners(this))},i.prototype._defer=function(a,b){a.call(this)?b.call(this):this._promise.push({condition:a,callback:b})},i.prototype._resolve=function(){for(var a,b=0;a=this._promise[b];)a.condition.call(this)?(this._promise.splice(b,1),a.callback.call(this)):b++},i.prototype._getStylesheets=function(){var a,c,d,f,g,h,i,j=0,l=[];if(this._options.include){for(c=this._options.include;a=c[j++];)if(d=b.getElementById(a)){if("STYLE"===d.nodeName){i={text:d.textContent},l.push(i);continue}if(d.media&&"print"==d.media)continue;if(!k(d.href))continue;i={href:d.href},d.media&&(i.media=d.media),l.push(i)}}else{for(c=this._options.exclude,f=b.getElementsByTagName("link");d=f[j++];)d.rel&&"stylesheet"==d.rel&&"print"!=d.media&&k(d.href)&&!e(d.id,c)&&(i={href:d.href},d.media&&(i.media=d.media),l.push(i));for(h=b.getElementsByTagName("style"),j=0;g=h[j++];)i={text:g.textContent},l.push(i)}return this._stylesheets=l},i.prototype._downloadStylesheets=function(){for(var a,b=this,c=[],d=0;a=this._stylesheets[d++];)c.push(a.href);m.request(c,function(a){for(var c,d=0;c=a[d];)b._stylesheets[d++].text=c;b._resolve()})},i.prototype._parseStylesheets=function(){this._defer(function(){return this._stylesheets&&this._stylesheets.length&&this._stylesheets[0].text},function(){for(var a,b=0;a=this._stylesheets[b++];)a.rules=n.parse(a.text,a.url)})},i.prototype._filterCSSByKeywords=function(){this._defer(function(){return this._stylesheets&&this._stylesheets.length&&this._stylesheets[0].rules},function(){for(var a,b,c=[],d=0;a=this._stylesheets[d++];)b=a.media,b&&"all"!=b&&"screen"!=b?c.push({rules:a.rules,media:a.media}):c=c.concat(a.rules);this._filteredRules=n.filter(c,this._options.keywords)})},i.prototype._buildMediaQueryMap=function(){this._defer(function(){return this._filteredRules},function(){var a,b,c=0;for(this._mediaQueryMap={};b=this._filteredRules[c++];)b.media&&(a=b.media.join(" and "),this._mediaQueryMap[a]=o.matchMedia(a))})},i.prototype._reportInitialMatches=function(){this._defer(function(){return this._filteredRules&&this._doMatched},function(){this._doMatched(this.getCurrentMatches())})},i.prototype._addMediaListeners=function(){this._defer(function(){return this._filteredRules&&this._doMatched&&this._undoUnmatched},function(){p.addListeners(this,function(a,b){for(var c,d=0,e=[],f=[];c=this._filteredRules[d++];)c.media&&c.media.join(" and ")==a&&(b?e:f).push(c);e.length&&this._doMatched(new g(e)),f.length&&this._undoUnmatched(new g(f))})})},i.modules={DownloadManager:m,StyleManager:n,MediaManager:o,EventManager:p},i.constructors={Ruleset:g,Rule:h},a.Polyfill=i}(window,document); -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.1" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 8 | 9 | acorn-jsx@^3.0.0: 10 | version "3.0.1" 11 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 12 | dependencies: 13 | acorn "^3.0.4" 14 | 15 | acorn@^3.0.4: 16 | version "3.3.0" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 18 | 19 | acorn@^5.2.1: 20 | version "5.2.1" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.2.1.tgz#317ac7821826c22c702d66189ab8359675f135d7" 22 | 23 | ajv-keywords@^2.1.0: 24 | version "2.1.1" 25 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 26 | 27 | ajv@^4.9.1: 28 | version "4.11.8" 29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 30 | dependencies: 31 | co "^4.6.0" 32 | json-stable-stringify "^1.0.1" 33 | 34 | ajv@^5.2.3, ajv@^5.3.0: 35 | version "5.5.2" 36 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 37 | dependencies: 38 | co "^4.6.0" 39 | fast-deep-equal "^1.0.0" 40 | fast-json-stable-stringify "^2.0.0" 41 | json-schema-traverse "^0.3.0" 42 | 43 | ansi-align@^2.0.0: 44 | version "2.0.0" 45 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 46 | dependencies: 47 | string-width "^2.0.0" 48 | 49 | ansi-escapes@^3.0.0: 50 | version "3.0.0" 51 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 52 | 53 | ansi-regex@^2.0.0: 54 | version "2.1.1" 55 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 56 | 57 | ansi-regex@^3.0.0: 58 | version "3.0.0" 59 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 60 | 61 | ansi-styles@^2.2.1: 62 | version "2.2.1" 63 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 64 | 65 | ansi-styles@^3.1.0: 66 | version "3.2.0" 67 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 68 | dependencies: 69 | color-convert "^1.9.0" 70 | 71 | anymatch@^1.3.0: 72 | version "1.3.2" 73 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 74 | dependencies: 75 | micromatch "^2.1.5" 76 | normalize-path "^2.0.0" 77 | 78 | aproba@^1.0.3: 79 | version "1.2.0" 80 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 81 | 82 | are-we-there-yet@~1.1.2: 83 | version "1.1.4" 84 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 85 | dependencies: 86 | delegates "^1.0.0" 87 | readable-stream "^2.0.6" 88 | 89 | argparse@^1.0.7: 90 | version "1.0.9" 91 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 92 | dependencies: 93 | sprintf-js "~1.0.2" 94 | 95 | arr-diff@^2.0.0: 96 | version "2.0.0" 97 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 98 | dependencies: 99 | arr-flatten "^1.0.1" 100 | 101 | arr-flatten@^1.0.1: 102 | version "1.1.0" 103 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 104 | 105 | array-union@^1.0.1: 106 | version "1.0.2" 107 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 108 | dependencies: 109 | array-uniq "^1.0.1" 110 | 111 | array-uniq@^1.0.1: 112 | version "1.0.3" 113 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 114 | 115 | array-unique@^0.2.1: 116 | version "0.2.1" 117 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 118 | 119 | arrify@^1.0.0: 120 | version "1.0.1" 121 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 122 | 123 | asn1@~0.2.3: 124 | version "0.2.3" 125 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 126 | 127 | assert-plus@1.0.0, assert-plus@^1.0.0: 128 | version "1.0.0" 129 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 130 | 131 | assert-plus@^0.2.0: 132 | version "0.2.0" 133 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 134 | 135 | async-each@^1.0.0: 136 | version "1.0.1" 137 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 138 | 139 | asynckit@^0.4.0: 140 | version "0.4.0" 141 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 142 | 143 | aws-sign2@~0.6.0: 144 | version "0.6.0" 145 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 146 | 147 | aws4@^1.2.1: 148 | version "1.6.0" 149 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 150 | 151 | babel-cli@^6.26.0: 152 | version "6.26.0" 153 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 154 | dependencies: 155 | babel-core "^6.26.0" 156 | babel-polyfill "^6.26.0" 157 | babel-register "^6.26.0" 158 | babel-runtime "^6.26.0" 159 | commander "^2.11.0" 160 | convert-source-map "^1.5.0" 161 | fs-readdir-recursive "^1.0.0" 162 | glob "^7.1.2" 163 | lodash "^4.17.4" 164 | output-file-sync "^1.1.2" 165 | path-is-absolute "^1.0.1" 166 | slash "^1.0.0" 167 | source-map "^0.5.6" 168 | v8flags "^2.1.1" 169 | optionalDependencies: 170 | chokidar "^1.6.1" 171 | 172 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 173 | version "6.26.0" 174 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 175 | dependencies: 176 | chalk "^1.1.3" 177 | esutils "^2.0.2" 178 | js-tokens "^3.0.2" 179 | 180 | babel-core@^6.26.0: 181 | version "6.26.0" 182 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 183 | dependencies: 184 | babel-code-frame "^6.26.0" 185 | babel-generator "^6.26.0" 186 | babel-helpers "^6.24.1" 187 | babel-messages "^6.23.0" 188 | babel-register "^6.26.0" 189 | babel-runtime "^6.26.0" 190 | babel-template "^6.26.0" 191 | babel-traverse "^6.26.0" 192 | babel-types "^6.26.0" 193 | babylon "^6.18.0" 194 | convert-source-map "^1.5.0" 195 | debug "^2.6.8" 196 | json5 "^0.5.1" 197 | lodash "^4.17.4" 198 | minimatch "^3.0.4" 199 | path-is-absolute "^1.0.1" 200 | private "^0.1.7" 201 | slash "^1.0.0" 202 | source-map "^0.5.6" 203 | 204 | babel-generator@^6.26.0: 205 | version "6.26.0" 206 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 207 | dependencies: 208 | babel-messages "^6.23.0" 209 | babel-runtime "^6.26.0" 210 | babel-types "^6.26.0" 211 | detect-indent "^4.0.0" 212 | jsesc "^1.3.0" 213 | lodash "^4.17.4" 214 | source-map "^0.5.6" 215 | trim-right "^1.0.1" 216 | 217 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 218 | version "6.24.1" 219 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 220 | dependencies: 221 | babel-helper-explode-assignable-expression "^6.24.1" 222 | babel-runtime "^6.22.0" 223 | babel-types "^6.24.1" 224 | 225 | babel-helper-call-delegate@^6.24.1: 226 | version "6.24.1" 227 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 228 | dependencies: 229 | babel-helper-hoist-variables "^6.24.1" 230 | babel-runtime "^6.22.0" 231 | babel-traverse "^6.24.1" 232 | babel-types "^6.24.1" 233 | 234 | babel-helper-define-map@^6.24.1: 235 | version "6.26.0" 236 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 237 | dependencies: 238 | babel-helper-function-name "^6.24.1" 239 | babel-runtime "^6.26.0" 240 | babel-types "^6.26.0" 241 | lodash "^4.17.4" 242 | 243 | babel-helper-explode-assignable-expression@^6.24.1: 244 | version "6.24.1" 245 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 246 | dependencies: 247 | babel-runtime "^6.22.0" 248 | babel-traverse "^6.24.1" 249 | babel-types "^6.24.1" 250 | 251 | babel-helper-function-name@^6.24.1: 252 | version "6.24.1" 253 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 254 | dependencies: 255 | babel-helper-get-function-arity "^6.24.1" 256 | babel-runtime "^6.22.0" 257 | babel-template "^6.24.1" 258 | babel-traverse "^6.24.1" 259 | babel-types "^6.24.1" 260 | 261 | babel-helper-get-function-arity@^6.24.1: 262 | version "6.24.1" 263 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 264 | dependencies: 265 | babel-runtime "^6.22.0" 266 | babel-types "^6.24.1" 267 | 268 | babel-helper-hoist-variables@^6.24.1: 269 | version "6.24.1" 270 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 271 | dependencies: 272 | babel-runtime "^6.22.0" 273 | babel-types "^6.24.1" 274 | 275 | babel-helper-optimise-call-expression@^6.24.1: 276 | version "6.24.1" 277 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 278 | dependencies: 279 | babel-runtime "^6.22.0" 280 | babel-types "^6.24.1" 281 | 282 | babel-helper-regex@^6.24.1: 283 | version "6.26.0" 284 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 285 | dependencies: 286 | babel-runtime "^6.26.0" 287 | babel-types "^6.26.0" 288 | lodash "^4.17.4" 289 | 290 | babel-helper-remap-async-to-generator@^6.24.1: 291 | version "6.24.1" 292 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 293 | dependencies: 294 | babel-helper-function-name "^6.24.1" 295 | babel-runtime "^6.22.0" 296 | babel-template "^6.24.1" 297 | babel-traverse "^6.24.1" 298 | babel-types "^6.24.1" 299 | 300 | babel-helper-replace-supers@^6.24.1: 301 | version "6.24.1" 302 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 303 | dependencies: 304 | babel-helper-optimise-call-expression "^6.24.1" 305 | babel-messages "^6.23.0" 306 | babel-runtime "^6.22.0" 307 | babel-template "^6.24.1" 308 | babel-traverse "^6.24.1" 309 | babel-types "^6.24.1" 310 | 311 | babel-helpers@^6.24.1: 312 | version "6.24.1" 313 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 314 | dependencies: 315 | babel-runtime "^6.22.0" 316 | babel-template "^6.24.1" 317 | 318 | babel-messages@^6.23.0: 319 | version "6.23.0" 320 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 321 | dependencies: 322 | babel-runtime "^6.22.0" 323 | 324 | babel-plugin-check-es2015-constants@^6.22.0: 325 | version "6.22.0" 326 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 327 | dependencies: 328 | babel-runtime "^6.22.0" 329 | 330 | babel-plugin-external-helpers@^6.22.0: 331 | version "6.22.0" 332 | resolved "https://registry.yarnpkg.com/babel-plugin-external-helpers/-/babel-plugin-external-helpers-6.22.0.tgz#2285f48b02bd5dede85175caf8c62e86adccefa1" 333 | dependencies: 334 | babel-runtime "^6.22.0" 335 | 336 | babel-plugin-syntax-async-functions@^6.8.0: 337 | version "6.13.0" 338 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 339 | 340 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 341 | version "6.13.0" 342 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 343 | 344 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 345 | version "6.22.0" 346 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 347 | 348 | babel-plugin-transform-async-to-generator@^6.22.0: 349 | version "6.24.1" 350 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 351 | dependencies: 352 | babel-helper-remap-async-to-generator "^6.24.1" 353 | babel-plugin-syntax-async-functions "^6.8.0" 354 | babel-runtime "^6.22.0" 355 | 356 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 357 | version "6.22.0" 358 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 359 | dependencies: 360 | babel-runtime "^6.22.0" 361 | 362 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 363 | version "6.22.0" 364 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 365 | dependencies: 366 | babel-runtime "^6.22.0" 367 | 368 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 369 | version "6.26.0" 370 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 371 | dependencies: 372 | babel-runtime "^6.26.0" 373 | babel-template "^6.26.0" 374 | babel-traverse "^6.26.0" 375 | babel-types "^6.26.0" 376 | lodash "^4.17.4" 377 | 378 | babel-plugin-transform-es2015-classes@^6.23.0: 379 | version "6.24.1" 380 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 381 | dependencies: 382 | babel-helper-define-map "^6.24.1" 383 | babel-helper-function-name "^6.24.1" 384 | babel-helper-optimise-call-expression "^6.24.1" 385 | babel-helper-replace-supers "^6.24.1" 386 | babel-messages "^6.23.0" 387 | babel-runtime "^6.22.0" 388 | babel-template "^6.24.1" 389 | babel-traverse "^6.24.1" 390 | babel-types "^6.24.1" 391 | 392 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 393 | version "6.24.1" 394 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 395 | dependencies: 396 | babel-runtime "^6.22.0" 397 | babel-template "^6.24.1" 398 | 399 | babel-plugin-transform-es2015-destructuring@^6.23.0: 400 | version "6.23.0" 401 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 402 | dependencies: 403 | babel-runtime "^6.22.0" 404 | 405 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 406 | version "6.24.1" 407 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 408 | dependencies: 409 | babel-runtime "^6.22.0" 410 | babel-types "^6.24.1" 411 | 412 | babel-plugin-transform-es2015-for-of@^6.23.0: 413 | version "6.23.0" 414 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 415 | dependencies: 416 | babel-runtime "^6.22.0" 417 | 418 | babel-plugin-transform-es2015-function-name@^6.22.0: 419 | version "6.24.1" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 421 | dependencies: 422 | babel-helper-function-name "^6.24.1" 423 | babel-runtime "^6.22.0" 424 | babel-types "^6.24.1" 425 | 426 | babel-plugin-transform-es2015-literals@^6.22.0: 427 | version "6.22.0" 428 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 429 | dependencies: 430 | babel-runtime "^6.22.0" 431 | 432 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 433 | version "6.24.1" 434 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 435 | dependencies: 436 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 437 | babel-runtime "^6.22.0" 438 | babel-template "^6.24.1" 439 | 440 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 441 | version "6.26.0" 442 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 443 | dependencies: 444 | babel-plugin-transform-strict-mode "^6.24.1" 445 | babel-runtime "^6.26.0" 446 | babel-template "^6.26.0" 447 | babel-types "^6.26.0" 448 | 449 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 450 | version "6.24.1" 451 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 452 | dependencies: 453 | babel-helper-hoist-variables "^6.24.1" 454 | babel-runtime "^6.22.0" 455 | babel-template "^6.24.1" 456 | 457 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 458 | version "6.24.1" 459 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 460 | dependencies: 461 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 462 | babel-runtime "^6.22.0" 463 | babel-template "^6.24.1" 464 | 465 | babel-plugin-transform-es2015-object-super@^6.22.0: 466 | version "6.24.1" 467 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 468 | dependencies: 469 | babel-helper-replace-supers "^6.24.1" 470 | babel-runtime "^6.22.0" 471 | 472 | babel-plugin-transform-es2015-parameters@^6.23.0: 473 | version "6.24.1" 474 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 475 | dependencies: 476 | babel-helper-call-delegate "^6.24.1" 477 | babel-helper-get-function-arity "^6.24.1" 478 | babel-runtime "^6.22.0" 479 | babel-template "^6.24.1" 480 | babel-traverse "^6.24.1" 481 | babel-types "^6.24.1" 482 | 483 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 484 | version "6.24.1" 485 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 486 | dependencies: 487 | babel-runtime "^6.22.0" 488 | babel-types "^6.24.1" 489 | 490 | babel-plugin-transform-es2015-spread@^6.22.0: 491 | version "6.22.0" 492 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 493 | dependencies: 494 | babel-runtime "^6.22.0" 495 | 496 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 497 | version "6.24.1" 498 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 499 | dependencies: 500 | babel-helper-regex "^6.24.1" 501 | babel-runtime "^6.22.0" 502 | babel-types "^6.24.1" 503 | 504 | babel-plugin-transform-es2015-template-literals@^6.22.0: 505 | version "6.22.0" 506 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 507 | dependencies: 508 | babel-runtime "^6.22.0" 509 | 510 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 511 | version "6.23.0" 512 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 513 | dependencies: 514 | babel-runtime "^6.22.0" 515 | 516 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 517 | version "6.24.1" 518 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 519 | dependencies: 520 | babel-helper-regex "^6.24.1" 521 | babel-runtime "^6.22.0" 522 | regexpu-core "^2.0.0" 523 | 524 | babel-plugin-transform-exponentiation-operator@^6.22.0: 525 | version "6.24.1" 526 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 527 | dependencies: 528 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 529 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 530 | babel-runtime "^6.22.0" 531 | 532 | babel-plugin-transform-regenerator@^6.22.0: 533 | version "6.26.0" 534 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 535 | dependencies: 536 | regenerator-transform "^0.10.0" 537 | 538 | babel-plugin-transform-strict-mode@^6.24.1: 539 | version "6.24.1" 540 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 541 | dependencies: 542 | babel-runtime "^6.22.0" 543 | babel-types "^6.24.1" 544 | 545 | babel-polyfill@^6.26.0: 546 | version "6.26.0" 547 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 548 | dependencies: 549 | babel-runtime "^6.26.0" 550 | core-js "^2.5.0" 551 | regenerator-runtime "^0.10.5" 552 | 553 | babel-preset-env@^1.6.1: 554 | version "1.6.1" 555 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 556 | dependencies: 557 | babel-plugin-check-es2015-constants "^6.22.0" 558 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 559 | babel-plugin-transform-async-to-generator "^6.22.0" 560 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 561 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 562 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 563 | babel-plugin-transform-es2015-classes "^6.23.0" 564 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 565 | babel-plugin-transform-es2015-destructuring "^6.23.0" 566 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 567 | babel-plugin-transform-es2015-for-of "^6.23.0" 568 | babel-plugin-transform-es2015-function-name "^6.22.0" 569 | babel-plugin-transform-es2015-literals "^6.22.0" 570 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 571 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 572 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 573 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 574 | babel-plugin-transform-es2015-object-super "^6.22.0" 575 | babel-plugin-transform-es2015-parameters "^6.23.0" 576 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 577 | babel-plugin-transform-es2015-spread "^6.22.0" 578 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 579 | babel-plugin-transform-es2015-template-literals "^6.22.0" 580 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 581 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 582 | babel-plugin-transform-exponentiation-operator "^6.22.0" 583 | babel-plugin-transform-regenerator "^6.22.0" 584 | browserslist "^2.1.2" 585 | invariant "^2.2.2" 586 | semver "^5.3.0" 587 | 588 | babel-register@^6.26.0: 589 | version "6.26.0" 590 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 591 | dependencies: 592 | babel-core "^6.26.0" 593 | babel-runtime "^6.26.0" 594 | core-js "^2.5.0" 595 | home-or-tmp "^2.0.0" 596 | lodash "^4.17.4" 597 | mkdirp "^0.5.1" 598 | source-map-support "^0.4.15" 599 | 600 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 601 | version "6.26.0" 602 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 603 | dependencies: 604 | core-js "^2.4.0" 605 | regenerator-runtime "^0.11.0" 606 | 607 | babel-template@^6.24.1, babel-template@^6.26.0: 608 | version "6.26.0" 609 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 610 | dependencies: 611 | babel-runtime "^6.26.0" 612 | babel-traverse "^6.26.0" 613 | babel-types "^6.26.0" 614 | babylon "^6.18.0" 615 | lodash "^4.17.4" 616 | 617 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 618 | version "6.26.0" 619 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 620 | dependencies: 621 | babel-code-frame "^6.26.0" 622 | babel-messages "^6.23.0" 623 | babel-runtime "^6.26.0" 624 | babel-types "^6.26.0" 625 | babylon "^6.18.0" 626 | debug "^2.6.8" 627 | globals "^9.18.0" 628 | invariant "^2.2.2" 629 | lodash "^4.17.4" 630 | 631 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 632 | version "6.26.0" 633 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 634 | dependencies: 635 | babel-runtime "^6.26.0" 636 | esutils "^2.0.2" 637 | lodash "^4.17.4" 638 | to-fast-properties "^1.0.3" 639 | 640 | babylon@^6.18.0: 641 | version "6.18.0" 642 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 643 | 644 | balanced-match@^1.0.0: 645 | version "1.0.0" 646 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 647 | 648 | bcrypt-pbkdf@^1.0.0: 649 | version "1.0.1" 650 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 651 | dependencies: 652 | tweetnacl "^0.14.3" 653 | 654 | binary-extensions@^1.0.0: 655 | version "1.11.0" 656 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 657 | 658 | block-stream@*: 659 | version "0.0.9" 660 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 661 | dependencies: 662 | inherits "~2.0.0" 663 | 664 | boom@2.x.x: 665 | version "2.10.1" 666 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 667 | dependencies: 668 | hoek "2.x.x" 669 | 670 | boxen@^1.1.0: 671 | version "1.3.0" 672 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 673 | dependencies: 674 | ansi-align "^2.0.0" 675 | camelcase "^4.0.0" 676 | chalk "^2.0.1" 677 | cli-boxes "^1.0.0" 678 | string-width "^2.0.0" 679 | term-size "^1.2.0" 680 | widest-line "^2.0.0" 681 | 682 | brace-expansion@^1.1.7: 683 | version "1.1.8" 684 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 685 | dependencies: 686 | balanced-match "^1.0.0" 687 | concat-map "0.0.1" 688 | 689 | braces@^1.8.2: 690 | version "1.8.5" 691 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 692 | dependencies: 693 | expand-range "^1.8.1" 694 | preserve "^0.2.0" 695 | repeat-element "^1.1.2" 696 | 697 | browser-resolve@^1.11.0: 698 | version "1.11.2" 699 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 700 | dependencies: 701 | resolve "1.1.7" 702 | 703 | browserslist@^2.1.2: 704 | version "2.10.0" 705 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.10.0.tgz#bac5ee1cc69ca9d96403ffb8a3abdc5b6aed6346" 706 | dependencies: 707 | caniuse-lite "^1.0.30000780" 708 | electron-to-chromium "^1.3.28" 709 | 710 | builtin-modules@^1.0.0, builtin-modules@^1.1.0, builtin-modules@^1.1.1: 711 | version "1.1.1" 712 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 713 | 714 | caller-path@^0.1.0: 715 | version "0.1.0" 716 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 717 | dependencies: 718 | callsites "^0.2.0" 719 | 720 | callsites@^0.2.0: 721 | version "0.2.0" 722 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 723 | 724 | camelcase@^4.0.0: 725 | version "4.1.0" 726 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 727 | 728 | caniuse-lite@^1.0.30000780: 729 | version "1.0.30000784" 730 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000784.tgz#129ced74e9a1280a441880b6cd2bce30ef59e6c0" 731 | 732 | caseless@~0.12.0: 733 | version "0.12.0" 734 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 735 | 736 | chalk@^1.1.3: 737 | version "1.1.3" 738 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 739 | dependencies: 740 | ansi-styles "^2.2.1" 741 | escape-string-regexp "^1.0.2" 742 | has-ansi "^2.0.0" 743 | strip-ansi "^3.0.0" 744 | supports-color "^2.0.0" 745 | 746 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0: 747 | version "2.3.0" 748 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 749 | dependencies: 750 | ansi-styles "^3.1.0" 751 | escape-string-regexp "^1.0.5" 752 | supports-color "^4.0.0" 753 | 754 | chardet@^0.4.0: 755 | version "0.4.2" 756 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 757 | 758 | chokidar@^1.6.1: 759 | version "1.7.0" 760 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 761 | dependencies: 762 | anymatch "^1.3.0" 763 | async-each "^1.0.0" 764 | glob-parent "^2.0.0" 765 | inherits "^2.0.1" 766 | is-binary-path "^1.0.0" 767 | is-glob "^2.0.0" 768 | path-is-absolute "^1.0.0" 769 | readdirp "^2.0.0" 770 | optionalDependencies: 771 | fsevents "^1.0.0" 772 | 773 | circular-json@^0.3.1: 774 | version "0.3.3" 775 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 776 | 777 | cli-boxes@^1.0.0: 778 | version "1.0.0" 779 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 780 | 781 | cli-cursor@^2.1.0: 782 | version "2.1.0" 783 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 784 | dependencies: 785 | restore-cursor "^2.0.0" 786 | 787 | cli-width@^2.0.0: 788 | version "2.2.0" 789 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 790 | 791 | co@^4.6.0: 792 | version "4.6.0" 793 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 794 | 795 | code-point-at@^1.0.0: 796 | version "1.1.0" 797 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 798 | 799 | color-convert@^1.9.0: 800 | version "1.9.1" 801 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 802 | dependencies: 803 | color-name "^1.1.1" 804 | 805 | color-name@^1.1.1: 806 | version "1.1.3" 807 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 808 | 809 | colors@^1.1.2: 810 | version "1.1.2" 811 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 812 | 813 | combined-stream@^1.0.5, combined-stream@~1.0.5: 814 | version "1.0.5" 815 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 816 | dependencies: 817 | delayed-stream "~1.0.0" 818 | 819 | commander@^2.11.0, commander@~2.12.1: 820 | version "2.12.2" 821 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.12.2.tgz#0f5946c427ed9ec0d91a46bb9def53e54650e555" 822 | 823 | concat-map@0.0.1: 824 | version "0.0.1" 825 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 826 | 827 | concat-stream@^1.6.0: 828 | version "1.6.0" 829 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 830 | dependencies: 831 | inherits "^2.0.3" 832 | readable-stream "^2.2.2" 833 | typedarray "^0.0.6" 834 | 835 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 836 | version "1.1.0" 837 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 838 | 839 | contains-path@^0.1.0: 840 | version "0.1.0" 841 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 842 | 843 | convert-source-map@^1.5.0: 844 | version "1.5.1" 845 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 846 | 847 | core-js@^2.4.0, core-js@^2.5.0: 848 | version "2.5.3" 849 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 850 | 851 | core-util-is@1.0.2, core-util-is@~1.0.0: 852 | version "1.0.2" 853 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 854 | 855 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 856 | version "5.1.0" 857 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 858 | dependencies: 859 | lru-cache "^4.0.1" 860 | shebang-command "^1.2.0" 861 | which "^1.2.9" 862 | 863 | cryptiles@2.x.x: 864 | version "2.0.5" 865 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 866 | dependencies: 867 | boom "2.x.x" 868 | 869 | dashdash@^1.12.0: 870 | version "1.14.1" 871 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 872 | dependencies: 873 | assert-plus "^1.0.0" 874 | 875 | debug@^2.2.0, debug@^2.6.8: 876 | version "2.6.9" 877 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 878 | dependencies: 879 | ms "2.0.0" 880 | 881 | debug@^3.0.1: 882 | version "3.1.0" 883 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 884 | dependencies: 885 | ms "2.0.0" 886 | 887 | deep-assign@^2.0.0: 888 | version "2.0.0" 889 | resolved "https://registry.yarnpkg.com/deep-assign/-/deep-assign-2.0.0.tgz#ebe06b1f07f08dae597620e3dd1622f371a1c572" 890 | dependencies: 891 | is-obj "^1.0.0" 892 | 893 | deep-extend@~0.4.0: 894 | version "0.4.2" 895 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 896 | 897 | deep-is@~0.1.3: 898 | version "0.1.3" 899 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 900 | 901 | del@^2.0.2: 902 | version "2.2.2" 903 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 904 | dependencies: 905 | globby "^5.0.0" 906 | is-path-cwd "^1.0.0" 907 | is-path-in-cwd "^1.0.0" 908 | object-assign "^4.0.1" 909 | pify "^2.0.0" 910 | pinkie-promise "^2.0.0" 911 | rimraf "^2.2.8" 912 | 913 | delayed-stream@~1.0.0: 914 | version "1.0.0" 915 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 916 | 917 | delegates@^1.0.0: 918 | version "1.0.0" 919 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 920 | 921 | detect-indent@^4.0.0: 922 | version "4.0.0" 923 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 924 | dependencies: 925 | repeating "^2.0.0" 926 | 927 | detect-libc@^1.0.2: 928 | version "1.0.3" 929 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 930 | 931 | doctrine@1.5.0: 932 | version "1.5.0" 933 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 934 | dependencies: 935 | esutils "^2.0.2" 936 | isarray "^1.0.0" 937 | 938 | doctrine@^2.0.2: 939 | version "2.0.2" 940 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.2.tgz#68f96ce8efc56cc42651f1faadb4f175273b0075" 941 | dependencies: 942 | esutils "^2.0.2" 943 | 944 | duplexer@^0.1.1: 945 | version "0.1.1" 946 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 947 | 948 | ecc-jsbn@~0.1.1: 949 | version "0.1.1" 950 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 951 | dependencies: 952 | jsbn "~0.1.0" 953 | 954 | electron-to-chromium@^1.3.28: 955 | version "1.3.29" 956 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.29.tgz#7a58236b95468c3e7660091348522d65d7736b36" 957 | 958 | error-ex@^1.2.0: 959 | version "1.3.1" 960 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 961 | dependencies: 962 | is-arrayish "^0.2.1" 963 | 964 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 965 | version "1.0.5" 966 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 967 | 968 | eslint-config-standard@^11.0.0-beta.0: 969 | version "11.0.0-beta.0" 970 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-11.0.0-beta.0.tgz#f8afe69803d95c685a4b8392b8793188eb03cbb3" 971 | 972 | eslint-import-resolver-node@^0.3.1: 973 | version "0.3.1" 974 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc" 975 | dependencies: 976 | debug "^2.6.8" 977 | resolve "^1.2.0" 978 | 979 | eslint-module-utils@^2.1.1: 980 | version "2.1.1" 981 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 982 | dependencies: 983 | debug "^2.6.8" 984 | pkg-dir "^1.0.0" 985 | 986 | eslint-plugin-import@^2.8.0: 987 | version "2.8.0" 988 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz#fa1b6ef31fcb3c501c09859c1b86f1fc5b986894" 989 | dependencies: 990 | builtin-modules "^1.1.1" 991 | contains-path "^0.1.0" 992 | debug "^2.6.8" 993 | doctrine "1.5.0" 994 | eslint-import-resolver-node "^0.3.1" 995 | eslint-module-utils "^2.1.1" 996 | has "^1.0.1" 997 | lodash.cond "^4.3.0" 998 | minimatch "^3.0.3" 999 | read-pkg-up "^2.0.0" 1000 | 1001 | eslint-plugin-node@^5.2.1: 1002 | version "5.2.1" 1003 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-5.2.1.tgz#80df3253c4d7901045ec87fa660a284e32bdca29" 1004 | dependencies: 1005 | ignore "^3.3.6" 1006 | minimatch "^3.0.4" 1007 | resolve "^1.3.3" 1008 | semver "5.3.0" 1009 | 1010 | eslint-plugin-promise@^3.6.0: 1011 | version "3.6.0" 1012 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.6.0.tgz#54b7658c8f454813dc2a870aff8152ec4969ba75" 1013 | 1014 | eslint-plugin-standard@^3.0.1: 1015 | version "3.0.1" 1016 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.0.1.tgz#34d0c915b45edc6f010393c7eef3823b08565cf2" 1017 | 1018 | eslint-scope@^3.7.1: 1019 | version "3.7.1" 1020 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1021 | dependencies: 1022 | esrecurse "^4.1.0" 1023 | estraverse "^4.1.1" 1024 | 1025 | eslint@^4.13.1: 1026 | version "4.13.1" 1027 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.13.1.tgz#0055e0014464c7eb7878caf549ef2941992b444f" 1028 | dependencies: 1029 | ajv "^5.3.0" 1030 | babel-code-frame "^6.22.0" 1031 | chalk "^2.1.0" 1032 | concat-stream "^1.6.0" 1033 | cross-spawn "^5.1.0" 1034 | debug "^3.0.1" 1035 | doctrine "^2.0.2" 1036 | eslint-scope "^3.7.1" 1037 | espree "^3.5.2" 1038 | esquery "^1.0.0" 1039 | estraverse "^4.2.0" 1040 | esutils "^2.0.2" 1041 | file-entry-cache "^2.0.0" 1042 | functional-red-black-tree "^1.0.1" 1043 | glob "^7.1.2" 1044 | globals "^11.0.1" 1045 | ignore "^3.3.3" 1046 | imurmurhash "^0.1.4" 1047 | inquirer "^3.0.6" 1048 | is-resolvable "^1.0.0" 1049 | js-yaml "^3.9.1" 1050 | json-stable-stringify-without-jsonify "^1.0.1" 1051 | levn "^0.3.0" 1052 | lodash "^4.17.4" 1053 | minimatch "^3.0.2" 1054 | mkdirp "^0.5.1" 1055 | natural-compare "^1.4.0" 1056 | optionator "^0.8.2" 1057 | path-is-inside "^1.0.2" 1058 | pluralize "^7.0.0" 1059 | progress "^2.0.0" 1060 | require-uncached "^1.0.3" 1061 | semver "^5.3.0" 1062 | strip-ansi "^4.0.0" 1063 | strip-json-comments "~2.0.1" 1064 | table "^4.0.1" 1065 | text-table "~0.2.0" 1066 | 1067 | espree@^3.5.2: 1068 | version "3.5.2" 1069 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.2.tgz#756ada8b979e9dcfcdb30aad8d1a9304a905e1ca" 1070 | dependencies: 1071 | acorn "^5.2.1" 1072 | acorn-jsx "^3.0.0" 1073 | 1074 | esprima@^4.0.0: 1075 | version "4.0.0" 1076 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1077 | 1078 | esquery@^1.0.0: 1079 | version "1.0.0" 1080 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1081 | dependencies: 1082 | estraverse "^4.0.0" 1083 | 1084 | esrecurse@^4.1.0: 1085 | version "4.2.0" 1086 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1087 | dependencies: 1088 | estraverse "^4.1.0" 1089 | object-assign "^4.0.1" 1090 | 1091 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1092 | version "4.2.0" 1093 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1094 | 1095 | estree-walker@^0.2.1: 1096 | version "0.2.1" 1097 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.2.1.tgz#bdafe8095383d8414d5dc2ecf4c9173b6db9412e" 1098 | 1099 | estree-walker@^0.3.0: 1100 | version "0.3.1" 1101 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.3.1.tgz#e6b1a51cf7292524e7237c312e5fe6660c1ce1aa" 1102 | 1103 | estree-walker@^0.5.0: 1104 | version "0.5.1" 1105 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.5.1.tgz#64fc375053abc6f57d73e9bd2f004644ad3c5854" 1106 | 1107 | esutils@^2.0.2: 1108 | version "2.0.2" 1109 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1110 | 1111 | execa@^0.7.0: 1112 | version "0.7.0" 1113 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1114 | dependencies: 1115 | cross-spawn "^5.0.1" 1116 | get-stream "^3.0.0" 1117 | is-stream "^1.1.0" 1118 | npm-run-path "^2.0.0" 1119 | p-finally "^1.0.0" 1120 | signal-exit "^3.0.0" 1121 | strip-eof "^1.0.0" 1122 | 1123 | expand-brackets@^0.1.4: 1124 | version "0.1.5" 1125 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1126 | dependencies: 1127 | is-posix-bracket "^0.1.0" 1128 | 1129 | expand-range@^1.8.1: 1130 | version "1.8.2" 1131 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1132 | dependencies: 1133 | fill-range "^2.1.0" 1134 | 1135 | extend@~3.0.0: 1136 | version "3.0.1" 1137 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1138 | 1139 | external-editor@^2.0.4: 1140 | version "2.1.0" 1141 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.1.0.tgz#3d026a21b7f95b5726387d4200ac160d372c3b48" 1142 | dependencies: 1143 | chardet "^0.4.0" 1144 | iconv-lite "^0.4.17" 1145 | tmp "^0.0.33" 1146 | 1147 | extglob@^0.3.1: 1148 | version "0.3.2" 1149 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1150 | dependencies: 1151 | is-extglob "^1.0.0" 1152 | 1153 | extsprintf@1.3.0: 1154 | version "1.3.0" 1155 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1156 | 1157 | extsprintf@^1.2.0: 1158 | version "1.4.0" 1159 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1160 | 1161 | fast-deep-equal@^1.0.0: 1162 | version "1.0.0" 1163 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1164 | 1165 | fast-json-stable-stringify@^2.0.0: 1166 | version "2.0.0" 1167 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1168 | 1169 | fast-levenshtein@~2.0.4: 1170 | version "2.0.6" 1171 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1172 | 1173 | figures@^2.0.0: 1174 | version "2.0.0" 1175 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1176 | dependencies: 1177 | escape-string-regexp "^1.0.5" 1178 | 1179 | file-entry-cache@^2.0.0: 1180 | version "2.0.0" 1181 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1182 | dependencies: 1183 | flat-cache "^1.2.1" 1184 | object-assign "^4.0.1" 1185 | 1186 | filename-regex@^2.0.0: 1187 | version "2.0.1" 1188 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1189 | 1190 | filesize@^3.5.6: 1191 | version "3.5.11" 1192 | resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.5.11.tgz#1919326749433bb3cf77368bd158caabcc19e9ee" 1193 | 1194 | fill-range@^2.1.0: 1195 | version "2.2.3" 1196 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1197 | dependencies: 1198 | is-number "^2.1.0" 1199 | isobject "^2.0.0" 1200 | randomatic "^1.1.3" 1201 | repeat-element "^1.1.2" 1202 | repeat-string "^1.5.2" 1203 | 1204 | find-up@^1.0.0: 1205 | version "1.1.2" 1206 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1207 | dependencies: 1208 | path-exists "^2.0.0" 1209 | pinkie-promise "^2.0.0" 1210 | 1211 | find-up@^2.0.0: 1212 | version "2.1.0" 1213 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1214 | dependencies: 1215 | locate-path "^2.0.0" 1216 | 1217 | flat-cache@^1.2.1: 1218 | version "1.3.0" 1219 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1220 | dependencies: 1221 | circular-json "^0.3.1" 1222 | del "^2.0.2" 1223 | graceful-fs "^4.1.2" 1224 | write "^0.2.1" 1225 | 1226 | for-in@^1.0.1: 1227 | version "1.0.2" 1228 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1229 | 1230 | for-own@^0.1.4: 1231 | version "0.1.5" 1232 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1233 | dependencies: 1234 | for-in "^1.0.1" 1235 | 1236 | forever-agent@~0.6.1: 1237 | version "0.6.1" 1238 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1239 | 1240 | form-data@~2.1.1: 1241 | version "2.1.4" 1242 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1243 | dependencies: 1244 | asynckit "^0.4.0" 1245 | combined-stream "^1.0.5" 1246 | mime-types "^2.1.12" 1247 | 1248 | fs-readdir-recursive@^1.0.0: 1249 | version "1.1.0" 1250 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1251 | 1252 | fs.realpath@^1.0.0: 1253 | version "1.0.0" 1254 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1255 | 1256 | fsevents@^1.0.0: 1257 | version "1.1.3" 1258 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1259 | dependencies: 1260 | nan "^2.3.0" 1261 | node-pre-gyp "^0.6.39" 1262 | 1263 | fstream-ignore@^1.0.5: 1264 | version "1.0.5" 1265 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1266 | dependencies: 1267 | fstream "^1.0.0" 1268 | inherits "2" 1269 | minimatch "^3.0.0" 1270 | 1271 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1272 | version "1.0.11" 1273 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1274 | dependencies: 1275 | graceful-fs "^4.1.2" 1276 | inherits "~2.0.0" 1277 | mkdirp ">=0.5 0" 1278 | rimraf "2" 1279 | 1280 | function-bind@^1.0.2: 1281 | version "1.1.1" 1282 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1283 | 1284 | functional-red-black-tree@^1.0.1: 1285 | version "1.0.1" 1286 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1287 | 1288 | gauge@~2.7.3: 1289 | version "2.7.4" 1290 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1291 | dependencies: 1292 | aproba "^1.0.3" 1293 | console-control-strings "^1.0.0" 1294 | has-unicode "^2.0.0" 1295 | object-assign "^4.1.0" 1296 | signal-exit "^3.0.0" 1297 | string-width "^1.0.1" 1298 | strip-ansi "^3.0.1" 1299 | wide-align "^1.1.0" 1300 | 1301 | get-stream@^3.0.0: 1302 | version "3.0.0" 1303 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1304 | 1305 | getpass@^0.1.1: 1306 | version "0.1.7" 1307 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1308 | dependencies: 1309 | assert-plus "^1.0.0" 1310 | 1311 | glob-base@^0.3.0: 1312 | version "0.3.0" 1313 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1314 | dependencies: 1315 | glob-parent "^2.0.0" 1316 | is-glob "^2.0.0" 1317 | 1318 | glob-parent@^2.0.0: 1319 | version "2.0.0" 1320 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1321 | dependencies: 1322 | is-glob "^2.0.0" 1323 | 1324 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.2: 1325 | version "7.1.2" 1326 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1327 | dependencies: 1328 | fs.realpath "^1.0.0" 1329 | inflight "^1.0.4" 1330 | inherits "2" 1331 | minimatch "^3.0.4" 1332 | once "^1.3.0" 1333 | path-is-absolute "^1.0.0" 1334 | 1335 | globals@^11.0.1: 1336 | version "11.1.0" 1337 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.1.0.tgz#632644457f5f0e3ae711807183700ebf2e4633e4" 1338 | 1339 | globals@^9.18.0: 1340 | version "9.18.0" 1341 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1342 | 1343 | globby@^5.0.0: 1344 | version "5.0.0" 1345 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1346 | dependencies: 1347 | array-union "^1.0.1" 1348 | arrify "^1.0.0" 1349 | glob "^7.0.3" 1350 | object-assign "^4.0.1" 1351 | pify "^2.0.0" 1352 | pinkie-promise "^2.0.0" 1353 | 1354 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1355 | version "4.1.11" 1356 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1357 | 1358 | gzip-size@^3.0.0: 1359 | version "3.0.0" 1360 | resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-3.0.0.tgz#546188e9bdc337f673772f81660464b389dce520" 1361 | dependencies: 1362 | duplexer "^0.1.1" 1363 | 1364 | har-schema@^1.0.5: 1365 | version "1.0.5" 1366 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1367 | 1368 | har-validator@~4.2.1: 1369 | version "4.2.1" 1370 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1371 | dependencies: 1372 | ajv "^4.9.1" 1373 | har-schema "^1.0.5" 1374 | 1375 | has-ansi@^2.0.0: 1376 | version "2.0.0" 1377 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1378 | dependencies: 1379 | ansi-regex "^2.0.0" 1380 | 1381 | has-flag@^2.0.0: 1382 | version "2.0.0" 1383 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1384 | 1385 | has-unicode@^2.0.0: 1386 | version "2.0.1" 1387 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1388 | 1389 | has@^1.0.1: 1390 | version "1.0.1" 1391 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1392 | dependencies: 1393 | function-bind "^1.0.2" 1394 | 1395 | hawk@3.1.3, hawk@~3.1.3: 1396 | version "3.1.3" 1397 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1398 | dependencies: 1399 | boom "2.x.x" 1400 | cryptiles "2.x.x" 1401 | hoek "2.x.x" 1402 | sntp "1.x.x" 1403 | 1404 | hoek@2.x.x: 1405 | version "2.16.3" 1406 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1407 | 1408 | home-or-tmp@^2.0.0: 1409 | version "2.0.0" 1410 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1411 | dependencies: 1412 | os-homedir "^1.0.0" 1413 | os-tmpdir "^1.0.1" 1414 | 1415 | hosted-git-info@^2.1.4: 1416 | version "2.5.0" 1417 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1418 | 1419 | http-signature@~1.1.0: 1420 | version "1.1.1" 1421 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1422 | dependencies: 1423 | assert-plus "^0.2.0" 1424 | jsprim "^1.2.2" 1425 | sshpk "^1.7.0" 1426 | 1427 | iconv-lite@^0.4.17: 1428 | version "0.4.19" 1429 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1430 | 1431 | ignore@^3.3.3, ignore@^3.3.6: 1432 | version "3.3.7" 1433 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 1434 | 1435 | imurmurhash@^0.1.4: 1436 | version "0.1.4" 1437 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1438 | 1439 | inflight@^1.0.4: 1440 | version "1.0.6" 1441 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1442 | dependencies: 1443 | once "^1.3.0" 1444 | wrappy "1" 1445 | 1446 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: 1447 | version "2.0.3" 1448 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1449 | 1450 | ini@~1.3.0: 1451 | version "1.3.5" 1452 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1453 | 1454 | inquirer@^3.0.6: 1455 | version "3.3.0" 1456 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1457 | dependencies: 1458 | ansi-escapes "^3.0.0" 1459 | chalk "^2.0.0" 1460 | cli-cursor "^2.1.0" 1461 | cli-width "^2.0.0" 1462 | external-editor "^2.0.4" 1463 | figures "^2.0.0" 1464 | lodash "^4.3.0" 1465 | mute-stream "0.0.7" 1466 | run-async "^2.2.0" 1467 | rx-lite "^4.0.8" 1468 | rx-lite-aggregates "^4.0.8" 1469 | string-width "^2.1.0" 1470 | strip-ansi "^4.0.0" 1471 | through "^2.3.6" 1472 | 1473 | invariant@^2.2.2: 1474 | version "2.2.2" 1475 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1476 | dependencies: 1477 | loose-envify "^1.0.0" 1478 | 1479 | is-arrayish@^0.2.1: 1480 | version "0.2.1" 1481 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1482 | 1483 | is-binary-path@^1.0.0: 1484 | version "1.0.1" 1485 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1486 | dependencies: 1487 | binary-extensions "^1.0.0" 1488 | 1489 | is-buffer@^1.1.5: 1490 | version "1.1.6" 1491 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1492 | 1493 | is-builtin-module@^1.0.0: 1494 | version "1.0.0" 1495 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1496 | dependencies: 1497 | builtin-modules "^1.0.0" 1498 | 1499 | is-dotfile@^1.0.0: 1500 | version "1.0.3" 1501 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1502 | 1503 | is-equal-shallow@^0.1.3: 1504 | version "0.1.3" 1505 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1506 | dependencies: 1507 | is-primitive "^2.0.0" 1508 | 1509 | is-extendable@^0.1.1: 1510 | version "0.1.1" 1511 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1512 | 1513 | is-extglob@^1.0.0: 1514 | version "1.0.0" 1515 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1516 | 1517 | is-finite@^1.0.0: 1518 | version "1.0.2" 1519 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1520 | dependencies: 1521 | number-is-nan "^1.0.0" 1522 | 1523 | is-fullwidth-code-point@^1.0.0: 1524 | version "1.0.0" 1525 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1526 | dependencies: 1527 | number-is-nan "^1.0.0" 1528 | 1529 | is-fullwidth-code-point@^2.0.0: 1530 | version "2.0.0" 1531 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1532 | 1533 | is-glob@^2.0.0, is-glob@^2.0.1: 1534 | version "2.0.1" 1535 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1536 | dependencies: 1537 | is-extglob "^1.0.0" 1538 | 1539 | is-module@^1.0.0: 1540 | version "1.0.0" 1541 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" 1542 | 1543 | is-number@^2.1.0: 1544 | version "2.1.0" 1545 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1546 | dependencies: 1547 | kind-of "^3.0.2" 1548 | 1549 | is-number@^3.0.0: 1550 | version "3.0.0" 1551 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1552 | dependencies: 1553 | kind-of "^3.0.2" 1554 | 1555 | is-obj@^1.0.0: 1556 | version "1.0.1" 1557 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1558 | 1559 | is-path-cwd@^1.0.0: 1560 | version "1.0.0" 1561 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1562 | 1563 | is-path-in-cwd@^1.0.0: 1564 | version "1.0.0" 1565 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1566 | dependencies: 1567 | is-path-inside "^1.0.0" 1568 | 1569 | is-path-inside@^1.0.0: 1570 | version "1.0.1" 1571 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1572 | dependencies: 1573 | path-is-inside "^1.0.1" 1574 | 1575 | is-posix-bracket@^0.1.0: 1576 | version "0.1.1" 1577 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1578 | 1579 | is-primitive@^2.0.0: 1580 | version "2.0.0" 1581 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1582 | 1583 | is-promise@^2.1.0: 1584 | version "2.1.0" 1585 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1586 | 1587 | is-resolvable@^1.0.0: 1588 | version "1.0.1" 1589 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.1.tgz#acca1cd36dbe44b974b924321555a70ba03b1cf4" 1590 | 1591 | is-stream@^1.1.0: 1592 | version "1.1.0" 1593 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1594 | 1595 | is-typedarray@~1.0.0: 1596 | version "1.0.0" 1597 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1598 | 1599 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1600 | version "1.0.0" 1601 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1602 | 1603 | isexe@^2.0.0: 1604 | version "2.0.0" 1605 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1606 | 1607 | isobject@^2.0.0: 1608 | version "2.1.0" 1609 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1610 | dependencies: 1611 | isarray "1.0.0" 1612 | 1613 | isstream@~0.1.2: 1614 | version "0.1.2" 1615 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1616 | 1617 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1618 | version "3.0.2" 1619 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1620 | 1621 | js-yaml@^3.9.1: 1622 | version "3.10.0" 1623 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1624 | dependencies: 1625 | argparse "^1.0.7" 1626 | esprima "^4.0.0" 1627 | 1628 | jsbn@~0.1.0: 1629 | version "0.1.1" 1630 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1631 | 1632 | jsesc@^1.3.0: 1633 | version "1.3.0" 1634 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1635 | 1636 | jsesc@~0.5.0: 1637 | version "0.5.0" 1638 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1639 | 1640 | json-schema-traverse@^0.3.0: 1641 | version "0.3.1" 1642 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1643 | 1644 | json-schema@0.2.3: 1645 | version "0.2.3" 1646 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1647 | 1648 | json-stable-stringify-without-jsonify@^1.0.1: 1649 | version "1.0.1" 1650 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1651 | 1652 | json-stable-stringify@^1.0.1: 1653 | version "1.0.1" 1654 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1655 | dependencies: 1656 | jsonify "~0.0.0" 1657 | 1658 | json-stringify-safe@~5.0.1: 1659 | version "5.0.1" 1660 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1661 | 1662 | json3@3.2.4: 1663 | version "3.2.4" 1664 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.2.4.tgz#689c589e7ca9340c7ee4949e0d105bc5bf159f21" 1665 | 1666 | json5@^0.5.1: 1667 | version "0.5.1" 1668 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1669 | 1670 | jsonify@~0.0.0: 1671 | version "0.0.0" 1672 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1673 | 1674 | jsprim@^1.2.2: 1675 | version "1.4.1" 1676 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1677 | dependencies: 1678 | assert-plus "1.0.0" 1679 | extsprintf "1.3.0" 1680 | json-schema "0.2.3" 1681 | verror "1.10.0" 1682 | 1683 | kind-of@^3.0.2: 1684 | version "3.2.2" 1685 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1686 | dependencies: 1687 | is-buffer "^1.1.5" 1688 | 1689 | kind-of@^4.0.0: 1690 | version "4.0.0" 1691 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1692 | dependencies: 1693 | is-buffer "^1.1.5" 1694 | 1695 | levn@^0.3.0, levn@~0.3.0: 1696 | version "0.3.0" 1697 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1698 | dependencies: 1699 | prelude-ls "~1.1.2" 1700 | type-check "~0.3.2" 1701 | 1702 | load-json-file@^2.0.0: 1703 | version "2.0.0" 1704 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1705 | dependencies: 1706 | graceful-fs "^4.1.2" 1707 | parse-json "^2.2.0" 1708 | pify "^2.0.0" 1709 | strip-bom "^3.0.0" 1710 | 1711 | locate-path@^2.0.0: 1712 | version "2.0.0" 1713 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1714 | dependencies: 1715 | p-locate "^2.0.0" 1716 | path-exists "^3.0.0" 1717 | 1718 | lodash.cond@^4.3.0: 1719 | version "4.5.2" 1720 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 1721 | 1722 | lodash@^4.17.4, lodash@^4.3.0: 1723 | version "4.17.4" 1724 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1725 | 1726 | loose-envify@^1.0.0: 1727 | version "1.3.1" 1728 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1729 | dependencies: 1730 | js-tokens "^3.0.0" 1731 | 1732 | lru-cache@^4.0.1: 1733 | version "4.1.1" 1734 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1735 | dependencies: 1736 | pseudomap "^1.0.2" 1737 | yallist "^2.1.2" 1738 | 1739 | magic-string@^0.22.4: 1740 | version "0.22.4" 1741 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.22.4.tgz#31039b4e40366395618c1d6cf8193c53917475ff" 1742 | dependencies: 1743 | vlq "^0.2.1" 1744 | 1745 | micromatch@^2.1.5, micromatch@^2.3.11: 1746 | version "2.3.11" 1747 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1748 | dependencies: 1749 | arr-diff "^2.0.0" 1750 | array-unique "^0.2.1" 1751 | braces "^1.8.2" 1752 | expand-brackets "^0.1.4" 1753 | extglob "^0.3.1" 1754 | filename-regex "^2.0.0" 1755 | is-extglob "^1.0.0" 1756 | is-glob "^2.0.1" 1757 | kind-of "^3.0.2" 1758 | normalize-path "^2.0.1" 1759 | object.omit "^2.0.0" 1760 | parse-glob "^3.0.4" 1761 | regex-cache "^0.4.2" 1762 | 1763 | mime-db@~1.30.0: 1764 | version "1.30.0" 1765 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1766 | 1767 | mime-types@^2.1.12, mime-types@~2.1.7: 1768 | version "2.1.17" 1769 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1770 | dependencies: 1771 | mime-db "~1.30.0" 1772 | 1773 | mimic-fn@^1.0.0: 1774 | version "1.1.0" 1775 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1776 | 1777 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1778 | version "3.0.4" 1779 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1780 | dependencies: 1781 | brace-expansion "^1.1.7" 1782 | 1783 | minimist@0.0.8: 1784 | version "0.0.8" 1785 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1786 | 1787 | minimist@^1.2.0: 1788 | version "1.2.0" 1789 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1790 | 1791 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1792 | version "0.5.1" 1793 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1794 | dependencies: 1795 | minimist "0.0.8" 1796 | 1797 | ms@2.0.0: 1798 | version "2.0.0" 1799 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1800 | 1801 | mute-stream@0.0.7: 1802 | version "0.0.7" 1803 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1804 | 1805 | nan@^2.3.0: 1806 | version "2.8.0" 1807 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 1808 | 1809 | natural-compare@^1.4.0: 1810 | version "1.4.0" 1811 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1812 | 1813 | node-pre-gyp@^0.6.39: 1814 | version "0.6.39" 1815 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 1816 | dependencies: 1817 | detect-libc "^1.0.2" 1818 | hawk "3.1.3" 1819 | mkdirp "^0.5.1" 1820 | nopt "^4.0.1" 1821 | npmlog "^4.0.2" 1822 | rc "^1.1.7" 1823 | request "2.81.0" 1824 | rimraf "^2.6.1" 1825 | semver "^5.3.0" 1826 | tar "^2.2.1" 1827 | tar-pack "^3.4.0" 1828 | 1829 | nopt@^4.0.1: 1830 | version "4.0.1" 1831 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1832 | dependencies: 1833 | abbrev "1" 1834 | osenv "^0.1.4" 1835 | 1836 | normalize-package-data@^2.3.2: 1837 | version "2.4.0" 1838 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1839 | dependencies: 1840 | hosted-git-info "^2.1.4" 1841 | is-builtin-module "^1.0.0" 1842 | semver "2 || 3 || 4 || 5" 1843 | validate-npm-package-license "^3.0.1" 1844 | 1845 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1846 | version "2.1.1" 1847 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1848 | dependencies: 1849 | remove-trailing-separator "^1.0.1" 1850 | 1851 | npm-run-path@^2.0.0: 1852 | version "2.0.2" 1853 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1854 | dependencies: 1855 | path-key "^2.0.0" 1856 | 1857 | npmlog@^4.0.2: 1858 | version "4.1.2" 1859 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1860 | dependencies: 1861 | are-we-there-yet "~1.1.2" 1862 | console-control-strings "~1.1.0" 1863 | gauge "~2.7.3" 1864 | set-blocking "~2.0.0" 1865 | 1866 | number-is-nan@^1.0.0: 1867 | version "1.0.1" 1868 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1869 | 1870 | oauth-sign@~0.8.1: 1871 | version "0.8.2" 1872 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1873 | 1874 | object-assign@^4.0.1, object-assign@^4.1.0: 1875 | version "4.1.1" 1876 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1877 | 1878 | object.omit@^2.0.0: 1879 | version "2.0.1" 1880 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1881 | dependencies: 1882 | for-own "^0.1.4" 1883 | is-extendable "^0.1.1" 1884 | 1885 | once@^1.3.0, once@^1.3.3: 1886 | version "1.4.0" 1887 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1888 | dependencies: 1889 | wrappy "1" 1890 | 1891 | onetime@^2.0.0: 1892 | version "2.0.1" 1893 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1894 | dependencies: 1895 | mimic-fn "^1.0.0" 1896 | 1897 | optionator@^0.8.2: 1898 | version "0.8.2" 1899 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1900 | dependencies: 1901 | deep-is "~0.1.3" 1902 | fast-levenshtein "~2.0.4" 1903 | levn "~0.3.0" 1904 | prelude-ls "~1.1.2" 1905 | type-check "~0.3.2" 1906 | wordwrap "~1.0.0" 1907 | 1908 | os-homedir@^1.0.0: 1909 | version "1.0.2" 1910 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1911 | 1912 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 1913 | version "1.0.2" 1914 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1915 | 1916 | osenv@^0.1.4: 1917 | version "0.1.4" 1918 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1919 | dependencies: 1920 | os-homedir "^1.0.0" 1921 | os-tmpdir "^1.0.0" 1922 | 1923 | output-file-sync@^1.1.2: 1924 | version "1.1.2" 1925 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1926 | dependencies: 1927 | graceful-fs "^4.1.4" 1928 | mkdirp "^0.5.1" 1929 | object-assign "^4.1.0" 1930 | 1931 | p-finally@^1.0.0: 1932 | version "1.0.0" 1933 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1934 | 1935 | p-limit@^1.1.0: 1936 | version "1.1.0" 1937 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1938 | 1939 | p-locate@^2.0.0: 1940 | version "2.0.0" 1941 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1942 | dependencies: 1943 | p-limit "^1.1.0" 1944 | 1945 | parse-glob@^3.0.4: 1946 | version "3.0.4" 1947 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1948 | dependencies: 1949 | glob-base "^0.3.0" 1950 | is-dotfile "^1.0.0" 1951 | is-extglob "^1.0.0" 1952 | is-glob "^2.0.0" 1953 | 1954 | parse-json@^2.2.0: 1955 | version "2.2.0" 1956 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1957 | dependencies: 1958 | error-ex "^1.2.0" 1959 | 1960 | path-exists@^2.0.0: 1961 | version "2.1.0" 1962 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1963 | dependencies: 1964 | pinkie-promise "^2.0.0" 1965 | 1966 | path-exists@^3.0.0: 1967 | version "3.0.0" 1968 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1969 | 1970 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1971 | version "1.0.1" 1972 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1973 | 1974 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 1975 | version "1.0.2" 1976 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1977 | 1978 | path-key@^2.0.0: 1979 | version "2.0.1" 1980 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1981 | 1982 | path-parse@^1.0.5: 1983 | version "1.0.5" 1984 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1985 | 1986 | path-type@^2.0.0: 1987 | version "2.0.0" 1988 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1989 | dependencies: 1990 | pify "^2.0.0" 1991 | 1992 | performance-now@^0.2.0: 1993 | version "0.2.0" 1994 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1995 | 1996 | pify@^2.0.0: 1997 | version "2.3.0" 1998 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1999 | 2000 | pinkie-promise@^2.0.0: 2001 | version "2.0.1" 2002 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2003 | dependencies: 2004 | pinkie "^2.0.0" 2005 | 2006 | pinkie@^2.0.0: 2007 | version "2.0.4" 2008 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2009 | 2010 | pkg-dir@^1.0.0: 2011 | version "1.0.0" 2012 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2013 | dependencies: 2014 | find-up "^1.0.0" 2015 | 2016 | pluralize@^7.0.0: 2017 | version "7.0.0" 2018 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 2019 | 2020 | polyfill@^0.1.0: 2021 | version "0.1.0" 2022 | resolved "https://registry.yarnpkg.com/polyfill/-/polyfill-0.1.0.tgz#ded507cb76802804834b3385dfd3ba2e51004c3d" 2023 | dependencies: 2024 | json3 "3.2.4" 2025 | 2026 | prelude-ls@~1.1.2: 2027 | version "1.1.2" 2028 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2029 | 2030 | preserve@^0.2.0: 2031 | version "0.2.0" 2032 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2033 | 2034 | private@^0.1.6, private@^0.1.7: 2035 | version "0.1.8" 2036 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2037 | 2038 | process-nextick-args@~1.0.6: 2039 | version "1.0.7" 2040 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2041 | 2042 | progress@^2.0.0: 2043 | version "2.0.0" 2044 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2045 | 2046 | pseudomap@^1.0.2: 2047 | version "1.0.2" 2048 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2049 | 2050 | punycode@^1.4.1: 2051 | version "1.4.1" 2052 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2053 | 2054 | qs@~6.4.0: 2055 | version "6.4.0" 2056 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2057 | 2058 | randomatic@^1.1.3: 2059 | version "1.1.7" 2060 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2061 | dependencies: 2062 | is-number "^3.0.0" 2063 | kind-of "^4.0.0" 2064 | 2065 | rc@^1.1.7: 2066 | version "1.2.2" 2067 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 2068 | dependencies: 2069 | deep-extend "~0.4.0" 2070 | ini "~1.3.0" 2071 | minimist "^1.2.0" 2072 | strip-json-comments "~2.0.1" 2073 | 2074 | read-pkg-up@^2.0.0: 2075 | version "2.0.0" 2076 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2077 | dependencies: 2078 | find-up "^2.0.0" 2079 | read-pkg "^2.0.0" 2080 | 2081 | read-pkg@^2.0.0: 2082 | version "2.0.0" 2083 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2084 | dependencies: 2085 | load-json-file "^2.0.0" 2086 | normalize-package-data "^2.3.2" 2087 | path-type "^2.0.0" 2088 | 2089 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 2090 | version "2.3.3" 2091 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2092 | dependencies: 2093 | core-util-is "~1.0.0" 2094 | inherits "~2.0.3" 2095 | isarray "~1.0.0" 2096 | process-nextick-args "~1.0.6" 2097 | safe-buffer "~5.1.1" 2098 | string_decoder "~1.0.3" 2099 | util-deprecate "~1.0.1" 2100 | 2101 | readdirp@^2.0.0: 2102 | version "2.1.0" 2103 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2104 | dependencies: 2105 | graceful-fs "^4.1.2" 2106 | minimatch "^3.0.2" 2107 | readable-stream "^2.0.2" 2108 | set-immediate-shim "^1.0.1" 2109 | 2110 | regenerate@^1.2.1: 2111 | version "1.3.3" 2112 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2113 | 2114 | regenerator-runtime@^0.10.5: 2115 | version "0.10.5" 2116 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2117 | 2118 | regenerator-runtime@^0.11.0: 2119 | version "0.11.1" 2120 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2121 | 2122 | regenerator-transform@^0.10.0: 2123 | version "0.10.1" 2124 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2125 | dependencies: 2126 | babel-runtime "^6.18.0" 2127 | babel-types "^6.19.0" 2128 | private "^0.1.6" 2129 | 2130 | regex-cache@^0.4.2: 2131 | version "0.4.4" 2132 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2133 | dependencies: 2134 | is-equal-shallow "^0.1.3" 2135 | 2136 | regexpu-core@^2.0.0: 2137 | version "2.0.0" 2138 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2139 | dependencies: 2140 | regenerate "^1.2.1" 2141 | regjsgen "^0.2.0" 2142 | regjsparser "^0.1.4" 2143 | 2144 | regjsgen@^0.2.0: 2145 | version "0.2.0" 2146 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2147 | 2148 | regjsparser@^0.1.4: 2149 | version "0.1.5" 2150 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2151 | dependencies: 2152 | jsesc "~0.5.0" 2153 | 2154 | remove-trailing-separator@^1.0.1: 2155 | version "1.1.0" 2156 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2157 | 2158 | repeat-element@^1.1.2: 2159 | version "1.1.2" 2160 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2161 | 2162 | repeat-string@^1.5.2: 2163 | version "1.6.1" 2164 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2165 | 2166 | repeating@^2.0.0: 2167 | version "2.0.1" 2168 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2169 | dependencies: 2170 | is-finite "^1.0.0" 2171 | 2172 | request@2.81.0: 2173 | version "2.81.0" 2174 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2175 | dependencies: 2176 | aws-sign2 "~0.6.0" 2177 | aws4 "^1.2.1" 2178 | caseless "~0.12.0" 2179 | combined-stream "~1.0.5" 2180 | extend "~3.0.0" 2181 | forever-agent "~0.6.1" 2182 | form-data "~2.1.1" 2183 | har-validator "~4.2.1" 2184 | hawk "~3.1.3" 2185 | http-signature "~1.1.0" 2186 | is-typedarray "~1.0.0" 2187 | isstream "~0.1.2" 2188 | json-stringify-safe "~5.0.1" 2189 | mime-types "~2.1.7" 2190 | oauth-sign "~0.8.1" 2191 | performance-now "^0.2.0" 2192 | qs "~6.4.0" 2193 | safe-buffer "^5.0.1" 2194 | stringstream "~0.0.4" 2195 | tough-cookie "~2.3.0" 2196 | tunnel-agent "^0.6.0" 2197 | uuid "^3.0.0" 2198 | 2199 | require-uncached@^1.0.3: 2200 | version "1.0.3" 2201 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2202 | dependencies: 2203 | caller-path "^0.1.0" 2204 | resolve-from "^1.0.0" 2205 | 2206 | resolve-from@^1.0.0: 2207 | version "1.0.1" 2208 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2209 | 2210 | resolve@1.1.7: 2211 | version "1.1.7" 2212 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2213 | 2214 | resolve@^1.1.6, resolve@^1.2.0, resolve@^1.3.3, resolve@^1.4.0: 2215 | version "1.5.0" 2216 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 2217 | dependencies: 2218 | path-parse "^1.0.5" 2219 | 2220 | restore-cursor@^2.0.0: 2221 | version "2.0.0" 2222 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2223 | dependencies: 2224 | onetime "^2.0.0" 2225 | signal-exit "^3.0.2" 2226 | 2227 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1, rimraf@^2.6.2: 2228 | version "2.6.2" 2229 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2230 | dependencies: 2231 | glob "^7.0.5" 2232 | 2233 | rollup-plugin-babel@^3.0.3: 2234 | version "3.0.3" 2235 | resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-3.0.3.tgz#63adedc863130327512a4a9006efc2241c5b7c15" 2236 | dependencies: 2237 | rollup-pluginutils "^1.5.0" 2238 | 2239 | rollup-plugin-commonjs@^8.2.6: 2240 | version "8.2.6" 2241 | resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-8.2.6.tgz#27e5b9069ff94005bb01e01bb46a1e4873784677" 2242 | dependencies: 2243 | acorn "^5.2.1" 2244 | estree-walker "^0.5.0" 2245 | magic-string "^0.22.4" 2246 | resolve "^1.4.0" 2247 | rollup-pluginutils "^2.0.1" 2248 | 2249 | rollup-plugin-filesize@^1.5.0: 2250 | version "1.5.0" 2251 | resolved "https://registry.yarnpkg.com/rollup-plugin-filesize/-/rollup-plugin-filesize-1.5.0.tgz#bb5841242d88be57f231c9e8a3a541925392178b" 2252 | dependencies: 2253 | boxen "^1.1.0" 2254 | colors "^1.1.2" 2255 | deep-assign "^2.0.0" 2256 | filesize "^3.5.6" 2257 | gzip-size "^3.0.0" 2258 | 2259 | rollup-plugin-node-resolve@^3.0.0: 2260 | version "3.0.0" 2261 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-3.0.0.tgz#8b897c4c3030d5001277b0514b25d2ca09683ee0" 2262 | dependencies: 2263 | browser-resolve "^1.11.0" 2264 | builtin-modules "^1.1.0" 2265 | is-module "^1.0.0" 2266 | resolve "^1.1.6" 2267 | 2268 | rollup-plugin-uglify@^2.0.1: 2269 | version "2.0.1" 2270 | resolved "https://registry.yarnpkg.com/rollup-plugin-uglify/-/rollup-plugin-uglify-2.0.1.tgz#67b37ad1efdafbd83af4c36b40c189ee4866c969" 2271 | dependencies: 2272 | uglify-js "^3.0.9" 2273 | 2274 | rollup-pluginutils@^1.5.0: 2275 | version "1.5.2" 2276 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz#1e156e778f94b7255bfa1b3d0178be8f5c552408" 2277 | dependencies: 2278 | estree-walker "^0.2.1" 2279 | minimatch "^3.0.2" 2280 | 2281 | rollup-pluginutils@^2.0.1: 2282 | version "2.0.1" 2283 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.0.1.tgz#7ec95b3573f6543a46a6461bd9a7c544525d0fc0" 2284 | dependencies: 2285 | estree-walker "^0.3.0" 2286 | micromatch "^2.3.11" 2287 | 2288 | rollup@^0.50.0: 2289 | version "0.50.1" 2290 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.50.1.tgz#e4dafcbf8d2bb0d9f5589d0cc6f64d76b8815730" 2291 | 2292 | run-async@^2.2.0: 2293 | version "2.3.0" 2294 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2295 | dependencies: 2296 | is-promise "^2.1.0" 2297 | 2298 | rx-lite-aggregates@^4.0.8: 2299 | version "4.0.8" 2300 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2301 | dependencies: 2302 | rx-lite "*" 2303 | 2304 | rx-lite@*, rx-lite@^4.0.8: 2305 | version "4.0.8" 2306 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2307 | 2308 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2309 | version "5.1.1" 2310 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2311 | 2312 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2313 | version "5.4.1" 2314 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2315 | 2316 | semver@5.3.0: 2317 | version "5.3.0" 2318 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2319 | 2320 | set-blocking@~2.0.0: 2321 | version "2.0.0" 2322 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2323 | 2324 | set-immediate-shim@^1.0.1: 2325 | version "1.0.1" 2326 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2327 | 2328 | shebang-command@^1.2.0: 2329 | version "1.2.0" 2330 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2331 | dependencies: 2332 | shebang-regex "^1.0.0" 2333 | 2334 | shebang-regex@^1.0.0: 2335 | version "1.0.0" 2336 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2337 | 2338 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2339 | version "3.0.2" 2340 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2341 | 2342 | slash@^1.0.0: 2343 | version "1.0.0" 2344 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2345 | 2346 | slice-ansi@1.0.0: 2347 | version "1.0.0" 2348 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 2349 | dependencies: 2350 | is-fullwidth-code-point "^2.0.0" 2351 | 2352 | sntp@1.x.x: 2353 | version "1.0.9" 2354 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2355 | dependencies: 2356 | hoek "2.x.x" 2357 | 2358 | source-map-support@^0.4.15: 2359 | version "0.4.18" 2360 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2361 | dependencies: 2362 | source-map "^0.5.6" 2363 | 2364 | source-map@^0.5.6: 2365 | version "0.5.7" 2366 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2367 | 2368 | source-map@~0.6.1: 2369 | version "0.6.1" 2370 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2371 | 2372 | spdx-correct@~1.0.0: 2373 | version "1.0.2" 2374 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2375 | dependencies: 2376 | spdx-license-ids "^1.0.2" 2377 | 2378 | spdx-expression-parse@~1.0.0: 2379 | version "1.0.4" 2380 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2381 | 2382 | spdx-license-ids@^1.0.2: 2383 | version "1.2.2" 2384 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2385 | 2386 | sprintf-js@~1.0.2: 2387 | version "1.0.3" 2388 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2389 | 2390 | sshpk@^1.7.0: 2391 | version "1.13.1" 2392 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2393 | dependencies: 2394 | asn1 "~0.2.3" 2395 | assert-plus "^1.0.0" 2396 | dashdash "^1.12.0" 2397 | getpass "^0.1.1" 2398 | optionalDependencies: 2399 | bcrypt-pbkdf "^1.0.0" 2400 | ecc-jsbn "~0.1.1" 2401 | jsbn "~0.1.0" 2402 | tweetnacl "~0.14.0" 2403 | 2404 | string-width@^1.0.1, string-width@^1.0.2: 2405 | version "1.0.2" 2406 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2407 | dependencies: 2408 | code-point-at "^1.0.0" 2409 | is-fullwidth-code-point "^1.0.0" 2410 | strip-ansi "^3.0.0" 2411 | 2412 | string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 2413 | version "2.1.1" 2414 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2415 | dependencies: 2416 | is-fullwidth-code-point "^2.0.0" 2417 | strip-ansi "^4.0.0" 2418 | 2419 | string_decoder@~1.0.3: 2420 | version "1.0.3" 2421 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2422 | dependencies: 2423 | safe-buffer "~5.1.0" 2424 | 2425 | stringstream@~0.0.4: 2426 | version "0.0.5" 2427 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2428 | 2429 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2430 | version "3.0.1" 2431 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2432 | dependencies: 2433 | ansi-regex "^2.0.0" 2434 | 2435 | strip-ansi@^4.0.0: 2436 | version "4.0.0" 2437 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2438 | dependencies: 2439 | ansi-regex "^3.0.0" 2440 | 2441 | strip-bom@^3.0.0: 2442 | version "3.0.0" 2443 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2444 | 2445 | strip-eof@^1.0.0: 2446 | version "1.0.0" 2447 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2448 | 2449 | strip-json-comments@~2.0.1: 2450 | version "2.0.1" 2451 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2452 | 2453 | supports-color@^2.0.0: 2454 | version "2.0.0" 2455 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2456 | 2457 | supports-color@^4.0.0: 2458 | version "4.5.0" 2459 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 2460 | dependencies: 2461 | has-flag "^2.0.0" 2462 | 2463 | table@^4.0.1: 2464 | version "4.0.2" 2465 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 2466 | dependencies: 2467 | ajv "^5.2.3" 2468 | ajv-keywords "^2.1.0" 2469 | chalk "^2.1.0" 2470 | lodash "^4.17.4" 2471 | slice-ansi "1.0.0" 2472 | string-width "^2.1.1" 2473 | 2474 | tar-pack@^3.4.0: 2475 | version "3.4.1" 2476 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2477 | dependencies: 2478 | debug "^2.2.0" 2479 | fstream "^1.0.10" 2480 | fstream-ignore "^1.0.5" 2481 | once "^1.3.3" 2482 | readable-stream "^2.1.4" 2483 | rimraf "^2.5.1" 2484 | tar "^2.2.1" 2485 | uid-number "^0.0.6" 2486 | 2487 | tar@^2.2.1: 2488 | version "2.2.1" 2489 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2490 | dependencies: 2491 | block-stream "*" 2492 | fstream "^1.0.2" 2493 | inherits "2" 2494 | 2495 | term-size@^1.2.0: 2496 | version "1.2.0" 2497 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 2498 | dependencies: 2499 | execa "^0.7.0" 2500 | 2501 | text-table@~0.2.0: 2502 | version "0.2.0" 2503 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2504 | 2505 | through@^2.3.6: 2506 | version "2.3.8" 2507 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2508 | 2509 | tmp@^0.0.33: 2510 | version "0.0.33" 2511 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 2512 | dependencies: 2513 | os-tmpdir "~1.0.2" 2514 | 2515 | to-fast-properties@^1.0.3: 2516 | version "1.0.3" 2517 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2518 | 2519 | tough-cookie@~2.3.0: 2520 | version "2.3.3" 2521 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2522 | dependencies: 2523 | punycode "^1.4.1" 2524 | 2525 | trim-right@^1.0.1: 2526 | version "1.0.1" 2527 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2528 | 2529 | tunnel-agent@^0.6.0: 2530 | version "0.6.0" 2531 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2532 | dependencies: 2533 | safe-buffer "^5.0.1" 2534 | 2535 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2536 | version "0.14.5" 2537 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2538 | 2539 | type-check@~0.3.2: 2540 | version "0.3.2" 2541 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2542 | dependencies: 2543 | prelude-ls "~1.1.2" 2544 | 2545 | typedarray@^0.0.6: 2546 | version "0.0.6" 2547 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2548 | 2549 | uglify-js@^3.0.9: 2550 | version "3.2.2" 2551 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.2.2.tgz#870e4b34ed733d179284f9998efd3293f7fd73f6" 2552 | dependencies: 2553 | commander "~2.12.1" 2554 | source-map "~0.6.1" 2555 | 2556 | uid-number@^0.0.6: 2557 | version "0.0.6" 2558 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2559 | 2560 | user-home@^1.1.1: 2561 | version "1.1.1" 2562 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2563 | 2564 | util-deprecate@~1.0.1: 2565 | version "1.0.2" 2566 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2567 | 2568 | uuid@^3.0.0: 2569 | version "3.1.0" 2570 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2571 | 2572 | v8flags@^2.1.1: 2573 | version "2.1.1" 2574 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 2575 | dependencies: 2576 | user-home "^1.1.1" 2577 | 2578 | validate-npm-package-license@^3.0.1: 2579 | version "3.0.1" 2580 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2581 | dependencies: 2582 | spdx-correct "~1.0.0" 2583 | spdx-expression-parse "~1.0.0" 2584 | 2585 | verror@1.10.0: 2586 | version "1.10.0" 2587 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2588 | dependencies: 2589 | assert-plus "^1.0.0" 2590 | core-util-is "1.0.2" 2591 | extsprintf "^1.2.0" 2592 | 2593 | vlq@^0.2.1: 2594 | version "0.2.3" 2595 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26" 2596 | 2597 | which@^1.2.9: 2598 | version "1.3.0" 2599 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2600 | dependencies: 2601 | isexe "^2.0.0" 2602 | 2603 | wide-align@^1.1.0: 2604 | version "1.1.2" 2605 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2606 | dependencies: 2607 | string-width "^1.0.2" 2608 | 2609 | widest-line@^2.0.0: 2610 | version "2.0.0" 2611 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.0.tgz#0142a4e8a243f8882c0233aa0e0281aa76152273" 2612 | dependencies: 2613 | string-width "^2.1.1" 2614 | 2615 | wordwrap@~1.0.0: 2616 | version "1.0.0" 2617 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2618 | 2619 | wrappy@1: 2620 | version "1.0.2" 2621 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2622 | 2623 | write@^0.2.1: 2624 | version "0.2.1" 2625 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 2626 | dependencies: 2627 | mkdirp "^0.5.1" 2628 | 2629 | yallist@^2.1.2: 2630 | version "2.1.2" 2631 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2632 | --------------------------------------------------------------------------------