├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── dist └── ReactProgressiveList.js ├── example.gif ├── package.json ├── react-progressive-list.jpg ├── src └── ReactProgressiveList.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["env"], "flow", "react"], 3 | "plugins": [ 4 | "syntax-flow", 5 | "flow-react-proptypes", 6 | "transform-class-properties", 7 | "transform-object-rest-spread" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | working 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Matt Colman 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | react-progressive-list 3 |
4 | 5 |
6 | 7 | Read the [blog post](https://medium.com/@mattcolman/an-alternative-to-react-virtualized-fba2299f10b1) 8 | 9 |
10 | 11 | [React Progressive List](https://www.npmjs.com/package/react-progressive-list) 12 | is an alternative to 13 | [React Virtualized](https://github.com/bvaughn/react-virtualized). It wins in 14 | two possible scenarios: 15 | 16 | 1. Your list rows are complex and slow to render. react-virtualized cannot 17 | render new rows fast enough to maintain a smooth 60fps scroll. 18 | 2. You've tried react-virtualized and found it to be overly complicated for your 19 | basic needs. 20 | 21 | ## Demo 22 | 23 | [Demo Site](http://mattcolman.com/labs/react-progressive-list) 24 | 25 |
26 | example 27 |
28 | 29 |
30 | 31 | ## Install 32 | 33 | `yarn add react-progressive-list` 34 | 35 | ## Example 36 | 37 | ``` 38 | renderRow = index => { 39 | return ; 40 | } 41 | 42 | render() { 43 | return ( 44 | } 49 | rowCount={400} 50 | useWindowScroll 51 | /> 52 | ); 53 | } 54 | ``` 55 | 56 | ### Props 57 | 58 | | Property | Type | Default | Description | 59 | | :------------------ | :---------------------------- | :--------- | :----------------------------------------------------------------------------------------------------- | 60 | | `className` | string | undefined | className to apply to the parent div | 61 | | `initialAmount` | number | 10 | initial number of rows to display | 62 | | `progressiveAmount` | number | 10 | number of rows to render each time a new batch is requested | 63 | | `idleAmount` | number | 0 | number of rows to render when the browser is idle (limited browser support for requestIdleCallback) | 64 | | `isActive` | boolean | true | setting to false will render the full list without any progressive loading | 65 | | `renderItem` | (index: number) => React.Node | required | function that returns the row to render | 66 | | `renderLoader` | () => React.Node | () => null | function that returns a loader to render | 67 | | `rowCount` | number | required | the length of your list | 68 | | `useWindowScroll` | boolean | false | When true will use a scroll listener on the window, otherwise will use a scroll listener on the parent | 69 | -------------------------------------------------------------------------------- /dist/ReactProgressiveList.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | 7 | var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); 8 | 9 | var _react = require('react'); 10 | 11 | var React = _interopRequireWildcard(_react); 12 | 13 | var _times = require('lodash/times'); 14 | 15 | var _times2 = _interopRequireDefault(_times); 16 | 17 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 18 | 19 | function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } } 20 | 21 | function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } 22 | 23 | function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } 24 | 25 | function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } 26 | 27 | // [MC] Progressive load list items. By default it loads X rows first, then 28 | // when you scroll to the end of that list it requests to load more (displaying a loader at the end 29 | // of the list by default). 30 | // 31 | // You can also choose to lazily load more rows on each idle frame. 32 | // 33 | // This results in a fast initial render and avoids the complicated nature of a virtualised list. 34 | // 35 | // NOTE - This is a pure component so be sure to pass in new props if you need the list to update. 36 | // By default if the rowCount prop doesn't change then the list won't update. 37 | // 38 | // NOTE - requestIdleCallback is currently not supported by safari. 39 | 40 | var ReactProgressiveList = function (_React$PureComponent) { 41 | _inherits(ReactProgressiveList, _React$PureComponent); 42 | 43 | // eslint-disable-line react/sort-comp 44 | function ReactProgressiveList(props) { 45 | var _ref; 46 | 47 | _classCallCheck(this, ReactProgressiveList); 48 | 49 | for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { 50 | args[_key - 1] = arguments[_key]; 51 | } 52 | 53 | var _this = _possibleConstructorReturn(this, (_ref = ReactProgressiveList.__proto__ || Object.getPrototypeOf(ReactProgressiveList)).call.apply(_ref, [this, props].concat(args))); 54 | 55 | _initialiseProps.call(_this); 56 | 57 | var rowCount = props.rowCount, 58 | initialAmount = props.initialAmount, 59 | isActive = props.isActive; 60 | 61 | _this.state = { 62 | numRenderRows: isActive ? initialAmount : rowCount 63 | }; 64 | return _this; 65 | } 66 | 67 | _createClass(ReactProgressiveList, [{ 68 | key: 'componentDidMount', 69 | value: function componentDidMount() { 70 | var useWindowScroll = this.props.useWindowScroll; 71 | 72 | this.progressivelyLoadMore(false); 73 | var scrollParent = useWindowScroll ? window : this.ref.parentElement; 74 | scrollParent.addEventListener('scroll', this.handleScroll, { 75 | passive: true 76 | }); 77 | } 78 | }, { 79 | key: 'componentWillReceiveProps', 80 | value: function componentWillReceiveProps(nextProps) { 81 | if (nextProps.rowCount !== this.props.rowCount) { 82 | this.initializeList(nextProps); 83 | } 84 | } 85 | }, { 86 | key: 'componentWillUnmount', 87 | value: function componentWillUnmount() { 88 | var useWindowScroll = this.props.useWindowScroll; 89 | 90 | if (window.requestIdleCallback) window.cancelIdleCallback(this.requestId); 91 | var scrollParent = useWindowScroll ? window : this.ref.parentElement; 92 | scrollParent.removeEventListener('scroll', this.handleScroll); 93 | } 94 | }, { 95 | key: 'initializeList', 96 | value: function initializeList(props) { 97 | var _this2 = this; 98 | 99 | var rowCount = props.rowCount, 100 | isActive = props.isActive, 101 | initialAmount = props.initialAmount; 102 | 103 | if (window.requestIdleCallback) window.cancelIdleCallback(this.requestId); 104 | this.setState({ 105 | numRenderRows: isActive ? initialAmount : rowCount 106 | }, function () { 107 | _this2.progressivelyLoadMore(false); 108 | }); 109 | } 110 | }, { 111 | key: 'loadMore', 112 | value: function loadMore(amount) { 113 | var _this3 = this; 114 | 115 | var rowCount = this.props.rowCount; 116 | 117 | if (this.state.numRenderRows >= rowCount) return; 118 | this.isLoading = true; 119 | this.setState(function (state) { 120 | return { 121 | numRenderRows: Math.min(state.numRenderRows + amount, rowCount) 122 | }; 123 | }, function () { 124 | _this3.isLoading = false; 125 | }); 126 | } 127 | }, { 128 | key: 'render', 129 | value: function render() { 130 | var _this4 = this; 131 | 132 | var _props = this.props, 133 | className = _props.className, 134 | renderItem = _props.renderItem, 135 | renderLoader = _props.renderLoader, 136 | rowCount = _props.rowCount; 137 | var numRenderRows = this.state.numRenderRows; 138 | 139 | return React.createElement( 140 | 'div', 141 | { 142 | ref: function ref(_ref2) { 143 | _this4.ref = _ref2; 144 | }, 145 | className: className 146 | }, 147 | (0, _times2.default)(numRenderRows, function (i) { 148 | return renderItem(i); 149 | }), 150 | numRenderRows < rowCount && renderLoader() 151 | ); 152 | } 153 | }]); 154 | 155 | return ReactProgressiveList; 156 | }(React.PureComponent); 157 | 158 | ReactProgressiveList.defaultProps = { 159 | className: undefined, 160 | idleAmount: 0, // load one extra row on idle by default 161 | initialAmount: 10, 162 | isActive: true, 163 | progressiveAmount: 10, 164 | renderLoader: function renderLoader() { 165 | return null; 166 | }, 167 | useWindowScroll: false 168 | }; 169 | 170 | var _initialiseProps = function _initialiseProps() { 171 | var _this5 = this; 172 | 173 | this.isLoading = false; 174 | 175 | this.handleScroll = function (e) { 176 | var _props2 = _this5.props, 177 | rowCount = _props2.rowCount, 178 | progressiveAmount = _props2.progressiveAmount, 179 | useWindowScroll = _props2.useWindowScroll; 180 | var numRenderRows = _this5.state.numRenderRows; 181 | 182 | var top = void 0, 183 | height = void 0, 184 | scrollHeight = void 0, 185 | reachedLimit = void 0; 186 | if (useWindowScroll) { 187 | var boundingClientRect = _this5.ref.getBoundingClientRect(); 188 | top = boundingClientRect.top; 189 | height = boundingClientRect.height; 190 | scrollHeight = window.innerHeight; 191 | reachedLimit = top + height < scrollHeight; 192 | } else { 193 | top = e.target.scrollTop; 194 | height = e.target.offsetHeight; 195 | scrollHeight = e.target.scrollHeight; 196 | reachedLimit = top + height >= scrollHeight; 197 | } 198 | if (reachedLimit && numRenderRows !== rowCount && !_this5.isLoading) { 199 | _this5.loadMore(progressiveAmount); 200 | } 201 | }; 202 | 203 | this.progressivelyLoadMore = function () { 204 | var immediateLoad = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; 205 | var _props3 = _this5.props, 206 | rowCount = _props3.rowCount, 207 | idleAmount = _props3.idleAmount; 208 | var numRenderRows = _this5.state.numRenderRows; 209 | 210 | if (!window.requestIdleCallback || idleAmount === 0) return; 211 | if (immediateLoad) _this5.loadMore(idleAmount); 212 | if (numRenderRows < rowCount) { 213 | _this5.requestId = window.requestIdleCallback(_this5.progressivelyLoadMore); 214 | } 215 | }; 216 | }; 217 | 218 | ReactProgressiveList.propTypes = { 219 | className: require('prop-types').string, 220 | idleAmount: require('prop-types').number, 221 | initialAmount: require('prop-types').number, 222 | isActive: require('prop-types').bool, 223 | progressiveAmount: require('prop-types').number, 224 | renderItem: require('prop-types').func.isRequired, 225 | rowCount: require('prop-types').number.isRequired, 226 | renderLoader: require('prop-types').func, 227 | useWindowScroll: require('prop-types').bool 228 | }; 229 | exports.default = ReactProgressiveList; -------------------------------------------------------------------------------- /example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcolman/react-progressive-list/662f188f7a9bc8668d2d52b2b0c70079b3d3a73c/example.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-progressive-list", 3 | "version": "0.1.2", 4 | "description": "react-progressive-list", 5 | "main": "dist/ReactProgressiveList.js", 6 | "scripts": { 7 | "compile": "babel src -d dist", 8 | "prepublish": "npm run compile", 9 | "test": "echo \"Error: no test specified\" && exit 1" 10 | }, 11 | "repository": { 12 | "type": "git", 13 | "url": "git+https://github.com/mattcolman/react-progressive-list.git" 14 | }, 15 | "keywords": [ 16 | "react", 17 | "list" 18 | ], 19 | "author": "Matt Colman ", 20 | "license": "MIT", 21 | "bugs": { 22 | "url": "https://github.com/mattcolman/react-progressive-list/issues" 23 | }, 24 | "homepage": "https://github.com/mattcolman/react-progressive-list#readme", 25 | "dependencies": { 26 | "lodash": "^4.17.4" 27 | }, 28 | "devDependencies": { 29 | "babel-cli": "^6.26.0", 30 | "babel-plugin-flow-react-proptypes": "^13.0.2", 31 | "babel-plugin-transform-class-properties": "^6.24.1", 32 | "babel-plugin-transform-es2015-modules-commonjs": "^6.26.0", 33 | "babel-plugin-transform-object-rest-spread": "^6.26.0", 34 | "babel-polyfill": "^6.26.0", 35 | "babel-preset-env": "^1.6.1", 36 | "babel-preset-flow": "^6.23.0", 37 | "babel-preset-react": "^6.24.1" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /react-progressive-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcolman/react-progressive-list/662f188f7a9bc8668d2d52b2b0c70079b3d3a73c/react-progressive-list.jpg -------------------------------------------------------------------------------- /src/ReactProgressiveList.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import * as React from 'react'; 3 | import times from 'lodash/times'; 4 | 5 | // [MC] Progressive load list items. By default it loads X rows first, then 6 | // when you scroll to the end of that list it requests to load more (displaying a loader at the end 7 | // of the list by default). 8 | // 9 | // You can also choose to lazily load more rows on each idle frame. 10 | // 11 | // This results in a fast initial render and avoids the complicated nature of a virtualised list. 12 | // 13 | // NOTE - This is a pure component so be sure to pass in new props if you need the list to update. 14 | // By default if the rowCount prop doesn't change then the list won't update. 15 | // 16 | // NOTE - requestIdleCallback is currently not supported by safari. 17 | 18 | type Props = { 19 | className?: string, 20 | idleAmount?: number, 21 | initialAmount?: number, 22 | isActive?: boolean, 23 | progressiveAmount?: number, 24 | renderItem: (index: number) => any, 25 | rowCount: number, 26 | renderLoader?: () => any, 27 | useWindowScroll?: boolean 28 | }; 29 | 30 | type State = { 31 | numRenderRows: number 32 | }; 33 | 34 | class ReactProgressiveList extends React.PureComponent { 35 | props: Props; 36 | state: State; 37 | 38 | static defaultProps = { 39 | className: undefined, 40 | idleAmount: 0, // load one extra row on idle by default 41 | initialAmount: 10, 42 | isActive: true, 43 | progressiveAmount: 10, 44 | renderLoader: () => null, 45 | useWindowScroll: false 46 | }; 47 | requestId: number; // eslint-disable-line react/sort-comp 48 | ref: React.Node; 49 | isLoading = false; 50 | 51 | constructor(props: Props, ...args: Array) { 52 | super(props, ...args); 53 | const { rowCount, initialAmount, isActive } = props; 54 | this.state = { 55 | numRenderRows: isActive ? initialAmount : rowCount 56 | }; 57 | } 58 | 59 | componentDidMount() { 60 | const { useWindowScroll } = this.props; 61 | this.progressivelyLoadMore(false); 62 | const scrollParent = useWindowScroll ? window : this.ref.parentElement; 63 | scrollParent.addEventListener('scroll', this.handleScroll, { 64 | passive: true 65 | }); 66 | } 67 | 68 | handleScroll = e => { 69 | const { rowCount, progressiveAmount, useWindowScroll } = this.props; 70 | const { numRenderRows } = this.state; 71 | let top, height, scrollHeight, reachedLimit; 72 | if (useWindowScroll) { 73 | const boundingClientRect = this.ref.getBoundingClientRect(); 74 | top = boundingClientRect.top; 75 | height = boundingClientRect.height; 76 | scrollHeight = window.innerHeight; 77 | reachedLimit = top + height < scrollHeight; 78 | } else { 79 | top = e.target.scrollTop; 80 | height = e.target.offsetHeight; 81 | scrollHeight = e.target.scrollHeight; 82 | reachedLimit = top + height >= scrollHeight; 83 | } 84 | if (reachedLimit && numRenderRows !== rowCount && !this.isLoading) { 85 | this.loadMore(progressiveAmount); 86 | } 87 | }; 88 | 89 | componentWillReceiveProps(nextProps: Props) { 90 | if (nextProps.rowCount !== this.props.rowCount) { 91 | this.initializeList(nextProps); 92 | } 93 | } 94 | 95 | componentWillUnmount() { 96 | const { useWindowScroll } = this.props; 97 | if (window.requestIdleCallback) window.cancelIdleCallback(this.requestId); 98 | const scrollParent = useWindowScroll ? window : this.ref.parentElement; 99 | scrollParent.removeEventListener('scroll', this.handleScroll); 100 | } 101 | 102 | initializeList(props: Props) { 103 | const { rowCount, isActive, initialAmount } = props; 104 | if (window.requestIdleCallback) window.cancelIdleCallback(this.requestId); 105 | this.setState( 106 | { 107 | numRenderRows: isActive ? initialAmount : rowCount 108 | }, 109 | () => { 110 | this.progressivelyLoadMore(false); 111 | } 112 | ); 113 | } 114 | 115 | progressivelyLoadMore = (immediateLoad: boolean = true) => { 116 | const { rowCount, idleAmount } = this.props; 117 | const { numRenderRows } = this.state; 118 | if (!window.requestIdleCallback || idleAmount === 0) return; 119 | if (immediateLoad) this.loadMore(idleAmount); 120 | if (numRenderRows < rowCount) { 121 | this.requestId = window.requestIdleCallback(this.progressivelyLoadMore); 122 | } 123 | }; 124 | 125 | loadMore(amount: number) { 126 | const { rowCount } = this.props; 127 | if (this.state.numRenderRows >= rowCount) return; 128 | this.isLoading = true; 129 | this.setState( 130 | state => ({ 131 | numRenderRows: Math.min(state.numRenderRows + amount, rowCount) 132 | }), 133 | () => { 134 | this.isLoading = false; 135 | } 136 | ); 137 | } 138 | 139 | render() { 140 | const { className, renderItem, renderLoader, rowCount } = this.props; 141 | const { numRenderRows } = this.state; 142 | return ( 143 |
{ 145 | this.ref = ref; 146 | }} 147 | className={className} 148 | > 149 | {times(numRenderRows, i => renderItem(i))} 150 | {numRenderRows < rowCount && renderLoader()} 151 |
152 | ); 153 | } 154 | } 155 | 156 | export default ReactProgressiveList; 157 | -------------------------------------------------------------------------------- /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 | ajv@^4.9.1: 10 | version "4.11.8" 11 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 12 | dependencies: 13 | co "^4.6.0" 14 | json-stable-stringify "^1.0.1" 15 | 16 | ansi-regex@^2.0.0: 17 | version "2.1.1" 18 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 19 | 20 | ansi-styles@^2.2.1: 21 | version "2.2.1" 22 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 23 | 24 | anymatch@^1.3.0: 25 | version "1.3.2" 26 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 27 | dependencies: 28 | micromatch "^2.1.5" 29 | normalize-path "^2.0.0" 30 | 31 | aproba@^1.0.3: 32 | version "1.2.0" 33 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 34 | 35 | are-we-there-yet@~1.1.2: 36 | version "1.1.4" 37 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 38 | dependencies: 39 | delegates "^1.0.0" 40 | readable-stream "^2.0.6" 41 | 42 | arr-diff@^2.0.0: 43 | version "2.0.0" 44 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 45 | dependencies: 46 | arr-flatten "^1.0.1" 47 | 48 | arr-flatten@^1.0.1: 49 | version "1.1.0" 50 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 51 | 52 | array-unique@^0.2.1: 53 | version "0.2.1" 54 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 55 | 56 | asn1@~0.2.3: 57 | version "0.2.3" 58 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 59 | 60 | assert-plus@1.0.0, assert-plus@^1.0.0: 61 | version "1.0.0" 62 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 63 | 64 | assert-plus@^0.2.0: 65 | version "0.2.0" 66 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 67 | 68 | async-each@^1.0.0: 69 | version "1.0.1" 70 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 71 | 72 | asynckit@^0.4.0: 73 | version "0.4.0" 74 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 75 | 76 | aws-sign2@~0.6.0: 77 | version "0.6.0" 78 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 79 | 80 | aws4@^1.2.1: 81 | version "1.6.0" 82 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 83 | 84 | babel-cli@^6.26.0: 85 | version "6.26.0" 86 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 87 | dependencies: 88 | babel-core "^6.26.0" 89 | babel-polyfill "^6.26.0" 90 | babel-register "^6.26.0" 91 | babel-runtime "^6.26.0" 92 | commander "^2.11.0" 93 | convert-source-map "^1.5.0" 94 | fs-readdir-recursive "^1.0.0" 95 | glob "^7.1.2" 96 | lodash "^4.17.4" 97 | output-file-sync "^1.1.2" 98 | path-is-absolute "^1.0.1" 99 | slash "^1.0.0" 100 | source-map "^0.5.6" 101 | v8flags "^2.1.1" 102 | optionalDependencies: 103 | chokidar "^1.6.1" 104 | 105 | babel-code-frame@^6.26.0: 106 | version "6.26.0" 107 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 108 | dependencies: 109 | chalk "^1.1.3" 110 | esutils "^2.0.2" 111 | js-tokens "^3.0.2" 112 | 113 | babel-core@^6.25.0, babel-core@^6.26.0: 114 | version "6.26.0" 115 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 116 | dependencies: 117 | babel-code-frame "^6.26.0" 118 | babel-generator "^6.26.0" 119 | babel-helpers "^6.24.1" 120 | babel-messages "^6.23.0" 121 | babel-register "^6.26.0" 122 | babel-runtime "^6.26.0" 123 | babel-template "^6.26.0" 124 | babel-traverse "^6.26.0" 125 | babel-types "^6.26.0" 126 | babylon "^6.18.0" 127 | convert-source-map "^1.5.0" 128 | debug "^2.6.8" 129 | json5 "^0.5.1" 130 | lodash "^4.17.4" 131 | minimatch "^3.0.4" 132 | path-is-absolute "^1.0.1" 133 | private "^0.1.7" 134 | slash "^1.0.0" 135 | source-map "^0.5.6" 136 | 137 | babel-generator@^6.26.0: 138 | version "6.26.0" 139 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 140 | dependencies: 141 | babel-messages "^6.23.0" 142 | babel-runtime "^6.26.0" 143 | babel-types "^6.26.0" 144 | detect-indent "^4.0.0" 145 | jsesc "^1.3.0" 146 | lodash "^4.17.4" 147 | source-map "^0.5.6" 148 | trim-right "^1.0.1" 149 | 150 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 151 | version "6.24.1" 152 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 153 | dependencies: 154 | babel-helper-explode-assignable-expression "^6.24.1" 155 | babel-runtime "^6.22.0" 156 | babel-types "^6.24.1" 157 | 158 | babel-helper-builder-react-jsx@^6.24.1: 159 | version "6.26.0" 160 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 161 | dependencies: 162 | babel-runtime "^6.26.0" 163 | babel-types "^6.26.0" 164 | esutils "^2.0.2" 165 | 166 | babel-helper-call-delegate@^6.24.1: 167 | version "6.24.1" 168 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 169 | dependencies: 170 | babel-helper-hoist-variables "^6.24.1" 171 | babel-runtime "^6.22.0" 172 | babel-traverse "^6.24.1" 173 | babel-types "^6.24.1" 174 | 175 | babel-helper-define-map@^6.24.1: 176 | version "6.26.0" 177 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 178 | dependencies: 179 | babel-helper-function-name "^6.24.1" 180 | babel-runtime "^6.26.0" 181 | babel-types "^6.26.0" 182 | lodash "^4.17.4" 183 | 184 | babel-helper-explode-assignable-expression@^6.24.1: 185 | version "6.24.1" 186 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 187 | dependencies: 188 | babel-runtime "^6.22.0" 189 | babel-traverse "^6.24.1" 190 | babel-types "^6.24.1" 191 | 192 | babel-helper-function-name@^6.24.1: 193 | version "6.24.1" 194 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 195 | dependencies: 196 | babel-helper-get-function-arity "^6.24.1" 197 | babel-runtime "^6.22.0" 198 | babel-template "^6.24.1" 199 | babel-traverse "^6.24.1" 200 | babel-types "^6.24.1" 201 | 202 | babel-helper-get-function-arity@^6.24.1: 203 | version "6.24.1" 204 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 205 | dependencies: 206 | babel-runtime "^6.22.0" 207 | babel-types "^6.24.1" 208 | 209 | babel-helper-hoist-variables@^6.24.1: 210 | version "6.24.1" 211 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 212 | dependencies: 213 | babel-runtime "^6.22.0" 214 | babel-types "^6.24.1" 215 | 216 | babel-helper-optimise-call-expression@^6.24.1: 217 | version "6.24.1" 218 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 219 | dependencies: 220 | babel-runtime "^6.22.0" 221 | babel-types "^6.24.1" 222 | 223 | babel-helper-regex@^6.24.1: 224 | version "6.26.0" 225 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 226 | dependencies: 227 | babel-runtime "^6.26.0" 228 | babel-types "^6.26.0" 229 | lodash "^4.17.4" 230 | 231 | babel-helper-remap-async-to-generator@^6.24.1: 232 | version "6.24.1" 233 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 234 | dependencies: 235 | babel-helper-function-name "^6.24.1" 236 | babel-runtime "^6.22.0" 237 | babel-template "^6.24.1" 238 | babel-traverse "^6.24.1" 239 | babel-types "^6.24.1" 240 | 241 | babel-helper-replace-supers@^6.24.1: 242 | version "6.24.1" 243 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 244 | dependencies: 245 | babel-helper-optimise-call-expression "^6.24.1" 246 | babel-messages "^6.23.0" 247 | babel-runtime "^6.22.0" 248 | babel-template "^6.24.1" 249 | babel-traverse "^6.24.1" 250 | babel-types "^6.24.1" 251 | 252 | babel-helpers@^6.24.1: 253 | version "6.24.1" 254 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 255 | dependencies: 256 | babel-runtime "^6.22.0" 257 | babel-template "^6.24.1" 258 | 259 | babel-messages@^6.23.0: 260 | version "6.23.0" 261 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 262 | dependencies: 263 | babel-runtime "^6.22.0" 264 | 265 | babel-plugin-check-es2015-constants@^6.22.0: 266 | version "6.22.0" 267 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 268 | dependencies: 269 | babel-runtime "^6.22.0" 270 | 271 | babel-plugin-flow-react-proptypes@^13.0.2: 272 | version "13.0.2" 273 | resolved "https://registry.yarnpkg.com/babel-plugin-flow-react-proptypes/-/babel-plugin-flow-react-proptypes-13.0.2.tgz#0a6d0ccc7020f81ab48aa304830d2b55fea39dcc" 274 | dependencies: 275 | babel-core "^6.25.0" 276 | babel-template "^6.25.0" 277 | babel-traverse "^6.25.0" 278 | babel-types "^6.25.0" 279 | 280 | babel-plugin-syntax-async-functions@^6.8.0: 281 | version "6.13.0" 282 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 283 | 284 | babel-plugin-syntax-class-properties@^6.8.0: 285 | version "6.13.0" 286 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 287 | 288 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 289 | version "6.13.0" 290 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 291 | 292 | babel-plugin-syntax-flow@^6.18.0: 293 | version "6.18.0" 294 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 295 | 296 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 297 | version "6.18.0" 298 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 299 | 300 | babel-plugin-syntax-object-rest-spread@^6.8.0: 301 | version "6.13.0" 302 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 303 | 304 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 305 | version "6.22.0" 306 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 307 | 308 | babel-plugin-transform-async-to-generator@^6.22.0: 309 | version "6.24.1" 310 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 311 | dependencies: 312 | babel-helper-remap-async-to-generator "^6.24.1" 313 | babel-plugin-syntax-async-functions "^6.8.0" 314 | babel-runtime "^6.22.0" 315 | 316 | babel-plugin-transform-class-properties@^6.24.1: 317 | version "6.24.1" 318 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 319 | dependencies: 320 | babel-helper-function-name "^6.24.1" 321 | babel-plugin-syntax-class-properties "^6.8.0" 322 | babel-runtime "^6.22.0" 323 | babel-template "^6.24.1" 324 | 325 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 326 | version "6.22.0" 327 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 328 | dependencies: 329 | babel-runtime "^6.22.0" 330 | 331 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 332 | version "6.22.0" 333 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 334 | dependencies: 335 | babel-runtime "^6.22.0" 336 | 337 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 338 | version "6.26.0" 339 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 340 | dependencies: 341 | babel-runtime "^6.26.0" 342 | babel-template "^6.26.0" 343 | babel-traverse "^6.26.0" 344 | babel-types "^6.26.0" 345 | lodash "^4.17.4" 346 | 347 | babel-plugin-transform-es2015-classes@^6.23.0: 348 | version "6.24.1" 349 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 350 | dependencies: 351 | babel-helper-define-map "^6.24.1" 352 | babel-helper-function-name "^6.24.1" 353 | babel-helper-optimise-call-expression "^6.24.1" 354 | babel-helper-replace-supers "^6.24.1" 355 | babel-messages "^6.23.0" 356 | babel-runtime "^6.22.0" 357 | babel-template "^6.24.1" 358 | babel-traverse "^6.24.1" 359 | babel-types "^6.24.1" 360 | 361 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 362 | version "6.24.1" 363 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 364 | dependencies: 365 | babel-runtime "^6.22.0" 366 | babel-template "^6.24.1" 367 | 368 | babel-plugin-transform-es2015-destructuring@^6.23.0: 369 | version "6.23.0" 370 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 371 | dependencies: 372 | babel-runtime "^6.22.0" 373 | 374 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 375 | version "6.24.1" 376 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 377 | dependencies: 378 | babel-runtime "^6.22.0" 379 | babel-types "^6.24.1" 380 | 381 | babel-plugin-transform-es2015-for-of@^6.23.0: 382 | version "6.23.0" 383 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 384 | dependencies: 385 | babel-runtime "^6.22.0" 386 | 387 | babel-plugin-transform-es2015-function-name@^6.22.0: 388 | version "6.24.1" 389 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 390 | dependencies: 391 | babel-helper-function-name "^6.24.1" 392 | babel-runtime "^6.22.0" 393 | babel-types "^6.24.1" 394 | 395 | babel-plugin-transform-es2015-literals@^6.22.0: 396 | version "6.22.0" 397 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 398 | dependencies: 399 | babel-runtime "^6.22.0" 400 | 401 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 402 | version "6.24.1" 403 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 404 | dependencies: 405 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 406 | babel-runtime "^6.22.0" 407 | babel-template "^6.24.1" 408 | 409 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1, babel-plugin-transform-es2015-modules-commonjs@^6.26.0: 410 | version "6.26.0" 411 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 412 | dependencies: 413 | babel-plugin-transform-strict-mode "^6.24.1" 414 | babel-runtime "^6.26.0" 415 | babel-template "^6.26.0" 416 | babel-types "^6.26.0" 417 | 418 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 419 | version "6.24.1" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 421 | dependencies: 422 | babel-helper-hoist-variables "^6.24.1" 423 | babel-runtime "^6.22.0" 424 | babel-template "^6.24.1" 425 | 426 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 427 | version "6.24.1" 428 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 429 | dependencies: 430 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 431 | babel-runtime "^6.22.0" 432 | babel-template "^6.24.1" 433 | 434 | babel-plugin-transform-es2015-object-super@^6.22.0: 435 | version "6.24.1" 436 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 437 | dependencies: 438 | babel-helper-replace-supers "^6.24.1" 439 | babel-runtime "^6.22.0" 440 | 441 | babel-plugin-transform-es2015-parameters@^6.23.0: 442 | version "6.24.1" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 444 | dependencies: 445 | babel-helper-call-delegate "^6.24.1" 446 | babel-helper-get-function-arity "^6.24.1" 447 | babel-runtime "^6.22.0" 448 | babel-template "^6.24.1" 449 | babel-traverse "^6.24.1" 450 | babel-types "^6.24.1" 451 | 452 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 453 | version "6.24.1" 454 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 455 | dependencies: 456 | babel-runtime "^6.22.0" 457 | babel-types "^6.24.1" 458 | 459 | babel-plugin-transform-es2015-spread@^6.22.0: 460 | version "6.22.0" 461 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 462 | dependencies: 463 | babel-runtime "^6.22.0" 464 | 465 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 466 | version "6.24.1" 467 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 468 | dependencies: 469 | babel-helper-regex "^6.24.1" 470 | babel-runtime "^6.22.0" 471 | babel-types "^6.24.1" 472 | 473 | babel-plugin-transform-es2015-template-literals@^6.22.0: 474 | version "6.22.0" 475 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 476 | dependencies: 477 | babel-runtime "^6.22.0" 478 | 479 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 480 | version "6.23.0" 481 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 482 | dependencies: 483 | babel-runtime "^6.22.0" 484 | 485 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 486 | version "6.24.1" 487 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 488 | dependencies: 489 | babel-helper-regex "^6.24.1" 490 | babel-runtime "^6.22.0" 491 | regexpu-core "^2.0.0" 492 | 493 | babel-plugin-transform-exponentiation-operator@^6.22.0: 494 | version "6.24.1" 495 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 496 | dependencies: 497 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 498 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 499 | babel-runtime "^6.22.0" 500 | 501 | babel-plugin-transform-flow-strip-types@^6.22.0: 502 | version "6.22.0" 503 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 504 | dependencies: 505 | babel-plugin-syntax-flow "^6.18.0" 506 | babel-runtime "^6.22.0" 507 | 508 | babel-plugin-transform-object-rest-spread@^6.26.0: 509 | version "6.26.0" 510 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 511 | dependencies: 512 | babel-plugin-syntax-object-rest-spread "^6.8.0" 513 | babel-runtime "^6.26.0" 514 | 515 | babel-plugin-transform-react-display-name@^6.23.0: 516 | version "6.25.0" 517 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 518 | dependencies: 519 | babel-runtime "^6.22.0" 520 | 521 | babel-plugin-transform-react-jsx-self@^6.22.0: 522 | version "6.22.0" 523 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 524 | dependencies: 525 | babel-plugin-syntax-jsx "^6.8.0" 526 | babel-runtime "^6.22.0" 527 | 528 | babel-plugin-transform-react-jsx-source@^6.22.0: 529 | version "6.22.0" 530 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 531 | dependencies: 532 | babel-plugin-syntax-jsx "^6.8.0" 533 | babel-runtime "^6.22.0" 534 | 535 | babel-plugin-transform-react-jsx@^6.24.1: 536 | version "6.24.1" 537 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 538 | dependencies: 539 | babel-helper-builder-react-jsx "^6.24.1" 540 | babel-plugin-syntax-jsx "^6.8.0" 541 | babel-runtime "^6.22.0" 542 | 543 | babel-plugin-transform-regenerator@^6.22.0: 544 | version "6.26.0" 545 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 546 | dependencies: 547 | regenerator-transform "^0.10.0" 548 | 549 | babel-plugin-transform-strict-mode@^6.24.1: 550 | version "6.24.1" 551 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 552 | dependencies: 553 | babel-runtime "^6.22.0" 554 | babel-types "^6.24.1" 555 | 556 | babel-polyfill@^6.26.0: 557 | version "6.26.0" 558 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 559 | dependencies: 560 | babel-runtime "^6.26.0" 561 | core-js "^2.5.0" 562 | regenerator-runtime "^0.10.5" 563 | 564 | babel-preset-env@^1.6.1: 565 | version "1.6.1" 566 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 567 | dependencies: 568 | babel-plugin-check-es2015-constants "^6.22.0" 569 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 570 | babel-plugin-transform-async-to-generator "^6.22.0" 571 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 572 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 573 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 574 | babel-plugin-transform-es2015-classes "^6.23.0" 575 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 576 | babel-plugin-transform-es2015-destructuring "^6.23.0" 577 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 578 | babel-plugin-transform-es2015-for-of "^6.23.0" 579 | babel-plugin-transform-es2015-function-name "^6.22.0" 580 | babel-plugin-transform-es2015-literals "^6.22.0" 581 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 582 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 583 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 584 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 585 | babel-plugin-transform-es2015-object-super "^6.22.0" 586 | babel-plugin-transform-es2015-parameters "^6.23.0" 587 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 588 | babel-plugin-transform-es2015-spread "^6.22.0" 589 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 590 | babel-plugin-transform-es2015-template-literals "^6.22.0" 591 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 592 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 593 | babel-plugin-transform-exponentiation-operator "^6.22.0" 594 | babel-plugin-transform-regenerator "^6.22.0" 595 | browserslist "^2.1.2" 596 | invariant "^2.2.2" 597 | semver "^5.3.0" 598 | 599 | babel-preset-flow@^6.23.0: 600 | version "6.23.0" 601 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 602 | dependencies: 603 | babel-plugin-transform-flow-strip-types "^6.22.0" 604 | 605 | babel-preset-react@^6.24.1: 606 | version "6.24.1" 607 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 608 | dependencies: 609 | babel-plugin-syntax-jsx "^6.3.13" 610 | babel-plugin-transform-react-display-name "^6.23.0" 611 | babel-plugin-transform-react-jsx "^6.24.1" 612 | babel-plugin-transform-react-jsx-self "^6.22.0" 613 | babel-plugin-transform-react-jsx-source "^6.22.0" 614 | babel-preset-flow "^6.23.0" 615 | 616 | babel-register@^6.26.0: 617 | version "6.26.0" 618 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 619 | dependencies: 620 | babel-core "^6.26.0" 621 | babel-runtime "^6.26.0" 622 | core-js "^2.5.0" 623 | home-or-tmp "^2.0.0" 624 | lodash "^4.17.4" 625 | mkdirp "^0.5.1" 626 | source-map-support "^0.4.15" 627 | 628 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 629 | version "6.26.0" 630 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 631 | dependencies: 632 | core-js "^2.4.0" 633 | regenerator-runtime "^0.11.0" 634 | 635 | babel-template@^6.24.1, babel-template@^6.25.0, babel-template@^6.26.0: 636 | version "6.26.0" 637 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 638 | dependencies: 639 | babel-runtime "^6.26.0" 640 | babel-traverse "^6.26.0" 641 | babel-types "^6.26.0" 642 | babylon "^6.18.0" 643 | lodash "^4.17.4" 644 | 645 | babel-traverse@^6.24.1, babel-traverse@^6.25.0, babel-traverse@^6.26.0: 646 | version "6.26.0" 647 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 648 | dependencies: 649 | babel-code-frame "^6.26.0" 650 | babel-messages "^6.23.0" 651 | babel-runtime "^6.26.0" 652 | babel-types "^6.26.0" 653 | babylon "^6.18.0" 654 | debug "^2.6.8" 655 | globals "^9.18.0" 656 | invariant "^2.2.2" 657 | lodash "^4.17.4" 658 | 659 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.25.0, babel-types@^6.26.0: 660 | version "6.26.0" 661 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 662 | dependencies: 663 | babel-runtime "^6.26.0" 664 | esutils "^2.0.2" 665 | lodash "^4.17.4" 666 | to-fast-properties "^1.0.3" 667 | 668 | babylon@^6.18.0: 669 | version "6.18.0" 670 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 671 | 672 | balanced-match@^1.0.0: 673 | version "1.0.0" 674 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 675 | 676 | bcrypt-pbkdf@^1.0.0: 677 | version "1.0.1" 678 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 679 | dependencies: 680 | tweetnacl "^0.14.3" 681 | 682 | binary-extensions@^1.0.0: 683 | version "1.11.0" 684 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 685 | 686 | block-stream@*: 687 | version "0.0.9" 688 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 689 | dependencies: 690 | inherits "~2.0.0" 691 | 692 | boom@2.x.x: 693 | version "2.10.1" 694 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 695 | dependencies: 696 | hoek "2.x.x" 697 | 698 | brace-expansion@^1.1.7: 699 | version "1.1.8" 700 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 701 | dependencies: 702 | balanced-match "^1.0.0" 703 | concat-map "0.0.1" 704 | 705 | braces@^1.8.2: 706 | version "1.8.5" 707 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 708 | dependencies: 709 | expand-range "^1.8.1" 710 | preserve "^0.2.0" 711 | repeat-element "^1.1.2" 712 | 713 | browserslist@^2.1.2: 714 | version "2.11.1" 715 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.11.1.tgz#02fda29d9a2164b879100126e7b0d0b57e43a7bb" 716 | dependencies: 717 | caniuse-lite "^1.0.30000789" 718 | electron-to-chromium "^1.3.30" 719 | 720 | caniuse-lite@^1.0.30000789: 721 | version "1.0.30000791" 722 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000791.tgz#8e35745efd483a3e23bb7d350990326d2319fc16" 723 | 724 | caseless@~0.12.0: 725 | version "0.12.0" 726 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 727 | 728 | chalk@^1.1.3: 729 | version "1.1.3" 730 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 731 | dependencies: 732 | ansi-styles "^2.2.1" 733 | escape-string-regexp "^1.0.2" 734 | has-ansi "^2.0.0" 735 | strip-ansi "^3.0.0" 736 | supports-color "^2.0.0" 737 | 738 | chokidar@^1.6.1: 739 | version "1.7.0" 740 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 741 | dependencies: 742 | anymatch "^1.3.0" 743 | async-each "^1.0.0" 744 | glob-parent "^2.0.0" 745 | inherits "^2.0.1" 746 | is-binary-path "^1.0.0" 747 | is-glob "^2.0.0" 748 | path-is-absolute "^1.0.0" 749 | readdirp "^2.0.0" 750 | optionalDependencies: 751 | fsevents "^1.0.0" 752 | 753 | co@^4.6.0: 754 | version "4.6.0" 755 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 756 | 757 | code-point-at@^1.0.0: 758 | version "1.1.0" 759 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 760 | 761 | combined-stream@^1.0.5, combined-stream@~1.0.5: 762 | version "1.0.5" 763 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 764 | dependencies: 765 | delayed-stream "~1.0.0" 766 | 767 | commander@^2.11.0: 768 | version "2.13.0" 769 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" 770 | 771 | concat-map@0.0.1: 772 | version "0.0.1" 773 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 774 | 775 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 776 | version "1.1.0" 777 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 778 | 779 | convert-source-map@^1.5.0: 780 | version "1.5.1" 781 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 782 | 783 | core-js@^2.4.0, core-js@^2.5.0: 784 | version "2.5.3" 785 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 786 | 787 | core-util-is@1.0.2, core-util-is@~1.0.0: 788 | version "1.0.2" 789 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 790 | 791 | cryptiles@2.x.x: 792 | version "2.0.5" 793 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 794 | dependencies: 795 | boom "2.x.x" 796 | 797 | dashdash@^1.12.0: 798 | version "1.14.1" 799 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 800 | dependencies: 801 | assert-plus "^1.0.0" 802 | 803 | debug@^2.2.0, debug@^2.6.8: 804 | version "2.6.9" 805 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 806 | dependencies: 807 | ms "2.0.0" 808 | 809 | deep-extend@~0.4.0: 810 | version "0.4.2" 811 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 812 | 813 | delayed-stream@~1.0.0: 814 | version "1.0.0" 815 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 816 | 817 | delegates@^1.0.0: 818 | version "1.0.0" 819 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 820 | 821 | detect-indent@^4.0.0: 822 | version "4.0.0" 823 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 824 | dependencies: 825 | repeating "^2.0.0" 826 | 827 | detect-libc@^1.0.2: 828 | version "1.0.3" 829 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 830 | 831 | ecc-jsbn@~0.1.1: 832 | version "0.1.1" 833 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 834 | dependencies: 835 | jsbn "~0.1.0" 836 | 837 | electron-releases@^2.1.0: 838 | version "2.1.0" 839 | resolved "https://registry.yarnpkg.com/electron-releases/-/electron-releases-2.1.0.tgz#c5614bf811f176ce3c836e368a0625782341fd4e" 840 | 841 | electron-to-chromium@^1.3.30: 842 | version "1.3.30" 843 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.30.tgz#9666f532a64586651fc56a72513692e820d06a80" 844 | dependencies: 845 | electron-releases "^2.1.0" 846 | 847 | escape-string-regexp@^1.0.2: 848 | version "1.0.5" 849 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 850 | 851 | esutils@^2.0.2: 852 | version "2.0.2" 853 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 854 | 855 | expand-brackets@^0.1.4: 856 | version "0.1.5" 857 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 858 | dependencies: 859 | is-posix-bracket "^0.1.0" 860 | 861 | expand-range@^1.8.1: 862 | version "1.8.2" 863 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 864 | dependencies: 865 | fill-range "^2.1.0" 866 | 867 | extend@~3.0.0: 868 | version "3.0.1" 869 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 870 | 871 | extglob@^0.3.1: 872 | version "0.3.2" 873 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 874 | dependencies: 875 | is-extglob "^1.0.0" 876 | 877 | extsprintf@1.3.0: 878 | version "1.3.0" 879 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 880 | 881 | extsprintf@^1.2.0: 882 | version "1.4.0" 883 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 884 | 885 | filename-regex@^2.0.0: 886 | version "2.0.1" 887 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 888 | 889 | fill-range@^2.1.0: 890 | version "2.2.3" 891 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 892 | dependencies: 893 | is-number "^2.1.0" 894 | isobject "^2.0.0" 895 | randomatic "^1.1.3" 896 | repeat-element "^1.1.2" 897 | repeat-string "^1.5.2" 898 | 899 | for-in@^1.0.1: 900 | version "1.0.2" 901 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 902 | 903 | for-own@^0.1.4: 904 | version "0.1.5" 905 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 906 | dependencies: 907 | for-in "^1.0.1" 908 | 909 | forever-agent@~0.6.1: 910 | version "0.6.1" 911 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 912 | 913 | form-data@~2.1.1: 914 | version "2.1.4" 915 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 916 | dependencies: 917 | asynckit "^0.4.0" 918 | combined-stream "^1.0.5" 919 | mime-types "^2.1.12" 920 | 921 | fs-readdir-recursive@^1.0.0: 922 | version "1.1.0" 923 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 924 | 925 | fs.realpath@^1.0.0: 926 | version "1.0.0" 927 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 928 | 929 | fsevents@^1.0.0: 930 | version "1.1.3" 931 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 932 | dependencies: 933 | nan "^2.3.0" 934 | node-pre-gyp "^0.6.39" 935 | 936 | fstream-ignore@^1.0.5: 937 | version "1.0.5" 938 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 939 | dependencies: 940 | fstream "^1.0.0" 941 | inherits "2" 942 | minimatch "^3.0.0" 943 | 944 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 945 | version "1.0.11" 946 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 947 | dependencies: 948 | graceful-fs "^4.1.2" 949 | inherits "~2.0.0" 950 | mkdirp ">=0.5 0" 951 | rimraf "2" 952 | 953 | gauge@~2.7.3: 954 | version "2.7.4" 955 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 956 | dependencies: 957 | aproba "^1.0.3" 958 | console-control-strings "^1.0.0" 959 | has-unicode "^2.0.0" 960 | object-assign "^4.1.0" 961 | signal-exit "^3.0.0" 962 | string-width "^1.0.1" 963 | strip-ansi "^3.0.1" 964 | wide-align "^1.1.0" 965 | 966 | getpass@^0.1.1: 967 | version "0.1.7" 968 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 969 | dependencies: 970 | assert-plus "^1.0.0" 971 | 972 | glob-base@^0.3.0: 973 | version "0.3.0" 974 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 975 | dependencies: 976 | glob-parent "^2.0.0" 977 | is-glob "^2.0.0" 978 | 979 | glob-parent@^2.0.0: 980 | version "2.0.0" 981 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 982 | dependencies: 983 | is-glob "^2.0.0" 984 | 985 | glob@^7.0.5, glob@^7.1.2: 986 | version "7.1.2" 987 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 988 | dependencies: 989 | fs.realpath "^1.0.0" 990 | inflight "^1.0.4" 991 | inherits "2" 992 | minimatch "^3.0.4" 993 | once "^1.3.0" 994 | path-is-absolute "^1.0.0" 995 | 996 | globals@^9.18.0: 997 | version "9.18.0" 998 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 999 | 1000 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1001 | version "4.1.11" 1002 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1003 | 1004 | har-schema@^1.0.5: 1005 | version "1.0.5" 1006 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1007 | 1008 | har-validator@~4.2.1: 1009 | version "4.2.1" 1010 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1011 | dependencies: 1012 | ajv "^4.9.1" 1013 | har-schema "^1.0.5" 1014 | 1015 | has-ansi@^2.0.0: 1016 | version "2.0.0" 1017 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1018 | dependencies: 1019 | ansi-regex "^2.0.0" 1020 | 1021 | has-unicode@^2.0.0: 1022 | version "2.0.1" 1023 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1024 | 1025 | hawk@3.1.3, hawk@~3.1.3: 1026 | version "3.1.3" 1027 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1028 | dependencies: 1029 | boom "2.x.x" 1030 | cryptiles "2.x.x" 1031 | hoek "2.x.x" 1032 | sntp "1.x.x" 1033 | 1034 | hoek@2.x.x: 1035 | version "2.16.3" 1036 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1037 | 1038 | home-or-tmp@^2.0.0: 1039 | version "2.0.0" 1040 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1041 | dependencies: 1042 | os-homedir "^1.0.0" 1043 | os-tmpdir "^1.0.1" 1044 | 1045 | http-signature@~1.1.0: 1046 | version "1.1.1" 1047 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1048 | dependencies: 1049 | assert-plus "^0.2.0" 1050 | jsprim "^1.2.2" 1051 | sshpk "^1.7.0" 1052 | 1053 | inflight@^1.0.4: 1054 | version "1.0.6" 1055 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1056 | dependencies: 1057 | once "^1.3.0" 1058 | wrappy "1" 1059 | 1060 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: 1061 | version "2.0.3" 1062 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1063 | 1064 | ini@~1.3.0: 1065 | version "1.3.5" 1066 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1067 | 1068 | invariant@^2.2.2: 1069 | version "2.2.2" 1070 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1071 | dependencies: 1072 | loose-envify "^1.0.0" 1073 | 1074 | is-binary-path@^1.0.0: 1075 | version "1.0.1" 1076 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1077 | dependencies: 1078 | binary-extensions "^1.0.0" 1079 | 1080 | is-buffer@^1.1.5: 1081 | version "1.1.6" 1082 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1083 | 1084 | is-dotfile@^1.0.0: 1085 | version "1.0.3" 1086 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1087 | 1088 | is-equal-shallow@^0.1.3: 1089 | version "0.1.3" 1090 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1091 | dependencies: 1092 | is-primitive "^2.0.0" 1093 | 1094 | is-extendable@^0.1.1: 1095 | version "0.1.1" 1096 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1097 | 1098 | is-extglob@^1.0.0: 1099 | version "1.0.0" 1100 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1101 | 1102 | is-finite@^1.0.0: 1103 | version "1.0.2" 1104 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1105 | dependencies: 1106 | number-is-nan "^1.0.0" 1107 | 1108 | is-fullwidth-code-point@^1.0.0: 1109 | version "1.0.0" 1110 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1111 | dependencies: 1112 | number-is-nan "^1.0.0" 1113 | 1114 | is-glob@^2.0.0, is-glob@^2.0.1: 1115 | version "2.0.1" 1116 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1117 | dependencies: 1118 | is-extglob "^1.0.0" 1119 | 1120 | is-number@^2.1.0: 1121 | version "2.1.0" 1122 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1123 | dependencies: 1124 | kind-of "^3.0.2" 1125 | 1126 | is-number@^3.0.0: 1127 | version "3.0.0" 1128 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1129 | dependencies: 1130 | kind-of "^3.0.2" 1131 | 1132 | is-posix-bracket@^0.1.0: 1133 | version "0.1.1" 1134 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1135 | 1136 | is-primitive@^2.0.0: 1137 | version "2.0.0" 1138 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1139 | 1140 | is-typedarray@~1.0.0: 1141 | version "1.0.0" 1142 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1143 | 1144 | isarray@1.0.0, isarray@~1.0.0: 1145 | version "1.0.0" 1146 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1147 | 1148 | isobject@^2.0.0: 1149 | version "2.1.0" 1150 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1151 | dependencies: 1152 | isarray "1.0.0" 1153 | 1154 | isstream@~0.1.2: 1155 | version "0.1.2" 1156 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1157 | 1158 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1159 | version "3.0.2" 1160 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1161 | 1162 | jsbn@~0.1.0: 1163 | version "0.1.1" 1164 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1165 | 1166 | jsesc@^1.3.0: 1167 | version "1.3.0" 1168 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1169 | 1170 | jsesc@~0.5.0: 1171 | version "0.5.0" 1172 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1173 | 1174 | json-schema@0.2.3: 1175 | version "0.2.3" 1176 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1177 | 1178 | json-stable-stringify@^1.0.1: 1179 | version "1.0.1" 1180 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1181 | dependencies: 1182 | jsonify "~0.0.0" 1183 | 1184 | json-stringify-safe@~5.0.1: 1185 | version "5.0.1" 1186 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1187 | 1188 | json5@^0.5.1: 1189 | version "0.5.1" 1190 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1191 | 1192 | jsonify@~0.0.0: 1193 | version "0.0.0" 1194 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1195 | 1196 | jsprim@^1.2.2: 1197 | version "1.4.1" 1198 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1199 | dependencies: 1200 | assert-plus "1.0.0" 1201 | extsprintf "1.3.0" 1202 | json-schema "0.2.3" 1203 | verror "1.10.0" 1204 | 1205 | kind-of@^3.0.2: 1206 | version "3.2.2" 1207 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1208 | dependencies: 1209 | is-buffer "^1.1.5" 1210 | 1211 | kind-of@^4.0.0: 1212 | version "4.0.0" 1213 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1214 | dependencies: 1215 | is-buffer "^1.1.5" 1216 | 1217 | lodash@^4.17.4: 1218 | version "4.17.4" 1219 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1220 | 1221 | loose-envify@^1.0.0: 1222 | version "1.3.1" 1223 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1224 | dependencies: 1225 | js-tokens "^3.0.0" 1226 | 1227 | micromatch@^2.1.5: 1228 | version "2.3.11" 1229 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1230 | dependencies: 1231 | arr-diff "^2.0.0" 1232 | array-unique "^0.2.1" 1233 | braces "^1.8.2" 1234 | expand-brackets "^0.1.4" 1235 | extglob "^0.3.1" 1236 | filename-regex "^2.0.0" 1237 | is-extglob "^1.0.0" 1238 | is-glob "^2.0.1" 1239 | kind-of "^3.0.2" 1240 | normalize-path "^2.0.1" 1241 | object.omit "^2.0.0" 1242 | parse-glob "^3.0.4" 1243 | regex-cache "^0.4.2" 1244 | 1245 | mime-db@~1.30.0: 1246 | version "1.30.0" 1247 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1248 | 1249 | mime-types@^2.1.12, mime-types@~2.1.7: 1250 | version "2.1.17" 1251 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1252 | dependencies: 1253 | mime-db "~1.30.0" 1254 | 1255 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1256 | version "3.0.4" 1257 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1258 | dependencies: 1259 | brace-expansion "^1.1.7" 1260 | 1261 | minimist@0.0.8: 1262 | version "0.0.8" 1263 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1264 | 1265 | minimist@^1.2.0: 1266 | version "1.2.0" 1267 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1268 | 1269 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1270 | version "0.5.1" 1271 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1272 | dependencies: 1273 | minimist "0.0.8" 1274 | 1275 | ms@2.0.0: 1276 | version "2.0.0" 1277 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1278 | 1279 | nan@^2.3.0: 1280 | version "2.8.0" 1281 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 1282 | 1283 | node-pre-gyp@^0.6.39: 1284 | version "0.6.39" 1285 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 1286 | dependencies: 1287 | detect-libc "^1.0.2" 1288 | hawk "3.1.3" 1289 | mkdirp "^0.5.1" 1290 | nopt "^4.0.1" 1291 | npmlog "^4.0.2" 1292 | rc "^1.1.7" 1293 | request "2.81.0" 1294 | rimraf "^2.6.1" 1295 | semver "^5.3.0" 1296 | tar "^2.2.1" 1297 | tar-pack "^3.4.0" 1298 | 1299 | nopt@^4.0.1: 1300 | version "4.0.1" 1301 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1302 | dependencies: 1303 | abbrev "1" 1304 | osenv "^0.1.4" 1305 | 1306 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1307 | version "2.1.1" 1308 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1309 | dependencies: 1310 | remove-trailing-separator "^1.0.1" 1311 | 1312 | npmlog@^4.0.2: 1313 | version "4.1.2" 1314 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1315 | dependencies: 1316 | are-we-there-yet "~1.1.2" 1317 | console-control-strings "~1.1.0" 1318 | gauge "~2.7.3" 1319 | set-blocking "~2.0.0" 1320 | 1321 | number-is-nan@^1.0.0: 1322 | version "1.0.1" 1323 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1324 | 1325 | oauth-sign@~0.8.1: 1326 | version "0.8.2" 1327 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1328 | 1329 | object-assign@^4.1.0: 1330 | version "4.1.1" 1331 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1332 | 1333 | object.omit@^2.0.0: 1334 | version "2.0.1" 1335 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1336 | dependencies: 1337 | for-own "^0.1.4" 1338 | is-extendable "^0.1.1" 1339 | 1340 | once@^1.3.0, once@^1.3.3: 1341 | version "1.4.0" 1342 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1343 | dependencies: 1344 | wrappy "1" 1345 | 1346 | os-homedir@^1.0.0: 1347 | version "1.0.2" 1348 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1349 | 1350 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1351 | version "1.0.2" 1352 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1353 | 1354 | osenv@^0.1.4: 1355 | version "0.1.4" 1356 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1357 | dependencies: 1358 | os-homedir "^1.0.0" 1359 | os-tmpdir "^1.0.0" 1360 | 1361 | output-file-sync@^1.1.2: 1362 | version "1.1.2" 1363 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1364 | dependencies: 1365 | graceful-fs "^4.1.4" 1366 | mkdirp "^0.5.1" 1367 | object-assign "^4.1.0" 1368 | 1369 | parse-glob@^3.0.4: 1370 | version "3.0.4" 1371 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1372 | dependencies: 1373 | glob-base "^0.3.0" 1374 | is-dotfile "^1.0.0" 1375 | is-extglob "^1.0.0" 1376 | is-glob "^2.0.0" 1377 | 1378 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1379 | version "1.0.1" 1380 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1381 | 1382 | performance-now@^0.2.0: 1383 | version "0.2.0" 1384 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1385 | 1386 | preserve@^0.2.0: 1387 | version "0.2.0" 1388 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1389 | 1390 | private@^0.1.6, private@^0.1.7: 1391 | version "0.1.8" 1392 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 1393 | 1394 | process-nextick-args@~1.0.6: 1395 | version "1.0.7" 1396 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1397 | 1398 | punycode@^1.4.1: 1399 | version "1.4.1" 1400 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1401 | 1402 | qs@~6.4.0: 1403 | version "6.4.0" 1404 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1405 | 1406 | randomatic@^1.1.3: 1407 | version "1.1.7" 1408 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1409 | dependencies: 1410 | is-number "^3.0.0" 1411 | kind-of "^4.0.0" 1412 | 1413 | rc@^1.1.7: 1414 | version "1.2.3" 1415 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.3.tgz#51575a900f8dd68381c710b4712c2154c3e2035b" 1416 | dependencies: 1417 | deep-extend "~0.4.0" 1418 | ini "~1.3.0" 1419 | minimist "^1.2.0" 1420 | strip-json-comments "~2.0.1" 1421 | 1422 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 1423 | version "2.3.3" 1424 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1425 | dependencies: 1426 | core-util-is "~1.0.0" 1427 | inherits "~2.0.3" 1428 | isarray "~1.0.0" 1429 | process-nextick-args "~1.0.6" 1430 | safe-buffer "~5.1.1" 1431 | string_decoder "~1.0.3" 1432 | util-deprecate "~1.0.1" 1433 | 1434 | readdirp@^2.0.0: 1435 | version "2.1.0" 1436 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1437 | dependencies: 1438 | graceful-fs "^4.1.2" 1439 | minimatch "^3.0.2" 1440 | readable-stream "^2.0.2" 1441 | set-immediate-shim "^1.0.1" 1442 | 1443 | regenerate@^1.2.1: 1444 | version "1.3.3" 1445 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 1446 | 1447 | regenerator-runtime@^0.10.5: 1448 | version "0.10.5" 1449 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 1450 | 1451 | regenerator-runtime@^0.11.0: 1452 | version "0.11.1" 1453 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 1454 | 1455 | regenerator-transform@^0.10.0: 1456 | version "0.10.1" 1457 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 1458 | dependencies: 1459 | babel-runtime "^6.18.0" 1460 | babel-types "^6.19.0" 1461 | private "^0.1.6" 1462 | 1463 | regex-cache@^0.4.2: 1464 | version "0.4.4" 1465 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1466 | dependencies: 1467 | is-equal-shallow "^0.1.3" 1468 | 1469 | regexpu-core@^2.0.0: 1470 | version "2.0.0" 1471 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1472 | dependencies: 1473 | regenerate "^1.2.1" 1474 | regjsgen "^0.2.0" 1475 | regjsparser "^0.1.4" 1476 | 1477 | regjsgen@^0.2.0: 1478 | version "0.2.0" 1479 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1480 | 1481 | regjsparser@^0.1.4: 1482 | version "0.1.5" 1483 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1484 | dependencies: 1485 | jsesc "~0.5.0" 1486 | 1487 | remove-trailing-separator@^1.0.1: 1488 | version "1.1.0" 1489 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1490 | 1491 | repeat-element@^1.1.2: 1492 | version "1.1.2" 1493 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1494 | 1495 | repeat-string@^1.5.2: 1496 | version "1.6.1" 1497 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1498 | 1499 | repeating@^2.0.0: 1500 | version "2.0.1" 1501 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1502 | dependencies: 1503 | is-finite "^1.0.0" 1504 | 1505 | request@2.81.0: 1506 | version "2.81.0" 1507 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1508 | dependencies: 1509 | aws-sign2 "~0.6.0" 1510 | aws4 "^1.2.1" 1511 | caseless "~0.12.0" 1512 | combined-stream "~1.0.5" 1513 | extend "~3.0.0" 1514 | forever-agent "~0.6.1" 1515 | form-data "~2.1.1" 1516 | har-validator "~4.2.1" 1517 | hawk "~3.1.3" 1518 | http-signature "~1.1.0" 1519 | is-typedarray "~1.0.0" 1520 | isstream "~0.1.2" 1521 | json-stringify-safe "~5.0.1" 1522 | mime-types "~2.1.7" 1523 | oauth-sign "~0.8.1" 1524 | performance-now "^0.2.0" 1525 | qs "~6.4.0" 1526 | safe-buffer "^5.0.1" 1527 | stringstream "~0.0.4" 1528 | tough-cookie "~2.3.0" 1529 | tunnel-agent "^0.6.0" 1530 | uuid "^3.0.0" 1531 | 1532 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 1533 | version "2.6.2" 1534 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1535 | dependencies: 1536 | glob "^7.0.5" 1537 | 1538 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1539 | version "5.1.1" 1540 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1541 | 1542 | semver@^5.3.0: 1543 | version "5.4.1" 1544 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 1545 | 1546 | set-blocking@~2.0.0: 1547 | version "2.0.0" 1548 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1549 | 1550 | set-immediate-shim@^1.0.1: 1551 | version "1.0.1" 1552 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1553 | 1554 | signal-exit@^3.0.0: 1555 | version "3.0.2" 1556 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1557 | 1558 | slash@^1.0.0: 1559 | version "1.0.0" 1560 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1561 | 1562 | sntp@1.x.x: 1563 | version "1.0.9" 1564 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1565 | dependencies: 1566 | hoek "2.x.x" 1567 | 1568 | source-map-support@^0.4.15: 1569 | version "0.4.18" 1570 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 1571 | dependencies: 1572 | source-map "^0.5.6" 1573 | 1574 | source-map@^0.5.6: 1575 | version "0.5.7" 1576 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1577 | 1578 | sshpk@^1.7.0: 1579 | version "1.13.1" 1580 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 1581 | dependencies: 1582 | asn1 "~0.2.3" 1583 | assert-plus "^1.0.0" 1584 | dashdash "^1.12.0" 1585 | getpass "^0.1.1" 1586 | optionalDependencies: 1587 | bcrypt-pbkdf "^1.0.0" 1588 | ecc-jsbn "~0.1.1" 1589 | jsbn "~0.1.0" 1590 | tweetnacl "~0.14.0" 1591 | 1592 | string-width@^1.0.1, string-width@^1.0.2: 1593 | version "1.0.2" 1594 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1595 | dependencies: 1596 | code-point-at "^1.0.0" 1597 | is-fullwidth-code-point "^1.0.0" 1598 | strip-ansi "^3.0.0" 1599 | 1600 | string_decoder@~1.0.3: 1601 | version "1.0.3" 1602 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 1603 | dependencies: 1604 | safe-buffer "~5.1.0" 1605 | 1606 | stringstream@~0.0.4: 1607 | version "0.0.5" 1608 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1609 | 1610 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1611 | version "3.0.1" 1612 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1613 | dependencies: 1614 | ansi-regex "^2.0.0" 1615 | 1616 | strip-json-comments@~2.0.1: 1617 | version "2.0.1" 1618 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1619 | 1620 | supports-color@^2.0.0: 1621 | version "2.0.0" 1622 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1623 | 1624 | tar-pack@^3.4.0: 1625 | version "3.4.1" 1626 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 1627 | dependencies: 1628 | debug "^2.2.0" 1629 | fstream "^1.0.10" 1630 | fstream-ignore "^1.0.5" 1631 | once "^1.3.3" 1632 | readable-stream "^2.1.4" 1633 | rimraf "^2.5.1" 1634 | tar "^2.2.1" 1635 | uid-number "^0.0.6" 1636 | 1637 | tar@^2.2.1: 1638 | version "2.2.1" 1639 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1640 | dependencies: 1641 | block-stream "*" 1642 | fstream "^1.0.2" 1643 | inherits "2" 1644 | 1645 | to-fast-properties@^1.0.3: 1646 | version "1.0.3" 1647 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 1648 | 1649 | tough-cookie@~2.3.0: 1650 | version "2.3.3" 1651 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 1652 | dependencies: 1653 | punycode "^1.4.1" 1654 | 1655 | trim-right@^1.0.1: 1656 | version "1.0.1" 1657 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 1658 | 1659 | tunnel-agent@^0.6.0: 1660 | version "0.6.0" 1661 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1662 | dependencies: 1663 | safe-buffer "^5.0.1" 1664 | 1665 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1666 | version "0.14.5" 1667 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1668 | 1669 | uid-number@^0.0.6: 1670 | version "0.0.6" 1671 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1672 | 1673 | user-home@^1.1.1: 1674 | version "1.1.1" 1675 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 1676 | 1677 | util-deprecate@~1.0.1: 1678 | version "1.0.2" 1679 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1680 | 1681 | uuid@^3.0.0: 1682 | version "3.1.0" 1683 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 1684 | 1685 | v8flags@^2.1.1: 1686 | version "2.1.1" 1687 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 1688 | dependencies: 1689 | user-home "^1.1.1" 1690 | 1691 | verror@1.10.0: 1692 | version "1.10.0" 1693 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1694 | dependencies: 1695 | assert-plus "^1.0.0" 1696 | core-util-is "1.0.2" 1697 | extsprintf "^1.2.0" 1698 | 1699 | wide-align@^1.1.0: 1700 | version "1.1.2" 1701 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 1702 | dependencies: 1703 | string-width "^1.0.2" 1704 | 1705 | wrappy@1: 1706 | version "1.0.2" 1707 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1708 | --------------------------------------------------------------------------------