├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public ├── app.js └── index.html ├── src ├── App.jsx └── Message.jsx └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "@babel/preset-react", 4 | "@babel/preset-env" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Krasimir Tsonev 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 Bare Minimum 2 | 3 | A bare minimum setup to work with react. Compiling and bundling, nothing else. 4 | 5 | * It compiles ES6 code containing JSX syntax 6 | * It bundles your code to a single JavaScript file 7 | * There is a watcher running above two when you change a file 8 | * That's it all folks 9 | 10 | --- 11 | 12 | *I'm sick of copy-pasting files and configuring when writing blog posts related to React. I just wanted something small which I download and start using.* 13 | 14 | --- 15 | 16 | ## How to use it 17 | 18 | Just download the package. I don't see much of value in using `npm i react-bare-minimum` because the idea is to use it as a working directory. 19 | 20 | Once you have the files: 21 | 22 | * Make sure that you have a `.babelrc` file with content 23 | ``` 24 | { 25 | "presets": [ 26 | "@babel/preset-react", 27 | "@babel/preset-env" 28 | ] 29 | } 30 | ``` 31 | * Run `npm i` (or `yarn install`). 32 | * `npm run build` (`yarn build`) for building the project once 33 | * `npm run watch` (`yarn watch`) for run the watcher 34 | 35 | When the build finishes check out the `public` folder. There is an `index.html` file and your bundled `app.js`. 36 | 37 | ## Dependencies 38 | 39 | * `babel-core` 40 | * `babel-preset-es2015` 41 | * `babel-preset-react` 42 | * `babelify` 43 | * `browserify` 44 | * `react` 45 | * `react-dom` 46 | * `watchify` 47 | 48 | ## Misc 49 | 50 | [The bare minimum to work with React article](http://krasimirtsonev.com/blog/article/The-bare-minimum-to-work-with-React) -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-bare-minimum", 3 | "version": "1.0.1", 4 | "description": "A bare minimum setup to work with react. Compiling and bundling, nothing else.", 5 | "repository": { 6 | "url": "git@github.com:krasimir/react-bare-minimum.git", 7 | "type": "git" 8 | }, 9 | "scripts": { 10 | "build": "browserify ./src/App.jsx -o ./public/app.js -t babelify", 11 | "watch": "watchify ./src/App.jsx -o ./public/app.js -t babelify -v" 12 | }, 13 | "author": "Krasimir Tsonev ", 14 | "license": "MIT", 15 | "dependencies": { 16 | "@babel/core": "^7.1.0", 17 | "@babel/preset-env": "^7.1.0", 18 | "@babel/preset-react": "^7.0.0", 19 | "babelify": "^10.0.0", 20 | "browserify": "^14.5.0", 21 | "fsevents": "^1.2.4", 22 | "nan": "^2.11.0", 23 | "react": "^16.0.0", 24 | "react-dom": "^16.0.0", 25 | "watchify": "^3.9.0" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | React bare minimum 8 | 9 | 10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import Message from './Message.jsx'; 4 | 5 | class App extends React.Component { 6 | render() { 7 | return ( 8 |
9 |

Message:

