├── .babelrc ├── .github └── FUNDING.yml ├── .gitignore ├── .npmignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── demo ├── bundle.js ├── es5.js ├── index.html └── index.js ├── media └── chatit-banner.png ├── package.json ├── precompile.sh ├── src ├── BubbleGroup │ ├── README.md │ ├── index.tsx │ ├── interface.ts │ └── styles.ts ├── ChatBubble │ ├── README.md │ ├── index.tsx │ ├── interface.ts │ └── styles.ts ├── ChatFeed │ ├── README.md │ ├── index.tsx │ └── styles.ts ├── ChatInput │ └── index.tsx ├── Message │ ├── README.md │ └── index.ts └── index.ts ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-0", "react"] 3 | } 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [brandonmowat] 4 | open_collective: # Replace with a single Open Collective username 5 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 6 | custom: # Replace with a single custom sponsorship URL -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | temp 4 | .DS_Store 5 | .idea 6 | yarn-error.log 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | temp 3 | demo 4 | *.DS_Store 5 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2017 Brandon Mowat 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 | ![react-chat-ui logo](https://i.imgur.com/YhPrFWw.png) 2 | 3 | # 🙊 react-chat-ui 4 | 5 | A library of React components for building chat UI's. 6 | 7 | [![NPM](https://nodei.co/npm/react-chat-ui.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/react-chat-ui/) 8 | 9 | ## Sponsor 10 | 11 | Sponsored by [Pusher Chatkit](https://pusher.com/chatkit?utm_source=github&utm_campaign=react-chat-ui-sponsorship): 12 | 13 | 14 | Pusher Chatkit 15 | 16 | ## Features 17 | 18 | * Auto scroll to bottom 19 | * SUPER easy to use 20 | * Multiple user grouping (try it out in the demo) 21 | 22 | Keep in mind that this project is still in the early stages of development. If you encounter a bug or have a feature request, please create an issue and/or tweet at me [here](http://twitter.com/brandonmowat). 23 | 24 | ## Installation 25 | 26 | `npm install react-chat-ui --save` 27 | 28 | ## Basic Usage 29 | 30 | ```javascript 31 | import { ChatFeed, Message } from 'react-chat-ui' 32 | 33 | // Your code stuff... 34 | 35 | render() { 36 | 37 | return ( 38 | 39 | // Your JSX... 40 | 41 | 60 | 61 | // Your JSX... 62 | 63 | ) 64 | 65 | } 66 | ``` 67 | 68 | Make sure to keep a list of proper message objects in your class state. 69 | Like so: 70 | 71 | ```javascript 72 | //... 73 | this.state = { 74 | messages: [ 75 | new Message({ 76 | id: 1, 77 | message: "I'm the recipient! (The person you're talking to)", 78 | }), // Gray bubble 79 | new Message({ id: 0, message: "I'm you -- the blue bubble!" }), // Blue bubble 80 | ], 81 | //... 82 | }; 83 | //... 84 | ``` 85 | 86 | ## API 87 | 88 | * [ChatFeed](./src/ChatFeed) 89 | * [Message](./src/Message) 90 | * [ChatBubble](./src/ChatBubble) 91 | * [BubbleGroup](./src/BubbleGroup) 92 | 93 | ## Contributing!¡1 🔧 94 | 95 | Contributions are always welcomed and encouraged. If you don't want to write a feature request yourself, let ya boi know (either on [Twitter](http://twitter.com/brandonmowat) or by creating a Pull Request) and I'll get that shit coded right up. 96 | 97 | ## TODO 98 | 99 | * documentation 100 | * documentation 101 | * documentation 102 | 103 | ## Development 104 | 105 | ```sh 106 | yarn dev 107 | ``` 108 | -------------------------------------------------------------------------------- /demo/es5.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; 4 | 5 | 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; }; }(); 6 | 7 | var _react = require('react'); 8 | 9 | var _react2 = _interopRequireDefault(_react); 10 | 11 | var _reactDom = require('react-dom'); 12 | 13 | var _lib = require('../lib'); 14 | 15 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 16 | 17 | function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } 18 | 19 | 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; } 20 | 21 | 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; } 22 | 23 | var styles = { 24 | button: { 25 | backgroundColor: '#fff', 26 | borderColor: '#1D2129', 27 | borderStyle: 'solid', 28 | borderRadius: 20, 29 | borderWidth: 2, 30 | color: '#1D2129', 31 | fontSize: 18, 32 | fontWeight: '300', 33 | paddingTop: 8, 34 | paddingBottom: 8, 35 | paddingLeft: 16, 36 | paddingRight: 16 37 | }, 38 | selected: { 39 | color: '#fff', 40 | backgroundColor: '#0084FF', 41 | borderColor: '#0084FF' 42 | } 43 | }; 44 | 45 | var users = { 46 | 0: 'You', 47 | Mark: 'Mark', 48 | 2: 'Evan' 49 | }; 50 | 51 | var customBubble = function customBubble(props) { 52 | return _react2.default.createElement( 53 | 'div', 54 | null, 55 | _react2.default.createElement( 56 | 'p', 57 | null, 58 | props.message.senderName + ' ' + (props.message.id ? 'says' : 'said') + ': ' + props.message.message 59 | ) 60 | ); 61 | }; 62 | 63 | var Chat = function (_React$Component) { 64 | _inherits(Chat, _React$Component); 65 | 66 | function Chat() { 67 | _classCallCheck(this, Chat); 68 | 69 | var _this = _possibleConstructorReturn(this, (Chat.__proto__ || Object.getPrototypeOf(Chat)).call(this)); 70 | 71 | _this.state = { 72 | messages: [new _lib.Message({ id: 'Mark', message: 'Hey guys!', senderName: 'Mark' }), new _lib.Message({ 73 | id: 2, 74 | message: 'Hey! Evan here. react-chat-ui is pretty dooope.', 75 | senderName: 'Evan' 76 | })], 77 | useCustomBubble: false, 78 | curr_user: 0 79 | }; 80 | return _this; 81 | } 82 | 83 | _createClass(Chat, [{ 84 | key: 'onPress', 85 | value: function onPress(user) { 86 | this.setState({ curr_user: user }); 87 | } 88 | }, { 89 | key: 'onMessageSubmit', 90 | value: function onMessageSubmit(e) { 91 | var input = this.message; 92 | e.preventDefault(); 93 | if (!input.value) { 94 | return false; 95 | } 96 | this.pushMessage(this.state.curr_user, input.value); 97 | input.value = ''; 98 | return true; 99 | } 100 | }, { 101 | key: 'pushMessage', 102 | value: function pushMessage(recipient, message) { 103 | var prevState = this.state; 104 | var newMessage = new _lib.Message({ 105 | id: recipient, 106 | message: message, 107 | senderName: users[recipient] 108 | }); 109 | prevState.messages.push(newMessage); 110 | this.setState(this.state); 111 | } 112 | }, { 113 | key: 'render', 114 | value: function render() { 115 | var _this2 = this; 116 | 117 | return _react2.default.createElement( 118 | 'div', 119 | { className: 'container' }, 120 | _react2.default.createElement( 121 | 'h1', 122 | { className: 'text-center' }, 123 | 'react-chat-ui' 124 | ), 125 | _react2.default.createElement( 126 | 'p', 127 | { className: 'text-center' }, 128 | _react2.default.createElement( 129 | 'a', 130 | { 131 | href: 'https://github.com/brandonmowat/react-chat-ui', 132 | target: '_blank' 133 | }, 134 | 'Github' 135 | ) 136 | ), 137 | _react2.default.createElement( 138 | 'div', 139 | { className: 'install' }, 140 | _react2.default.createElement( 141 | 'code', 142 | null, 143 | 'npm i -S react-chat-ui' 144 | ) 145 | ), 146 | _react2.default.createElement( 147 | 'div', 148 | { className: 'chatfeed-wrapper' }, 149 | _react2.default.createElement(_lib.ChatFeed, { 150 | chatBubble: this.state.useCustomBubble && customBubble, 151 | maxHeight: 250, 152 | messages: this.state.messages // Boolean: list of message objects 153 | , showSenderName: true 154 | }), 155 | _react2.default.createElement( 156 | 'form', 157 | { onSubmit: function onSubmit(e) { 158 | return _this2.onMessageSubmit(e); 159 | } }, 160 | _react2.default.createElement('input', { 161 | ref: function ref(m) { 162 | _this2.message = m; 163 | }, 164 | placeholder: 'Type a message...', 165 | className: 'message-input' 166 | }) 167 | ), 168 | _react2.default.createElement( 169 | 'div', 170 | { style: { display: 'flex', justifyContent: 'space-around' } }, 171 | _react2.default.createElement( 172 | 'button', 173 | { 174 | style: _extends({}, styles.button, this.state.curr_user === 0 ? styles.selected : {}), 175 | onClick: function onClick() { 176 | return _this2.onPress(0); 177 | } 178 | }, 179 | 'You' 180 | ), 181 | _react2.default.createElement( 182 | 'button', 183 | { 184 | style: _extends({}, styles.button, this.state.curr_user === 'Mark' ? styles.selected : {}), 185 | onClick: function onClick() { 186 | return _this2.onPress('Mark'); 187 | } 188 | }, 189 | 'Mark' 190 | ), 191 | _react2.default.createElement( 192 | 'button', 193 | { 194 | style: _extends({}, styles.button, this.state.curr_user === 2 ? styles.selected : {}), 195 | onClick: function onClick() { 196 | return _this2.onPress(2); 197 | } 198 | }, 199 | 'Evan' 200 | ) 201 | ), 202 | _react2.default.createElement( 203 | 'div', 204 | { 205 | style: { display: 'flex', justifyContent: 'center', marginTop: 10 } 206 | }, 207 | _react2.default.createElement( 208 | 'button', 209 | { 210 | style: _extends({}, styles.button, this.state.useCustomBubble ? styles.selected : {}), 211 | onClick: function onClick() { 212 | return _this2.setState({ useCustomBubble: !_this2.state.useCustomBubble }); 213 | } 214 | }, 215 | 'Custom Bubbles' 216 | ) 217 | ) 218 | ), 219 | _react2.default.createElement( 220 | 'h2', 221 | { className: 'text-center' }, 222 | 'There are Bubbles!' 223 | ), 224 | _react2.default.createElement(_lib.ChatBubble, { 225 | message: new _lib.Message({ id: 1, message: 'I float to the left!' }) 226 | }), 227 | _react2.default.createElement(_lib.ChatBubble, { 228 | message: new _lib.Message({ id: 0, message: 'I float to the right!' }) 229 | }), 230 | _react2.default.createElement( 231 | 'h2', 232 | { className: 'text-center' }, 233 | 'And we have Bubble Groups!' 234 | ), 235 | _react2.default.createElement(_lib.BubbleGroup, { 236 | messages: [new _lib.Message({ id: 1, message: 'Hey!' }), new _lib.Message({ id: 1, message: 'I forgot to mention...' }), new _lib.Message({ 237 | id: 1, 238 | message: "Oh no, I forgot... I think I was going to say I'm a BubbleGroup" 239 | })], 240 | id: 1, 241 | showSenderName: true, 242 | senderName: 'Elon Musk' 243 | }), 244 | _react2.default.createElement(_lib.ChatBubble, { 245 | message: new _lib.Message({ id: 2, message: "I 'm a single ChatBubble!" }) 246 | }), 247 | _react2.default.createElement(_lib.BubbleGroup, { 248 | messages: [new _lib.Message({ id: 0, message: 'How could you forget already?!' }), new _lib.Message({ 249 | id: 0, 250 | message: "Oh well. I'm a BubbleGroup as well" 251 | })], 252 | id: 1, 253 | showSenderName: true, 254 | senderName: 'Elon Musk' 255 | }) 256 | ); 257 | } 258 | }]); 259 | 260 | return Chat; 261 | }(_react2.default.Component); 262 | 263 | (0, _reactDom.render)(_react2.default.createElement(Chat, null), document.getElementById('chat-ui')); 264 | -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 82 | 83 | 84 | 85 |
86 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /demo/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { render } from 'react-dom'; 3 | import { ChatFeed, ChatBubble, BubbleGroup, Message } from '../lib'; 4 | 5 | const styles = { 6 | button: { 7 | backgroundColor: '#fff', 8 | borderColor: '#1D2129', 9 | borderStyle: 'solid', 10 | borderRadius: 20, 11 | borderWidth: 2, 12 | color: '#1D2129', 13 | fontSize: 18, 14 | fontWeight: '300', 15 | paddingTop: 8, 16 | paddingBottom: 8, 17 | paddingLeft: 16, 18 | paddingRight: 16, 19 | }, 20 | selected: { 21 | color: '#fff', 22 | backgroundColor: '#0084FF', 23 | borderColor: '#0084FF', 24 | }, 25 | }; 26 | 27 | const users = { 28 | 0: 'You', 29 | Mark: 'Mark', 30 | 2: 'Evan', 31 | }; 32 | 33 | const customBubble = props => ( 34 |
35 |

{`${props.message.senderName} ${props.message.id ? 'says' : 'said'}: ${ 36 | props.message.message 37 | }`}

38 |
39 | ); 40 | 41 | class Chat extends React.Component { 42 | constructor() { 43 | super(); 44 | this.state = { 45 | messages: [ 46 | new Message({ id: 'Mark', message: 'Hey guys!', senderName: 'Mark' }), 47 | new Message({ 48 | id: 2, 49 | message: 'Hey! Evan here. react-chat-ui is pretty dooope.', 50 | senderName: 'Evan', 51 | }), 52 | ], 53 | useCustomBubble: false, 54 | curr_user: 0, 55 | }; 56 | } 57 | 58 | onPress(user) { 59 | this.setState({ curr_user: user }); 60 | } 61 | 62 | onMessageSubmit(e) { 63 | const input = this.message; 64 | e.preventDefault(); 65 | if (!input.value) { 66 | return false; 67 | } 68 | this.pushMessage(this.state.curr_user, input.value); 69 | input.value = ''; 70 | return true; 71 | } 72 | 73 | pushMessage(recipient, message) { 74 | const prevState = this.state; 75 | const newMessage = new Message({ 76 | id: recipient, 77 | message, 78 | senderName: users[recipient], 79 | }); 80 | prevState.messages.push(newMessage); 81 | this.setState(this.state); 82 | } 83 | 84 | render() { 85 | return ( 86 |
87 |

react-chat-ui

88 |

89 | 93 | Github 94 | 95 |

96 |
97 | npm i -S react-chat-ui 98 |
99 |
100 | 106 | 107 |
this.onMessageSubmit(e)}> 108 | { 110 | this.message = m; 111 | }} 112 | placeholder="Type a message..." 113 | className="message-input" 114 | /> 115 |
116 | 117 |
118 | 127 | 136 | 145 |
146 |
149 | 160 |
161 |
162 |

There are Bubbles!

163 | 166 | 169 | 170 |

And we have Bubble Groups!

171 | 185 | 188 | 200 |
201 | ); 202 | } 203 | } 204 | 205 | render(, document.getElementById('chat-ui')); 206 | -------------------------------------------------------------------------------- /media/chatit-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonmowat/react-chat-ui/80704559521d71bdf2703de3f15548e49ee474b7/media/chatit-banner.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-chat-ui", 3 | "version": "0.4.0", 4 | "description": "A library of React components for building chat UI's", 5 | "repository": "https://github.com/brandonmowat/react-chat-ui", 6 | "main": "./lib/index.js", 7 | "scripts": { 8 | "build-demo": "npx babel --presets es2015,stage-0 ./demo/index.js -o ./demo/es5.js && npx browserify demo/es5.js -o demo/bundle.js", 9 | "compile": "./precompile.sh", 10 | "prepublish": "yarn compile", 11 | "test": "echo \"Error: no test specified\" && exit 1", 12 | "dev": "tsc --watch" 13 | }, 14 | "keywords": [ 15 | "react", 16 | "chat", 17 | "chatfeed", 18 | "reactjs", 19 | "ui", 20 | "messenger" 21 | ], 22 | "author": "Brandon Mowat", 23 | "license": "ISC", 24 | "dependencies": { 25 | "@types/react": "^16.9.2", 26 | "prop-types": "^15.5.10" 27 | }, 28 | "peerDependencies": { 29 | "react": "^16.8.6", 30 | "react-dom": "^16.8.6" 31 | }, 32 | "devDependencies": { 33 | "babel-cli": "^6.26.0", 34 | "babel-core": "^6.1.18", 35 | "babel-preset-es2015": "^6.1.18", 36 | "babel-preset-react": "^6.1.18", 37 | "babel-preset-stage-0": "^6.1.18", 38 | "browserify": "^14.4.0", 39 | "react": "^16.9.0", 40 | "react-dom": "^16.8.6", 41 | "typescript": "^3.6.3" 42 | } 43 | } -------------------------------------------------------------------------------- /precompile.sh: -------------------------------------------------------------------------------- 1 | tsc || echo done -------------------------------------------------------------------------------- /src/BubbleGroup/README.md: -------------------------------------------------------------------------------- 1 | # BubbleGroup 2 | 3 | A `BubbleGroup` renders a group of [ChatBubble](../ChatBubble)'s and can show the senders name atop the group. 4 | 5 | #### Props 6 | 7 | * **messages** _[Message]_: A list of messages you's like to render inside one group. _All messages must have the same id_. 8 | * **id** _number_: The id (identifier for the type of bubble i.e., gray or blue. 0 is reserved for the blue bubble). 9 | * **showSenderName** _boolean_: Should the sender's name appear atop the group? 10 | * **senderName** _string_: The sender's name. If this is undefined and `showSenderName` is true, it will sample the first message in the `messages`. 11 | * **chatBubble** _ChatBubble_ (optional): the type of bubble you'd like to render. (Default is [ChatBubble](../ChatBubble)). 12 | 13 | #### Usage 14 | 15 | ```javascript 16 | 22 | ``` 23 | -------------------------------------------------------------------------------- /src/BubbleGroup/index.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import BubbleGroupInterface from './interface'; 3 | import DefaultChatBubble from '../ChatBubble'; 4 | import Message from '../Message'; 5 | import styles from './styles'; 6 | 7 | export default class BubbleGroup extends React.Component { 8 | props; 9 | 10 | constructor(props: BubbleGroupInterface) { 11 | super(props); 12 | } 13 | 14 | /** 15 | * Parses and collects messages of one type to be grouped together. 16 | * @return {messageNodes} - a JSX wrapped group of messages 17 | */ 18 | renderGroup(messages: [Message], id: number) { 19 | const { 20 | bubblesCentered, 21 | bubbleStyles, 22 | showSenderName, 23 | chatBubble, 24 | senderName, 25 | } = this.props; 26 | const ChatBubble = chatBubble || DefaultChatBubble; 27 | const sampleMessage = messages[0]; 28 | 29 | const messageNodes = messages.map((message, i) => { 30 | return ( 31 | 37 | ); 38 | }); 39 | 40 | return ( 41 |
42 | {showSenderName && 43 | ((senderName || sampleMessage.senderName) !== '' && 44 | (sampleMessage.id !== 0 && ( 45 |
46 | {senderName || sampleMessage.senderName} 47 |
48 | )))} 49 | {messageNodes} 50 |
51 | ); 52 | } 53 | 54 | render() { 55 | const { messages, id } = this.props; 56 | return this.renderGroup(messages, id); 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /src/BubbleGroup/interface.ts: -------------------------------------------------------------------------------- 1 | import { Message, ChatBubble } from '../'; 2 | export default interface BubbleGroupInterface { 3 | messages: Message[]; 4 | id: number | string; 5 | showSenderName: boolean; 6 | chatBubble: ChatBubble; 7 | key?: string | number; 8 | bubbleStyles?: object; 9 | }; 10 | -------------------------------------------------------------------------------- /src/BubbleGroup/styles.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | chatbubbleWrapper: { 3 | marginTop: 10, 4 | marginBottom: 10, 5 | overflow: 'auto', 6 | position: 'relative' as 'relative', 7 | }, 8 | bubbleGroupHeader: { 9 | margin: 0, 10 | fontSize: 14, 11 | fontWeight: 400, 12 | color: '#999', 13 | }, 14 | }; 15 | -------------------------------------------------------------------------------- /src/ChatBubble/README.md: -------------------------------------------------------------------------------- 1 | ## ChatBubble 2 | 3 | The `ChatBubble` component basically just turns a given string into chat bubble. And depending on the `id` you give it, it will render in the correct colour and alignment. 4 | 5 | #### Props 6 | 7 | **message**: This must be a valid [Message](../Message) object. 8 | **bubbleStyles** (optional): styles to apply to the chat bubbles _(will probably change. I will update this page with a proposal)_ 9 | 10 | ```javascript 11 | bubbleStyles={{ 12 | userBubble: object 13 | chatbubble: object 14 | text: object 15 | }} 16 | ``` 17 | 18 | **bubblesCentered** (optional): a boolean to determine whether the bubbles should be centered. 19 | 20 | #### Usage 21 | 22 | ```javascript 23 | import React from 'react'; 24 | import { ChatBubble, Message } from 'react-chat-ui'; 25 | 26 | class MyChatBubble extends React.Component { 27 | render() { 28 | const message = new Message(0, "Hello World!"); 29 | return 30 | } 31 | } 32 | ``` 33 | -------------------------------------------------------------------------------- /src/ChatBubble/index.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import ChatBubbleProps from './interface'; 3 | import styles from './styles'; 4 | 5 | const defaultBubbleStyles = { 6 | userBubble: {}, 7 | chatbubble: {}, 8 | text: {}, 9 | }; 10 | 11 | export default class ChatBubble extends React.Component { 12 | props; 13 | 14 | constructor(props: ChatBubbleProps) { 15 | super(props); 16 | } 17 | 18 | public render() { 19 | const { bubblesCentered } = this.props; 20 | let { bubbleStyles } = this.props; 21 | bubbleStyles = bubbleStyles || defaultBubbleStyles; 22 | const { userBubble, chatbubble, text } = bubbleStyles; 23 | 24 | // message.id 0 is reserved for blue 25 | const chatBubbleStyles = 26 | this.props.message.id === 0 27 | ? { 28 | ...styles.chatbubble, 29 | ...bubblesCentered ? {} : styles.chatbubbleOrientationNormal, 30 | ...chatbubble, 31 | ...userBubble, 32 | } 33 | : { 34 | ...styles.chatbubble, 35 | ...styles.recipientChatbubble, 36 | ...bubblesCentered 37 | ? {} 38 | : styles.recipientChatbubbleOrientationNormal, 39 | ...userBubble, 40 | ...chatbubble, 41 | }; 42 | 43 | return ( 44 |
49 |
50 |