10 | 11 |
12 | ); 13 | } 14 | } 15 | 16 | ReactDOM.render(, document.querySelector('#content')); 17 | -------------------------------------------------------------------------------- /src/Message.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import PropTypes from 'prop-types'; 3 | 4 | export default class Message extends React.Component { 5 | render() { 6 | return ; 7 | } 8 | } 9 | 10 | Message.propTypes = { 11 | message: PropTypes.string.isRequired 12 | } -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0": 6 | version "7.0.0" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" 8 | dependencies: 9 | "@babel/highlight" "^7.0.0" 10 | 11 | "@babel/core@^7.1.0": 12 | version "7.1.0" 13 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.1.0.tgz#08958f1371179f62df6966d8a614003d11faeb04" 14 | dependencies: 15 | "@babel/code-frame" "^7.0.0" 16 | "@babel/generator" "^7.0.0" 17 | "@babel/helpers" "^7.1.0" 18 | "@babel/parser" "^7.1.0" 19 | "@babel/template" "^7.1.0" 20 | "@babel/traverse" "^7.1.0" 21 | "@babel/types" "^7.0.0" 22 | convert-source-map "^1.1.0" 23 | debug "^3.1.0" 24 | json5 "^0.5.0" 25 | lodash "^4.17.10" 26 | resolve "^1.3.2" 27 | semver "^5.4.1" 28 | source-map "^0.5.0" 29 | 30 | "@babel/generator@^7.0.0": 31 | version "7.0.0" 32 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.0.0.tgz#1efd58bffa951dc846449e58ce3a1d7f02d393aa" 33 | dependencies: 34 | "@babel/types" "^7.0.0" 35 | jsesc "^2.5.1" 36 | lodash "^4.17.10" 37 | source-map "^0.5.0" 38 | trim-right "^1.0.1" 39 | 40 | "@babel/helper-annotate-as-pure@^7.0.0": 41 | version "7.0.0" 42 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" 43 | dependencies: 44 | "@babel/types" "^7.0.0" 45 | 46 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0": 47 | version "7.1.0" 48 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f" 49 | dependencies: 50 | "@babel/helper-explode-assignable-expression" "^7.1.0" 51 | "@babel/types" "^7.0.0" 52 | 53 | "@babel/helper-builder-react-jsx@^7.0.0": 54 | version "7.0.0" 55 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.0.0.tgz#fa154cb53eb918cf2a9a7ce928e29eb649c5acdb" 56 | dependencies: 57 | "@babel/types" "^7.0.0" 58 | esutils "^2.0.0" 59 | 60 | "@babel/helper-call-delegate@^7.1.0": 61 | version "7.1.0" 62 | resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.1.0.tgz#6a957f105f37755e8645343d3038a22e1449cc4a" 63 | dependencies: 64 | "@babel/helper-hoist-variables" "^7.0.0" 65 | "@babel/traverse" "^7.1.0" 66 | "@babel/types" "^7.0.0" 67 | 68 | "@babel/helper-define-map@^7.1.0": 69 | version "7.1.0" 70 | resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.1.0.tgz#3b74caec329b3c80c116290887c0dd9ae468c20c" 71 | dependencies: 72 | "@babel/helper-function-name" "^7.1.0" 73 | "@babel/types" "^7.0.0" 74 | lodash "^4.17.10" 75 | 76 | "@babel/helper-explode-assignable-expression@^7.1.0": 77 | version "7.1.0" 78 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6" 79 | dependencies: 80 | "@babel/traverse" "^7.1.0" 81 | "@babel/types" "^7.0.0" 82 | 83 | "@babel/helper-function-name@^7.1.0": 84 | version "7.1.0" 85 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" 86 | dependencies: 87 | "@babel/helper-get-function-arity" "^7.0.0" 88 | "@babel/template" "^7.1.0" 89 | "@babel/types" "^7.0.0" 90 | 91 | "@babel/helper-get-function-arity@^7.0.0": 92 | version "7.0.0" 93 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" 94 | dependencies: 95 | "@babel/types" "^7.0.0" 96 | 97 | "@babel/helper-hoist-variables@^7.0.0": 98 | version "7.0.0" 99 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.0.0.tgz#46adc4c5e758645ae7a45deb92bab0918c23bb88" 100 | dependencies: 101 | "@babel/types" "^7.0.0" 102 | 103 | "@babel/helper-member-expression-to-functions@^7.0.0": 104 | version "7.0.0" 105 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd14b0a0df7ff00f009e7d7a436945f47c7a16f" 106 | dependencies: 107 | "@babel/types" "^7.0.0" 108 | 109 | "@babel/helper-module-imports@^7.0.0": 110 | version "7.0.0" 111 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" 112 | dependencies: 113 | "@babel/types" "^7.0.0" 114 | 115 | "@babel/helper-module-transforms@^7.1.0": 116 | version "7.1.0" 117 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.1.0.tgz#470d4f9676d9fad50b324cdcce5fbabbc3da5787" 118 | dependencies: 119 | "@babel/helper-module-imports" "^7.0.0" 120 | "@babel/helper-simple-access" "^7.1.0" 121 | "@babel/helper-split-export-declaration" "^7.0.0" 122 | "@babel/template" "^7.1.0" 123 | "@babel/types" "^7.0.0" 124 | lodash "^4.17.10" 125 | 126 | "@babel/helper-optimise-call-expression@^7.0.0": 127 | version "7.0.0" 128 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" 129 | dependencies: 130 | "@babel/types" "^7.0.0" 131 | 132 | "@babel/helper-plugin-utils@^7.0.0": 133 | version "7.0.0" 134 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" 135 | 136 | "@babel/helper-regex@^7.0.0": 137 | version "7.0.0" 138 | resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.0.0.tgz#2c1718923b57f9bbe64705ffe5640ac64d9bdb27" 139 | dependencies: 140 | lodash "^4.17.10" 141 | 142 | "@babel/helper-remap-async-to-generator@^7.1.0": 143 | version "7.1.0" 144 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f" 145 | dependencies: 146 | "@babel/helper-annotate-as-pure" "^7.0.0" 147 | "@babel/helper-wrap-function" "^7.1.0" 148 | "@babel/template" "^7.1.0" 149 | "@babel/traverse" "^7.1.0" 150 | "@babel/types" "^7.0.0" 151 | 152 | "@babel/helper-replace-supers@^7.1.0": 153 | version "7.1.0" 154 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.1.0.tgz#5fc31de522ec0ef0899dc9b3e7cf6a5dd655f362" 155 | dependencies: 156 | "@babel/helper-member-expression-to-functions" "^7.0.0" 157 | "@babel/helper-optimise-call-expression" "^7.0.0" 158 | "@babel/traverse" "^7.1.0" 159 | "@babel/types" "^7.0.0" 160 | 161 | "@babel/helper-simple-access@^7.1.0": 162 | version "7.1.0" 163 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c" 164 | dependencies: 165 | "@babel/template" "^7.1.0" 166 | "@babel/types" "^7.0.0" 167 | 168 | "@babel/helper-split-export-declaration@^7.0.0": 169 | version "7.0.0" 170 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz#3aae285c0311c2ab095d997b8c9a94cad547d813" 171 | dependencies: 172 | "@babel/types" "^7.0.0" 173 | 174 | "@babel/helper-wrap-function@^7.1.0": 175 | version "7.1.0" 176 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.1.0.tgz#8cf54e9190706067f016af8f75cb3df829cc8c66" 177 | dependencies: 178 | "@babel/helper-function-name" "^7.1.0" 179 | "@babel/template" "^7.1.0" 180 | "@babel/traverse" "^7.1.0" 181 | "@babel/types" "^7.0.0" 182 | 183 | "@babel/helpers@^7.1.0": 184 | version "7.1.0" 185 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.1.0.tgz#429bf0f0020be56a4242883432084e3d70a8a141" 186 | dependencies: 187 | "@babel/template" "^7.1.0" 188 | "@babel/traverse" "^7.1.0" 189 | "@babel/types" "^7.0.0" 190 | 191 | "@babel/highlight@^7.0.0": 192 | version "7.0.0" 193 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" 194 | dependencies: 195 | chalk "^2.0.0" 196 | esutils "^2.0.2" 197 | js-tokens "^4.0.0" 198 | 199 | "@babel/parser@^7.1.0": 200 | version "7.1.0" 201 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.1.0.tgz#a7cd42cb3c12aec52e24375189a47b39759b783e" 202 | 203 | "@babel/plugin-proposal-async-generator-functions@^7.1.0": 204 | version "7.1.0" 205 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.1.0.tgz#41c1a702e10081456e23a7b74d891922dd1bb6ce" 206 | dependencies: 207 | "@babel/helper-plugin-utils" "^7.0.0" 208 | "@babel/helper-remap-async-to-generator" "^7.1.0" 209 | "@babel/plugin-syntax-async-generators" "^7.0.0" 210 | 211 | "@babel/plugin-proposal-json-strings@^7.0.0": 212 | version "7.0.0" 213 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.0.0.tgz#3b4d7b5cf51e1f2e70f52351d28d44fc2970d01e" 214 | dependencies: 215 | "@babel/helper-plugin-utils" "^7.0.0" 216 | "@babel/plugin-syntax-json-strings" "^7.0.0" 217 | 218 | "@babel/plugin-proposal-object-rest-spread@^7.0.0": 219 | version "7.0.0" 220 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.0.0.tgz#9a17b547f64d0676b6c9cecd4edf74a82ab85e7e" 221 | dependencies: 222 | "@babel/helper-plugin-utils" "^7.0.0" 223 | "@babel/plugin-syntax-object-rest-spread" "^7.0.0" 224 | 225 | "@babel/plugin-proposal-optional-catch-binding@^7.0.0": 226 | version "7.0.0" 227 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.0.0.tgz#b610d928fe551ff7117d42c8bb410eec312a6425" 228 | dependencies: 229 | "@babel/helper-plugin-utils" "^7.0.0" 230 | "@babel/plugin-syntax-optional-catch-binding" "^7.0.0" 231 | 232 | "@babel/plugin-proposal-unicode-property-regex@^7.0.0": 233 | version "7.0.0" 234 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.0.0.tgz#498b39cd72536cd7c4b26177d030226eba08cd33" 235 | dependencies: 236 | "@babel/helper-plugin-utils" "^7.0.0" 237 | "@babel/helper-regex" "^7.0.0" 238 | regexpu-core "^4.2.0" 239 | 240 | "@babel/plugin-syntax-async-generators@^7.0.0": 241 | version "7.0.0" 242 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.0.0.tgz#bf0891dcdbf59558359d0c626fdc9490e20bc13c" 243 | dependencies: 244 | "@babel/helper-plugin-utils" "^7.0.0" 245 | 246 | "@babel/plugin-syntax-json-strings@^7.0.0": 247 | version "7.0.0" 248 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.0.0.tgz#0d259a68090e15b383ce3710e01d5b23f3770cbd" 249 | dependencies: 250 | "@babel/helper-plugin-utils" "^7.0.0" 251 | 252 | "@babel/plugin-syntax-jsx@^7.0.0": 253 | version "7.0.0" 254 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.0.0.tgz#034d5e2b4e14ccaea2e4c137af7e4afb39375ffd" 255 | dependencies: 256 | "@babel/helper-plugin-utils" "^7.0.0" 257 | 258 | "@babel/plugin-syntax-object-rest-spread@^7.0.0": 259 | version "7.0.0" 260 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.0.0.tgz#37d8fbcaf216bd658ea1aebbeb8b75e88ebc549b" 261 | dependencies: 262 | "@babel/helper-plugin-utils" "^7.0.0" 263 | 264 | "@babel/plugin-syntax-optional-catch-binding@^7.0.0": 265 | version "7.0.0" 266 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.0.0.tgz#886f72008b3a8b185977f7cb70713b45e51ee475" 267 | dependencies: 268 | "@babel/helper-plugin-utils" "^7.0.0" 269 | 270 | "@babel/plugin-transform-arrow-functions@^7.0.0": 271 | version "7.0.0" 272 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.0.0.tgz#a6c14875848c68a3b4b3163a486535ef25c7e749" 273 | dependencies: 274 | "@babel/helper-plugin-utils" "^7.0.0" 275 | 276 | "@babel/plugin-transform-async-to-generator@^7.1.0": 277 | version "7.1.0" 278 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.1.0.tgz#109e036496c51dd65857e16acab3bafdf3c57811" 279 | dependencies: 280 | "@babel/helper-module-imports" "^7.0.0" 281 | "@babel/helper-plugin-utils" "^7.0.0" 282 | "@babel/helper-remap-async-to-generator" "^7.1.0" 283 | 284 | "@babel/plugin-transform-block-scoped-functions@^7.0.0": 285 | version "7.0.0" 286 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.0.0.tgz#482b3f75103927e37288b3b67b65f848e2aa0d07" 287 | dependencies: 288 | "@babel/helper-plugin-utils" "^7.0.0" 289 | 290 | "@babel/plugin-transform-block-scoping@^7.0.0": 291 | version "7.0.0" 292 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.0.0.tgz#1745075edffd7cdaf69fab2fb6f9694424b7e9bc" 293 | dependencies: 294 | "@babel/helper-plugin-utils" "^7.0.0" 295 | lodash "^4.17.10" 296 | 297 | "@babel/plugin-transform-classes@^7.1.0": 298 | version "7.1.0" 299 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.1.0.tgz#ab3f8a564361800cbc8ab1ca6f21108038432249" 300 | dependencies: 301 | "@babel/helper-annotate-as-pure" "^7.0.0" 302 | "@babel/helper-define-map" "^7.1.0" 303 | "@babel/helper-function-name" "^7.1.0" 304 | "@babel/helper-optimise-call-expression" "^7.0.0" 305 | "@babel/helper-plugin-utils" "^7.0.0" 306 | "@babel/helper-replace-supers" "^7.1.0" 307 | "@babel/helper-split-export-declaration" "^7.0.0" 308 | globals "^11.1.0" 309 | 310 | "@babel/plugin-transform-computed-properties@^7.0.0": 311 | version "7.0.0" 312 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.0.0.tgz#2fbb8900cd3e8258f2a2ede909b90e7556185e31" 313 | dependencies: 314 | "@babel/helper-plugin-utils" "^7.0.0" 315 | 316 | "@babel/plugin-transform-destructuring@^7.0.0": 317 | version "7.0.0" 318 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.0.0.tgz#68e911e1935dda2f06b6ccbbf184ffb024e9d43a" 319 | dependencies: 320 | "@babel/helper-plugin-utils" "^7.0.0" 321 | 322 | "@babel/plugin-transform-dotall-regex@^7.0.0": 323 | version "7.0.0" 324 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.0.0.tgz#73a24da69bc3c370251f43a3d048198546115e58" 325 | dependencies: 326 | "@babel/helper-plugin-utils" "^7.0.0" 327 | "@babel/helper-regex" "^7.0.0" 328 | regexpu-core "^4.1.3" 329 | 330 | "@babel/plugin-transform-duplicate-keys@^7.0.0": 331 | version "7.0.0" 332 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.0.0.tgz#a0601e580991e7cace080e4cf919cfd58da74e86" 333 | dependencies: 334 | "@babel/helper-plugin-utils" "^7.0.0" 335 | 336 | "@babel/plugin-transform-exponentiation-operator@^7.1.0": 337 | version "7.1.0" 338 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.1.0.tgz#9c34c2ee7fd77e02779cfa37e403a2e1003ccc73" 339 | dependencies: 340 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0" 341 | "@babel/helper-plugin-utils" "^7.0.0" 342 | 343 | "@babel/plugin-transform-for-of@^7.0.0": 344 | version "7.0.0" 345 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.0.0.tgz#f2ba4eadb83bd17dc3c7e9b30f4707365e1c3e39" 346 | dependencies: 347 | "@babel/helper-plugin-utils" "^7.0.0" 348 | 349 | "@babel/plugin-transform-function-name@^7.1.0": 350 | version "7.1.0" 351 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.1.0.tgz#29c5550d5c46208e7f730516d41eeddd4affadbb" 352 | dependencies: 353 | "@babel/helper-function-name" "^7.1.0" 354 | "@babel/helper-plugin-utils" "^7.0.0" 355 | 356 | "@babel/plugin-transform-literals@^7.0.0": 357 | version "7.0.0" 358 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.0.0.tgz#2aec1d29cdd24c407359c930cdd89e914ee8ff86" 359 | dependencies: 360 | "@babel/helper-plugin-utils" "^7.0.0" 361 | 362 | "@babel/plugin-transform-modules-amd@^7.1.0": 363 | version "7.1.0" 364 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.1.0.tgz#f9e0a7072c12e296079b5a59f408ff5b97bf86a8" 365 | dependencies: 366 | "@babel/helper-module-transforms" "^7.1.0" 367 | "@babel/helper-plugin-utils" "^7.0.0" 368 | 369 | "@babel/plugin-transform-modules-commonjs@^7.1.0": 370 | version "7.1.0" 371 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.1.0.tgz#0a9d86451cbbfb29bd15186306897c67f6f9a05c" 372 | dependencies: 373 | "@babel/helper-module-transforms" "^7.1.0" 374 | "@babel/helper-plugin-utils" "^7.0.0" 375 | "@babel/helper-simple-access" "^7.1.0" 376 | 377 | "@babel/plugin-transform-modules-systemjs@^7.0.0": 378 | version "7.0.0" 379 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.0.0.tgz#8873d876d4fee23209decc4d1feab8f198cf2df4" 380 | dependencies: 381 | "@babel/helper-hoist-variables" "^7.0.0" 382 | "@babel/helper-plugin-utils" "^7.0.0" 383 | 384 | "@babel/plugin-transform-modules-umd@^7.1.0": 385 | version "7.1.0" 386 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.1.0.tgz#a29a7d85d6f28c3561c33964442257cc6a21f2a8" 387 | dependencies: 388 | "@babel/helper-module-transforms" "^7.1.0" 389 | "@babel/helper-plugin-utils" "^7.0.0" 390 | 391 | "@babel/plugin-transform-new-target@^7.0.0": 392 | version "7.0.0" 393 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.0.0.tgz#ae8fbd89517fa7892d20e6564e641e8770c3aa4a" 394 | dependencies: 395 | "@babel/helper-plugin-utils" "^7.0.0" 396 | 397 | "@babel/plugin-transform-object-super@^7.1.0": 398 | version "7.1.0" 399 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.1.0.tgz#b1ae194a054b826d8d4ba7ca91486d4ada0f91bb" 400 | dependencies: 401 | "@babel/helper-plugin-utils" "^7.0.0" 402 | "@babel/helper-replace-supers" "^7.1.0" 403 | 404 | "@babel/plugin-transform-parameters@^7.1.0": 405 | version "7.1.0" 406 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.1.0.tgz#44f492f9d618c9124026e62301c296bf606a7aed" 407 | dependencies: 408 | "@babel/helper-call-delegate" "^7.1.0" 409 | "@babel/helper-get-function-arity" "^7.0.0" 410 | "@babel/helper-plugin-utils" "^7.0.0" 411 | 412 | "@babel/plugin-transform-react-display-name@^7.0.0": 413 | version "7.0.0" 414 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.0.0.tgz#93759e6c023782e52c2da3b75eca60d4f10533ee" 415 | dependencies: 416 | "@babel/helper-plugin-utils" "^7.0.0" 417 | 418 | "@babel/plugin-transform-react-jsx-self@^7.0.0": 419 | version "7.0.0" 420 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.0.0.tgz#a84bb70fea302d915ea81d9809e628266bb0bc11" 421 | dependencies: 422 | "@babel/helper-plugin-utils" "^7.0.0" 423 | "@babel/plugin-syntax-jsx" "^7.0.0" 424 | 425 | "@babel/plugin-transform-react-jsx-source@^7.0.0": 426 | version "7.0.0" 427 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.0.0.tgz#28e00584f9598c0dd279f6280eee213fa0121c3c" 428 | dependencies: 429 | "@babel/helper-plugin-utils" "^7.0.0" 430 | "@babel/plugin-syntax-jsx" "^7.0.0" 431 | 432 | "@babel/plugin-transform-react-jsx@^7.0.0": 433 | version "7.0.0" 434 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.0.0.tgz#524379e4eca5363cd10c4446ba163f093da75f3e" 435 | dependencies: 436 | "@babel/helper-builder-react-jsx" "^7.0.0" 437 | "@babel/helper-plugin-utils" "^7.0.0" 438 | "@babel/plugin-syntax-jsx" "^7.0.0" 439 | 440 | "@babel/plugin-transform-regenerator@^7.0.0": 441 | version "7.0.0" 442 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.0.0.tgz#5b41686b4ed40bef874d7ed6a84bdd849c13e0c1" 443 | dependencies: 444 | regenerator-transform "^0.13.3" 445 | 446 | "@babel/plugin-transform-shorthand-properties@^7.0.0": 447 | version "7.0.0" 448 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.0.0.tgz#85f8af592dcc07647541a0350e8c95c7bf419d15" 449 | dependencies: 450 | "@babel/helper-plugin-utils" "^7.0.0" 451 | 452 | "@babel/plugin-transform-spread@^7.0.0": 453 | version "7.0.0" 454 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.0.0.tgz#93583ce48dd8c85e53f3a46056c856e4af30b49b" 455 | dependencies: 456 | "@babel/helper-plugin-utils" "^7.0.0" 457 | 458 | "@babel/plugin-transform-sticky-regex@^7.0.0": 459 | version "7.0.0" 460 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.0.0.tgz#30a9d64ac2ab46eec087b8530535becd90e73366" 461 | dependencies: 462 | "@babel/helper-plugin-utils" "^7.0.0" 463 | "@babel/helper-regex" "^7.0.0" 464 | 465 | "@babel/plugin-transform-template-literals@^7.0.0": 466 | version "7.0.0" 467 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.0.0.tgz#084f1952efe5b153ddae69eb8945f882c7a97c65" 468 | dependencies: 469 | "@babel/helper-annotate-as-pure" "^7.0.0" 470 | "@babel/helper-plugin-utils" "^7.0.0" 471 | 472 | "@babel/plugin-transform-typeof-symbol@^7.0.0": 473 | version "7.0.0" 474 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.0.0.tgz#4dcf1e52e943e5267b7313bff347fdbe0f81cec9" 475 | dependencies: 476 | "@babel/helper-plugin-utils" "^7.0.0" 477 | 478 | "@babel/plugin-transform-unicode-regex@^7.0.0": 479 | version "7.0.0" 480 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.0.0.tgz#c6780e5b1863a76fe792d90eded9fcd5b51d68fc" 481 | dependencies: 482 | "@babel/helper-plugin-utils" "^7.0.0" 483 | "@babel/helper-regex" "^7.0.0" 484 | regexpu-core "^4.1.3" 485 | 486 | "@babel/preset-env@^7.1.0": 487 | version "7.1.0" 488 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.1.0.tgz#e67ea5b0441cfeab1d6f41e9b5c79798800e8d11" 489 | dependencies: 490 | "@babel/helper-module-imports" "^7.0.0" 491 | "@babel/helper-plugin-utils" "^7.0.0" 492 | "@babel/plugin-proposal-async-generator-functions" "^7.1.0" 493 | "@babel/plugin-proposal-json-strings" "^7.0.0" 494 | "@babel/plugin-proposal-object-rest-spread" "^7.0.0" 495 | "@babel/plugin-proposal-optional-catch-binding" "^7.0.0" 496 | "@babel/plugin-proposal-unicode-property-regex" "^7.0.0" 497 | "@babel/plugin-syntax-async-generators" "^7.0.0" 498 | "@babel/plugin-syntax-object-rest-spread" "^7.0.0" 499 | "@babel/plugin-syntax-optional-catch-binding" "^7.0.0" 500 | "@babel/plugin-transform-arrow-functions" "^7.0.0" 501 | "@babel/plugin-transform-async-to-generator" "^7.1.0" 502 | "@babel/plugin-transform-block-scoped-functions" "^7.0.0" 503 | "@babel/plugin-transform-block-scoping" "^7.0.0" 504 | "@babel/plugin-transform-classes" "^7.1.0" 505 | "@babel/plugin-transform-computed-properties" "^7.0.0" 506 | "@babel/plugin-transform-destructuring" "^7.0.0" 507 | "@babel/plugin-transform-dotall-regex" "^7.0.0" 508 | "@babel/plugin-transform-duplicate-keys" "^7.0.0" 509 | "@babel/plugin-transform-exponentiation-operator" "^7.1.0" 510 | "@babel/plugin-transform-for-of" "^7.0.0" 511 | "@babel/plugin-transform-function-name" "^7.1.0" 512 | "@babel/plugin-transform-literals" "^7.0.0" 513 | "@babel/plugin-transform-modules-amd" "^7.1.0" 514 | "@babel/plugin-transform-modules-commonjs" "^7.1.0" 515 | "@babel/plugin-transform-modules-systemjs" "^7.0.0" 516 | "@babel/plugin-transform-modules-umd" "^7.1.0" 517 | "@babel/plugin-transform-new-target" "^7.0.0" 518 | "@babel/plugin-transform-object-super" "^7.1.0" 519 | "@babel/plugin-transform-parameters" "^7.1.0" 520 | "@babel/plugin-transform-regenerator" "^7.0.0" 521 | "@babel/plugin-transform-shorthand-properties" "^7.0.0" 522 | "@babel/plugin-transform-spread" "^7.0.0" 523 | "@babel/plugin-transform-sticky-regex" "^7.0.0" 524 | "@babel/plugin-transform-template-literals" "^7.0.0" 525 | "@babel/plugin-transform-typeof-symbol" "^7.0.0" 526 | "@babel/plugin-transform-unicode-regex" "^7.0.0" 527 | browserslist "^4.1.0" 528 | invariant "^2.2.2" 529 | js-levenshtein "^1.1.3" 530 | semver "^5.3.0" 531 | 532 | "@babel/preset-react@^7.0.0": 533 | version "7.0.0" 534 | resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.0.0.tgz#e86b4b3d99433c7b3e9e91747e2653958bc6b3c0" 535 | dependencies: 536 | "@babel/helper-plugin-utils" "^7.0.0" 537 | "@babel/plugin-transform-react-display-name" "^7.0.0" 538 | "@babel/plugin-transform-react-jsx" "^7.0.0" 539 | "@babel/plugin-transform-react-jsx-self" "^7.0.0" 540 | "@babel/plugin-transform-react-jsx-source" "^7.0.0" 541 | 542 | "@babel/template@^7.1.0": 543 | version "7.1.0" 544 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.1.0.tgz#58cc9572e1bfe24fe1537fdf99d839d53e517e22" 545 | dependencies: 546 | "@babel/code-frame" "^7.0.0" 547 | "@babel/parser" "^7.1.0" 548 | "@babel/types" "^7.0.0" 549 | 550 | "@babel/traverse@^7.1.0": 551 | version "7.1.0" 552 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.1.0.tgz#503ec6669387efd182c3888c4eec07bcc45d91b2" 553 | dependencies: 554 | "@babel/code-frame" "^7.0.0" 555 | "@babel/generator" "^7.0.0" 556 | "@babel/helper-function-name" "^7.1.0" 557 | "@babel/helper-split-export-declaration" "^7.0.0" 558 | "@babel/parser" "^7.1.0" 559 | "@babel/types" "^7.0.0" 560 | debug "^3.1.0" 561 | globals "^11.1.0" 562 | lodash "^4.17.10" 563 | 564 | "@babel/types@^7.0.0": 565 | version "7.0.0" 566 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0.tgz#6e191793d3c854d19c6749989e3bc55f0e962118" 567 | dependencies: 568 | esutils "^2.0.2" 569 | lodash "^4.17.10" 570 | to-fast-properties "^2.0.0" 571 | 572 | JSONStream@^1.0.3: 573 | version "1.3.1" 574 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.1.tgz#707f761e01dae9e16f1bcf93703b78c70966579a" 575 | dependencies: 576 | jsonparse "^1.2.0" 577 | through ">=2.2.7 <3" 578 | 579 | abbrev@1: 580 | version "1.1.1" 581 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 582 | 583 | acorn@^4.0.3: 584 | version "4.0.13" 585 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 586 | 587 | ansi-regex@^2.0.0: 588 | version "2.1.1" 589 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 590 | 591 | ansi-styles@^3.2.1: 592 | version "3.2.1" 593 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 594 | dependencies: 595 | color-convert "^1.9.0" 596 | 597 | anymatch@^1.3.0: 598 | version "1.3.2" 599 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 600 | dependencies: 601 | micromatch "^2.1.5" 602 | normalize-path "^2.0.0" 603 | 604 | aproba@^1.0.3: 605 | version "1.2.0" 606 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 607 | 608 | are-we-there-yet@~1.1.2: 609 | version "1.1.4" 610 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 611 | dependencies: 612 | delegates "^1.0.0" 613 | readable-stream "^2.0.6" 614 | 615 | arr-diff@^2.0.0: 616 | version "2.0.0" 617 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 618 | dependencies: 619 | arr-flatten "^1.0.1" 620 | 621 | arr-flatten@^1.0.1: 622 | version "1.1.0" 623 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 624 | 625 | array-filter@~0.0.0: 626 | version "0.0.1" 627 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 628 | 629 | array-map@~0.0.0: 630 | version "0.0.0" 631 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 632 | 633 | array-reduce@~0.0.0: 634 | version "0.0.0" 635 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 636 | 637 | array-unique@^0.2.1: 638 | version "0.2.1" 639 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 640 | 641 | asap@~2.0.3: 642 | version "2.0.6" 643 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 644 | 645 | asn1.js@^4.0.0: 646 | version "4.9.1" 647 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" 648 | dependencies: 649 | bn.js "^4.0.0" 650 | inherits "^2.0.1" 651 | minimalistic-assert "^1.0.0" 652 | 653 | assert@^1.4.0: 654 | version "1.4.1" 655 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 656 | dependencies: 657 | util "0.10.3" 658 | 659 | astw@^2.0.0: 660 | version "2.2.0" 661 | resolved "https://registry.yarnpkg.com/astw/-/astw-2.2.0.tgz#7bd41784d32493987aeb239b6b4e1c57a873b917" 662 | dependencies: 663 | acorn "^4.0.3" 664 | 665 | async-each@^1.0.0: 666 | version "1.0.1" 667 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 668 | 669 | babelify@^10.0.0: 670 | version "10.0.0" 671 | resolved "https://registry.yarnpkg.com/babelify/-/babelify-10.0.0.tgz#fe73b1a22583f06680d8d072e25a1e0d1d1d7fb5" 672 | 673 | balanced-match@^1.0.0: 674 | version "1.0.0" 675 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 676 | 677 | base64-js@^1.0.2: 678 | version "1.2.1" 679 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" 680 | 681 | binary-extensions@^1.0.0: 682 | version "1.10.0" 683 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" 684 | 685 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 686 | version "4.11.8" 687 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 688 | 689 | brace-expansion@^1.1.7: 690 | version "1.1.8" 691 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 692 | dependencies: 693 | balanced-match "^1.0.0" 694 | concat-map "0.0.1" 695 | 696 | braces@^1.8.2: 697 | version "1.8.5" 698 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 699 | dependencies: 700 | expand-range "^1.8.1" 701 | preserve "^0.2.0" 702 | repeat-element "^1.1.2" 703 | 704 | brorand@^1.0.1: 705 | version "1.1.0" 706 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 707 | 708 | browser-pack@^6.0.1: 709 | version "6.0.2" 710 | resolved "https://registry.yarnpkg.com/browser-pack/-/browser-pack-6.0.2.tgz#f86cd6cef4f5300c8e63e07a4d512f65fbff4531" 711 | dependencies: 712 | JSONStream "^1.0.3" 713 | combine-source-map "~0.7.1" 714 | defined "^1.0.0" 715 | through2 "^2.0.0" 716 | umd "^3.0.0" 717 | 718 | browser-resolve@^1.11.0, browser-resolve@^1.7.0: 719 | version "1.11.2" 720 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 721 | dependencies: 722 | resolve "1.1.7" 723 | 724 | browserify, browserify@^14.0.0: 725 | version "14.5.0" 726 | resolved "https://registry.yarnpkg.com/browserify/-/browserify-14.5.0.tgz#0bbbce521acd6e4d1d54d8e9365008efb85a9cc5" 727 | dependencies: 728 | JSONStream "^1.0.3" 729 | assert "^1.4.0" 730 | browser-pack "^6.0.1" 731 | browser-resolve "^1.11.0" 732 | browserify-zlib "~0.2.0" 733 | buffer "^5.0.2" 734 | cached-path-relative "^1.0.0" 735 | concat-stream "~1.5.1" 736 | console-browserify "^1.1.0" 737 | constants-browserify "~1.0.0" 738 | crypto-browserify "^3.0.0" 739 | defined "^1.0.0" 740 | deps-sort "^2.0.0" 741 | domain-browser "~1.1.0" 742 | duplexer2 "~0.1.2" 743 | events "~1.1.0" 744 | glob "^7.1.0" 745 | has "^1.0.0" 746 | htmlescape "^1.1.0" 747 | https-browserify "^1.0.0" 748 | inherits "~2.0.1" 749 | insert-module-globals "^7.0.0" 750 | labeled-stream-splicer "^2.0.0" 751 | module-deps "^4.0.8" 752 | os-browserify "~0.3.0" 753 | parents "^1.0.1" 754 | path-browserify "~0.0.0" 755 | process "~0.11.0" 756 | punycode "^1.3.2" 757 | querystring-es3 "~0.2.0" 758 | read-only-stream "^2.0.0" 759 | readable-stream "^2.0.2" 760 | resolve "^1.1.4" 761 | shasum "^1.0.0" 762 | shell-quote "^1.6.1" 763 | stream-browserify "^2.0.0" 764 | stream-http "^2.0.0" 765 | string_decoder "~1.0.0" 766 | subarg "^1.0.0" 767 | syntax-error "^1.1.1" 768 | through2 "^2.0.0" 769 | timers-browserify "^1.0.1" 770 | tty-browserify "~0.0.0" 771 | url "~0.11.0" 772 | util "~0.10.1" 773 | vm-browserify "~0.0.1" 774 | xtend "^4.0.0" 775 | 776 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 777 | version "1.1.1" 778 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f" 779 | dependencies: 780 | buffer-xor "^1.0.3" 781 | cipher-base "^1.0.0" 782 | create-hash "^1.1.0" 783 | evp_bytestokey "^1.0.3" 784 | inherits "^2.0.1" 785 | safe-buffer "^5.0.1" 786 | 787 | browserify-cipher@^1.0.0: 788 | version "1.0.0" 789 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 790 | dependencies: 791 | browserify-aes "^1.0.4" 792 | browserify-des "^1.0.0" 793 | evp_bytestokey "^1.0.0" 794 | 795 | browserify-des@^1.0.0: 796 | version "1.0.0" 797 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 798 | dependencies: 799 | cipher-base "^1.0.1" 800 | des.js "^1.0.0" 801 | inherits "^2.0.1" 802 | 803 | browserify-rsa@^4.0.0: 804 | version "4.0.1" 805 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 806 | dependencies: 807 | bn.js "^4.1.0" 808 | randombytes "^2.0.1" 809 | 810 | browserify-sign@^4.0.0: 811 | version "4.0.4" 812 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 813 | dependencies: 814 | bn.js "^4.1.1" 815 | browserify-rsa "^4.0.0" 816 | create-hash "^1.1.0" 817 | create-hmac "^1.1.2" 818 | elliptic "^6.0.0" 819 | inherits "^2.0.1" 820 | parse-asn1 "^5.0.0" 821 | 822 | browserify-zlib@~0.2.0: 823 | version "0.2.0" 824 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 825 | dependencies: 826 | pako "~1.0.5" 827 | 828 | browserslist@^4.1.0: 829 | version "4.1.1" 830 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.1.1.tgz#328eb4ff1215b12df6589e9ab82f8adaa4fc8cd6" 831 | dependencies: 832 | caniuse-lite "^1.0.30000884" 833 | electron-to-chromium "^1.3.62" 834 | node-releases "^1.0.0-alpha.11" 835 | 836 | buffer-xor@^1.0.3: 837 | version "1.0.3" 838 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 839 | 840 | buffer@^5.0.2: 841 | version "5.0.8" 842 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.0.8.tgz#84daa52e7cf2fa8ce4195bc5cf0f7809e0930b24" 843 | dependencies: 844 | base64-js "^1.0.2" 845 | ieee754 "^1.1.4" 846 | 847 | builtin-status-codes@^3.0.0: 848 | version "3.0.0" 849 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 850 | 851 | cached-path-relative@^1.0.0: 852 | version "1.0.1" 853 | resolved "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.0.1.tgz#d09c4b52800aa4c078e2dd81a869aac90d2e54e7" 854 | 855 | caniuse-lite@^1.0.30000884: 856 | version "1.0.30000887" 857 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000887.tgz#1769458c27bbdcf61b0cb6b5072bb6cd11fd9c23" 858 | 859 | chalk@^2.0.0: 860 | version "2.4.1" 861 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 862 | dependencies: 863 | ansi-styles "^3.2.1" 864 | escape-string-regexp "^1.0.5" 865 | supports-color "^5.3.0" 866 | 867 | chokidar@^1.0.0: 868 | version "1.7.0" 869 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 870 | dependencies: 871 | anymatch "^1.3.0" 872 | async-each "^1.0.0" 873 | glob-parent "^2.0.0" 874 | inherits "^2.0.1" 875 | is-binary-path "^1.0.0" 876 | is-glob "^2.0.0" 877 | path-is-absolute "^1.0.0" 878 | readdirp "^2.0.0" 879 | optionalDependencies: 880 | fsevents "^1.0.0" 881 | 882 | chownr@^1.0.1: 883 | version "1.0.1" 884 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 885 | 886 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 887 | version "1.0.4" 888 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 889 | dependencies: 890 | inherits "^2.0.1" 891 | safe-buffer "^5.0.1" 892 | 893 | code-point-at@^1.0.0: 894 | version "1.1.0" 895 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 896 | 897 | color-convert@^1.9.0: 898 | version "1.9.3" 899 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 900 | dependencies: 901 | color-name "1.1.3" 902 | 903 | color-name@1.1.3: 904 | version "1.1.3" 905 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 906 | 907 | combine-source-map@~0.7.1: 908 | version "0.7.2" 909 | resolved "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.7.2.tgz#0870312856b307a87cc4ac486f3a9a62aeccc09e" 910 | dependencies: 911 | convert-source-map "~1.1.0" 912 | inline-source-map "~0.6.0" 913 | lodash.memoize "~3.0.3" 914 | source-map "~0.5.3" 915 | 916 | concat-map@0.0.1: 917 | version "0.0.1" 918 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 919 | 920 | concat-stream@~1.5.0, concat-stream@~1.5.1: 921 | version "1.5.2" 922 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 923 | dependencies: 924 | inherits "~2.0.1" 925 | readable-stream "~2.0.0" 926 | typedarray "~0.0.5" 927 | 928 | console-browserify@^1.1.0: 929 | version "1.1.0" 930 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 931 | dependencies: 932 | date-now "^0.1.4" 933 | 934 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 935 | version "1.1.0" 936 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 937 | 938 | constants-browserify@~1.0.0: 939 | version "1.0.0" 940 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 941 | 942 | convert-source-map@^1.1.0: 943 | version "1.6.0" 944 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" 945 | dependencies: 946 | safe-buffer "~5.1.1" 947 | 948 | convert-source-map@~1.1.0: 949 | version "1.1.3" 950 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" 951 | 952 | core-js@^1.0.0: 953 | version "1.2.7" 954 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 955 | 956 | core-util-is@~1.0.0: 957 | version "1.0.2" 958 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 959 | 960 | create-ecdh@^4.0.0: 961 | version "4.0.0" 962 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 963 | dependencies: 964 | bn.js "^4.1.0" 965 | elliptic "^6.0.0" 966 | 967 | create-hash@^1.1.0, create-hash@^1.1.2: 968 | version "1.1.3" 969 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" 970 | dependencies: 971 | cipher-base "^1.0.1" 972 | inherits "^2.0.1" 973 | ripemd160 "^2.0.0" 974 | sha.js "^2.4.0" 975 | 976 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 977 | version "1.1.6" 978 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" 979 | dependencies: 980 | cipher-base "^1.0.3" 981 | create-hash "^1.1.0" 982 | inherits "^2.0.1" 983 | ripemd160 "^2.0.0" 984 | safe-buffer "^5.0.1" 985 | sha.js "^2.4.8" 986 | 987 | crypto-browserify@^3.0.0: 988 | version "3.11.1" 989 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.1.tgz#948945efc6757a400d6e5e5af47194d10064279f" 990 | dependencies: 991 | browserify-cipher "^1.0.0" 992 | browserify-sign "^4.0.0" 993 | create-ecdh "^4.0.0" 994 | create-hash "^1.1.0" 995 | create-hmac "^1.1.0" 996 | diffie-hellman "^5.0.0" 997 | inherits "^2.0.1" 998 | pbkdf2 "^3.0.3" 999 | public-encrypt "^4.0.0" 1000 | randombytes "^2.0.0" 1001 | 1002 | date-now@^0.1.4: 1003 | version "0.1.4" 1004 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1005 | 1006 | debug@^2.1.2: 1007 | version "2.6.9" 1008 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1009 | dependencies: 1010 | ms "2.0.0" 1011 | 1012 | debug@^3.1.0: 1013 | version "3.2.5" 1014 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.5.tgz#c2418fbfd7a29f4d4f70ff4cea604d4b64c46407" 1015 | dependencies: 1016 | ms "^2.1.1" 1017 | 1018 | deep-extend@^0.6.0: 1019 | version "0.6.0" 1020 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 1021 | 1022 | defined@^1.0.0: 1023 | version "1.0.0" 1024 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1025 | 1026 | delegates@^1.0.0: 1027 | version "1.0.0" 1028 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1029 | 1030 | deps-sort@^2.0.0: 1031 | version "2.0.0" 1032 | resolved "https://registry.yarnpkg.com/deps-sort/-/deps-sort-2.0.0.tgz#091724902e84658260eb910748cccd1af6e21fb5" 1033 | dependencies: 1034 | JSONStream "^1.0.3" 1035 | shasum "^1.0.0" 1036 | subarg "^1.0.0" 1037 | through2 "^2.0.0" 1038 | 1039 | des.js@^1.0.0: 1040 | version "1.0.0" 1041 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1042 | dependencies: 1043 | inherits "^2.0.1" 1044 | minimalistic-assert "^1.0.0" 1045 | 1046 | detect-libc@^1.0.2: 1047 | version "1.0.3" 1048 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1049 | 1050 | detective@^4.0.0: 1051 | version "4.5.0" 1052 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.5.0.tgz#6e5a8c6b26e6c7a254b1c6b6d7490d98ec91edd1" 1053 | dependencies: 1054 | acorn "^4.0.3" 1055 | defined "^1.0.0" 1056 | 1057 | diffie-hellman@^5.0.0: 1058 | version "5.0.2" 1059 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1060 | dependencies: 1061 | bn.js "^4.1.0" 1062 | miller-rabin "^4.0.0" 1063 | randombytes "^2.0.0" 1064 | 1065 | domain-browser@~1.1.0: 1066 | version "1.1.7" 1067 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1068 | 1069 | duplexer2@^0.1.2, duplexer2@~0.1.0, duplexer2@~0.1.2: 1070 | version "0.1.4" 1071 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 1072 | dependencies: 1073 | readable-stream "^2.0.2" 1074 | 1075 | electron-to-chromium@^1.3.62: 1076 | version "1.3.70" 1077 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.70.tgz#ded377256d92d81b4257d36c65aa890274afcfd2" 1078 | 1079 | elliptic@^6.0.0: 1080 | version "6.4.0" 1081 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 1082 | dependencies: 1083 | bn.js "^4.4.0" 1084 | brorand "^1.0.1" 1085 | hash.js "^1.0.0" 1086 | hmac-drbg "^1.0.0" 1087 | inherits "^2.0.1" 1088 | minimalistic-assert "^1.0.0" 1089 | minimalistic-crypto-utils "^1.0.0" 1090 | 1091 | encoding@^0.1.11: 1092 | version "0.1.12" 1093 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1094 | dependencies: 1095 | iconv-lite "~0.4.13" 1096 | 1097 | escape-string-regexp@^1.0.5: 1098 | version "1.0.5" 1099 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1100 | 1101 | esutils@^2.0.0, esutils@^2.0.2: 1102 | version "2.0.2" 1103 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1104 | 1105 | events@~1.1.0: 1106 | version "1.1.1" 1107 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1108 | 1109 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 1110 | version "1.0.3" 1111 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 1112 | dependencies: 1113 | md5.js "^1.3.4" 1114 | safe-buffer "^5.1.1" 1115 | 1116 | expand-brackets@^0.1.4: 1117 | version "0.1.5" 1118 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1119 | dependencies: 1120 | is-posix-bracket "^0.1.0" 1121 | 1122 | expand-range@^1.8.1: 1123 | version "1.8.2" 1124 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1125 | dependencies: 1126 | fill-range "^2.1.0" 1127 | 1128 | extglob@^0.3.1: 1129 | version "0.3.2" 1130 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1131 | dependencies: 1132 | is-extglob "^1.0.0" 1133 | 1134 | fbjs@^0.8.16: 1135 | version "0.8.16" 1136 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db" 1137 | dependencies: 1138 | core-js "^1.0.0" 1139 | isomorphic-fetch "^2.1.1" 1140 | loose-envify "^1.0.0" 1141 | object-assign "^4.1.0" 1142 | promise "^7.1.1" 1143 | setimmediate "^1.0.5" 1144 | ua-parser-js "^0.7.9" 1145 | 1146 | filename-regex@^2.0.0: 1147 | version "2.0.1" 1148 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1149 | 1150 | fill-range@^2.1.0: 1151 | version "2.2.3" 1152 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1153 | dependencies: 1154 | is-number "^2.1.0" 1155 | isobject "^2.0.0" 1156 | randomatic "^1.1.3" 1157 | repeat-element "^1.1.2" 1158 | repeat-string "^1.5.2" 1159 | 1160 | for-in@^1.0.1: 1161 | version "1.0.2" 1162 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1163 | 1164 | for-own@^0.1.4: 1165 | version "0.1.5" 1166 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1167 | dependencies: 1168 | for-in "^1.0.1" 1169 | 1170 | fs-minipass@^1.2.5: 1171 | version "1.2.5" 1172 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 1173 | dependencies: 1174 | minipass "^2.2.1" 1175 | 1176 | fs.realpath@^1.0.0: 1177 | version "1.0.0" 1178 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1179 | 1180 | fsevents@^1.0.0, fsevents@^1.2.4: 1181 | version "1.2.4" 1182 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 1183 | dependencies: 1184 | nan "^2.9.2" 1185 | node-pre-gyp "^0.10.0" 1186 | 1187 | function-bind@^1.0.2: 1188 | version "1.1.1" 1189 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1190 | 1191 | gauge@~2.7.3: 1192 | version "2.7.4" 1193 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1194 | dependencies: 1195 | aproba "^1.0.3" 1196 | console-control-strings "^1.0.0" 1197 | has-unicode "^2.0.0" 1198 | object-assign "^4.1.0" 1199 | signal-exit "^3.0.0" 1200 | string-width "^1.0.1" 1201 | strip-ansi "^3.0.1" 1202 | wide-align "^1.1.0" 1203 | 1204 | glob-base@^0.3.0: 1205 | version "0.3.0" 1206 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1207 | dependencies: 1208 | glob-parent "^2.0.0" 1209 | is-glob "^2.0.0" 1210 | 1211 | glob-parent@^2.0.0: 1212 | version "2.0.0" 1213 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1214 | dependencies: 1215 | is-glob "^2.0.0" 1216 | 1217 | glob@^7.0.5, glob@^7.1.0: 1218 | version "7.1.2" 1219 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1220 | dependencies: 1221 | fs.realpath "^1.0.0" 1222 | inflight "^1.0.4" 1223 | inherits "2" 1224 | minimatch "^3.0.4" 1225 | once "^1.3.0" 1226 | path-is-absolute "^1.0.0" 1227 | 1228 | globals@^11.1.0: 1229 | version "11.7.0" 1230 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.7.0.tgz#a583faa43055b1aca771914bf68258e2fc125673" 1231 | 1232 | graceful-fs@^4.1.2: 1233 | version "4.1.11" 1234 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1235 | 1236 | has-flag@^3.0.0: 1237 | version "3.0.0" 1238 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1239 | 1240 | has-unicode@^2.0.0: 1241 | version "2.0.1" 1242 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1243 | 1244 | has@^1.0.0: 1245 | version "1.0.1" 1246 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1247 | dependencies: 1248 | function-bind "^1.0.2" 1249 | 1250 | hash-base@^2.0.0: 1251 | version "2.0.2" 1252 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" 1253 | dependencies: 1254 | inherits "^2.0.1" 1255 | 1256 | hash-base@^3.0.0: 1257 | version "3.0.4" 1258 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 1259 | dependencies: 1260 | inherits "^2.0.1" 1261 | safe-buffer "^5.0.1" 1262 | 1263 | hash.js@^1.0.0, hash.js@^1.0.3: 1264 | version "1.1.3" 1265 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" 1266 | dependencies: 1267 | inherits "^2.0.3" 1268 | minimalistic-assert "^1.0.0" 1269 | 1270 | hmac-drbg@^1.0.0: 1271 | version "1.0.1" 1272 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1273 | dependencies: 1274 | hash.js "^1.0.3" 1275 | minimalistic-assert "^1.0.0" 1276 | minimalistic-crypto-utils "^1.0.1" 1277 | 1278 | htmlescape@^1.1.0: 1279 | version "1.1.1" 1280 | resolved "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351" 1281 | 1282 | https-browserify@^1.0.0: 1283 | version "1.0.0" 1284 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 1285 | 1286 | iconv-lite@^0.4.4: 1287 | version "0.4.24" 1288 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1289 | dependencies: 1290 | safer-buffer ">= 2.1.2 < 3" 1291 | 1292 | iconv-lite@~0.4.13: 1293 | version "0.4.19" 1294 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1295 | 1296 | ieee754@^1.1.4: 1297 | version "1.1.8" 1298 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1299 | 1300 | ignore-walk@^3.0.1: 1301 | version "3.0.1" 1302 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1303 | dependencies: 1304 | minimatch "^3.0.4" 1305 | 1306 | indexof@0.0.1: 1307 | version "0.0.1" 1308 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1309 | 1310 | inflight@^1.0.4: 1311 | version "1.0.6" 1312 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1313 | dependencies: 1314 | once "^1.3.0" 1315 | wrappy "1" 1316 | 1317 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: 1318 | version "2.0.3" 1319 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1320 | 1321 | inherits@2.0.1: 1322 | version "2.0.1" 1323 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1324 | 1325 | ini@~1.3.0: 1326 | version "1.3.4" 1327 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1328 | 1329 | inline-source-map@~0.6.0: 1330 | version "0.6.2" 1331 | resolved "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" 1332 | dependencies: 1333 | source-map "~0.5.3" 1334 | 1335 | insert-module-globals@^7.0.0: 1336 | version "7.0.1" 1337 | resolved "https://registry.yarnpkg.com/insert-module-globals/-/insert-module-globals-7.0.1.tgz#c03bf4e01cb086d5b5e5ace8ad0afe7889d638c3" 1338 | dependencies: 1339 | JSONStream "^1.0.3" 1340 | combine-source-map "~0.7.1" 1341 | concat-stream "~1.5.1" 1342 | is-buffer "^1.1.0" 1343 | lexical-scope "^1.2.0" 1344 | process "~0.11.0" 1345 | through2 "^2.0.0" 1346 | xtend "^4.0.0" 1347 | 1348 | invariant@^2.2.2: 1349 | version "2.2.4" 1350 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1351 | dependencies: 1352 | loose-envify "^1.0.0" 1353 | 1354 | is-binary-path@^1.0.0: 1355 | version "1.0.1" 1356 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1357 | dependencies: 1358 | binary-extensions "^1.0.0" 1359 | 1360 | is-buffer@^1.1.0, is-buffer@^1.1.5: 1361 | version "1.1.6" 1362 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1363 | 1364 | is-dotfile@^1.0.0: 1365 | version "1.0.3" 1366 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1367 | 1368 | is-equal-shallow@^0.1.3: 1369 | version "0.1.3" 1370 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1371 | dependencies: 1372 | is-primitive "^2.0.0" 1373 | 1374 | is-extendable@^0.1.1: 1375 | version "0.1.1" 1376 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1377 | 1378 | is-extglob@^1.0.0: 1379 | version "1.0.0" 1380 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1381 | 1382 | is-fullwidth-code-point@^1.0.0: 1383 | version "1.0.0" 1384 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1385 | dependencies: 1386 | number-is-nan "^1.0.0" 1387 | 1388 | is-glob@^2.0.0, is-glob@^2.0.1: 1389 | version "2.0.1" 1390 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1391 | dependencies: 1392 | is-extglob "^1.0.0" 1393 | 1394 | is-number@^2.1.0: 1395 | version "2.1.0" 1396 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1397 | dependencies: 1398 | kind-of "^3.0.2" 1399 | 1400 | is-number@^3.0.0: 1401 | version "3.0.0" 1402 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1403 | dependencies: 1404 | kind-of "^3.0.2" 1405 | 1406 | is-posix-bracket@^0.1.0: 1407 | version "0.1.1" 1408 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1409 | 1410 | is-primitive@^2.0.0: 1411 | version "2.0.0" 1412 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1413 | 1414 | is-stream@^1.0.1: 1415 | version "1.1.0" 1416 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1417 | 1418 | isarray@1.0.0, isarray@~1.0.0: 1419 | version "1.0.0" 1420 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1421 | 1422 | isarray@~0.0.1: 1423 | version "0.0.1" 1424 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1425 | 1426 | isobject@^2.0.0: 1427 | version "2.1.0" 1428 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1429 | dependencies: 1430 | isarray "1.0.0" 1431 | 1432 | isomorphic-fetch@^2.1.1: 1433 | version "2.2.1" 1434 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1435 | dependencies: 1436 | node-fetch "^1.0.1" 1437 | whatwg-fetch ">=0.10.0" 1438 | 1439 | js-levenshtein@^1.1.3: 1440 | version "1.1.3" 1441 | resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.3.tgz#3ef627df48ec8cf24bacf05c0f184ff30ef413c5" 1442 | 1443 | js-tokens@^3.0.0: 1444 | version "3.0.2" 1445 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1446 | 1447 | js-tokens@^4.0.0: 1448 | version "4.0.0" 1449 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1450 | 1451 | jsesc@^2.5.1: 1452 | version "2.5.1" 1453 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.1.tgz#e421a2a8e20d6b0819df28908f782526b96dd1fe" 1454 | 1455 | jsesc@~0.5.0: 1456 | version "0.5.0" 1457 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1458 | 1459 | json-stable-stringify@~0.0.0: 1460 | version "0.0.1" 1461 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45" 1462 | dependencies: 1463 | jsonify "~0.0.0" 1464 | 1465 | json5@^0.5.0: 1466 | version "0.5.1" 1467 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1468 | 1469 | jsonify@~0.0.0: 1470 | version "0.0.0" 1471 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1472 | 1473 | jsonparse@^1.2.0: 1474 | version "1.3.1" 1475 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 1476 | 1477 | kind-of@^3.0.2: 1478 | version "3.2.2" 1479 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1480 | dependencies: 1481 | is-buffer "^1.1.5" 1482 | 1483 | kind-of@^4.0.0: 1484 | version "4.0.0" 1485 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1486 | dependencies: 1487 | is-buffer "^1.1.5" 1488 | 1489 | labeled-stream-splicer@^2.0.0: 1490 | version "2.0.0" 1491 | resolved "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz#a52e1d138024c00b86b1c0c91f677918b8ae0a59" 1492 | dependencies: 1493 | inherits "^2.0.1" 1494 | isarray "~0.0.1" 1495 | stream-splicer "^2.0.0" 1496 | 1497 | lexical-scope@^1.2.0: 1498 | version "1.2.0" 1499 | resolved "https://registry.yarnpkg.com/lexical-scope/-/lexical-scope-1.2.0.tgz#fcea5edc704a4b3a8796cdca419c3a0afaf22df4" 1500 | dependencies: 1501 | astw "^2.0.0" 1502 | 1503 | lodash.memoize@~3.0.3: 1504 | version "3.0.4" 1505 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" 1506 | 1507 | lodash@^4.17.10: 1508 | version "4.17.11" 1509 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" 1510 | 1511 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: 1512 | version "1.3.1" 1513 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1514 | dependencies: 1515 | js-tokens "^3.0.0" 1516 | 1517 | md5.js@^1.3.4: 1518 | version "1.3.4" 1519 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" 1520 | dependencies: 1521 | hash-base "^3.0.0" 1522 | inherits "^2.0.1" 1523 | 1524 | micromatch@^2.1.5: 1525 | version "2.3.11" 1526 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1527 | dependencies: 1528 | arr-diff "^2.0.0" 1529 | array-unique "^0.2.1" 1530 | braces "^1.8.2" 1531 | expand-brackets "^0.1.4" 1532 | extglob "^0.3.1" 1533 | filename-regex "^2.0.0" 1534 | is-extglob "^1.0.0" 1535 | is-glob "^2.0.1" 1536 | kind-of "^3.0.2" 1537 | normalize-path "^2.0.1" 1538 | object.omit "^2.0.0" 1539 | parse-glob "^3.0.4" 1540 | regex-cache "^0.4.2" 1541 | 1542 | miller-rabin@^4.0.0: 1543 | version "4.0.1" 1544 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 1545 | dependencies: 1546 | bn.js "^4.0.0" 1547 | brorand "^1.0.1" 1548 | 1549 | minimalistic-assert@^1.0.0: 1550 | version "1.0.0" 1551 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 1552 | 1553 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 1554 | version "1.0.1" 1555 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 1556 | 1557 | minimatch@^3.0.2, minimatch@^3.0.4: 1558 | version "3.0.4" 1559 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1560 | dependencies: 1561 | brace-expansion "^1.1.7" 1562 | 1563 | minimist@0.0.8: 1564 | version "0.0.8" 1565 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1566 | 1567 | minimist@^1.1.0, minimist@^1.2.0: 1568 | version "1.2.0" 1569 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1570 | 1571 | minipass@^2.2.1, minipass@^2.3.3: 1572 | version "2.3.4" 1573 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.4.tgz#4768d7605ed6194d6d576169b9e12ef71e9d9957" 1574 | dependencies: 1575 | safe-buffer "^5.1.2" 1576 | yallist "^3.0.0" 1577 | 1578 | minizlib@^1.1.0: 1579 | version "1.1.0" 1580 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 1581 | dependencies: 1582 | minipass "^2.2.1" 1583 | 1584 | mkdirp@^0.5.0, mkdirp@^0.5.1: 1585 | version "0.5.1" 1586 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1587 | dependencies: 1588 | minimist "0.0.8" 1589 | 1590 | module-deps@^4.0.8: 1591 | version "4.1.1" 1592 | resolved "https://registry.yarnpkg.com/module-deps/-/module-deps-4.1.1.tgz#23215833f1da13fd606ccb8087b44852dcb821fd" 1593 | dependencies: 1594 | JSONStream "^1.0.3" 1595 | browser-resolve "^1.7.0" 1596 | cached-path-relative "^1.0.0" 1597 | concat-stream "~1.5.0" 1598 | defined "^1.0.0" 1599 | detective "^4.0.0" 1600 | duplexer2 "^0.1.2" 1601 | inherits "^2.0.1" 1602 | parents "^1.0.0" 1603 | readable-stream "^2.0.2" 1604 | resolve "^1.1.3" 1605 | stream-combiner2 "^1.1.1" 1606 | subarg "^1.0.0" 1607 | through2 "^2.0.0" 1608 | xtend "^4.0.0" 1609 | 1610 | ms@2.0.0: 1611 | version "2.0.0" 1612 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1613 | 1614 | ms@^2.1.1: 1615 | version "2.1.1" 1616 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 1617 | 1618 | nan@^2.11.0, nan@^2.9.2: 1619 | version "2.11.0" 1620 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.11.0.tgz#574e360e4d954ab16966ec102c0c049fd961a099" 1621 | 1622 | needle@^2.2.1: 1623 | version "2.2.2" 1624 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.2.tgz#1120ca4c41f2fcc6976fd28a8968afe239929418" 1625 | dependencies: 1626 | debug "^2.1.2" 1627 | iconv-lite "^0.4.4" 1628 | sax "^1.2.4" 1629 | 1630 | node-fetch@^1.0.1: 1631 | version "1.7.3" 1632 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 1633 | dependencies: 1634 | encoding "^0.1.11" 1635 | is-stream "^1.0.1" 1636 | 1637 | node-pre-gyp@^0.10.0: 1638 | version "0.10.3" 1639 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" 1640 | dependencies: 1641 | detect-libc "^1.0.2" 1642 | mkdirp "^0.5.1" 1643 | needle "^2.2.1" 1644 | nopt "^4.0.1" 1645 | npm-packlist "^1.1.6" 1646 | npmlog "^4.0.2" 1647 | rc "^1.2.7" 1648 | rimraf "^2.6.1" 1649 | semver "^5.3.0" 1650 | tar "^4" 1651 | 1652 | node-releases@^1.0.0-alpha.11: 1653 | version "1.0.0-alpha.11" 1654 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.0.0-alpha.11.tgz#73c810acc2e5b741a17ddfbb39dfca9ab9359d8a" 1655 | dependencies: 1656 | semver "^5.3.0" 1657 | 1658 | nopt@^4.0.1: 1659 | version "4.0.1" 1660 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1661 | dependencies: 1662 | abbrev "1" 1663 | osenv "^0.1.4" 1664 | 1665 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1666 | version "2.1.1" 1667 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1668 | dependencies: 1669 | remove-trailing-separator "^1.0.1" 1670 | 1671 | npm-bundled@^1.0.1: 1672 | version "1.0.5" 1673 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979" 1674 | 1675 | npm-packlist@^1.1.6: 1676 | version "1.1.11" 1677 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.11.tgz#84e8c683cbe7867d34b1d357d893ce29e28a02de" 1678 | dependencies: 1679 | ignore-walk "^3.0.1" 1680 | npm-bundled "^1.0.1" 1681 | 1682 | npmlog@^4.0.2: 1683 | version "4.1.2" 1684 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1685 | dependencies: 1686 | are-we-there-yet "~1.1.2" 1687 | console-control-strings "~1.1.0" 1688 | gauge "~2.7.3" 1689 | set-blocking "~2.0.0" 1690 | 1691 | number-is-nan@^1.0.0: 1692 | version "1.0.1" 1693 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1694 | 1695 | object-assign@^4.1.0, object-assign@^4.1.1: 1696 | version "4.1.1" 1697 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1698 | 1699 | object.omit@^2.0.0: 1700 | version "2.0.1" 1701 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1702 | dependencies: 1703 | for-own "^0.1.4" 1704 | is-extendable "^0.1.1" 1705 | 1706 | once@^1.3.0: 1707 | version "1.4.0" 1708 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1709 | dependencies: 1710 | wrappy "1" 1711 | 1712 | os-browserify@~0.3.0: 1713 | version "0.3.0" 1714 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 1715 | 1716 | os-homedir@^1.0.0: 1717 | version "1.0.2" 1718 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1719 | 1720 | os-tmpdir@^1.0.0: 1721 | version "1.0.2" 1722 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1723 | 1724 | osenv@^0.1.4: 1725 | version "0.1.4" 1726 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1727 | dependencies: 1728 | os-homedir "^1.0.0" 1729 | os-tmpdir "^1.0.0" 1730 | 1731 | outpipe@^1.1.0: 1732 | version "1.1.1" 1733 | resolved "https://registry.yarnpkg.com/outpipe/-/outpipe-1.1.1.tgz#50cf8616365e87e031e29a5ec9339a3da4725fa2" 1734 | dependencies: 1735 | shell-quote "^1.4.2" 1736 | 1737 | pako@~1.0.5: 1738 | version "1.0.6" 1739 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" 1740 | 1741 | parents@^1.0.0, parents@^1.0.1: 1742 | version "1.0.1" 1743 | resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" 1744 | dependencies: 1745 | path-platform "~0.11.15" 1746 | 1747 | parse-asn1@^5.0.0: 1748 | version "5.1.0" 1749 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 1750 | dependencies: 1751 | asn1.js "^4.0.0" 1752 | browserify-aes "^1.0.0" 1753 | create-hash "^1.1.0" 1754 | evp_bytestokey "^1.0.0" 1755 | pbkdf2 "^3.0.3" 1756 | 1757 | parse-glob@^3.0.4: 1758 | version "3.0.4" 1759 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1760 | dependencies: 1761 | glob-base "^0.3.0" 1762 | is-dotfile "^1.0.0" 1763 | is-extglob "^1.0.0" 1764 | is-glob "^2.0.0" 1765 | 1766 | path-browserify@~0.0.0: 1767 | version "0.0.0" 1768 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 1769 | 1770 | path-is-absolute@^1.0.0: 1771 | version "1.0.1" 1772 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1773 | 1774 | path-parse@^1.0.5: 1775 | version "1.0.5" 1776 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1777 | 1778 | path-platform@~0.11.15: 1779 | version "0.11.15" 1780 | resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" 1781 | 1782 | pbkdf2@^3.0.3: 1783 | version "3.0.14" 1784 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" 1785 | dependencies: 1786 | create-hash "^1.1.2" 1787 | create-hmac "^1.1.4" 1788 | ripemd160 "^2.0.1" 1789 | safe-buffer "^5.0.1" 1790 | sha.js "^2.4.8" 1791 | 1792 | preserve@^0.2.0: 1793 | version "0.2.0" 1794 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1795 | 1796 | private@^0.1.6: 1797 | version "0.1.8" 1798 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 1799 | 1800 | process-nextick-args@~1.0.6: 1801 | version "1.0.7" 1802 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1803 | 1804 | process@~0.11.0: 1805 | version "0.11.10" 1806 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 1807 | 1808 | promise@^7.1.1: 1809 | version "7.3.1" 1810 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 1811 | dependencies: 1812 | asap "~2.0.3" 1813 | 1814 | prop-types@^15.6.0: 1815 | version "15.6.0" 1816 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.0.tgz#ceaf083022fc46b4a35f69e13ef75aed0d639856" 1817 | dependencies: 1818 | fbjs "^0.8.16" 1819 | loose-envify "^1.3.1" 1820 | object-assign "^4.1.1" 1821 | 1822 | public-encrypt@^4.0.0: 1823 | version "4.0.0" 1824 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 1825 | dependencies: 1826 | bn.js "^4.1.0" 1827 | browserify-rsa "^4.0.0" 1828 | create-hash "^1.1.0" 1829 | parse-asn1 "^5.0.0" 1830 | randombytes "^2.0.1" 1831 | 1832 | punycode@1.3.2: 1833 | version "1.3.2" 1834 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 1835 | 1836 | punycode@^1.3.2: 1837 | version "1.4.1" 1838 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1839 | 1840 | querystring-es3@~0.2.0: 1841 | version "0.2.1" 1842 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 1843 | 1844 | querystring@0.2.0: 1845 | version "0.2.0" 1846 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 1847 | 1848 | randomatic@^1.1.3: 1849 | version "1.1.7" 1850 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1851 | dependencies: 1852 | is-number "^3.0.0" 1853 | kind-of "^4.0.0" 1854 | 1855 | randombytes@^2.0.0, randombytes@^2.0.1: 1856 | version "2.0.5" 1857 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79" 1858 | dependencies: 1859 | safe-buffer "^5.1.0" 1860 | 1861 | rc@^1.2.7: 1862 | version "1.2.8" 1863 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 1864 | dependencies: 1865 | deep-extend "^0.6.0" 1866 | ini "~1.3.0" 1867 | minimist "^1.2.0" 1868 | strip-json-comments "~2.0.1" 1869 | 1870 | react: 1871 | version "16.0.0" 1872 | resolved "https://registry.yarnpkg.com/react/-/react-16.0.0.tgz#ce7df8f1941b036f02b2cca9dbd0cb1f0e855e2d" 1873 | dependencies: 1874 | fbjs "^0.8.16" 1875 | loose-envify "^1.1.0" 1876 | object-assign "^4.1.1" 1877 | prop-types "^15.6.0" 1878 | 1879 | react-dom: 1880 | version "16.0.0" 1881 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.0.0.tgz#9cc3079c3dcd70d4c6e01b84aab2a7e34c303f58" 1882 | dependencies: 1883 | fbjs "^0.8.16" 1884 | loose-envify "^1.1.0" 1885 | object-assign "^4.1.1" 1886 | prop-types "^15.6.0" 1887 | 1888 | read-only-stream@^2.0.0: 1889 | version "2.0.0" 1890 | resolved "https://registry.yarnpkg.com/read-only-stream/-/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0" 1891 | dependencies: 1892 | readable-stream "^2.0.2" 1893 | 1894 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.6: 1895 | version "2.3.3" 1896 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1897 | dependencies: 1898 | core-util-is "~1.0.0" 1899 | inherits "~2.0.3" 1900 | isarray "~1.0.0" 1901 | process-nextick-args "~1.0.6" 1902 | safe-buffer "~5.1.1" 1903 | string_decoder "~1.0.3" 1904 | util-deprecate "~1.0.1" 1905 | 1906 | readable-stream@~2.0.0: 1907 | version "2.0.6" 1908 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 1909 | dependencies: 1910 | core-util-is "~1.0.0" 1911 | inherits "~2.0.1" 1912 | isarray "~1.0.0" 1913 | process-nextick-args "~1.0.6" 1914 | string_decoder "~0.10.x" 1915 | util-deprecate "~1.0.1" 1916 | 1917 | readdirp@^2.0.0: 1918 | version "2.1.0" 1919 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1920 | dependencies: 1921 | graceful-fs "^4.1.2" 1922 | minimatch "^3.0.2" 1923 | readable-stream "^2.0.2" 1924 | set-immediate-shim "^1.0.1" 1925 | 1926 | regenerate-unicode-properties@^7.0.0: 1927 | version "7.0.0" 1928 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-7.0.0.tgz#107405afcc4a190ec5ed450ecaa00ed0cafa7a4c" 1929 | dependencies: 1930 | regenerate "^1.4.0" 1931 | 1932 | regenerate@^1.4.0: 1933 | version "1.4.0" 1934 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 1935 | 1936 | regenerator-transform@^0.13.3: 1937 | version "0.13.3" 1938 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.13.3.tgz#264bd9ff38a8ce24b06e0636496b2c856b57bcbb" 1939 | dependencies: 1940 | private "^0.1.6" 1941 | 1942 | regex-cache@^0.4.2: 1943 | version "0.4.4" 1944 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1945 | dependencies: 1946 | is-equal-shallow "^0.1.3" 1947 | 1948 | regexpu-core@^4.1.3, regexpu-core@^4.2.0: 1949 | version "4.2.0" 1950 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.2.0.tgz#a3744fa03806cffe146dea4421a3e73bdcc47b1d" 1951 | dependencies: 1952 | regenerate "^1.4.0" 1953 | regenerate-unicode-properties "^7.0.0" 1954 | regjsgen "^0.4.0" 1955 | regjsparser "^0.3.0" 1956 | unicode-match-property-ecmascript "^1.0.4" 1957 | unicode-match-property-value-ecmascript "^1.0.2" 1958 | 1959 | regjsgen@^0.4.0: 1960 | version "0.4.0" 1961 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.4.0.tgz#c1eb4c89a209263f8717c782591523913ede2561" 1962 | 1963 | regjsparser@^0.3.0: 1964 | version "0.3.0" 1965 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.3.0.tgz#3c326da7fcfd69fa0d332575a41c8c0cdf588c96" 1966 | dependencies: 1967 | jsesc "~0.5.0" 1968 | 1969 | remove-trailing-separator@^1.0.1: 1970 | version "1.1.0" 1971 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1972 | 1973 | repeat-element@^1.1.2: 1974 | version "1.1.2" 1975 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1976 | 1977 | repeat-string@^1.5.2: 1978 | version "1.6.1" 1979 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1980 | 1981 | resolve@1.1.7: 1982 | version "1.1.7" 1983 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 1984 | 1985 | resolve@^1.1.3, resolve@^1.1.4: 1986 | version "1.5.0" 1987 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 1988 | dependencies: 1989 | path-parse "^1.0.5" 1990 | 1991 | resolve@^1.3.2: 1992 | version "1.8.1" 1993 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" 1994 | dependencies: 1995 | path-parse "^1.0.5" 1996 | 1997 | rimraf@^2.6.1: 1998 | version "2.6.2" 1999 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2000 | dependencies: 2001 | glob "^7.0.5" 2002 | 2003 | ripemd160@^2.0.0, ripemd160@^2.0.1: 2004 | version "2.0.1" 2005 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" 2006 | dependencies: 2007 | hash-base "^2.0.0" 2008 | inherits "^2.0.1" 2009 | 2010 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2011 | version "5.1.1" 2012 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2013 | 2014 | safe-buffer@^5.1.2: 2015 | version "5.1.2" 2016 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2017 | 2018 | "safer-buffer@>= 2.1.2 < 3": 2019 | version "2.1.2" 2020 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2021 | 2022 | sax@^1.2.4: 2023 | version "1.2.4" 2024 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2025 | 2026 | semver@^5.3.0: 2027 | version "5.4.1" 2028 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2029 | 2030 | semver@^5.4.1: 2031 | version "5.5.1" 2032 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.1.tgz#7dfdd8814bdb7cabc7be0fb1d734cfb66c940477" 2033 | 2034 | set-blocking@~2.0.0: 2035 | version "2.0.0" 2036 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2037 | 2038 | set-immediate-shim@^1.0.1: 2039 | version "1.0.1" 2040 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2041 | 2042 | setimmediate@^1.0.5: 2043 | version "1.0.5" 2044 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2045 | 2046 | sha.js@^2.4.0, sha.js@^2.4.8, sha.js@~2.4.4: 2047 | version "2.4.9" 2048 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d" 2049 | dependencies: 2050 | inherits "^2.0.1" 2051 | safe-buffer "^5.0.1" 2052 | 2053 | shasum@^1.0.0: 2054 | version "1.0.2" 2055 | resolved "https://registry.yarnpkg.com/shasum/-/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f" 2056 | dependencies: 2057 | json-stable-stringify "~0.0.0" 2058 | sha.js "~2.4.4" 2059 | 2060 | shell-quote@^1.4.2, shell-quote@^1.6.1: 2061 | version "1.6.1" 2062 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 2063 | dependencies: 2064 | array-filter "~0.0.0" 2065 | array-map "~0.0.0" 2066 | array-reduce "~0.0.0" 2067 | jsonify "~0.0.0" 2068 | 2069 | signal-exit@^3.0.0: 2070 | version "3.0.2" 2071 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2072 | 2073 | source-map@^0.5.0, source-map@~0.5.3: 2074 | version "0.5.7" 2075 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2076 | 2077 | stream-browserify@^2.0.0: 2078 | version "2.0.1" 2079 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 2080 | dependencies: 2081 | inherits "~2.0.1" 2082 | readable-stream "^2.0.2" 2083 | 2084 | stream-combiner2@^1.1.1: 2085 | version "1.1.1" 2086 | resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" 2087 | dependencies: 2088 | duplexer2 "~0.1.0" 2089 | readable-stream "^2.0.2" 2090 | 2091 | stream-http@^2.0.0: 2092 | version "2.7.2" 2093 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" 2094 | dependencies: 2095 | builtin-status-codes "^3.0.0" 2096 | inherits "^2.0.1" 2097 | readable-stream "^2.2.6" 2098 | to-arraybuffer "^1.0.0" 2099 | xtend "^4.0.0" 2100 | 2101 | stream-splicer@^2.0.0: 2102 | version "2.0.0" 2103 | resolved "https://registry.yarnpkg.com/stream-splicer/-/stream-splicer-2.0.0.tgz#1b63be438a133e4b671cc1935197600175910d83" 2104 | dependencies: 2105 | inherits "^2.0.1" 2106 | readable-stream "^2.0.2" 2107 | 2108 | string-width@^1.0.1, string-width@^1.0.2: 2109 | version "1.0.2" 2110 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2111 | dependencies: 2112 | code-point-at "^1.0.0" 2113 | is-fullwidth-code-point "^1.0.0" 2114 | strip-ansi "^3.0.0" 2115 | 2116 | string_decoder@~0.10.x: 2117 | version "0.10.31" 2118 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2119 | 2120 | string_decoder@~1.0.0, string_decoder@~1.0.3: 2121 | version "1.0.3" 2122 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2123 | dependencies: 2124 | safe-buffer "~5.1.0" 2125 | 2126 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2127 | version "3.0.1" 2128 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2129 | dependencies: 2130 | ansi-regex "^2.0.0" 2131 | 2132 | strip-json-comments@~2.0.1: 2133 | version "2.0.1" 2134 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2135 | 2136 | subarg@^1.0.0: 2137 | version "1.0.0" 2138 | resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" 2139 | dependencies: 2140 | minimist "^1.1.0" 2141 | 2142 | supports-color@^5.3.0: 2143 | version "5.5.0" 2144 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2145 | dependencies: 2146 | has-flag "^3.0.0" 2147 | 2148 | syntax-error@^1.1.1: 2149 | version "1.3.0" 2150 | resolved "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.3.0.tgz#1ed9266c4d40be75dc55bf9bb1cb77062bb96ca1" 2151 | dependencies: 2152 | acorn "^4.0.3" 2153 | 2154 | tar@^4: 2155 | version "4.4.6" 2156 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.6.tgz#63110f09c00b4e60ac8bcfe1bf3c8660235fbc9b" 2157 | dependencies: 2158 | chownr "^1.0.1" 2159 | fs-minipass "^1.2.5" 2160 | minipass "^2.3.3" 2161 | minizlib "^1.1.0" 2162 | mkdirp "^0.5.0" 2163 | safe-buffer "^5.1.2" 2164 | yallist "^3.0.2" 2165 | 2166 | through2@^2.0.0: 2167 | version "2.0.3" 2168 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2169 | dependencies: 2170 | readable-stream "^2.1.5" 2171 | xtend "~4.0.1" 2172 | 2173 | "through@>=2.2.7 <3": 2174 | version "2.3.8" 2175 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2176 | 2177 | timers-browserify@^1.0.1: 2178 | version "1.4.2" 2179 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" 2180 | dependencies: 2181 | process "~0.11.0" 2182 | 2183 | to-arraybuffer@^1.0.0: 2184 | version "1.0.1" 2185 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 2186 | 2187 | to-fast-properties@^2.0.0: 2188 | version "2.0.0" 2189 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2190 | 2191 | trim-right@^1.0.1: 2192 | version "1.0.1" 2193 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2194 | 2195 | tty-browserify@~0.0.0: 2196 | version "0.0.0" 2197 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 2198 | 2199 | typedarray@~0.0.5: 2200 | version "0.0.6" 2201 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2202 | 2203 | ua-parser-js@^0.7.9: 2204 | version "0.7.17" 2205 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac" 2206 | 2207 | umd@^3.0.0: 2208 | version "3.0.1" 2209 | resolved "https://registry.yarnpkg.com/umd/-/umd-3.0.1.tgz#8ae556e11011f63c2596708a8837259f01b3d60e" 2210 | 2211 | unicode-canonical-property-names-ecmascript@^1.0.4: 2212 | version "1.0.4" 2213 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" 2214 | 2215 | unicode-match-property-ecmascript@^1.0.4: 2216 | version "1.0.4" 2217 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" 2218 | dependencies: 2219 | unicode-canonical-property-names-ecmascript "^1.0.4" 2220 | unicode-property-aliases-ecmascript "^1.0.4" 2221 | 2222 | unicode-match-property-value-ecmascript@^1.0.2: 2223 | version "1.0.2" 2224 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.0.2.tgz#9f1dc76926d6ccf452310564fd834ace059663d4" 2225 | 2226 | unicode-property-aliases-ecmascript@^1.0.4: 2227 | version "1.0.4" 2228 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.4.tgz#5a533f31b4317ea76f17d807fa0d116546111dd0" 2229 | 2230 | url@~0.11.0: 2231 | version "0.11.0" 2232 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 2233 | dependencies: 2234 | punycode "1.3.2" 2235 | querystring "0.2.0" 2236 | 2237 | util-deprecate@~1.0.1: 2238 | version "1.0.2" 2239 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2240 | 2241 | util@0.10.3, util@~0.10.1: 2242 | version "0.10.3" 2243 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 2244 | dependencies: 2245 | inherits "2.0.1" 2246 | 2247 | vm-browserify@~0.0.1: 2248 | version "0.0.4" 2249 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 2250 | dependencies: 2251 | indexof "0.0.1" 2252 | 2253 | watchify: 2254 | version "3.9.0" 2255 | resolved "https://registry.yarnpkg.com/watchify/-/watchify-3.9.0.tgz#f075fd2e8a86acde84cedba6e5c2a0bedd523d9e" 2256 | dependencies: 2257 | anymatch "^1.3.0" 2258 | browserify "^14.0.0" 2259 | chokidar "^1.0.0" 2260 | defined "^1.0.0" 2261 | outpipe "^1.1.0" 2262 | through2 "^2.0.0" 2263 | xtend "^4.0.0" 2264 | 2265 | whatwg-fetch@>=0.10.0: 2266 | version "2.0.3" 2267 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 2268 | 2269 | wide-align@^1.1.0: 2270 | version "1.1.2" 2271 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2272 | dependencies: 2273 | string-width "^1.0.2" 2274 | 2275 | wrappy@1: 2276 | version "1.0.2" 2277 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2278 | 2279 | xtend@^4.0.0, xtend@~4.0.1: 2280 | version "4.0.1" 2281 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2282 | 2283 | yallist@^3.0.0, yallist@^3.0.2: 2284 | version "3.0.2" 2285 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 2286 | --------------------------------------------------------------------------------