{this.props.message.message}

51 |
52 |
53 | ); 54 | } 55 | } 56 | 57 | export { ChatBubbleProps }; 58 | -------------------------------------------------------------------------------- /src/ChatBubble/interface.ts: -------------------------------------------------------------------------------- 1 | import Message from '../Message'; 2 | export default interface ChatBubbleProps { 3 | message: Message 4 | bubbleStyles: { 5 | userBubble: object 6 | chatbubble: object 7 | text: object 8 | } 9 | bubblesCentered: boolean 10 | } 11 | -------------------------------------------------------------------------------- /src/ChatBubble/styles.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | chatbubbleWrapper: { 3 | overflow: 'auto', 4 | }, 5 | chatbubble: { 6 | backgroundColor: '#0084FF', 7 | borderRadius: 20, 8 | marginTop: 1, 9 | marginRight: 'auto', 10 | marginBottom: 1, 11 | marginLeft: 'auto', 12 | maxWidth: 425, 13 | paddingTop: 8, 14 | paddingBottom: 8, 15 | paddingLeft: 14, 16 | paddingRight: 14, 17 | width: '-webkit-fit-content', 18 | }, 19 | chatbubbleOrientationNormal: { 20 | float: 'right', 21 | }, 22 | recipientChatbubble: { 23 | backgroundColor: '#ccc', 24 | }, 25 | recipientChatbubbleOrientationNormal: { 26 | float: 'left', 27 | }, 28 | p: { 29 | color: '#FFFFFF', 30 | fontSize: 16, 31 | fontWeight: '300', 32 | margin: 0, 33 | }, 34 | }; 35 | -------------------------------------------------------------------------------- /src/ChatFeed/README.md: -------------------------------------------------------------------------------- 1 | ## ChatFeed 2 | 3 | The `ChatFeed` component is your one stop shop for all your chat needs. If you don't want to manage your own chat feed, this is a great place to start. You don't need to worry about anything other than your messages. 4 | 5 | #### Props 6 | 7 | * **bubblesCentered**: `Boolean` - should the bubbles be centered in the `ChatFeed`? 8 | * **bubbleStyles**: `Object` - some custom styles to be applied to the bubble div and/or text within the bubble. 9 | * **chatBubble** _new_: `React.Component` - A custom chat bubble that you can make yourself! (If you're using TypeScript for your project, you can `import` the `ChatBubbleProps` for your components `constructor`) 10 | * **isTyping**: `Boolean` - Should we append an ellipses to the end of the feed? 11 | * **maxHeight**: `number` - The max height of the chat feed, in pixels. 12 | * **messages**: `Array` - An array of `Message` objects. The `ChatFeed` will convert these to bubbles for you and handle all rendering logic. 13 | * **showSenderName**: `Boolean` - Should the bubbles show the name of the sender? 14 | 15 | ```javascript 16 | import React from 'react'; 17 | import { ChatFeed, Message, ChatBubbleProps } from 'react-chat-ui'; 18 | import MyChatBubble from './MyChatBubble'; 19 | 20 | class MyChat extends React.Component { 21 | render() { 22 | return ( 23 | 28 | ); 29 | } 30 | } 31 | ``` 32 | -------------------------------------------------------------------------------- /src/ChatFeed/index.tsx: -------------------------------------------------------------------------------- 1 | // Copyright 2017 Brandon Mowat 2 | // Written, developed, and designed by Brandon Mowat for the purpose of helping 3 | // other developers make chat interfaces. 4 | 5 | import * as React from 'react'; 6 | import BubbleGroup from '../BubbleGroup'; 7 | import DefaultChatBubble from '../ChatBubble'; 8 | import ChatInput from '../ChatInput'; 9 | import Message from '../Message'; 10 | import styles from './styles'; 11 | 12 | // Model for ChatFeed props. 13 | interface ChatFeedInterface { 14 | props: { 15 | bubblesCentered?: boolean; 16 | bubbleStyles?: object; 17 | hasInputField?: boolean; 18 | isTyping?: boolean; 19 | maxHeight?: number; 20 | messages: any; 21 | showSenderName?: boolean; 22 | chatBubble?: React.Component; 23 | preventConflictingAutoScroll?: boolean; 24 | }; 25 | } 26 | 27 | // React component to render a complete chat feed 28 | export default class ChatFeed extends React.Component { 29 | static defaultProps = { 30 | preventConflictingAutoScroll: true, 31 | }; 32 | // If the user scrolls this close to the bottom of the feed, we will re-enable autoscroll 33 | static MANUAL_SCROLL_BOTTOM_MARGIN = 20; 34 | 35 | props; 36 | chat: { 37 | scrollHeight: number; 38 | clientHeight: number; 39 | scrollTop: number; 40 | addEventListener: Function; 41 | removeEventListener: Function; 42 | }; 43 | _hasUserScrolledUp: boolean = false; 44 | 45 | constructor(props: ChatFeedInterface) { 46 | super(props); 47 | this.handleScrollEvent = this.handleScrollEvent.bind(this); 48 | } 49 | 50 | componentDidMount() { 51 | this.scrollToBottom(); 52 | this.chat.addEventListener('scroll', this.handleScrollEvent); 53 | } 54 | 55 | componentDidUpdate() { 56 | const {preventConflictingAutoScroll} = this.props; 57 | if (preventConflictingAutoScroll && this._hasUserScrolledUp) { 58 | return; 59 | } 60 | this.scrollToBottom(); 61 | } 62 | 63 | private getMaxScrollTop(): number { 64 | if (!this.chat) return 0; 65 | const scrollHeight = this.chat.scrollHeight; 66 | const height = this.chat.clientHeight; 67 | return scrollHeight - height; 68 | } 69 | 70 | scrollToBottom() { 71 | const maxScrollTop = this.getMaxScrollTop(); 72 | this.chat.scrollTop = maxScrollTop > 0 ? maxScrollTop : 0; 73 | } 74 | 75 | componentWillUnmount(): void { 76 | this.chat.removeEventListener('scroll', this.handleScrollEvent); 77 | } 78 | 79 | private handleScrollEvent(event: Event) { 80 | if (!this.chat) return; 81 | const maxScrollTop = this.getMaxScrollTop(); 82 | if (this.chat.scrollTop < maxScrollTop - ChatFeed.MANUAL_SCROLL_BOTTOM_MARGIN) { 83 | this._hasUserScrolledUp = true; 84 | } else { 85 | this._hasUserScrolledUp = false; 86 | } 87 | } 88 | 89 | /** 90 | * Determines what type of message/messages to render. 91 | */ 92 | renderMessages(messages: [Message]) { 93 | const { isTyping, bubbleStyles, chatBubble, showSenderName } = this.props; 94 | 95 | const ChatBubble = chatBubble || DefaultChatBubble; 96 | 97 | let group = []; 98 | 99 | const messageNodes = messages.map((message, index) => { 100 | group.push(message); 101 | // Find diff in message type or no more messages 102 | if (index === messages.length - 1 || messages[index + 1].id !== message.id) { 103 | const messageGroup = group; 104 | group = []; 105 | return ( 106 | 114 | ); 115 | } 116 | 117 | return null; 118 | }); 119 | 120 | // Other end is typing... 121 | if (isTyping) { 122 | messageNodes.push( 123 |
124 | 128 |
129 | ); 130 | } 131 | 132 | // return nodes 133 | return messageNodes; 134 | } 135 | 136 | /** 137 | * render : renders our chatfeed 138 | */ 139 | render() { 140 | const inputField = this.props.hasInputField && ; 141 | const { maxHeight } = this.props; 142 | 143 | return ( 144 |
145 |
{ 147 | this.chat = c; 148 | }} 149 | className="chat-history" 150 | style={{ ...styles.chatHistory, maxHeight }} 151 | > 152 |
153 | {this.renderMessages(this.props.messages)} 154 |
155 |
156 | {inputField} 157 |
158 | ); 159 | } 160 | } 161 | -------------------------------------------------------------------------------- /src/ChatFeed/styles.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | chatPanel: { 3 | display: 'flex', 4 | flexDirection: 'column' as 'column', 5 | flex: 1, 6 | overflow: 'hidden', 7 | }, 8 | chatHistory: { overflow: 'auto' }, 9 | chatbubbleWrapper: { 10 | marginTop: 10, 11 | marginBottom: 10, 12 | overflow: 'auto', 13 | position: 'relative' as 'relative', 14 | }, 15 | img: { 16 | borderRadius: 100, 17 | bottom: 0, 18 | left: 0, 19 | position: 'absolute', 20 | width: 36, 21 | zIndex: 100, 22 | }, 23 | }; 24 | -------------------------------------------------------------------------------- /src/ChatInput/index.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | const styles = { 4 | chatInput: { 5 | flex: 1, 6 | }, 7 | inputStyle: { 8 | border: 'none', 9 | borderTopWidth: '1', 10 | borderTopStyle: 'solid', 11 | borderTopColor: '#ddd', 12 | fontSize: '16', 13 | outline: 'none', 14 | padding: '30', 15 | width: '100%', 16 | }, 17 | }; 18 | 19 | interface ChatInputProps { 20 | inputStyles?: object; 21 | inputPlaceholder?: string; 22 | } 23 | 24 | const ChatInput = (props: ChatInputProps) => { 25 | const { inputStyles, inputPlaceholder } = props; 26 | return ( 27 |
28 | 29 |
30 | ); 31 | }; 32 | 33 | export default ChatInput; 34 | -------------------------------------------------------------------------------- /src/Message/README.md: -------------------------------------------------------------------------------- 1 | ## Message 2 | 3 | The `Message` object is the standard class for handling message data in `react-chat-ui`. 4 | 5 | #### Constructor 6 | 7 | * **id**: The `id` of a message is a number used to identify which user created the message. It's used for grouping messages together and determining the bubble colour. _(This may be renamed in the future)_ 8 | * **message**: This is the actual text that will be displayed in the bubble 9 | * **senderName** (optional): the sender name is an optional parameter that associates a name to a message _(can be thought of as a string representation of an `id`, although your id's will be unique, users may have the same name)_ 10 | 11 | ```javascript 12 | const myMessage = new Message(1, 'Hello World!', 'Elon Musk'); 13 | 14 | const anotherMessage = new Message(0, 'Hey Elon!'); 15 | ``` 16 | -------------------------------------------------------------------------------- /src/Message/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * A statndardized message object for use 3 | * in rendering messages in the chat feed. 4 | */ 5 | 6 | interface MessageData { 7 | id: number | string; 8 | message: string; 9 | senderName?: string; 10 | } 11 | 12 | export default class Message { 13 | /** 14 | * Message object for organizing and storing current message data. 15 | */ 16 | id: number | string; 17 | message: string; 18 | senderName?: string; 19 | constructor(messageData: MessageData) { 20 | this.id = messageData.id; // id of the sender (0 is reserved for "blue bubble") 21 | this.message = messageData.message; 22 | this.senderName = messageData.senderName || undefined; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import ChatBubble, { ChatBubbleProps } from './ChatBubble/'; 2 | import BubbleGroup from './BubbleGroup'; 3 | import ChatFeed from './ChatFeed/'; 4 | import ChatInput from './ChatInput/'; 5 | import Message from './Message/'; 6 | 7 | export { 8 | ChatBubble, 9 | ChatFeed, 10 | ChatInput, 11 | Message, 12 | ChatBubbleProps, 13 | BubbleGroup, 14 | }; 15 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "module": "commonjs", 5 | "lib": [ 6 | "dom", 7 | "dom.iterable", 8 | "esnext" 9 | ], 10 | "moduleResolution": "node", 11 | "noResolve": false, 12 | "noImplicitAny": false, 13 | "outDir": "./lib", 14 | "removeComments": true, 15 | "sourceMap": true, 16 | "declaration": true, 17 | "jsx": "react", 18 | "allowSyntheticDefaultImports": true 19 | }, 20 | "include": ["src/**/*.ts"], 21 | "exclude": ["./node_modules/**/*"] 22 | } 23 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/prop-types@*": 6 | version "15.7.2" 7 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.2.tgz#0e58ae66773d7fd7c372a493aff740878ec9ceaa" 8 | integrity sha512-f8JzJNWVhKtc9dg/dyDNfliTKNOJSLa7Oht/ElZdF/UbMUmAH3rLmAk3ODNjw0mZajDEgatA03tRjB4+Dp/tzA== 9 | 10 | "@types/react@^16.9.2": 11 | version "16.9.2" 12 | resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.2.tgz#6d1765431a1ad1877979013906731aae373de268" 13 | integrity sha512-jYP2LWwlh+FTqGd9v7ynUKZzjj98T8x7Yclz479QdRhHfuW9yQ+0jjnD31eXSXutmBpppj5PYNLYLRfnZJvcfg== 14 | dependencies: 15 | "@types/prop-types" "*" 16 | csstype "^2.2.0" 17 | 18 | JSONStream@^1.0.3: 19 | version "1.3.5" 20 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" 21 | integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== 22 | dependencies: 23 | jsonparse "^1.2.0" 24 | through ">=2.2.7 <3" 25 | 26 | abbrev@1: 27 | version "1.1.1" 28 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 29 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 30 | 31 | acorn-dynamic-import@^4.0.0: 32 | version "4.0.0" 33 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz#482210140582a36b83c3e342e1cfebcaa9240948" 34 | integrity sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw== 35 | 36 | acorn-node@^1.2.0, acorn-node@^1.3.0, acorn-node@^1.5.2: 37 | version "1.7.0" 38 | resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.7.0.tgz#aac6a559d27af6176b076ab6fb13c5974c213e3b" 39 | integrity sha512-XhahLSsCB6X6CJbe+uNu3Mn9sJBNFxtBN9NLgAOQovfS6Kh0lDUtmlclhjn9CvEK7A7YyRU13PXlNcpSiLI9Yw== 40 | dependencies: 41 | acorn "^6.1.1" 42 | acorn-dynamic-import "^4.0.0" 43 | acorn-walk "^6.1.1" 44 | xtend "^4.0.1" 45 | 46 | acorn-walk@^6.1.1: 47 | version "6.1.1" 48 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.1.1.tgz#d363b66f5fac5f018ff9c3a1e7b6f8e310cc3913" 49 | integrity sha512-OtUw6JUTgxA2QoqqmrmQ7F2NYqiBPi/L2jqHyFtllhOUvXYQXf0Z1CYUinIfyT4bTCGmrA7gX9FvHA81uzCoVw== 50 | 51 | acorn@^5.2.1: 52 | version "5.7.3" 53 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" 54 | integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== 55 | 56 | acorn@^6.1.1: 57 | version "6.1.1" 58 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.1.1.tgz#7d25ae05bb8ad1f9b699108e1094ecd7884adc1f" 59 | integrity sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA== 60 | 61 | ansi-regex@^2.0.0: 62 | version "2.1.1" 63 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 64 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 65 | 66 | ansi-regex@^3.0.0: 67 | version "3.0.0" 68 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 69 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 70 | 71 | ansi-styles@^2.2.1: 72 | version "2.2.1" 73 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 74 | integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= 75 | 76 | anymatch@^1.3.0: 77 | version "1.3.2" 78 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 79 | integrity sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA== 80 | dependencies: 81 | micromatch "^2.1.5" 82 | normalize-path "^2.0.0" 83 | 84 | aproba@^1.0.3: 85 | version "1.2.0" 86 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 87 | integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== 88 | 89 | are-we-there-yet@~1.1.2: 90 | version "1.1.5" 91 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 92 | integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== 93 | dependencies: 94 | delegates "^1.0.0" 95 | readable-stream "^2.0.6" 96 | 97 | arr-diff@^2.0.0: 98 | version "2.0.0" 99 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 100 | integrity sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8= 101 | dependencies: 102 | arr-flatten "^1.0.1" 103 | 104 | arr-diff@^4.0.0: 105 | version "4.0.0" 106 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 107 | integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= 108 | 109 | arr-flatten@^1.0.1, arr-flatten@^1.1.0: 110 | version "1.1.0" 111 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 112 | integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== 113 | 114 | arr-union@^3.1.0: 115 | version "3.1.0" 116 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 117 | integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= 118 | 119 | array-filter@~0.0.0: 120 | version "0.0.1" 121 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 122 | integrity sha1-fajPLiZijtcygDWB/SH2fKzS7uw= 123 | 124 | array-map@~0.0.0: 125 | version "0.0.0" 126 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 127 | integrity sha1-iKK6tz0c97zVwbEYoAP2b2ZfpmI= 128 | 129 | array-reduce@~0.0.0: 130 | version "0.0.0" 131 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 132 | integrity sha1-FziZ0//Rx9k4PkR5Ul2+J4yrXys= 133 | 134 | array-unique@^0.2.1: 135 | version "0.2.1" 136 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 137 | integrity sha1-odl8yvy8JiXMcPrc6zalDFiwGlM= 138 | 139 | array-unique@^0.3.2: 140 | version "0.3.2" 141 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 142 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= 143 | 144 | asn1.js@^4.0.0: 145 | version "4.10.1" 146 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" 147 | integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== 148 | dependencies: 149 | bn.js "^4.0.0" 150 | inherits "^2.0.1" 151 | minimalistic-assert "^1.0.0" 152 | 153 | assert@^1.4.0: 154 | version "1.5.0" 155 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" 156 | integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA== 157 | dependencies: 158 | object-assign "^4.1.1" 159 | util "0.10.3" 160 | 161 | assign-symbols@^1.0.0: 162 | version "1.0.0" 163 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 164 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 165 | 166 | async-each@^1.0.0: 167 | version "1.0.3" 168 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" 169 | integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== 170 | 171 | atob@^2.1.1: 172 | version "2.1.2" 173 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 174 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 175 | 176 | babel-cli@^6.26.0: 177 | version "6.26.0" 178 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 179 | integrity sha1-UCq1SHTX24itALiHoGODzgPQAvE= 180 | dependencies: 181 | babel-core "^6.26.0" 182 | babel-polyfill "^6.26.0" 183 | babel-register "^6.26.0" 184 | babel-runtime "^6.26.0" 185 | commander "^2.11.0" 186 | convert-source-map "^1.5.0" 187 | fs-readdir-recursive "^1.0.0" 188 | glob "^7.1.2" 189 | lodash "^4.17.4" 190 | output-file-sync "^1.1.2" 191 | path-is-absolute "^1.0.1" 192 | slash "^1.0.0" 193 | source-map "^0.5.6" 194 | v8flags "^2.1.1" 195 | optionalDependencies: 196 | chokidar "^1.6.1" 197 | 198 | babel-code-frame@^6.26.0: 199 | version "6.26.0" 200 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 201 | integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= 202 | dependencies: 203 | chalk "^1.1.3" 204 | esutils "^2.0.2" 205 | js-tokens "^3.0.2" 206 | 207 | babel-core@^6.1.18, babel-core@^6.26.0: 208 | version "6.26.3" 209 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 210 | integrity sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA== 211 | dependencies: 212 | babel-code-frame "^6.26.0" 213 | babel-generator "^6.26.0" 214 | babel-helpers "^6.24.1" 215 | babel-messages "^6.23.0" 216 | babel-register "^6.26.0" 217 | babel-runtime "^6.26.0" 218 | babel-template "^6.26.0" 219 | babel-traverse "^6.26.0" 220 | babel-types "^6.26.0" 221 | babylon "^6.18.0" 222 | convert-source-map "^1.5.1" 223 | debug "^2.6.9" 224 | json5 "^0.5.1" 225 | lodash "^4.17.4" 226 | minimatch "^3.0.4" 227 | path-is-absolute "^1.0.1" 228 | private "^0.1.8" 229 | slash "^1.0.0" 230 | source-map "^0.5.7" 231 | 232 | babel-generator@^6.26.0: 233 | version "6.26.1" 234 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 235 | integrity sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA== 236 | dependencies: 237 | babel-messages "^6.23.0" 238 | babel-runtime "^6.26.0" 239 | babel-types "^6.26.0" 240 | detect-indent "^4.0.0" 241 | jsesc "^1.3.0" 242 | lodash "^4.17.4" 243 | source-map "^0.5.7" 244 | trim-right "^1.0.1" 245 | 246 | babel-helper-bindify-decorators@^6.24.1: 247 | version "6.24.1" 248 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" 249 | integrity sha1-FMGeXxQte0fxmlJDHlKxzLxAozA= 250 | dependencies: 251 | babel-runtime "^6.22.0" 252 | babel-traverse "^6.24.1" 253 | babel-types "^6.24.1" 254 | 255 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 256 | version "6.24.1" 257 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 258 | integrity sha1-zORReto1b0IgvK6KAsKzRvmlZmQ= 259 | dependencies: 260 | babel-helper-explode-assignable-expression "^6.24.1" 261 | babel-runtime "^6.22.0" 262 | babel-types "^6.24.1" 263 | 264 | babel-helper-builder-react-jsx@^6.24.1: 265 | version "6.26.0" 266 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 267 | integrity sha1-Of+DE7dci2Xc7/HzHTg+D/KkCKA= 268 | dependencies: 269 | babel-runtime "^6.26.0" 270 | babel-types "^6.26.0" 271 | esutils "^2.0.2" 272 | 273 | babel-helper-call-delegate@^6.24.1: 274 | version "6.24.1" 275 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 276 | integrity sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340= 277 | dependencies: 278 | babel-helper-hoist-variables "^6.24.1" 279 | babel-runtime "^6.22.0" 280 | babel-traverse "^6.24.1" 281 | babel-types "^6.24.1" 282 | 283 | babel-helper-define-map@^6.24.1: 284 | version "6.26.0" 285 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 286 | integrity sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8= 287 | dependencies: 288 | babel-helper-function-name "^6.24.1" 289 | babel-runtime "^6.26.0" 290 | babel-types "^6.26.0" 291 | lodash "^4.17.4" 292 | 293 | babel-helper-explode-assignable-expression@^6.24.1: 294 | version "6.24.1" 295 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 296 | integrity sha1-8luCz33BBDPFX3BZLVdGQArCLKo= 297 | dependencies: 298 | babel-runtime "^6.22.0" 299 | babel-traverse "^6.24.1" 300 | babel-types "^6.24.1" 301 | 302 | babel-helper-explode-class@^6.24.1: 303 | version "6.24.1" 304 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" 305 | integrity sha1-fcKjkQ3uAHBW4eMdZAztPVTqqes= 306 | dependencies: 307 | babel-helper-bindify-decorators "^6.24.1" 308 | babel-runtime "^6.22.0" 309 | babel-traverse "^6.24.1" 310 | babel-types "^6.24.1" 311 | 312 | babel-helper-function-name@^6.24.1: 313 | version "6.24.1" 314 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 315 | integrity sha1-00dbjAPtmCQqJbSDUasYOZ01gKk= 316 | dependencies: 317 | babel-helper-get-function-arity "^6.24.1" 318 | babel-runtime "^6.22.0" 319 | babel-template "^6.24.1" 320 | babel-traverse "^6.24.1" 321 | babel-types "^6.24.1" 322 | 323 | babel-helper-get-function-arity@^6.24.1: 324 | version "6.24.1" 325 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 326 | integrity sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0= 327 | dependencies: 328 | babel-runtime "^6.22.0" 329 | babel-types "^6.24.1" 330 | 331 | babel-helper-hoist-variables@^6.24.1: 332 | version "6.24.1" 333 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 334 | integrity sha1-HssnaJydJVE+rbyZFKc/VAi+enY= 335 | dependencies: 336 | babel-runtime "^6.22.0" 337 | babel-types "^6.24.1" 338 | 339 | babel-helper-optimise-call-expression@^6.24.1: 340 | version "6.24.1" 341 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 342 | integrity sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc= 343 | dependencies: 344 | babel-runtime "^6.22.0" 345 | babel-types "^6.24.1" 346 | 347 | babel-helper-regex@^6.24.1: 348 | version "6.26.0" 349 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 350 | integrity sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI= 351 | dependencies: 352 | babel-runtime "^6.26.0" 353 | babel-types "^6.26.0" 354 | lodash "^4.17.4" 355 | 356 | babel-helper-remap-async-to-generator@^6.24.1: 357 | version "6.24.1" 358 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 359 | integrity sha1-XsWBgnrXI/7N04HxySg5BnbkVRs= 360 | dependencies: 361 | babel-helper-function-name "^6.24.1" 362 | babel-runtime "^6.22.0" 363 | babel-template "^6.24.1" 364 | babel-traverse "^6.24.1" 365 | babel-types "^6.24.1" 366 | 367 | babel-helper-replace-supers@^6.24.1: 368 | version "6.24.1" 369 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 370 | integrity sha1-v22/5Dk40XNpohPKiov3S2qQqxo= 371 | dependencies: 372 | babel-helper-optimise-call-expression "^6.24.1" 373 | babel-messages "^6.23.0" 374 | babel-runtime "^6.22.0" 375 | babel-template "^6.24.1" 376 | babel-traverse "^6.24.1" 377 | babel-types "^6.24.1" 378 | 379 | babel-helpers@^6.24.1: 380 | version "6.24.1" 381 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 382 | integrity sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI= 383 | dependencies: 384 | babel-runtime "^6.22.0" 385 | babel-template "^6.24.1" 386 | 387 | babel-messages@^6.23.0: 388 | version "6.23.0" 389 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 390 | integrity sha1-8830cDhYA1sqKVHG7F7fbGLyYw4= 391 | dependencies: 392 | babel-runtime "^6.22.0" 393 | 394 | babel-plugin-check-es2015-constants@^6.22.0: 395 | version "6.22.0" 396 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 397 | integrity sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o= 398 | dependencies: 399 | babel-runtime "^6.22.0" 400 | 401 | babel-plugin-syntax-async-functions@^6.8.0: 402 | version "6.13.0" 403 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 404 | integrity sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU= 405 | 406 | babel-plugin-syntax-async-generators@^6.5.0: 407 | version "6.13.0" 408 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 409 | integrity sha1-a8lj67FuzLrmuStZbrfzXDQqi5o= 410 | 411 | babel-plugin-syntax-class-constructor-call@^6.18.0: 412 | version "6.18.0" 413 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 414 | integrity sha1-nLnTn+Q8hgC+yBRkVt3L1OGnZBY= 415 | 416 | babel-plugin-syntax-class-properties@^6.8.0: 417 | version "6.13.0" 418 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 419 | integrity sha1-1+sjt5oxf4VDlixQW4J8fWysJ94= 420 | 421 | babel-plugin-syntax-decorators@^6.13.0: 422 | version "6.13.0" 423 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 424 | integrity sha1-MSVjtNvePMgGzuPkFszurd0RrAs= 425 | 426 | babel-plugin-syntax-do-expressions@^6.8.0: 427 | version "6.13.0" 428 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 429 | integrity sha1-V0d1YTmqJtOQ0JQQsDdEugfkeW0= 430 | 431 | babel-plugin-syntax-dynamic-import@^6.18.0: 432 | version "6.18.0" 433 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 434 | integrity sha1-jWomIpyDdFqZgqRBBRVyyqF5sdo= 435 | 436 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 437 | version "6.13.0" 438 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 439 | integrity sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4= 440 | 441 | babel-plugin-syntax-export-extensions@^6.8.0: 442 | version "6.13.0" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 444 | integrity sha1-cKFITw+QiaToStRLrDU8lbmxJyE= 445 | 446 | babel-plugin-syntax-flow@^6.18.0: 447 | version "6.18.0" 448 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 449 | integrity sha1-TDqyCiryaqIM0lmVw5jE63AxDI0= 450 | 451 | babel-plugin-syntax-function-bind@^6.8.0: 452 | version "6.13.0" 453 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 454 | integrity sha1-SMSV8Xe98xqYHnMvVa3AvdJgH0Y= 455 | 456 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 457 | version "6.18.0" 458 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 459 | integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY= 460 | 461 | babel-plugin-syntax-object-rest-spread@^6.8.0: 462 | version "6.13.0" 463 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 464 | integrity sha1-/WU28rzhODb/o6VFjEkDpZe7O/U= 465 | 466 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 467 | version "6.22.0" 468 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 469 | integrity sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM= 470 | 471 | babel-plugin-transform-async-generator-functions@^6.24.1: 472 | version "6.24.1" 473 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 474 | integrity sha1-8FiQAUX9PpkHpt3yjaWfIVJYpds= 475 | dependencies: 476 | babel-helper-remap-async-to-generator "^6.24.1" 477 | babel-plugin-syntax-async-generators "^6.5.0" 478 | babel-runtime "^6.22.0" 479 | 480 | babel-plugin-transform-async-to-generator@^6.24.1: 481 | version "6.24.1" 482 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 483 | integrity sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E= 484 | dependencies: 485 | babel-helper-remap-async-to-generator "^6.24.1" 486 | babel-plugin-syntax-async-functions "^6.8.0" 487 | babel-runtime "^6.22.0" 488 | 489 | babel-plugin-transform-class-constructor-call@^6.24.1: 490 | version "6.24.1" 491 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9" 492 | integrity sha1-gNwoVQWsBn3LjWxl4vbxGrd2Xvk= 493 | dependencies: 494 | babel-plugin-syntax-class-constructor-call "^6.18.0" 495 | babel-runtime "^6.22.0" 496 | babel-template "^6.24.1" 497 | 498 | babel-plugin-transform-class-properties@^6.24.1: 499 | version "6.24.1" 500 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 501 | integrity sha1-anl2PqYdM9NvN7YRqp3vgagbRqw= 502 | dependencies: 503 | babel-helper-function-name "^6.24.1" 504 | babel-plugin-syntax-class-properties "^6.8.0" 505 | babel-runtime "^6.22.0" 506 | babel-template "^6.24.1" 507 | 508 | babel-plugin-transform-decorators@^6.24.1: 509 | version "6.24.1" 510 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" 511 | integrity sha1-eIAT2PjGtSIr33s0Q5Df13Vp4k0= 512 | dependencies: 513 | babel-helper-explode-class "^6.24.1" 514 | babel-plugin-syntax-decorators "^6.13.0" 515 | babel-runtime "^6.22.0" 516 | babel-template "^6.24.1" 517 | babel-types "^6.24.1" 518 | 519 | babel-plugin-transform-do-expressions@^6.22.0: 520 | version "6.22.0" 521 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb" 522 | integrity sha1-KMyvkoEtlJws0SgfaQyP3EaK6bs= 523 | dependencies: 524 | babel-plugin-syntax-do-expressions "^6.8.0" 525 | babel-runtime "^6.22.0" 526 | 527 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 528 | version "6.22.0" 529 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 530 | integrity sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE= 531 | dependencies: 532 | babel-runtime "^6.22.0" 533 | 534 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 535 | version "6.22.0" 536 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 537 | integrity sha1-u8UbSflk1wy42OC5ToICRs46YUE= 538 | dependencies: 539 | babel-runtime "^6.22.0" 540 | 541 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 542 | version "6.26.0" 543 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 544 | integrity sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8= 545 | dependencies: 546 | babel-runtime "^6.26.0" 547 | babel-template "^6.26.0" 548 | babel-traverse "^6.26.0" 549 | babel-types "^6.26.0" 550 | lodash "^4.17.4" 551 | 552 | babel-plugin-transform-es2015-classes@^6.24.1: 553 | version "6.24.1" 554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 555 | integrity sha1-WkxYpQyclGHlZLSyo7+ryXolhNs= 556 | dependencies: 557 | babel-helper-define-map "^6.24.1" 558 | babel-helper-function-name "^6.24.1" 559 | babel-helper-optimise-call-expression "^6.24.1" 560 | babel-helper-replace-supers "^6.24.1" 561 | babel-messages "^6.23.0" 562 | babel-runtime "^6.22.0" 563 | babel-template "^6.24.1" 564 | babel-traverse "^6.24.1" 565 | babel-types "^6.24.1" 566 | 567 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 568 | version "6.24.1" 569 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 570 | integrity sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM= 571 | dependencies: 572 | babel-runtime "^6.22.0" 573 | babel-template "^6.24.1" 574 | 575 | babel-plugin-transform-es2015-destructuring@^6.22.0: 576 | version "6.23.0" 577 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 578 | integrity sha1-mXux8auWf2gtKwh2/jWNYOdlxW0= 579 | dependencies: 580 | babel-runtime "^6.22.0" 581 | 582 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 583 | version "6.24.1" 584 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 585 | integrity sha1-c+s9MQypaePvnskcU3QabxV2Qj4= 586 | dependencies: 587 | babel-runtime "^6.22.0" 588 | babel-types "^6.24.1" 589 | 590 | babel-plugin-transform-es2015-for-of@^6.22.0: 591 | version "6.23.0" 592 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 593 | integrity sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE= 594 | dependencies: 595 | babel-runtime "^6.22.0" 596 | 597 | babel-plugin-transform-es2015-function-name@^6.24.1: 598 | version "6.24.1" 599 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 600 | integrity sha1-g0yJhTvDaxrw86TF26qU/Y6sqos= 601 | dependencies: 602 | babel-helper-function-name "^6.24.1" 603 | babel-runtime "^6.22.0" 604 | babel-types "^6.24.1" 605 | 606 | babel-plugin-transform-es2015-literals@^6.22.0: 607 | version "6.22.0" 608 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 609 | integrity sha1-T1SgLWzWbPkVKAAZox0xklN3yi4= 610 | dependencies: 611 | babel-runtime "^6.22.0" 612 | 613 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 614 | version "6.24.1" 615 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 616 | integrity sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ= 617 | dependencies: 618 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 619 | babel-runtime "^6.22.0" 620 | babel-template "^6.24.1" 621 | 622 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 623 | version "6.26.2" 624 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" 625 | integrity sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q== 626 | dependencies: 627 | babel-plugin-transform-strict-mode "^6.24.1" 628 | babel-runtime "^6.26.0" 629 | babel-template "^6.26.0" 630 | babel-types "^6.26.0" 631 | 632 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 633 | version "6.24.1" 634 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 635 | integrity sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM= 636 | dependencies: 637 | babel-helper-hoist-variables "^6.24.1" 638 | babel-runtime "^6.22.0" 639 | babel-template "^6.24.1" 640 | 641 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 642 | version "6.24.1" 643 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 644 | integrity sha1-rJl+YoXNGO1hdq22B9YCNErThGg= 645 | dependencies: 646 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 647 | babel-runtime "^6.22.0" 648 | babel-template "^6.24.1" 649 | 650 | babel-plugin-transform-es2015-object-super@^6.24.1: 651 | version "6.24.1" 652 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 653 | integrity sha1-JM72muIcuDp/hgPa0CH1cusnj40= 654 | dependencies: 655 | babel-helper-replace-supers "^6.24.1" 656 | babel-runtime "^6.22.0" 657 | 658 | babel-plugin-transform-es2015-parameters@^6.24.1: 659 | version "6.24.1" 660 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 661 | integrity sha1-V6w1GrScrxSpfNE7CfZv3wpiXys= 662 | dependencies: 663 | babel-helper-call-delegate "^6.24.1" 664 | babel-helper-get-function-arity "^6.24.1" 665 | babel-runtime "^6.22.0" 666 | babel-template "^6.24.1" 667 | babel-traverse "^6.24.1" 668 | babel-types "^6.24.1" 669 | 670 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 671 | version "6.24.1" 672 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 673 | integrity sha1-JPh11nIch2YbvZmkYi5R8U3jiqA= 674 | dependencies: 675 | babel-runtime "^6.22.0" 676 | babel-types "^6.24.1" 677 | 678 | babel-plugin-transform-es2015-spread@^6.22.0: 679 | version "6.22.0" 680 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 681 | integrity sha1-1taKmfia7cRTbIGlQujdnxdG+NE= 682 | dependencies: 683 | babel-runtime "^6.22.0" 684 | 685 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 686 | version "6.24.1" 687 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 688 | integrity sha1-AMHNsaynERLN8M9hJsLta0V8zbw= 689 | dependencies: 690 | babel-helper-regex "^6.24.1" 691 | babel-runtime "^6.22.0" 692 | babel-types "^6.24.1" 693 | 694 | babel-plugin-transform-es2015-template-literals@^6.22.0: 695 | version "6.22.0" 696 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 697 | integrity sha1-qEs0UPfp+PH2g51taH2oS7EjbY0= 698 | dependencies: 699 | babel-runtime "^6.22.0" 700 | 701 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 702 | version "6.23.0" 703 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 704 | integrity sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I= 705 | dependencies: 706 | babel-runtime "^6.22.0" 707 | 708 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 709 | version "6.24.1" 710 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 711 | integrity sha1-04sS9C6nMj9yk4fxinxa4frrNek= 712 | dependencies: 713 | babel-helper-regex "^6.24.1" 714 | babel-runtime "^6.22.0" 715 | regexpu-core "^2.0.0" 716 | 717 | babel-plugin-transform-exponentiation-operator@^6.24.1: 718 | version "6.24.1" 719 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 720 | integrity sha1-KrDJx/MJj6SJB3cruBP+QejeOg4= 721 | dependencies: 722 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 723 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 724 | babel-runtime "^6.22.0" 725 | 726 | babel-plugin-transform-export-extensions@^6.22.0: 727 | version "6.22.0" 728 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 729 | integrity sha1-U3OLR+deghhYnuqUbLvTkQm75lM= 730 | dependencies: 731 | babel-plugin-syntax-export-extensions "^6.8.0" 732 | babel-runtime "^6.22.0" 733 | 734 | babel-plugin-transform-flow-strip-types@^6.22.0: 735 | version "6.22.0" 736 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 737 | integrity sha1-hMtnKTXUNxT9wyvOhFaNh0Qc988= 738 | dependencies: 739 | babel-plugin-syntax-flow "^6.18.0" 740 | babel-runtime "^6.22.0" 741 | 742 | babel-plugin-transform-function-bind@^6.22.0: 743 | version "6.22.0" 744 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97" 745 | integrity sha1-xvuOlqwpajELjPjqQBRiQH3fapc= 746 | dependencies: 747 | babel-plugin-syntax-function-bind "^6.8.0" 748 | babel-runtime "^6.22.0" 749 | 750 | babel-plugin-transform-object-rest-spread@^6.22.0: 751 | version "6.26.0" 752 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 753 | integrity sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY= 754 | dependencies: 755 | babel-plugin-syntax-object-rest-spread "^6.8.0" 756 | babel-runtime "^6.26.0" 757 | 758 | babel-plugin-transform-react-display-name@^6.23.0: 759 | version "6.25.0" 760 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 761 | integrity sha1-Z+K/Hx6ck6sI25Z5LgU5K/LMKNE= 762 | dependencies: 763 | babel-runtime "^6.22.0" 764 | 765 | babel-plugin-transform-react-jsx-self@^6.22.0: 766 | version "6.22.0" 767 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 768 | integrity sha1-322AqdomEqEh5t3XVYvL7PBuY24= 769 | dependencies: 770 | babel-plugin-syntax-jsx "^6.8.0" 771 | babel-runtime "^6.22.0" 772 | 773 | babel-plugin-transform-react-jsx-source@^6.22.0: 774 | version "6.22.0" 775 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 776 | integrity sha1-ZqwSFT9c0tF7PBkmj0vwGX9E7NY= 777 | dependencies: 778 | babel-plugin-syntax-jsx "^6.8.0" 779 | babel-runtime "^6.22.0" 780 | 781 | babel-plugin-transform-react-jsx@^6.24.1: 782 | version "6.24.1" 783 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 784 | integrity sha1-hAoCjn30YN/DotKfDA2R9jduZqM= 785 | dependencies: 786 | babel-helper-builder-react-jsx "^6.24.1" 787 | babel-plugin-syntax-jsx "^6.8.0" 788 | babel-runtime "^6.22.0" 789 | 790 | babel-plugin-transform-regenerator@^6.24.1: 791 | version "6.26.0" 792 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 793 | integrity sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8= 794 | dependencies: 795 | regenerator-transform "^0.10.0" 796 | 797 | babel-plugin-transform-strict-mode@^6.24.1: 798 | version "6.24.1" 799 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 800 | integrity sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g= 801 | dependencies: 802 | babel-runtime "^6.22.0" 803 | babel-types "^6.24.1" 804 | 805 | babel-polyfill@^6.26.0: 806 | version "6.26.0" 807 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 808 | integrity sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM= 809 | dependencies: 810 | babel-runtime "^6.26.0" 811 | core-js "^2.5.0" 812 | regenerator-runtime "^0.10.5" 813 | 814 | babel-preset-es2015@^6.1.18: 815 | version "6.24.1" 816 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 817 | integrity sha1-1EBQ1rwsn+6nAqrzjXJ6AhBTiTk= 818 | dependencies: 819 | babel-plugin-check-es2015-constants "^6.22.0" 820 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 821 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 822 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 823 | babel-plugin-transform-es2015-classes "^6.24.1" 824 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 825 | babel-plugin-transform-es2015-destructuring "^6.22.0" 826 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 827 | babel-plugin-transform-es2015-for-of "^6.22.0" 828 | babel-plugin-transform-es2015-function-name "^6.24.1" 829 | babel-plugin-transform-es2015-literals "^6.22.0" 830 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 831 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 832 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 833 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 834 | babel-plugin-transform-es2015-object-super "^6.24.1" 835 | babel-plugin-transform-es2015-parameters "^6.24.1" 836 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 837 | babel-plugin-transform-es2015-spread "^6.22.0" 838 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 839 | babel-plugin-transform-es2015-template-literals "^6.22.0" 840 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 841 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 842 | babel-plugin-transform-regenerator "^6.24.1" 843 | 844 | babel-preset-flow@^6.23.0: 845 | version "6.23.0" 846 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 847 | integrity sha1-5xIYiHCFrpoktb5Baa/7WZgWxJ0= 848 | dependencies: 849 | babel-plugin-transform-flow-strip-types "^6.22.0" 850 | 851 | babel-preset-react@^6.1.18: 852 | version "6.24.1" 853 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 854 | integrity sha1-umnfrqRfw+xjm2pOzqbhdwLJE4A= 855 | dependencies: 856 | babel-plugin-syntax-jsx "^6.3.13" 857 | babel-plugin-transform-react-display-name "^6.23.0" 858 | babel-plugin-transform-react-jsx "^6.24.1" 859 | babel-plugin-transform-react-jsx-self "^6.22.0" 860 | babel-plugin-transform-react-jsx-source "^6.22.0" 861 | babel-preset-flow "^6.23.0" 862 | 863 | babel-preset-stage-0@^6.1.18: 864 | version "6.24.1" 865 | resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz#5642d15042f91384d7e5af8bc88b1db95b039e6a" 866 | integrity sha1-VkLRUEL5E4TX5a+LyIsduVsDnmo= 867 | dependencies: 868 | babel-plugin-transform-do-expressions "^6.22.0" 869 | babel-plugin-transform-function-bind "^6.22.0" 870 | babel-preset-stage-1 "^6.24.1" 871 | 872 | babel-preset-stage-1@^6.24.1: 873 | version "6.24.1" 874 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz#7692cd7dcd6849907e6ae4a0a85589cfb9e2bfb0" 875 | integrity sha1-dpLNfc1oSZB+auSgqFWJz7niv7A= 876 | dependencies: 877 | babel-plugin-transform-class-constructor-call "^6.24.1" 878 | babel-plugin-transform-export-extensions "^6.22.0" 879 | babel-preset-stage-2 "^6.24.1" 880 | 881 | babel-preset-stage-2@^6.24.1: 882 | version "6.24.1" 883 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" 884 | integrity sha1-2eKWD7PXEYfw5k7sYrwHdnIZvcE= 885 | dependencies: 886 | babel-plugin-syntax-dynamic-import "^6.18.0" 887 | babel-plugin-transform-class-properties "^6.24.1" 888 | babel-plugin-transform-decorators "^6.24.1" 889 | babel-preset-stage-3 "^6.24.1" 890 | 891 | babel-preset-stage-3@^6.24.1: 892 | version "6.24.1" 893 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 894 | integrity sha1-g2raCp56f6N8sTj7kyb4eTSkg5U= 895 | dependencies: 896 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 897 | babel-plugin-transform-async-generator-functions "^6.24.1" 898 | babel-plugin-transform-async-to-generator "^6.24.1" 899 | babel-plugin-transform-exponentiation-operator "^6.24.1" 900 | babel-plugin-transform-object-rest-spread "^6.22.0" 901 | 902 | babel-register@^6.26.0: 903 | version "6.26.0" 904 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 905 | integrity sha1-btAhFz4vy0htestFxgCahW9kcHE= 906 | dependencies: 907 | babel-core "^6.26.0" 908 | babel-runtime "^6.26.0" 909 | core-js "^2.5.0" 910 | home-or-tmp "^2.0.0" 911 | lodash "^4.17.4" 912 | mkdirp "^0.5.1" 913 | source-map-support "^0.4.15" 914 | 915 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 916 | version "6.26.0" 917 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 918 | integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= 919 | dependencies: 920 | core-js "^2.4.0" 921 | regenerator-runtime "^0.11.0" 922 | 923 | babel-template@^6.24.1, babel-template@^6.26.0: 924 | version "6.26.0" 925 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 926 | integrity sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI= 927 | dependencies: 928 | babel-runtime "^6.26.0" 929 | babel-traverse "^6.26.0" 930 | babel-types "^6.26.0" 931 | babylon "^6.18.0" 932 | lodash "^4.17.4" 933 | 934 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 935 | version "6.26.0" 936 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 937 | integrity sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4= 938 | dependencies: 939 | babel-code-frame "^6.26.0" 940 | babel-messages "^6.23.0" 941 | babel-runtime "^6.26.0" 942 | babel-types "^6.26.0" 943 | babylon "^6.18.0" 944 | debug "^2.6.8" 945 | globals "^9.18.0" 946 | invariant "^2.2.2" 947 | lodash "^4.17.4" 948 | 949 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 950 | version "6.26.0" 951 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 952 | integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc= 953 | dependencies: 954 | babel-runtime "^6.26.0" 955 | esutils "^2.0.2" 956 | lodash "^4.17.4" 957 | to-fast-properties "^1.0.3" 958 | 959 | babylon@^6.18.0: 960 | version "6.18.0" 961 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 962 | integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== 963 | 964 | balanced-match@^1.0.0: 965 | version "1.0.0" 966 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 967 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 968 | 969 | base64-js@^1.0.2: 970 | version "1.3.0" 971 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" 972 | integrity sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw== 973 | 974 | base@^0.11.1: 975 | version "0.11.2" 976 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 977 | integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== 978 | dependencies: 979 | cache-base "^1.0.1" 980 | class-utils "^0.3.5" 981 | component-emitter "^1.2.1" 982 | define-property "^1.0.0" 983 | isobject "^3.0.1" 984 | mixin-deep "^1.2.0" 985 | pascalcase "^0.1.1" 986 | 987 | binary-extensions@^1.0.0: 988 | version "1.13.1" 989 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" 990 | integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== 991 | 992 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 993 | version "4.11.8" 994 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 995 | integrity sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA== 996 | 997 | brace-expansion@^1.1.7: 998 | version "1.1.11" 999 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 1000 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 1001 | dependencies: 1002 | balanced-match "^1.0.0" 1003 | concat-map "0.0.1" 1004 | 1005 | braces@^1.8.2: 1006 | version "1.8.5" 1007 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 1008 | integrity sha1-uneWLhLf+WnWt2cR6RS3N4V79qc= 1009 | dependencies: 1010 | expand-range "^1.8.1" 1011 | preserve "^0.2.0" 1012 | repeat-element "^1.1.2" 1013 | 1014 | braces@^2.3.1: 1015 | version "2.3.2" 1016 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 1017 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== 1018 | dependencies: 1019 | arr-flatten "^1.1.0" 1020 | array-unique "^0.3.2" 1021 | extend-shallow "^2.0.1" 1022 | fill-range "^4.0.0" 1023 | isobject "^3.0.1" 1024 | repeat-element "^1.1.2" 1025 | snapdragon "^0.8.1" 1026 | snapdragon-node "^2.0.1" 1027 | split-string "^3.0.2" 1028 | to-regex "^3.0.1" 1029 | 1030 | brorand@^1.0.1: 1031 | version "1.1.0" 1032 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 1033 | integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= 1034 | 1035 | browser-pack@^6.0.1: 1036 | version "6.1.0" 1037 | resolved "https://registry.yarnpkg.com/browser-pack/-/browser-pack-6.1.0.tgz#c34ba10d0b9ce162b5af227c7131c92c2ecd5774" 1038 | integrity sha512-erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA== 1039 | dependencies: 1040 | JSONStream "^1.0.3" 1041 | combine-source-map "~0.8.0" 1042 | defined "^1.0.0" 1043 | safe-buffer "^5.1.1" 1044 | through2 "^2.0.0" 1045 | umd "^3.0.0" 1046 | 1047 | browser-resolve@^1.11.0, browser-resolve@^1.7.0: 1048 | version "1.11.3" 1049 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" 1050 | integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ== 1051 | dependencies: 1052 | resolve "1.1.7" 1053 | 1054 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 1055 | version "1.2.0" 1056 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" 1057 | integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== 1058 | dependencies: 1059 | buffer-xor "^1.0.3" 1060 | cipher-base "^1.0.0" 1061 | create-hash "^1.1.0" 1062 | evp_bytestokey "^1.0.3" 1063 | inherits "^2.0.1" 1064 | safe-buffer "^5.0.1" 1065 | 1066 | browserify-cipher@^1.0.0: 1067 | version "1.0.1" 1068 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" 1069 | integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== 1070 | dependencies: 1071 | browserify-aes "^1.0.4" 1072 | browserify-des "^1.0.0" 1073 | evp_bytestokey "^1.0.0" 1074 | 1075 | browserify-des@^1.0.0: 1076 | version "1.0.2" 1077 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" 1078 | integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== 1079 | dependencies: 1080 | cipher-base "^1.0.1" 1081 | des.js "^1.0.0" 1082 | inherits "^2.0.1" 1083 | safe-buffer "^5.1.2" 1084 | 1085 | browserify-rsa@^4.0.0: 1086 | version "4.0.1" 1087 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 1088 | integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= 1089 | dependencies: 1090 | bn.js "^4.1.0" 1091 | randombytes "^2.0.1" 1092 | 1093 | browserify-sign@^4.0.0: 1094 | version "4.0.4" 1095 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 1096 | integrity sha1-qk62jl17ZYuqa/alfmMMvXqT0pg= 1097 | dependencies: 1098 | bn.js "^4.1.1" 1099 | browserify-rsa "^4.0.0" 1100 | create-hash "^1.1.0" 1101 | create-hmac "^1.1.2" 1102 | elliptic "^6.0.0" 1103 | inherits "^2.0.1" 1104 | parse-asn1 "^5.0.0" 1105 | 1106 | browserify-zlib@~0.2.0: 1107 | version "0.2.0" 1108 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 1109 | integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== 1110 | dependencies: 1111 | pako "~1.0.5" 1112 | 1113 | browserify@^14.4.0: 1114 | version "14.5.0" 1115 | resolved "https://registry.yarnpkg.com/browserify/-/browserify-14.5.0.tgz#0bbbce521acd6e4d1d54d8e9365008efb85a9cc5" 1116 | integrity sha512-gKfOsNQv/toWz+60nSPfYzuwSEdzvV2WdxrVPUbPD/qui44rAkB3t3muNtmmGYHqrG56FGwX9SUEQmzNLAeS7g== 1117 | dependencies: 1118 | JSONStream "^1.0.3" 1119 | assert "^1.4.0" 1120 | browser-pack "^6.0.1" 1121 | browser-resolve "^1.11.0" 1122 | browserify-zlib "~0.2.0" 1123 | buffer "^5.0.2" 1124 | cached-path-relative "^1.0.0" 1125 | concat-stream "~1.5.1" 1126 | console-browserify "^1.1.0" 1127 | constants-browserify "~1.0.0" 1128 | crypto-browserify "^3.0.0" 1129 | defined "^1.0.0" 1130 | deps-sort "^2.0.0" 1131 | domain-browser "~1.1.0" 1132 | duplexer2 "~0.1.2" 1133 | events "~1.1.0" 1134 | glob "^7.1.0" 1135 | has "^1.0.0" 1136 | htmlescape "^1.1.0" 1137 | https-browserify "^1.0.0" 1138 | inherits "~2.0.1" 1139 | insert-module-globals "^7.0.0" 1140 | labeled-stream-splicer "^2.0.0" 1141 | module-deps "^4.0.8" 1142 | os-browserify "~0.3.0" 1143 | parents "^1.0.1" 1144 | path-browserify "~0.0.0" 1145 | process "~0.11.0" 1146 | punycode "^1.3.2" 1147 | querystring-es3 "~0.2.0" 1148 | read-only-stream "^2.0.0" 1149 | readable-stream "^2.0.2" 1150 | resolve "^1.1.4" 1151 | shasum "^1.0.0" 1152 | shell-quote "^1.6.1" 1153 | stream-browserify "^2.0.0" 1154 | stream-http "^2.0.0" 1155 | string_decoder "~1.0.0" 1156 | subarg "^1.0.0" 1157 | syntax-error "^1.1.1" 1158 | through2 "^2.0.0" 1159 | timers-browserify "^1.0.1" 1160 | tty-browserify "~0.0.0" 1161 | url "~0.11.0" 1162 | util "~0.10.1" 1163 | vm-browserify "~0.0.1" 1164 | xtend "^4.0.0" 1165 | 1166 | buffer-from@^1.0.0: 1167 | version "1.1.1" 1168 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 1169 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 1170 | 1171 | buffer-xor@^1.0.3: 1172 | version "1.0.3" 1173 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 1174 | integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= 1175 | 1176 | buffer@^5.0.2: 1177 | version "5.2.1" 1178 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.2.1.tgz#dd57fa0f109ac59c602479044dca7b8b3d0b71d6" 1179 | integrity sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg== 1180 | dependencies: 1181 | base64-js "^1.0.2" 1182 | ieee754 "^1.1.4" 1183 | 1184 | builtin-status-codes@^3.0.0: 1185 | version "3.0.0" 1186 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 1187 | integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= 1188 | 1189 | cache-base@^1.0.1: 1190 | version "1.0.1" 1191 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 1192 | integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== 1193 | dependencies: 1194 | collection-visit "^1.0.0" 1195 | component-emitter "^1.2.1" 1196 | get-value "^2.0.6" 1197 | has-value "^1.0.0" 1198 | isobject "^3.0.1" 1199 | set-value "^2.0.0" 1200 | to-object-path "^0.3.0" 1201 | union-value "^1.0.0" 1202 | unset-value "^1.0.0" 1203 | 1204 | cached-path-relative@^1.0.0: 1205 | version "1.0.2" 1206 | resolved "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.0.2.tgz#a13df4196d26776220cc3356eb147a52dba2c6db" 1207 | integrity sha512-5r2GqsoEb4qMTTN9J+WzXfjov+hjxT+j3u5K+kIVNIwAd99DLCJE9pBIMP1qVeybV6JiijL385Oz0DcYxfbOIg== 1208 | 1209 | chalk@^1.1.3: 1210 | version "1.1.3" 1211 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1212 | integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= 1213 | dependencies: 1214 | ansi-styles "^2.2.1" 1215 | escape-string-regexp "^1.0.2" 1216 | has-ansi "^2.0.0" 1217 | strip-ansi "^3.0.0" 1218 | supports-color "^2.0.0" 1219 | 1220 | chokidar@^1.6.1: 1221 | version "1.7.0" 1222 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 1223 | integrity sha1-eY5ol3gVHIB2tLNg5e3SjNortGg= 1224 | dependencies: 1225 | anymatch "^1.3.0" 1226 | async-each "^1.0.0" 1227 | glob-parent "^2.0.0" 1228 | inherits "^2.0.1" 1229 | is-binary-path "^1.0.0" 1230 | is-glob "^2.0.0" 1231 | path-is-absolute "^1.0.0" 1232 | readdirp "^2.0.0" 1233 | optionalDependencies: 1234 | fsevents "^1.0.0" 1235 | 1236 | chownr@^1.1.1: 1237 | version "1.1.1" 1238 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" 1239 | integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g== 1240 | 1241 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 1242 | version "1.0.4" 1243 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 1244 | integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== 1245 | dependencies: 1246 | inherits "^2.0.1" 1247 | safe-buffer "^5.0.1" 1248 | 1249 | class-utils@^0.3.5: 1250 | version "0.3.6" 1251 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 1252 | integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== 1253 | dependencies: 1254 | arr-union "^3.1.0" 1255 | define-property "^0.2.5" 1256 | isobject "^3.0.0" 1257 | static-extend "^0.1.1" 1258 | 1259 | code-point-at@^1.0.0: 1260 | version "1.1.0" 1261 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1262 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 1263 | 1264 | collection-visit@^1.0.0: 1265 | version "1.0.0" 1266 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 1267 | integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= 1268 | dependencies: 1269 | map-visit "^1.0.0" 1270 | object-visit "^1.0.0" 1271 | 1272 | combine-source-map@^0.8.0, combine-source-map@~0.8.0: 1273 | version "0.8.0" 1274 | resolved "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.8.0.tgz#a58d0df042c186fcf822a8e8015f5450d2d79a8b" 1275 | integrity sha1-pY0N8ELBhvz4IqjoAV9UUNLXmos= 1276 | dependencies: 1277 | convert-source-map "~1.1.0" 1278 | inline-source-map "~0.6.0" 1279 | lodash.memoize "~3.0.3" 1280 | source-map "~0.5.3" 1281 | 1282 | commander@^2.11.0: 1283 | version "2.20.0" 1284 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" 1285 | integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ== 1286 | 1287 | component-emitter@^1.2.1: 1288 | version "1.3.0" 1289 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" 1290 | integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== 1291 | 1292 | concat-map@0.0.1: 1293 | version "0.0.1" 1294 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1295 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1296 | 1297 | concat-stream@^1.6.1: 1298 | version "1.6.2" 1299 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 1300 | integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== 1301 | dependencies: 1302 | buffer-from "^1.0.0" 1303 | inherits "^2.0.3" 1304 | readable-stream "^2.2.2" 1305 | typedarray "^0.0.6" 1306 | 1307 | concat-stream@~1.5.0, concat-stream@~1.5.1: 1308 | version "1.5.2" 1309 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 1310 | integrity sha1-cIl4Yk2FavQaWnQd790mHadSwmY= 1311 | dependencies: 1312 | inherits "~2.0.1" 1313 | readable-stream "~2.0.0" 1314 | typedarray "~0.0.5" 1315 | 1316 | console-browserify@^1.1.0: 1317 | version "1.1.0" 1318 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 1319 | integrity sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA= 1320 | dependencies: 1321 | date-now "^0.1.4" 1322 | 1323 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1324 | version "1.1.0" 1325 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1326 | integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= 1327 | 1328 | constants-browserify@~1.0.0: 1329 | version "1.0.0" 1330 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 1331 | integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= 1332 | 1333 | convert-source-map@^1.5.0, convert-source-map@^1.5.1: 1334 | version "1.6.0" 1335 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" 1336 | integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== 1337 | dependencies: 1338 | safe-buffer "~5.1.1" 1339 | 1340 | convert-source-map@~1.1.0: 1341 | version "1.1.3" 1342 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" 1343 | integrity sha1-SCnId+n+SbMWHzvzZziI4gRpmGA= 1344 | 1345 | copy-descriptor@^0.1.0: 1346 | version "0.1.1" 1347 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1348 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= 1349 | 1350 | core-js@^2.4.0, core-js@^2.5.0: 1351 | version "2.6.9" 1352 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.9.tgz#6b4b214620c834152e179323727fc19741b084f2" 1353 | integrity sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A== 1354 | 1355 | core-util-is@~1.0.0: 1356 | version "1.0.2" 1357 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1358 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 1359 | 1360 | create-ecdh@^4.0.0: 1361 | version "4.0.3" 1362 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" 1363 | integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== 1364 | dependencies: 1365 | bn.js "^4.1.0" 1366 | elliptic "^6.0.0" 1367 | 1368 | create-hash@^1.1.0, create-hash@^1.1.2: 1369 | version "1.2.0" 1370 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" 1371 | integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== 1372 | dependencies: 1373 | cipher-base "^1.0.1" 1374 | inherits "^2.0.1" 1375 | md5.js "^1.3.4" 1376 | ripemd160 "^2.0.1" 1377 | sha.js "^2.4.0" 1378 | 1379 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 1380 | version "1.1.7" 1381 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" 1382 | integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== 1383 | dependencies: 1384 | cipher-base "^1.0.3" 1385 | create-hash "^1.1.0" 1386 | inherits "^2.0.1" 1387 | ripemd160 "^2.0.0" 1388 | safe-buffer "^5.0.1" 1389 | sha.js "^2.4.8" 1390 | 1391 | crypto-browserify@^3.0.0: 1392 | version "3.12.0" 1393 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 1394 | integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== 1395 | dependencies: 1396 | browserify-cipher "^1.0.0" 1397 | browserify-sign "^4.0.0" 1398 | create-ecdh "^4.0.0" 1399 | create-hash "^1.1.0" 1400 | create-hmac "^1.1.0" 1401 | diffie-hellman "^5.0.0" 1402 | inherits "^2.0.1" 1403 | pbkdf2 "^3.0.3" 1404 | public-encrypt "^4.0.0" 1405 | randombytes "^2.0.0" 1406 | randomfill "^1.0.3" 1407 | 1408 | csstype@^2.2.0: 1409 | version "2.6.6" 1410 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.6.tgz#c34f8226a94bbb10c32cc0d714afdf942291fc41" 1411 | integrity sha512-RpFbQGUE74iyPgvr46U9t1xoQBM8T4BL8SxrN66Le2xYAPSaDJJKeztV3awugusb3g3G9iL8StmkBBXhcbbXhg== 1412 | 1413 | dash-ast@^1.0.0: 1414 | version "1.0.0" 1415 | resolved "https://registry.yarnpkg.com/dash-ast/-/dash-ast-1.0.0.tgz#12029ba5fb2f8aa6f0a861795b23c1b4b6c27d37" 1416 | integrity sha512-Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA== 1417 | 1418 | date-now@^0.1.4: 1419 | version "0.1.4" 1420 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1421 | integrity sha1-6vQ5/U1ISK105cx9vvIAZyueNFs= 1422 | 1423 | debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: 1424 | version "2.6.9" 1425 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1426 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 1427 | dependencies: 1428 | ms "2.0.0" 1429 | 1430 | debug@^3.2.6: 1431 | version "3.2.6" 1432 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 1433 | integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== 1434 | dependencies: 1435 | ms "^2.1.1" 1436 | 1437 | decode-uri-component@^0.2.0: 1438 | version "0.2.0" 1439 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1440 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= 1441 | 1442 | deep-extend@^0.6.0: 1443 | version "0.6.0" 1444 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 1445 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 1446 | 1447 | define-property@^0.2.5: 1448 | version "0.2.5" 1449 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1450 | integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= 1451 | dependencies: 1452 | is-descriptor "^0.1.0" 1453 | 1454 | define-property@^1.0.0: 1455 | version "1.0.0" 1456 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1457 | integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= 1458 | dependencies: 1459 | is-descriptor "^1.0.0" 1460 | 1461 | define-property@^2.0.2: 1462 | version "2.0.2" 1463 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1464 | integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== 1465 | dependencies: 1466 | is-descriptor "^1.0.2" 1467 | isobject "^3.0.1" 1468 | 1469 | defined@^1.0.0: 1470 | version "1.0.0" 1471 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1472 | integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM= 1473 | 1474 | delegates@^1.0.0: 1475 | version "1.0.0" 1476 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1477 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 1478 | 1479 | deps-sort@^2.0.0: 1480 | version "2.0.0" 1481 | resolved "https://registry.yarnpkg.com/deps-sort/-/deps-sort-2.0.0.tgz#091724902e84658260eb910748cccd1af6e21fb5" 1482 | integrity sha1-CRckkC6EZYJg65EHSMzNGvbiH7U= 1483 | dependencies: 1484 | JSONStream "^1.0.3" 1485 | shasum "^1.0.0" 1486 | subarg "^1.0.0" 1487 | through2 "^2.0.0" 1488 | 1489 | des.js@^1.0.0: 1490 | version "1.0.0" 1491 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1492 | integrity sha1-wHTS4qpqipoH29YfmhXCzYPsjsw= 1493 | dependencies: 1494 | inherits "^2.0.1" 1495 | minimalistic-assert "^1.0.0" 1496 | 1497 | detect-indent@^4.0.0: 1498 | version "4.0.0" 1499 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1500 | integrity sha1-920GQ1LN9Docts5hnE7jqUdd4gg= 1501 | dependencies: 1502 | repeating "^2.0.0" 1503 | 1504 | detect-libc@^1.0.2: 1505 | version "1.0.3" 1506 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1507 | integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= 1508 | 1509 | detective@^4.0.0: 1510 | version "4.7.1" 1511 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.7.1.tgz#0eca7314338442febb6d65da54c10bb1c82b246e" 1512 | integrity sha512-H6PmeeUcZloWtdt4DAkFyzFL94arpHr3NOwwmVILFiy+9Qd4JTxxXrzfyGk/lmct2qVGBwTSwSXagqu2BxmWig== 1513 | dependencies: 1514 | acorn "^5.2.1" 1515 | defined "^1.0.0" 1516 | 1517 | diffie-hellman@^5.0.0: 1518 | version "5.0.3" 1519 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" 1520 | integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== 1521 | dependencies: 1522 | bn.js "^4.1.0" 1523 | miller-rabin "^4.0.0" 1524 | randombytes "^2.0.0" 1525 | 1526 | domain-browser@~1.1.0: 1527 | version "1.1.7" 1528 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1529 | integrity sha1-hnqksJP6oF8d4IwG9NeyH9+GmLw= 1530 | 1531 | duplexer2@^0.1.2, duplexer2@~0.1.0, duplexer2@~0.1.2: 1532 | version "0.1.4" 1533 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 1534 | integrity sha1-ixLauHjA1p4+eJEFFmKjL8a93ME= 1535 | dependencies: 1536 | readable-stream "^2.0.2" 1537 | 1538 | elliptic@^6.0.0: 1539 | version "6.4.1" 1540 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.1.tgz#c2d0b7776911b86722c632c3c06c60f2f819939a" 1541 | integrity sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ== 1542 | dependencies: 1543 | bn.js "^4.4.0" 1544 | brorand "^1.0.1" 1545 | hash.js "^1.0.0" 1546 | hmac-drbg "^1.0.0" 1547 | inherits "^2.0.1" 1548 | minimalistic-assert "^1.0.0" 1549 | minimalistic-crypto-utils "^1.0.0" 1550 | 1551 | escape-string-regexp@^1.0.2: 1552 | version "1.0.5" 1553 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1554 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1555 | 1556 | esutils@^2.0.2: 1557 | version "2.0.2" 1558 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1559 | integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= 1560 | 1561 | events@~1.1.0: 1562 | version "1.1.1" 1563 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1564 | integrity sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ= 1565 | 1566 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 1567 | version "1.0.3" 1568 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 1569 | integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== 1570 | dependencies: 1571 | md5.js "^1.3.4" 1572 | safe-buffer "^5.1.1" 1573 | 1574 | expand-brackets@^0.1.4: 1575 | version "0.1.5" 1576 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1577 | integrity sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s= 1578 | dependencies: 1579 | is-posix-bracket "^0.1.0" 1580 | 1581 | expand-brackets@^2.1.4: 1582 | version "2.1.4" 1583 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1584 | integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= 1585 | dependencies: 1586 | debug "^2.3.3" 1587 | define-property "^0.2.5" 1588 | extend-shallow "^2.0.1" 1589 | posix-character-classes "^0.1.0" 1590 | regex-not "^1.0.0" 1591 | snapdragon "^0.8.1" 1592 | to-regex "^3.0.1" 1593 | 1594 | expand-range@^1.8.1: 1595 | version "1.8.2" 1596 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1597 | integrity sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc= 1598 | dependencies: 1599 | fill-range "^2.1.0" 1600 | 1601 | extend-shallow@^2.0.1: 1602 | version "2.0.1" 1603 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1604 | integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= 1605 | dependencies: 1606 | is-extendable "^0.1.0" 1607 | 1608 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1609 | version "3.0.2" 1610 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1611 | integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= 1612 | dependencies: 1613 | assign-symbols "^1.0.0" 1614 | is-extendable "^1.0.1" 1615 | 1616 | extglob@^0.3.1: 1617 | version "0.3.2" 1618 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1619 | integrity sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE= 1620 | dependencies: 1621 | is-extglob "^1.0.0" 1622 | 1623 | extglob@^2.0.4: 1624 | version "2.0.4" 1625 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1626 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== 1627 | dependencies: 1628 | array-unique "^0.3.2" 1629 | define-property "^1.0.0" 1630 | expand-brackets "^2.1.4" 1631 | extend-shallow "^2.0.1" 1632 | fragment-cache "^0.2.1" 1633 | regex-not "^1.0.0" 1634 | snapdragon "^0.8.1" 1635 | to-regex "^3.0.1" 1636 | 1637 | filename-regex@^2.0.0: 1638 | version "2.0.1" 1639 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1640 | integrity sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY= 1641 | 1642 | fill-range@^2.1.0: 1643 | version "2.2.4" 1644 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 1645 | integrity sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q== 1646 | dependencies: 1647 | is-number "^2.1.0" 1648 | isobject "^2.0.0" 1649 | randomatic "^3.0.0" 1650 | repeat-element "^1.1.2" 1651 | repeat-string "^1.5.2" 1652 | 1653 | fill-range@^4.0.0: 1654 | version "4.0.0" 1655 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1656 | integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= 1657 | dependencies: 1658 | extend-shallow "^2.0.1" 1659 | is-number "^3.0.0" 1660 | repeat-string "^1.6.1" 1661 | to-regex-range "^2.1.0" 1662 | 1663 | for-in@^1.0.1, for-in@^1.0.2: 1664 | version "1.0.2" 1665 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1666 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= 1667 | 1668 | for-own@^0.1.4: 1669 | version "0.1.5" 1670 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1671 | integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4= 1672 | dependencies: 1673 | for-in "^1.0.1" 1674 | 1675 | fragment-cache@^0.2.1: 1676 | version "0.2.1" 1677 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1678 | integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= 1679 | dependencies: 1680 | map-cache "^0.2.2" 1681 | 1682 | fs-minipass@^1.2.5: 1683 | version "1.2.6" 1684 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.6.tgz#2c5cc30ded81282bfe8a0d7c7c1853ddeb102c07" 1685 | integrity sha512-crhvyXcMejjv3Z5d2Fa9sf5xLYVCF5O1c71QxbVnbLsmYMBEvDAftewesN/HhY03YRoA7zOMxjNGrF5svGaaeQ== 1686 | dependencies: 1687 | minipass "^2.2.1" 1688 | 1689 | fs-readdir-recursive@^1.0.0: 1690 | version "1.1.0" 1691 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1692 | integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA== 1693 | 1694 | fs.realpath@^1.0.0: 1695 | version "1.0.0" 1696 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1697 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1698 | 1699 | fsevents@^1.0.0: 1700 | version "1.2.9" 1701 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f" 1702 | integrity sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw== 1703 | dependencies: 1704 | nan "^2.12.1" 1705 | node-pre-gyp "^0.12.0" 1706 | 1707 | function-bind@^1.1.1: 1708 | version "1.1.1" 1709 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1710 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1711 | 1712 | gauge@~2.7.3: 1713 | version "2.7.4" 1714 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1715 | integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= 1716 | dependencies: 1717 | aproba "^1.0.3" 1718 | console-control-strings "^1.0.0" 1719 | has-unicode "^2.0.0" 1720 | object-assign "^4.1.0" 1721 | signal-exit "^3.0.0" 1722 | string-width "^1.0.1" 1723 | strip-ansi "^3.0.1" 1724 | wide-align "^1.1.0" 1725 | 1726 | get-assigned-identifiers@^1.2.0: 1727 | version "1.2.0" 1728 | resolved "https://registry.yarnpkg.com/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz#6dbf411de648cbaf8d9169ebb0d2d576191e2ff1" 1729 | integrity sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ== 1730 | 1731 | get-value@^2.0.3, get-value@^2.0.6: 1732 | version "2.0.6" 1733 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1734 | integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= 1735 | 1736 | glob-base@^0.3.0: 1737 | version "0.3.0" 1738 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1739 | integrity sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q= 1740 | dependencies: 1741 | glob-parent "^2.0.0" 1742 | is-glob "^2.0.0" 1743 | 1744 | glob-parent@^2.0.0: 1745 | version "2.0.0" 1746 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1747 | integrity sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg= 1748 | dependencies: 1749 | is-glob "^2.0.0" 1750 | 1751 | glob@^7.1.0, glob@^7.1.2, glob@^7.1.3: 1752 | version "7.1.4" 1753 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" 1754 | integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== 1755 | dependencies: 1756 | fs.realpath "^1.0.0" 1757 | inflight "^1.0.4" 1758 | inherits "2" 1759 | minimatch "^3.0.4" 1760 | once "^1.3.0" 1761 | path-is-absolute "^1.0.0" 1762 | 1763 | globals@^9.18.0: 1764 | version "9.18.0" 1765 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1766 | integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== 1767 | 1768 | graceful-fs@^4.1.11, graceful-fs@^4.1.4: 1769 | version "4.1.15" 1770 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" 1771 | integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== 1772 | 1773 | has-ansi@^2.0.0: 1774 | version "2.0.0" 1775 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1776 | integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= 1777 | dependencies: 1778 | ansi-regex "^2.0.0" 1779 | 1780 | has-unicode@^2.0.0: 1781 | version "2.0.1" 1782 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1783 | integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= 1784 | 1785 | has-value@^0.3.1: 1786 | version "0.3.1" 1787 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1788 | integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= 1789 | dependencies: 1790 | get-value "^2.0.3" 1791 | has-values "^0.1.4" 1792 | isobject "^2.0.0" 1793 | 1794 | has-value@^1.0.0: 1795 | version "1.0.0" 1796 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1797 | integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= 1798 | dependencies: 1799 | get-value "^2.0.6" 1800 | has-values "^1.0.0" 1801 | isobject "^3.0.0" 1802 | 1803 | has-values@^0.1.4: 1804 | version "0.1.4" 1805 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1806 | integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= 1807 | 1808 | has-values@^1.0.0: 1809 | version "1.0.0" 1810 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1811 | integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= 1812 | dependencies: 1813 | is-number "^3.0.0" 1814 | kind-of "^4.0.0" 1815 | 1816 | has@^1.0.0: 1817 | version "1.0.3" 1818 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1819 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1820 | dependencies: 1821 | function-bind "^1.1.1" 1822 | 1823 | hash-base@^3.0.0: 1824 | version "3.0.4" 1825 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 1826 | integrity sha1-X8hoaEfs1zSZQDMZprCj8/auSRg= 1827 | dependencies: 1828 | inherits "^2.0.1" 1829 | safe-buffer "^5.0.1" 1830 | 1831 | hash.js@^1.0.0, hash.js@^1.0.3: 1832 | version "1.1.7" 1833 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 1834 | integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== 1835 | dependencies: 1836 | inherits "^2.0.3" 1837 | minimalistic-assert "^1.0.1" 1838 | 1839 | hmac-drbg@^1.0.0: 1840 | version "1.0.1" 1841 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1842 | integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= 1843 | dependencies: 1844 | hash.js "^1.0.3" 1845 | minimalistic-assert "^1.0.0" 1846 | minimalistic-crypto-utils "^1.0.1" 1847 | 1848 | home-or-tmp@^2.0.0: 1849 | version "2.0.0" 1850 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1851 | integrity sha1-42w/LSyufXRqhX440Y1fMqeILbg= 1852 | dependencies: 1853 | os-homedir "^1.0.0" 1854 | os-tmpdir "^1.0.1" 1855 | 1856 | htmlescape@^1.1.0: 1857 | version "1.1.1" 1858 | resolved "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351" 1859 | integrity sha1-OgPtwiFLyjtmQko+eVk0lQnLA1E= 1860 | 1861 | https-browserify@^1.0.0: 1862 | version "1.0.0" 1863 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 1864 | integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= 1865 | 1866 | iconv-lite@^0.4.4: 1867 | version "0.4.24" 1868 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1869 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1870 | dependencies: 1871 | safer-buffer ">= 2.1.2 < 3" 1872 | 1873 | ieee754@^1.1.4: 1874 | version "1.1.13" 1875 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" 1876 | integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== 1877 | 1878 | ignore-walk@^3.0.1: 1879 | version "3.0.1" 1880 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1881 | integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ== 1882 | dependencies: 1883 | minimatch "^3.0.4" 1884 | 1885 | indexof@0.0.1: 1886 | version "0.0.1" 1887 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1888 | integrity sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10= 1889 | 1890 | inflight@^1.0.4: 1891 | version "1.0.6" 1892 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1893 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1894 | dependencies: 1895 | once "^1.3.0" 1896 | wrappy "1" 1897 | 1898 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: 1899 | version "2.0.3" 1900 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1901 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 1902 | 1903 | inherits@2.0.1: 1904 | version "2.0.1" 1905 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1906 | integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= 1907 | 1908 | ini@~1.3.0: 1909 | version "1.3.5" 1910 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1911 | integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== 1912 | 1913 | inline-source-map@~0.6.0: 1914 | version "0.6.2" 1915 | resolved "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" 1916 | integrity sha1-+Tk0ccGKedFyT4Y/o4tYY3Ct4qU= 1917 | dependencies: 1918 | source-map "~0.5.3" 1919 | 1920 | insert-module-globals@^7.0.0: 1921 | version "7.2.0" 1922 | resolved "https://registry.yarnpkg.com/insert-module-globals/-/insert-module-globals-7.2.0.tgz#ec87e5b42728479e327bd5c5c71611ddfb4752ba" 1923 | integrity sha512-VE6NlW+WGn2/AeOMd496AHFYmE7eLKkUY6Ty31k4og5vmA3Fjuwe9v6ifH6Xx/Hz27QvdoMoviw1/pqWRB09Sw== 1924 | dependencies: 1925 | JSONStream "^1.0.3" 1926 | acorn-node "^1.5.2" 1927 | combine-source-map "^0.8.0" 1928 | concat-stream "^1.6.1" 1929 | is-buffer "^1.1.0" 1930 | path-is-absolute "^1.0.1" 1931 | process "~0.11.0" 1932 | through2 "^2.0.0" 1933 | undeclared-identifiers "^1.1.2" 1934 | xtend "^4.0.0" 1935 | 1936 | invariant@^2.2.2: 1937 | version "2.2.4" 1938 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1939 | integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== 1940 | dependencies: 1941 | loose-envify "^1.0.0" 1942 | 1943 | is-accessor-descriptor@^0.1.6: 1944 | version "0.1.6" 1945 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1946 | integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= 1947 | dependencies: 1948 | kind-of "^3.0.2" 1949 | 1950 | is-accessor-descriptor@^1.0.0: 1951 | version "1.0.0" 1952 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1953 | integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== 1954 | dependencies: 1955 | kind-of "^6.0.0" 1956 | 1957 | is-binary-path@^1.0.0: 1958 | version "1.0.1" 1959 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1960 | integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= 1961 | dependencies: 1962 | binary-extensions "^1.0.0" 1963 | 1964 | is-buffer@^1.1.0, is-buffer@^1.1.5: 1965 | version "1.1.6" 1966 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1967 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 1968 | 1969 | is-data-descriptor@^0.1.4: 1970 | version "0.1.4" 1971 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1972 | integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= 1973 | dependencies: 1974 | kind-of "^3.0.2" 1975 | 1976 | is-data-descriptor@^1.0.0: 1977 | version "1.0.0" 1978 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1979 | integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== 1980 | dependencies: 1981 | kind-of "^6.0.0" 1982 | 1983 | is-descriptor@^0.1.0: 1984 | version "0.1.6" 1985 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1986 | integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== 1987 | dependencies: 1988 | is-accessor-descriptor "^0.1.6" 1989 | is-data-descriptor "^0.1.4" 1990 | kind-of "^5.0.0" 1991 | 1992 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1993 | version "1.0.2" 1994 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1995 | integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== 1996 | dependencies: 1997 | is-accessor-descriptor "^1.0.0" 1998 | is-data-descriptor "^1.0.0" 1999 | kind-of "^6.0.2" 2000 | 2001 | is-dotfile@^1.0.0: 2002 | version "1.0.3" 2003 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 2004 | integrity sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE= 2005 | 2006 | is-equal-shallow@^0.1.3: 2007 | version "0.1.3" 2008 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2009 | integrity sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ= 2010 | dependencies: 2011 | is-primitive "^2.0.0" 2012 | 2013 | is-extendable@^0.1.0, is-extendable@^0.1.1: 2014 | version "0.1.1" 2015 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2016 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= 2017 | 2018 | is-extendable@^1.0.1: 2019 | version "1.0.1" 2020 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 2021 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== 2022 | dependencies: 2023 | is-plain-object "^2.0.4" 2024 | 2025 | is-extglob@^1.0.0: 2026 | version "1.0.0" 2027 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2028 | integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA= 2029 | 2030 | is-finite@^1.0.0: 2031 | version "1.0.2" 2032 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2033 | integrity sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko= 2034 | dependencies: 2035 | number-is-nan "^1.0.0" 2036 | 2037 | is-fullwidth-code-point@^1.0.0: 2038 | version "1.0.0" 2039 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2040 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 2041 | dependencies: 2042 | number-is-nan "^1.0.0" 2043 | 2044 | is-fullwidth-code-point@^2.0.0: 2045 | version "2.0.0" 2046 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2047 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 2048 | 2049 | is-glob@^2.0.0, is-glob@^2.0.1: 2050 | version "2.0.1" 2051 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2052 | integrity sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM= 2053 | dependencies: 2054 | is-extglob "^1.0.0" 2055 | 2056 | is-number@^2.1.0: 2057 | version "2.1.0" 2058 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2059 | integrity sha1-Afy7s5NGOlSPL0ZszhbezknbkI8= 2060 | dependencies: 2061 | kind-of "^3.0.2" 2062 | 2063 | is-number@^3.0.0: 2064 | version "3.0.0" 2065 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2066 | integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= 2067 | dependencies: 2068 | kind-of "^3.0.2" 2069 | 2070 | is-number@^4.0.0: 2071 | version "4.0.0" 2072 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 2073 | integrity sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ== 2074 | 2075 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 2076 | version "2.0.4" 2077 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 2078 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 2079 | dependencies: 2080 | isobject "^3.0.1" 2081 | 2082 | is-posix-bracket@^0.1.0: 2083 | version "0.1.1" 2084 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2085 | integrity sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q= 2086 | 2087 | is-primitive@^2.0.0: 2088 | version "2.0.0" 2089 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2090 | integrity sha1-IHurkWOEmcB7Kt8kCkGochADRXU= 2091 | 2092 | is-windows@^1.0.2: 2093 | version "1.0.2" 2094 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 2095 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 2096 | 2097 | isarray@1.0.0, isarray@~1.0.0: 2098 | version "1.0.0" 2099 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2100 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 2101 | 2102 | isobject@^2.0.0: 2103 | version "2.1.0" 2104 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2105 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= 2106 | dependencies: 2107 | isarray "1.0.0" 2108 | 2109 | isobject@^3.0.0, isobject@^3.0.1: 2110 | version "3.0.1" 2111 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 2112 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= 2113 | 2114 | "js-tokens@^3.0.0 || ^4.0.0": 2115 | version "4.0.0" 2116 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2117 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 2118 | 2119 | js-tokens@^3.0.2: 2120 | version "3.0.2" 2121 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2122 | integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= 2123 | 2124 | jsesc@^1.3.0: 2125 | version "1.3.0" 2126 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2127 | integrity sha1-RsP+yMGJKxKwgz25vHYiF226s0s= 2128 | 2129 | jsesc@~0.5.0: 2130 | version "0.5.0" 2131 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2132 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 2133 | 2134 | json-stable-stringify@~0.0.0: 2135 | version "0.0.1" 2136 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45" 2137 | integrity sha1-YRwj6BTbN1Un34URk9tZ3Sryf0U= 2138 | dependencies: 2139 | jsonify "~0.0.0" 2140 | 2141 | json5@^0.5.1: 2142 | version "0.5.1" 2143 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2144 | integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE= 2145 | 2146 | jsonify@~0.0.0: 2147 | version "0.0.0" 2148 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2149 | integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM= 2150 | 2151 | jsonparse@^1.2.0: 2152 | version "1.3.1" 2153 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 2154 | integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA= 2155 | 2156 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2157 | version "3.2.2" 2158 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2159 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= 2160 | dependencies: 2161 | is-buffer "^1.1.5" 2162 | 2163 | kind-of@^4.0.0: 2164 | version "4.0.0" 2165 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2166 | integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= 2167 | dependencies: 2168 | is-buffer "^1.1.5" 2169 | 2170 | kind-of@^5.0.0: 2171 | version "5.1.0" 2172 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2173 | integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== 2174 | 2175 | kind-of@^6.0.0, kind-of@^6.0.2: 2176 | version "6.0.2" 2177 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2178 | integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== 2179 | 2180 | labeled-stream-splicer@^2.0.0: 2181 | version "2.0.2" 2182 | resolved "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.2.tgz#42a41a16abcd46fd046306cf4f2c3576fffb1c21" 2183 | integrity sha512-Ca4LSXFFZUjPScRaqOcFxneA0VpKZr4MMYCljyQr4LIewTLb3Y0IUTIsnBBsVubIeEfxeSZpSjSsRM8APEQaAw== 2184 | dependencies: 2185 | inherits "^2.0.1" 2186 | stream-splicer "^2.0.0" 2187 | 2188 | lodash.memoize@~3.0.3: 2189 | version "3.0.4" 2190 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" 2191 | integrity sha1-LcvSwofLwKVcxCMovQxzYVDVPj8= 2192 | 2193 | lodash@^4.17.4: 2194 | version "4.17.11" 2195 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" 2196 | integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== 2197 | 2198 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: 2199 | version "1.4.0" 2200 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 2201 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 2202 | dependencies: 2203 | js-tokens "^3.0.0 || ^4.0.0" 2204 | 2205 | map-cache@^0.2.2: 2206 | version "0.2.2" 2207 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2208 | integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= 2209 | 2210 | map-visit@^1.0.0: 2211 | version "1.0.0" 2212 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2213 | integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= 2214 | dependencies: 2215 | object-visit "^1.0.0" 2216 | 2217 | math-random@^1.0.1: 2218 | version "1.0.4" 2219 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.4.tgz#5dd6943c938548267016d4e34f057583080c514c" 2220 | integrity sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A== 2221 | 2222 | md5.js@^1.3.4: 2223 | version "1.3.5" 2224 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" 2225 | integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== 2226 | dependencies: 2227 | hash-base "^3.0.0" 2228 | inherits "^2.0.1" 2229 | safe-buffer "^5.1.2" 2230 | 2231 | micromatch@^2.1.5: 2232 | version "2.3.11" 2233 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2234 | integrity sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU= 2235 | dependencies: 2236 | arr-diff "^2.0.0" 2237 | array-unique "^0.2.1" 2238 | braces "^1.8.2" 2239 | expand-brackets "^0.1.4" 2240 | extglob "^0.3.1" 2241 | filename-regex "^2.0.0" 2242 | is-extglob "^1.0.0" 2243 | is-glob "^2.0.1" 2244 | kind-of "^3.0.2" 2245 | normalize-path "^2.0.1" 2246 | object.omit "^2.0.0" 2247 | parse-glob "^3.0.4" 2248 | regex-cache "^0.4.2" 2249 | 2250 | micromatch@^3.1.10: 2251 | version "3.1.10" 2252 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2253 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== 2254 | dependencies: 2255 | arr-diff "^4.0.0" 2256 | array-unique "^0.3.2" 2257 | braces "^2.3.1" 2258 | define-property "^2.0.2" 2259 | extend-shallow "^3.0.2" 2260 | extglob "^2.0.4" 2261 | fragment-cache "^0.2.1" 2262 | kind-of "^6.0.2" 2263 | nanomatch "^1.2.9" 2264 | object.pick "^1.3.0" 2265 | regex-not "^1.0.0" 2266 | snapdragon "^0.8.1" 2267 | to-regex "^3.0.2" 2268 | 2269 | miller-rabin@^4.0.0: 2270 | version "4.0.1" 2271 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 2272 | integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== 2273 | dependencies: 2274 | bn.js "^4.0.0" 2275 | brorand "^1.0.1" 2276 | 2277 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 2278 | version "1.0.1" 2279 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 2280 | integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== 2281 | 2282 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 2283 | version "1.0.1" 2284 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 2285 | integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= 2286 | 2287 | minimatch@^3.0.4: 2288 | version "3.0.4" 2289 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2290 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 2291 | dependencies: 2292 | brace-expansion "^1.1.7" 2293 | 2294 | minimist@0.0.8: 2295 | version "0.0.8" 2296 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2297 | integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= 2298 | 2299 | minimist@^1.1.0, minimist@^1.2.0: 2300 | version "1.2.0" 2301 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2302 | integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= 2303 | 2304 | minipass@^2.2.1, minipass@^2.3.5: 2305 | version "2.3.5" 2306 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" 2307 | integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA== 2308 | dependencies: 2309 | safe-buffer "^5.1.2" 2310 | yallist "^3.0.0" 2311 | 2312 | minizlib@^1.2.1: 2313 | version "1.2.1" 2314 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" 2315 | integrity sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA== 2316 | dependencies: 2317 | minipass "^2.2.1" 2318 | 2319 | mixin-deep@^1.2.0: 2320 | version "1.3.1" 2321 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 2322 | integrity sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ== 2323 | dependencies: 2324 | for-in "^1.0.2" 2325 | is-extendable "^1.0.1" 2326 | 2327 | mkdirp@^0.5.0, mkdirp@^0.5.1: 2328 | version "0.5.1" 2329 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2330 | integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= 2331 | dependencies: 2332 | minimist "0.0.8" 2333 | 2334 | module-deps@^4.0.8: 2335 | version "4.1.1" 2336 | resolved "https://registry.yarnpkg.com/module-deps/-/module-deps-4.1.1.tgz#23215833f1da13fd606ccb8087b44852dcb821fd" 2337 | integrity sha1-IyFYM/HaE/1gbMuAh7RIUty4If0= 2338 | dependencies: 2339 | JSONStream "^1.0.3" 2340 | browser-resolve "^1.7.0" 2341 | cached-path-relative "^1.0.0" 2342 | concat-stream "~1.5.0" 2343 | defined "^1.0.0" 2344 | detective "^4.0.0" 2345 | duplexer2 "^0.1.2" 2346 | inherits "^2.0.1" 2347 | parents "^1.0.0" 2348 | readable-stream "^2.0.2" 2349 | resolve "^1.1.3" 2350 | stream-combiner2 "^1.1.1" 2351 | subarg "^1.0.0" 2352 | through2 "^2.0.0" 2353 | xtend "^4.0.0" 2354 | 2355 | ms@2.0.0: 2356 | version "2.0.0" 2357 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2358 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 2359 | 2360 | ms@^2.1.1: 2361 | version "2.1.1" 2362 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 2363 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 2364 | 2365 | nan@^2.12.1: 2366 | version "2.14.0" 2367 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" 2368 | integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== 2369 | 2370 | nanomatch@^1.2.9: 2371 | version "1.2.13" 2372 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 2373 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== 2374 | dependencies: 2375 | arr-diff "^4.0.0" 2376 | array-unique "^0.3.2" 2377 | define-property "^2.0.2" 2378 | extend-shallow "^3.0.2" 2379 | fragment-cache "^0.2.1" 2380 | is-windows "^1.0.2" 2381 | kind-of "^6.0.2" 2382 | object.pick "^1.3.0" 2383 | regex-not "^1.0.0" 2384 | snapdragon "^0.8.1" 2385 | to-regex "^3.0.1" 2386 | 2387 | needle@^2.2.1: 2388 | version "2.4.0" 2389 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c" 2390 | integrity sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg== 2391 | dependencies: 2392 | debug "^3.2.6" 2393 | iconv-lite "^0.4.4" 2394 | sax "^1.2.4" 2395 | 2396 | node-pre-gyp@^0.12.0: 2397 | version "0.12.0" 2398 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149" 2399 | integrity sha512-4KghwV8vH5k+g2ylT+sLTjy5wmUOb9vPhnM8NHvRf9dHmnW/CndrFXy2aRPaPST6dugXSdHXfeaHQm77PIz/1A== 2400 | dependencies: 2401 | detect-libc "^1.0.2" 2402 | mkdirp "^0.5.1" 2403 | needle "^2.2.1" 2404 | nopt "^4.0.1" 2405 | npm-packlist "^1.1.6" 2406 | npmlog "^4.0.2" 2407 | rc "^1.2.7" 2408 | rimraf "^2.6.1" 2409 | semver "^5.3.0" 2410 | tar "^4" 2411 | 2412 | nopt@^4.0.1: 2413 | version "4.0.1" 2414 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2415 | integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= 2416 | dependencies: 2417 | abbrev "1" 2418 | osenv "^0.1.4" 2419 | 2420 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2421 | version "2.1.1" 2422 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2423 | integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= 2424 | dependencies: 2425 | remove-trailing-separator "^1.0.1" 2426 | 2427 | npm-bundled@^1.0.1: 2428 | version "1.0.6" 2429 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" 2430 | integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g== 2431 | 2432 | npm-packlist@^1.1.6: 2433 | version "1.4.1" 2434 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.1.tgz#19064cdf988da80ea3cee45533879d90192bbfbc" 2435 | integrity sha512-+TcdO7HJJ8peiiYhvPxsEDhF3PJFGUGRcFsGve3vxvxdcpO2Z4Z7rkosRM0kWj6LfbK/P0gu3dzk5RU1ffvFcw== 2436 | dependencies: 2437 | ignore-walk "^3.0.1" 2438 | npm-bundled "^1.0.1" 2439 | 2440 | npmlog@^4.0.2: 2441 | version "4.1.2" 2442 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2443 | integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== 2444 | dependencies: 2445 | are-we-there-yet "~1.1.2" 2446 | console-control-strings "~1.1.0" 2447 | gauge "~2.7.3" 2448 | set-blocking "~2.0.0" 2449 | 2450 | number-is-nan@^1.0.0: 2451 | version "1.0.1" 2452 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2453 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 2454 | 2455 | object-assign@^4.1.0, object-assign@^4.1.1: 2456 | version "4.1.1" 2457 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2458 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 2459 | 2460 | object-copy@^0.1.0: 2461 | version "0.1.0" 2462 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2463 | integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= 2464 | dependencies: 2465 | copy-descriptor "^0.1.0" 2466 | define-property "^0.2.5" 2467 | kind-of "^3.0.3" 2468 | 2469 | object-visit@^1.0.0: 2470 | version "1.0.1" 2471 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2472 | integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= 2473 | dependencies: 2474 | isobject "^3.0.0" 2475 | 2476 | object.omit@^2.0.0: 2477 | version "2.0.1" 2478 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2479 | integrity sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo= 2480 | dependencies: 2481 | for-own "^0.1.4" 2482 | is-extendable "^0.1.1" 2483 | 2484 | object.pick@^1.3.0: 2485 | version "1.3.0" 2486 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2487 | integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= 2488 | dependencies: 2489 | isobject "^3.0.1" 2490 | 2491 | once@^1.3.0: 2492 | version "1.4.0" 2493 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2494 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2495 | dependencies: 2496 | wrappy "1" 2497 | 2498 | os-browserify@~0.3.0: 2499 | version "0.3.0" 2500 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 2501 | integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= 2502 | 2503 | os-homedir@^1.0.0: 2504 | version "1.0.2" 2505 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2506 | integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= 2507 | 2508 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2509 | version "1.0.2" 2510 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2511 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 2512 | 2513 | osenv@^0.1.4: 2514 | version "0.1.5" 2515 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2516 | integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== 2517 | dependencies: 2518 | os-homedir "^1.0.0" 2519 | os-tmpdir "^1.0.0" 2520 | 2521 | output-file-sync@^1.1.2: 2522 | version "1.1.2" 2523 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2524 | integrity sha1-0KM+7+YaIF+suQCS6CZZjVJFznY= 2525 | dependencies: 2526 | graceful-fs "^4.1.4" 2527 | mkdirp "^0.5.1" 2528 | object-assign "^4.1.0" 2529 | 2530 | pako@~1.0.5: 2531 | version "1.0.10" 2532 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732" 2533 | integrity sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw== 2534 | 2535 | parents@^1.0.0, parents@^1.0.1: 2536 | version "1.0.1" 2537 | resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" 2538 | integrity sha1-/t1NK/GTp3dF/nHjcdc8MwfZx1E= 2539 | dependencies: 2540 | path-platform "~0.11.15" 2541 | 2542 | parse-asn1@^5.0.0: 2543 | version "5.1.4" 2544 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.4.tgz#37f6628f823fbdeb2273b4d540434a22f3ef1fcc" 2545 | integrity sha512-Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw== 2546 | dependencies: 2547 | asn1.js "^4.0.0" 2548 | browserify-aes "^1.0.0" 2549 | create-hash "^1.1.0" 2550 | evp_bytestokey "^1.0.0" 2551 | pbkdf2 "^3.0.3" 2552 | safe-buffer "^5.1.1" 2553 | 2554 | parse-glob@^3.0.4: 2555 | version "3.0.4" 2556 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2557 | integrity sha1-ssN2z7EfNVE7rdFz7wu246OIORw= 2558 | dependencies: 2559 | glob-base "^0.3.0" 2560 | is-dotfile "^1.0.0" 2561 | is-extglob "^1.0.0" 2562 | is-glob "^2.0.0" 2563 | 2564 | pascalcase@^0.1.1: 2565 | version "0.1.1" 2566 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2567 | integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= 2568 | 2569 | path-browserify@~0.0.0: 2570 | version "0.0.1" 2571 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" 2572 | integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== 2573 | 2574 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2575 | version "1.0.1" 2576 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2577 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2578 | 2579 | path-parse@^1.0.6: 2580 | version "1.0.6" 2581 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2582 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 2583 | 2584 | path-platform@~0.11.15: 2585 | version "0.11.15" 2586 | resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" 2587 | integrity sha1-6GQhf3TDaFDwhSt43Hv31KVyG/I= 2588 | 2589 | pbkdf2@^3.0.3: 2590 | version "3.0.17" 2591 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" 2592 | integrity sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA== 2593 | dependencies: 2594 | create-hash "^1.1.2" 2595 | create-hmac "^1.1.4" 2596 | ripemd160 "^2.0.1" 2597 | safe-buffer "^5.0.1" 2598 | sha.js "^2.4.8" 2599 | 2600 | posix-character-classes@^0.1.0: 2601 | version "0.1.1" 2602 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2603 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= 2604 | 2605 | preserve@^0.2.0: 2606 | version "0.2.0" 2607 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2608 | integrity sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks= 2609 | 2610 | private@^0.1.6, private@^0.1.8: 2611 | version "0.1.8" 2612 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2613 | integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== 2614 | 2615 | process-nextick-args@~1.0.6: 2616 | version "1.0.7" 2617 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2618 | integrity sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M= 2619 | 2620 | process-nextick-args@~2.0.0: 2621 | version "2.0.0" 2622 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2623 | integrity sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw== 2624 | 2625 | process@~0.11.0: 2626 | version "0.11.10" 2627 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 2628 | integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= 2629 | 2630 | prop-types@^15.5.10, prop-types@^15.6.2: 2631 | version "15.7.2" 2632 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" 2633 | integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== 2634 | dependencies: 2635 | loose-envify "^1.4.0" 2636 | object-assign "^4.1.1" 2637 | react-is "^16.8.1" 2638 | 2639 | public-encrypt@^4.0.0: 2640 | version "4.0.3" 2641 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" 2642 | integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== 2643 | dependencies: 2644 | bn.js "^4.1.0" 2645 | browserify-rsa "^4.0.0" 2646 | create-hash "^1.1.0" 2647 | parse-asn1 "^5.0.0" 2648 | randombytes "^2.0.1" 2649 | safe-buffer "^5.1.2" 2650 | 2651 | punycode@1.3.2: 2652 | version "1.3.2" 2653 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2654 | integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= 2655 | 2656 | punycode@^1.3.2: 2657 | version "1.4.1" 2658 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2659 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= 2660 | 2661 | querystring-es3@~0.2.0: 2662 | version "0.2.1" 2663 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2664 | integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= 2665 | 2666 | querystring@0.2.0: 2667 | version "0.2.0" 2668 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2669 | integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= 2670 | 2671 | randomatic@^3.0.0: 2672 | version "3.1.1" 2673 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed" 2674 | integrity sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw== 2675 | dependencies: 2676 | is-number "^4.0.0" 2677 | kind-of "^6.0.0" 2678 | math-random "^1.0.1" 2679 | 2680 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: 2681 | version "2.1.0" 2682 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" 2683 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== 2684 | dependencies: 2685 | safe-buffer "^5.1.0" 2686 | 2687 | randomfill@^1.0.3: 2688 | version "1.0.4" 2689 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" 2690 | integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== 2691 | dependencies: 2692 | randombytes "^2.0.5" 2693 | safe-buffer "^5.1.0" 2694 | 2695 | rc@^1.2.7: 2696 | version "1.2.8" 2697 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2698 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 2699 | dependencies: 2700 | deep-extend "^0.6.0" 2701 | ini "~1.3.0" 2702 | minimist "^1.2.0" 2703 | strip-json-comments "~2.0.1" 2704 | 2705 | react-dom@^16.8.6: 2706 | version "16.8.6" 2707 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.8.6.tgz#71d6303f631e8b0097f56165ef608f051ff6e10f" 2708 | integrity sha512-1nL7PIq9LTL3fthPqwkvr2zY7phIPjYrT0jp4HjyEQrEROnw4dG41VVwi/wfoCneoleqrNX7iAD+pXebJZwrwA== 2709 | dependencies: 2710 | loose-envify "^1.1.0" 2711 | object-assign "^4.1.1" 2712 | prop-types "^15.6.2" 2713 | scheduler "^0.13.6" 2714 | 2715 | react-is@^16.8.1: 2716 | version "16.8.6" 2717 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.6.tgz#5bbc1e2d29141c9fbdfed456343fe2bc430a6a16" 2718 | integrity sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA== 2719 | 2720 | react@^16.9.0: 2721 | version "16.9.0" 2722 | resolved "https://registry.yarnpkg.com/react/-/react-16.9.0.tgz#40ba2f9af13bc1a38d75dbf2f4359a5185c4f7aa" 2723 | integrity sha512-+7LQnFBwkiw+BobzOF6N//BdoNw0ouwmSJTEm9cglOOmsg/TMiFHZLe2sEoN5M7LgJTj9oHH0gxklfnQe66S1w== 2724 | dependencies: 2725 | loose-envify "^1.1.0" 2726 | object-assign "^4.1.1" 2727 | prop-types "^15.6.2" 2728 | 2729 | read-only-stream@^2.0.0: 2730 | version "2.0.0" 2731 | resolved "https://registry.yarnpkg.com/read-only-stream/-/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0" 2732 | integrity sha1-JyT9aoET1zdkrCiNQ4YnDB2/F/A= 2733 | dependencies: 2734 | readable-stream "^2.0.2" 2735 | 2736 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.2.2, readable-stream@^2.3.6, readable-stream@~2.3.6: 2737 | version "2.3.6" 2738 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2739 | integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== 2740 | dependencies: 2741 | core-util-is "~1.0.0" 2742 | inherits "~2.0.3" 2743 | isarray "~1.0.0" 2744 | process-nextick-args "~2.0.0" 2745 | safe-buffer "~5.1.1" 2746 | string_decoder "~1.1.1" 2747 | util-deprecate "~1.0.1" 2748 | 2749 | readable-stream@~2.0.0: 2750 | version "2.0.6" 2751 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 2752 | integrity sha1-j5A0HmilPMySh4jaz80Rs265t44= 2753 | dependencies: 2754 | core-util-is "~1.0.0" 2755 | inherits "~2.0.1" 2756 | isarray "~1.0.0" 2757 | process-nextick-args "~1.0.6" 2758 | string_decoder "~0.10.x" 2759 | util-deprecate "~1.0.1" 2760 | 2761 | readdirp@^2.0.0: 2762 | version "2.2.1" 2763 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" 2764 | integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== 2765 | dependencies: 2766 | graceful-fs "^4.1.11" 2767 | micromatch "^3.1.10" 2768 | readable-stream "^2.0.2" 2769 | 2770 | regenerate@^1.2.1: 2771 | version "1.4.0" 2772 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 2773 | integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== 2774 | 2775 | regenerator-runtime@^0.10.5: 2776 | version "0.10.5" 2777 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2778 | integrity sha1-M2w+/BIgrc7dosn6tntaeVWjNlg= 2779 | 2780 | regenerator-runtime@^0.11.0: 2781 | version "0.11.1" 2782 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2783 | integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== 2784 | 2785 | regenerator-transform@^0.10.0: 2786 | version "0.10.1" 2787 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2788 | integrity sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q== 2789 | dependencies: 2790 | babel-runtime "^6.18.0" 2791 | babel-types "^6.19.0" 2792 | private "^0.1.6" 2793 | 2794 | regex-cache@^0.4.2: 2795 | version "0.4.4" 2796 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2797 | integrity sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ== 2798 | dependencies: 2799 | is-equal-shallow "^0.1.3" 2800 | 2801 | regex-not@^1.0.0, regex-not@^1.0.2: 2802 | version "1.0.2" 2803 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2804 | integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== 2805 | dependencies: 2806 | extend-shallow "^3.0.2" 2807 | safe-regex "^1.1.0" 2808 | 2809 | regexpu-core@^2.0.0: 2810 | version "2.0.0" 2811 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2812 | integrity sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA= 2813 | dependencies: 2814 | regenerate "^1.2.1" 2815 | regjsgen "^0.2.0" 2816 | regjsparser "^0.1.4" 2817 | 2818 | regjsgen@^0.2.0: 2819 | version "0.2.0" 2820 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2821 | integrity sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc= 2822 | 2823 | regjsparser@^0.1.4: 2824 | version "0.1.5" 2825 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2826 | integrity sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw= 2827 | dependencies: 2828 | jsesc "~0.5.0" 2829 | 2830 | remove-trailing-separator@^1.0.1: 2831 | version "1.1.0" 2832 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2833 | integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= 2834 | 2835 | repeat-element@^1.1.2: 2836 | version "1.1.3" 2837 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 2838 | integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== 2839 | 2840 | repeat-string@^1.5.2, repeat-string@^1.6.1: 2841 | version "1.6.1" 2842 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2843 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= 2844 | 2845 | repeating@^2.0.0: 2846 | version "2.0.1" 2847 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2848 | integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= 2849 | dependencies: 2850 | is-finite "^1.0.0" 2851 | 2852 | resolve-url@^0.2.1: 2853 | version "0.2.1" 2854 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2855 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 2856 | 2857 | resolve@1.1.7: 2858 | version "1.1.7" 2859 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2860 | integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= 2861 | 2862 | resolve@^1.1.3, resolve@^1.1.4: 2863 | version "1.11.1" 2864 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.11.1.tgz#ea10d8110376982fef578df8fc30b9ac30a07a3e" 2865 | integrity sha512-vIpgF6wfuJOZI7KKKSP+HmiKggadPQAdsp5HiC1mvqnfp0gF1vdwgBWZIdrVft9pgqoMFQN+R7BSWZiBxx+BBw== 2866 | dependencies: 2867 | path-parse "^1.0.6" 2868 | 2869 | ret@~0.1.10: 2870 | version "0.1.15" 2871 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2872 | integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== 2873 | 2874 | rimraf@^2.6.1: 2875 | version "2.6.3" 2876 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 2877 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 2878 | dependencies: 2879 | glob "^7.1.3" 2880 | 2881 | ripemd160@^2.0.0, ripemd160@^2.0.1: 2882 | version "2.0.2" 2883 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" 2884 | integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== 2885 | dependencies: 2886 | hash-base "^3.0.0" 2887 | inherits "^2.0.1" 2888 | 2889 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2890 | version "5.1.2" 2891 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2892 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2893 | 2894 | safe-regex@^1.1.0: 2895 | version "1.1.0" 2896 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 2897 | integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= 2898 | dependencies: 2899 | ret "~0.1.10" 2900 | 2901 | "safer-buffer@>= 2.1.2 < 3": 2902 | version "2.1.2" 2903 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2904 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2905 | 2906 | sax@^1.2.4: 2907 | version "1.2.4" 2908 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2909 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 2910 | 2911 | scheduler@^0.13.6: 2912 | version "0.13.6" 2913 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.13.6.tgz#466a4ec332467b31a91b9bf74e5347072e4cd889" 2914 | integrity sha512-IWnObHt413ucAYKsD9J1QShUKkbKLQQHdxRyw73sw4FN26iWr3DY/H34xGPe4nmL1DwXyWmSWmMrA9TfQbE/XQ== 2915 | dependencies: 2916 | loose-envify "^1.1.0" 2917 | object-assign "^4.1.1" 2918 | 2919 | semver@^5.3.0: 2920 | version "5.7.0" 2921 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" 2922 | integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== 2923 | 2924 | set-blocking@~2.0.0: 2925 | version "2.0.0" 2926 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2927 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 2928 | 2929 | set-value@^0.4.3: 2930 | version "0.4.3" 2931 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 2932 | integrity sha1-fbCPnT0i3H945Trzw79GZuzfzPE= 2933 | dependencies: 2934 | extend-shallow "^2.0.1" 2935 | is-extendable "^0.1.1" 2936 | is-plain-object "^2.0.1" 2937 | to-object-path "^0.3.0" 2938 | 2939 | set-value@^2.0.0: 2940 | version "2.0.0" 2941 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 2942 | integrity sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg== 2943 | dependencies: 2944 | extend-shallow "^2.0.1" 2945 | is-extendable "^0.1.1" 2946 | is-plain-object "^2.0.3" 2947 | split-string "^3.0.1" 2948 | 2949 | sha.js@^2.4.0, sha.js@^2.4.8, sha.js@~2.4.4: 2950 | version "2.4.11" 2951 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" 2952 | integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== 2953 | dependencies: 2954 | inherits "^2.0.1" 2955 | safe-buffer "^5.0.1" 2956 | 2957 | shasum@^1.0.0: 2958 | version "1.0.2" 2959 | resolved "https://registry.yarnpkg.com/shasum/-/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f" 2960 | integrity sha1-5wEjENj0F/TetXEhUOVni4euVl8= 2961 | dependencies: 2962 | json-stable-stringify "~0.0.0" 2963 | sha.js "~2.4.4" 2964 | 2965 | shell-quote@^1.6.1: 2966 | version "1.6.1" 2967 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 2968 | integrity sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c= 2969 | dependencies: 2970 | array-filter "~0.0.0" 2971 | array-map "~0.0.0" 2972 | array-reduce "~0.0.0" 2973 | jsonify "~0.0.0" 2974 | 2975 | signal-exit@^3.0.0: 2976 | version "3.0.2" 2977 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2978 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 2979 | 2980 | simple-concat@^1.0.0: 2981 | version "1.0.0" 2982 | resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.0.tgz#7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6" 2983 | integrity sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY= 2984 | 2985 | slash@^1.0.0: 2986 | version "1.0.0" 2987 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2988 | integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU= 2989 | 2990 | snapdragon-node@^2.0.1: 2991 | version "2.1.1" 2992 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 2993 | integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== 2994 | dependencies: 2995 | define-property "^1.0.0" 2996 | isobject "^3.0.0" 2997 | snapdragon-util "^3.0.1" 2998 | 2999 | snapdragon-util@^3.0.1: 3000 | version "3.0.1" 3001 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3002 | integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== 3003 | dependencies: 3004 | kind-of "^3.2.0" 3005 | 3006 | snapdragon@^0.8.1: 3007 | version "0.8.2" 3008 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3009 | integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== 3010 | dependencies: 3011 | base "^0.11.1" 3012 | debug "^2.2.0" 3013 | define-property "^0.2.5" 3014 | extend-shallow "^2.0.1" 3015 | map-cache "^0.2.2" 3016 | source-map "^0.5.6" 3017 | source-map-resolve "^0.5.0" 3018 | use "^3.1.0" 3019 | 3020 | source-map-resolve@^0.5.0: 3021 | version "0.5.2" 3022 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 3023 | integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== 3024 | dependencies: 3025 | atob "^2.1.1" 3026 | decode-uri-component "^0.2.0" 3027 | resolve-url "^0.2.1" 3028 | source-map-url "^0.4.0" 3029 | urix "^0.1.0" 3030 | 3031 | source-map-support@^0.4.15: 3032 | version "0.4.18" 3033 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3034 | integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA== 3035 | dependencies: 3036 | source-map "^0.5.6" 3037 | 3038 | source-map-url@^0.4.0: 3039 | version "0.4.0" 3040 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3041 | integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= 3042 | 3043 | source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.3: 3044 | version "0.5.7" 3045 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3046 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 3047 | 3048 | split-string@^3.0.1, split-string@^3.0.2: 3049 | version "3.1.0" 3050 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3051 | integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== 3052 | dependencies: 3053 | extend-shallow "^3.0.0" 3054 | 3055 | static-extend@^0.1.1: 3056 | version "0.1.2" 3057 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3058 | integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= 3059 | dependencies: 3060 | define-property "^0.2.5" 3061 | object-copy "^0.1.0" 3062 | 3063 | stream-browserify@^2.0.0: 3064 | version "2.0.2" 3065 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" 3066 | integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== 3067 | dependencies: 3068 | inherits "~2.0.1" 3069 | readable-stream "^2.0.2" 3070 | 3071 | stream-combiner2@^1.1.1: 3072 | version "1.1.1" 3073 | resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" 3074 | integrity sha1-+02KFCDqNidk4hrUeAOXvry0HL4= 3075 | dependencies: 3076 | duplexer2 "~0.1.0" 3077 | readable-stream "^2.0.2" 3078 | 3079 | stream-http@^2.0.0: 3080 | version "2.8.3" 3081 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" 3082 | integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== 3083 | dependencies: 3084 | builtin-status-codes "^3.0.0" 3085 | inherits "^2.0.1" 3086 | readable-stream "^2.3.6" 3087 | to-arraybuffer "^1.0.0" 3088 | xtend "^4.0.0" 3089 | 3090 | stream-splicer@^2.0.0: 3091 | version "2.0.1" 3092 | resolved "https://registry.yarnpkg.com/stream-splicer/-/stream-splicer-2.0.1.tgz#0b13b7ee2b5ac7e0609a7463d83899589a363fcd" 3093 | integrity sha512-Xizh4/NPuYSyAXyT7g8IvdJ9HJpxIGL9PjyhtywCZvvP0OPIdqyrr4dMikeuvY8xahpdKEBlBTySe583totajg== 3094 | dependencies: 3095 | inherits "^2.0.1" 3096 | readable-stream "^2.0.2" 3097 | 3098 | string-width@^1.0.1: 3099 | version "1.0.2" 3100 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3101 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 3102 | dependencies: 3103 | code-point-at "^1.0.0" 3104 | is-fullwidth-code-point "^1.0.0" 3105 | strip-ansi "^3.0.0" 3106 | 3107 | "string-width@^1.0.2 || 2": 3108 | version "2.1.1" 3109 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3110 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 3111 | dependencies: 3112 | is-fullwidth-code-point "^2.0.0" 3113 | strip-ansi "^4.0.0" 3114 | 3115 | string_decoder@~0.10.x: 3116 | version "0.10.31" 3117 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3118 | integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= 3119 | 3120 | string_decoder@~1.0.0: 3121 | version "1.0.3" 3122 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3123 | integrity sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ== 3124 | dependencies: 3125 | safe-buffer "~5.1.0" 3126 | 3127 | string_decoder@~1.1.1: 3128 | version "1.1.1" 3129 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3130 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 3131 | dependencies: 3132 | safe-buffer "~5.1.0" 3133 | 3134 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3135 | version "3.0.1" 3136 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3137 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 3138 | dependencies: 3139 | ansi-regex "^2.0.0" 3140 | 3141 | strip-ansi@^4.0.0: 3142 | version "4.0.0" 3143 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3144 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 3145 | dependencies: 3146 | ansi-regex "^3.0.0" 3147 | 3148 | strip-json-comments@~2.0.1: 3149 | version "2.0.1" 3150 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3151 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 3152 | 3153 | subarg@^1.0.0: 3154 | version "1.0.0" 3155 | resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" 3156 | integrity sha1-9izxdYHplrSPyWVpn1TAauJouNI= 3157 | dependencies: 3158 | minimist "^1.1.0" 3159 | 3160 | supports-color@^2.0.0: 3161 | version "2.0.0" 3162 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3163 | integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= 3164 | 3165 | syntax-error@^1.1.1: 3166 | version "1.4.0" 3167 | resolved "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.4.0.tgz#2d9d4ff5c064acb711594a3e3b95054ad51d907c" 3168 | integrity sha512-YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w== 3169 | dependencies: 3170 | acorn-node "^1.2.0" 3171 | 3172 | tar@^4: 3173 | version "4.4.10" 3174 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.10.tgz#946b2810b9a5e0b26140cf78bea6b0b0d689eba1" 3175 | integrity sha512-g2SVs5QIxvo6OLp0GudTqEf05maawKUxXru104iaayWA09551tFCTI8f1Asb4lPfkBr91k07iL4c11XO3/b0tA== 3176 | dependencies: 3177 | chownr "^1.1.1" 3178 | fs-minipass "^1.2.5" 3179 | minipass "^2.3.5" 3180 | minizlib "^1.2.1" 3181 | mkdirp "^0.5.0" 3182 | safe-buffer "^5.1.2" 3183 | yallist "^3.0.3" 3184 | 3185 | through2@^2.0.0: 3186 | version "2.0.5" 3187 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" 3188 | integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== 3189 | dependencies: 3190 | readable-stream "~2.3.6" 3191 | xtend "~4.0.1" 3192 | 3193 | "through@>=2.2.7 <3": 3194 | version "2.3.8" 3195 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3196 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 3197 | 3198 | timers-browserify@^1.0.1: 3199 | version "1.4.2" 3200 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" 3201 | integrity sha1-ycWLV1voQHN1y14kYtrO50NZ9B0= 3202 | dependencies: 3203 | process "~0.11.0" 3204 | 3205 | to-arraybuffer@^1.0.0: 3206 | version "1.0.1" 3207 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3208 | integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= 3209 | 3210 | to-fast-properties@^1.0.3: 3211 | version "1.0.3" 3212 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3213 | integrity sha1-uDVx+k2MJbguIxsG46MFXeTKGkc= 3214 | 3215 | to-object-path@^0.3.0: 3216 | version "0.3.0" 3217 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3218 | integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= 3219 | dependencies: 3220 | kind-of "^3.0.2" 3221 | 3222 | to-regex-range@^2.1.0: 3223 | version "2.1.1" 3224 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3225 | integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= 3226 | dependencies: 3227 | is-number "^3.0.0" 3228 | repeat-string "^1.6.1" 3229 | 3230 | to-regex@^3.0.1, to-regex@^3.0.2: 3231 | version "3.0.2" 3232 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3233 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== 3234 | dependencies: 3235 | define-property "^2.0.2" 3236 | extend-shallow "^3.0.2" 3237 | regex-not "^1.0.2" 3238 | safe-regex "^1.1.0" 3239 | 3240 | trim-right@^1.0.1: 3241 | version "1.0.1" 3242 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3243 | integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= 3244 | 3245 | tty-browserify@~0.0.0: 3246 | version "0.0.1" 3247 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.1.tgz#3f05251ee17904dfd0677546670db9651682b811" 3248 | integrity sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw== 3249 | 3250 | typedarray@^0.0.6, typedarray@~0.0.5: 3251 | version "0.0.6" 3252 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3253 | integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= 3254 | 3255 | typescript@^3.6.3: 3256 | version "3.6.3" 3257 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.6.3.tgz#fea942fabb20f7e1ca7164ff626f1a9f3f70b4da" 3258 | integrity sha512-N7bceJL1CtRQ2RiG0AQME13ksR7DiuQh/QehubYcghzv20tnh+MQnQIuJddTmsbqYj+dztchykemz0zFzlvdQw== 3259 | 3260 | umd@^3.0.0: 3261 | version "3.0.3" 3262 | resolved "https://registry.yarnpkg.com/umd/-/umd-3.0.3.tgz#aa9fe653c42b9097678489c01000acb69f0b26cf" 3263 | integrity sha512-4IcGSufhFshvLNcMCV80UnQVlZ5pMOC8mvNPForqwA4+lzYQuetTESLDQkeLmihq8bRcnpbQa48Wb8Lh16/xow== 3264 | 3265 | undeclared-identifiers@^1.1.2: 3266 | version "1.1.3" 3267 | resolved "https://registry.yarnpkg.com/undeclared-identifiers/-/undeclared-identifiers-1.1.3.tgz#9254c1d37bdac0ac2b52de4b6722792d2a91e30f" 3268 | integrity sha512-pJOW4nxjlmfwKApE4zvxLScM/njmwj/DiUBv7EabwE4O8kRUy+HIwxQtZLBPll/jx1LJyBcqNfB3/cpv9EZwOw== 3269 | dependencies: 3270 | acorn-node "^1.3.0" 3271 | dash-ast "^1.0.0" 3272 | get-assigned-identifiers "^1.2.0" 3273 | simple-concat "^1.0.0" 3274 | xtend "^4.0.1" 3275 | 3276 | union-value@^1.0.0: 3277 | version "1.0.0" 3278 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3279 | integrity sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ= 3280 | dependencies: 3281 | arr-union "^3.1.0" 3282 | get-value "^2.0.6" 3283 | is-extendable "^0.1.1" 3284 | set-value "^0.4.3" 3285 | 3286 | unset-value@^1.0.0: 3287 | version "1.0.0" 3288 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3289 | integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= 3290 | dependencies: 3291 | has-value "^0.3.1" 3292 | isobject "^3.0.0" 3293 | 3294 | urix@^0.1.0: 3295 | version "0.1.0" 3296 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3297 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 3298 | 3299 | url@~0.11.0: 3300 | version "0.11.0" 3301 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3302 | integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= 3303 | dependencies: 3304 | punycode "1.3.2" 3305 | querystring "0.2.0" 3306 | 3307 | use@^3.1.0: 3308 | version "3.1.1" 3309 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 3310 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== 3311 | 3312 | user-home@^1.1.1: 3313 | version "1.1.1" 3314 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3315 | integrity sha1-K1viOjK2Onyd640PKNSFcko98ZA= 3316 | 3317 | util-deprecate@~1.0.1: 3318 | version "1.0.2" 3319 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3320 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 3321 | 3322 | util@0.10.3: 3323 | version "0.10.3" 3324 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3325 | integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= 3326 | dependencies: 3327 | inherits "2.0.1" 3328 | 3329 | util@~0.10.1: 3330 | version "0.10.4" 3331 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901" 3332 | integrity sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A== 3333 | dependencies: 3334 | inherits "2.0.3" 3335 | 3336 | v8flags@^2.1.1: 3337 | version "2.1.1" 3338 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3339 | integrity sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ= 3340 | dependencies: 3341 | user-home "^1.1.1" 3342 | 3343 | vm-browserify@~0.0.1: 3344 | version "0.0.4" 3345 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 3346 | integrity sha1-XX6kW7755Kb/ZflUOOCofDV9WnM= 3347 | dependencies: 3348 | indexof "0.0.1" 3349 | 3350 | wide-align@^1.1.0: 3351 | version "1.1.3" 3352 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 3353 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 3354 | dependencies: 3355 | string-width "^1.0.2 || 2" 3356 | 3357 | wrappy@1: 3358 | version "1.0.2" 3359 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3360 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3361 | 3362 | xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: 3363 | version "4.0.1" 3364 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3365 | integrity sha1-pcbVMr5lbiPbgg77lDofBJmNY68= 3366 | 3367 | yallist@^3.0.0, yallist@^3.0.3: 3368 | version "3.0.3" 3369 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" 3370 | integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== 3371 | --------------------------------------------------------------------------------