├── .editorconfig
├── .gitignore
├── .vscode
└── settings.json
├── README.md
├── dist
├── index.html
├── main.bundle.js
└── widget.chunk.js
├── package.json
├── src
├── main.ts
└── widget.ts
├── tsconfig.json
├── webpack.config.js
└── yarn.lock
/.editorconfig:
--------------------------------------------------------------------------------
1 | [*]
2 | charset = utf-8
3 | end_of_line = lf
4 | indent_size = 4
5 | indent_style = space
6 | insert_final_newline = true
7 | tab_width = 4
8 | trim_trailing_whitespace = true
9 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "typescript.tsdk": "node_modules/typescript/lib"
3 | }
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # typescript-webpack-dynamic-import
2 |
3 | A demo of how to use dynamic `import()` expressions with TypeScript and webpack.
4 |
5 | - [TypeScript 2.4: Dynamic import() Expressions](https://blog.mariusschulz.com/2018/01/14/typescript-2-4-dynamic-import-expressions)
6 | - [Code-Splitting a TypeScript Application with import() and webpack](https://blog.mariusschulz.com/2018/01/14/code-splitting-with-import-typescript-and-webpack)
7 |
8 | ## Setup
9 |
10 | ```
11 | yarn install
12 | yarn start
13 | ```
14 |
15 | Now open `http://localhost:8080/` in the browser.
16 |
--------------------------------------------------------------------------------
/dist/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Dynamic import() Expressions
5 |
6 |
7 |
8 | Dynamic import() Expressions
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/dist/main.bundle.js:
--------------------------------------------------------------------------------
1 | /******/ (function(modules) { // webpackBootstrap
2 | /******/ // install a JSONP callback for chunk loading
3 | /******/ var parentJsonpFunction = window["webpackJsonp"];
4 | /******/ window["webpackJsonp"] = function webpackJsonpCallback(chunkIds, moreModules, executeModules) {
5 | /******/ // add "moreModules" to the modules object,
6 | /******/ // then flag all "chunkIds" as loaded and fire callback
7 | /******/ var moduleId, chunkId, i = 0, resolves = [], result;
8 | /******/ for(;i < chunkIds.length; i++) {
9 | /******/ chunkId = chunkIds[i];
10 | /******/ if(installedChunks[chunkId]) {
11 | /******/ resolves.push(installedChunks[chunkId][0]);
12 | /******/ }
13 | /******/ installedChunks[chunkId] = 0;
14 | /******/ }
15 | /******/ for(moduleId in moreModules) {
16 | /******/ if(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {
17 | /******/ modules[moduleId] = moreModules[moduleId];
18 | /******/ }
19 | /******/ }
20 | /******/ if(parentJsonpFunction) parentJsonpFunction(chunkIds, moreModules, executeModules);
21 | /******/ while(resolves.length) {
22 | /******/ resolves.shift()();
23 | /******/ }
24 | /******/
25 | /******/ };
26 | /******/
27 | /******/ // The module cache
28 | /******/ var installedModules = {};
29 | /******/
30 | /******/ // objects to store loaded and loading chunks
31 | /******/ var installedChunks = {
32 | /******/ 1: 0
33 | /******/ };
34 | /******/
35 | /******/ // The require function
36 | /******/ function __webpack_require__(moduleId) {
37 | /******/
38 | /******/ // Check if module is in cache
39 | /******/ if(installedModules[moduleId]) {
40 | /******/ return installedModules[moduleId].exports;
41 | /******/ }
42 | /******/ // Create a new module (and put it into the cache)
43 | /******/ var module = installedModules[moduleId] = {
44 | /******/ i: moduleId,
45 | /******/ l: false,
46 | /******/ exports: {}
47 | /******/ };
48 | /******/
49 | /******/ // Execute the module function
50 | /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
51 | /******/
52 | /******/ // Flag the module as loaded
53 | /******/ module.l = true;
54 | /******/
55 | /******/ // Return the exports of the module
56 | /******/ return module.exports;
57 | /******/ }
58 | /******/
59 | /******/ // This file contains only the entry chunk.
60 | /******/ // The chunk loading function for additional chunks
61 | /******/ __webpack_require__.e = function requireEnsure(chunkId) {
62 | /******/ var installedChunkData = installedChunks[chunkId];
63 | /******/ if(installedChunkData === 0) {
64 | /******/ return new Promise(function(resolve) { resolve(); });
65 | /******/ }
66 | /******/
67 | /******/ // a Promise means "currently loading".
68 | /******/ if(installedChunkData) {
69 | /******/ return installedChunkData[2];
70 | /******/ }
71 | /******/
72 | /******/ // setup Promise in chunk cache
73 | /******/ var promise = new Promise(function(resolve, reject) {
74 | /******/ installedChunkData = installedChunks[chunkId] = [resolve, reject];
75 | /******/ });
76 | /******/ installedChunkData[2] = promise;
77 | /******/
78 | /******/ // start chunk loading
79 | /******/ var head = document.getElementsByTagName('head')[0];
80 | /******/ var script = document.createElement('script');
81 | /******/ script.type = 'text/javascript';
82 | /******/ script.charset = 'utf-8';
83 | /******/ script.async = true;
84 | /******/ script.timeout = 120000;
85 | /******/
86 | /******/ if (__webpack_require__.nc) {
87 | /******/ script.setAttribute("nonce", __webpack_require__.nc);
88 | /******/ }
89 | /******/ script.src = __webpack_require__.p + "" + ({"0":"widget"}[chunkId]||chunkId) + ".chunk.js";
90 | /******/ var timeout = setTimeout(onScriptComplete, 120000);
91 | /******/ script.onerror = script.onload = onScriptComplete;
92 | /******/ function onScriptComplete() {
93 | /******/ // avoid mem leaks in IE.
94 | /******/ script.onerror = script.onload = null;
95 | /******/ clearTimeout(timeout);
96 | /******/ var chunk = installedChunks[chunkId];
97 | /******/ if(chunk !== 0) {
98 | /******/ if(chunk) {
99 | /******/ chunk[1](new Error('Loading chunk ' + chunkId + ' failed.'));
100 | /******/ }
101 | /******/ installedChunks[chunkId] = undefined;
102 | /******/ }
103 | /******/ };
104 | /******/ head.appendChild(script);
105 | /******/
106 | /******/ return promise;
107 | /******/ };
108 | /******/
109 | /******/ // expose the modules object (__webpack_modules__)
110 | /******/ __webpack_require__.m = modules;
111 | /******/
112 | /******/ // expose the module cache
113 | /******/ __webpack_require__.c = installedModules;
114 | /******/
115 | /******/ // define getter function for harmony exports
116 | /******/ __webpack_require__.d = function(exports, name, getter) {
117 | /******/ if(!__webpack_require__.o(exports, name)) {
118 | /******/ Object.defineProperty(exports, name, {
119 | /******/ configurable: false,
120 | /******/ enumerable: true,
121 | /******/ get: getter
122 | /******/ });
123 | /******/ }
124 | /******/ };
125 | /******/
126 | /******/ // getDefaultExport function for compatibility with non-harmony modules
127 | /******/ __webpack_require__.n = function(module) {
128 | /******/ var getter = module && module.__esModule ?
129 | /******/ function getDefault() { return module['default']; } :
130 | /******/ function getModuleExports() { return module; };
131 | /******/ __webpack_require__.d(getter, 'a', getter);
132 | /******/ return getter;
133 | /******/ };
134 | /******/
135 | /******/ // Object.prototype.hasOwnProperty.call
136 | /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
137 | /******/
138 | /******/ // __webpack_public_path__
139 | /******/ __webpack_require__.p = "";
140 | /******/
141 | /******/ // on error function for async loading
142 | /******/ __webpack_require__.oe = function(err) { console.error(err); throw err; };
143 | /******/
144 | /******/ // Load entry module and return exports
145 | /******/ return __webpack_require__(__webpack_require__.s = 0);
146 | /******/ })
147 | /************************************************************************/
148 | /******/ ([
149 | /* 0 */
150 | /***/ (function(module, __webpack_exports__, __webpack_require__) {
151 |
152 | "use strict";
153 | Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
154 | /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_tslib__ = __webpack_require__(1);
155 | /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_es6_promise__ = __webpack_require__(2);
156 | /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_es6_promise___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_es6_promise__);
157 |
158 | // We have to provide a Promise polyfill if we're targeting older browsers
159 | // because import() returns a promise which resolves once the module is loaded
160 |
161 | __WEBPACK_IMPORTED_MODULE_1_es6_promise__["polyfill"]();
162 | function renderWidget() {
163 | return __WEBPACK_IMPORTED_MODULE_0_tslib__["a" /* __awaiter */](this, void 0, void 0, function () {
164 | var container, widget;
165 | return __WEBPACK_IMPORTED_MODULE_0_tslib__["b" /* __generator */](this, function (_a) {
166 | switch (_a.label) {
167 | case 0:
168 | container = document.getElementById("widget");
169 | if (!(container !== null)) return [3 /*break*/, 2];
170 | return [4 /*yield*/, __webpack_require__.e/* import() */(0).then(__webpack_require__.bind(null, 6))];
171 | case 1:
172 | widget = _a.sent();
173 | widget.render(container);
174 | _a.label = 2;
175 | case 2: return [2 /*return*/];
176 | }
177 | });
178 | });
179 | }
180 | renderWidget();
181 |
182 |
183 | /***/ }),
184 | /* 1 */
185 | /***/ (function(module, __webpack_exports__, __webpack_require__) {
186 |
187 | "use strict";
188 | /* unused harmony export __extends */
189 | /* unused harmony export __assign */
190 | /* unused harmony export __rest */
191 | /* unused harmony export __decorate */
192 | /* unused harmony export __param */
193 | /* unused harmony export __metadata */
194 | /* harmony export (immutable) */ __webpack_exports__["a"] = __awaiter;
195 | /* harmony export (immutable) */ __webpack_exports__["b"] = __generator;
196 | /* unused harmony export __exportStar */
197 | /* unused harmony export __values */
198 | /* unused harmony export __read */
199 | /* unused harmony export __spread */
200 | /* unused harmony export __await */
201 | /* unused harmony export __asyncGenerator */
202 | /* unused harmony export __asyncDelegator */
203 | /* unused harmony export __asyncValues */
204 | /* unused harmony export __makeTemplateObject */
205 | /*! *****************************************************************************
206 | Copyright (c) Microsoft Corporation. All rights reserved.
207 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use
208 | this file except in compliance with the License. You may obtain a copy of the
209 | License at http://www.apache.org/licenses/LICENSE-2.0
210 |
211 | THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
212 | KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
213 | WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
214 | MERCHANTABLITY OR NON-INFRINGEMENT.
215 |
216 | See the Apache Version 2.0 License for specific language governing permissions
217 | and limitations under the License.
218 | ***************************************************************************** */
219 | /* global Reflect, Promise */
220 |
221 | var extendStatics = Object.setPrototypeOf ||
222 | ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
223 | function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
224 |
225 | function __extends(d, b) {
226 | extendStatics(d, b);
227 | function __() { this.constructor = d; }
228 | d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
229 | }
230 |
231 | var __assign = Object.assign || function __assign(t) {
232 | for (var s, i = 1, n = arguments.length; i < n; i++) {
233 | s = arguments[i];
234 | for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
235 | }
236 | return t;
237 | }
238 |
239 | function __rest(s, e) {
240 | var t = {};
241 | for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
242 | t[p] = s[p];
243 | if (s != null && typeof Object.getOwnPropertySymbols === "function")
244 | for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) if (e.indexOf(p[i]) < 0)
245 | t[p[i]] = s[p[i]];
246 | return t;
247 | }
248 |
249 | function __decorate(decorators, target, key, desc) {
250 | var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
251 | if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
252 | else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
253 | return c > 3 && r && Object.defineProperty(target, key, r), r;
254 | }
255 |
256 | function __param(paramIndex, decorator) {
257 | return function (target, key) { decorator(target, key, paramIndex); }
258 | }
259 |
260 | function __metadata(metadataKey, metadataValue) {
261 | if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
262 | }
263 |
264 | function __awaiter(thisArg, _arguments, P, generator) {
265 | return new (P || (P = Promise))(function (resolve, reject) {
266 | function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
267 | function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
268 | function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
269 | step((generator = generator.apply(thisArg, _arguments || [])).next());
270 | });
271 | }
272 |
273 | function __generator(thisArg, body) {
274 | var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
275 | return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
276 | function verb(n) { return function (v) { return step([n, v]); }; }
277 | function step(op) {
278 | if (f) throw new TypeError("Generator is already executing.");
279 | while (_) try {
280 | if (f = 1, y && (t = y[op[0] & 2 ? "return" : op[0] ? "throw" : "next"]) && !(t = t.call(y, op[1])).done) return t;
281 | if (y = 0, t) op = [0, t.value];
282 | switch (op[0]) {
283 | case 0: case 1: t = op; break;
284 | case 4: _.label++; return { value: op[1], done: false };
285 | case 5: _.label++; y = op[1]; op = [0]; continue;
286 | case 7: op = _.ops.pop(); _.trys.pop(); continue;
287 | default:
288 | if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
289 | if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
290 | if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
291 | if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
292 | if (t[2]) _.ops.pop();
293 | _.trys.pop(); continue;
294 | }
295 | op = body.call(thisArg, _);
296 | } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
297 | if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
298 | }
299 | }
300 |
301 | function __exportStar(m, exports) {
302 | for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
303 | }
304 |
305 | function __values(o) {
306 | var m = typeof Symbol === "function" && o[Symbol.iterator], i = 0;
307 | if (m) return m.call(o);
308 | return {
309 | next: function () {
310 | if (o && i >= o.length) o = void 0;
311 | return { value: o && o[i++], done: !o };
312 | }
313 | };
314 | }
315 |
316 | function __read(o, n) {
317 | var m = typeof Symbol === "function" && o[Symbol.iterator];
318 | if (!m) return o;
319 | var i = m.call(o), r, ar = [], e;
320 | try {
321 | while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
322 | }
323 | catch (error) { e = { error: error }; }
324 | finally {
325 | try {
326 | if (r && !r.done && (m = i["return"])) m.call(i);
327 | }
328 | finally { if (e) throw e.error; }
329 | }
330 | return ar;
331 | }
332 |
333 | function __spread() {
334 | for (var ar = [], i = 0; i < arguments.length; i++)
335 | ar = ar.concat(__read(arguments[i]));
336 | return ar;
337 | }
338 |
339 | function __await(v) {
340 | return this instanceof __await ? (this.v = v, this) : new __await(v);
341 | }
342 |
343 | function __asyncGenerator(thisArg, _arguments, generator) {
344 | if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
345 | var g = generator.apply(thisArg, _arguments || []), i, q = [];
346 | return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
347 | function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
348 | function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
349 | function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
350 | function fulfill(value) { resume("next", value); }
351 | function reject(value) { resume("throw", value); }
352 | function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
353 | }
354 |
355 | function __asyncDelegator(o) {
356 | var i, p;
357 | return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
358 | function verb(n, f) { if (o[n]) i[n] = function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; }; }
359 | }
360 |
361 | function __asyncValues(o) {
362 | if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
363 | var m = o[Symbol.asyncIterator];
364 | return m ? m.call(o) : typeof __values === "function" ? __values(o) : o[Symbol.iterator]();
365 | }
366 |
367 | function __makeTemplateObject(cooked, raw) {
368 | if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
369 | return cooked;
370 | };
371 |
372 |
373 | /***/ }),
374 | /* 2 */
375 | /***/ (function(module, exports, __webpack_require__) {
376 |
377 | /* WEBPACK VAR INJECTION */(function(process, global) {var require;/*!
378 | * @overview es6-promise - a tiny implementation of Promises/A+.
379 | * @copyright Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors (Conversion to ES6 API by Jake Archibald)
380 | * @license Licensed under MIT license
381 | * See https://raw.githubusercontent.com/stefanpenner/es6-promise/master/LICENSE
382 | * @version v4.2.2+97478eb6
383 | */
384 |
385 | (function (global, factory) {
386 | true ? module.exports = factory() :
387 | typeof define === 'function' && define.amd ? define(factory) :
388 | (global.ES6Promise = factory());
389 | }(this, (function () { 'use strict';
390 |
391 | function objectOrFunction(x) {
392 | var type = typeof x;
393 | return x !== null && (type === 'object' || type === 'function');
394 | }
395 |
396 | function isFunction(x) {
397 | return typeof x === 'function';
398 | }
399 |
400 |
401 |
402 | var _isArray = void 0;
403 | if (Array.isArray) {
404 | _isArray = Array.isArray;
405 | } else {
406 | _isArray = function (x) {
407 | return Object.prototype.toString.call(x) === '[object Array]';
408 | };
409 | }
410 |
411 | var isArray = _isArray;
412 |
413 | var len = 0;
414 | var vertxNext = void 0;
415 | var customSchedulerFn = void 0;
416 |
417 | var asap = function asap(callback, arg) {
418 | queue[len] = callback;
419 | queue[len + 1] = arg;
420 | len += 2;
421 | if (len === 2) {
422 | // If len is 2, that means that we need to schedule an async flush.
423 | // If additional callbacks are queued before the queue is flushed, they
424 | // will be processed by this flush that we are scheduling.
425 | if (customSchedulerFn) {
426 | customSchedulerFn(flush);
427 | } else {
428 | scheduleFlush();
429 | }
430 | }
431 | };
432 |
433 | function setScheduler(scheduleFn) {
434 | customSchedulerFn = scheduleFn;
435 | }
436 |
437 | function setAsap(asapFn) {
438 | asap = asapFn;
439 | }
440 |
441 | var browserWindow = typeof window !== 'undefined' ? window : undefined;
442 | var browserGlobal = browserWindow || {};
443 | var BrowserMutationObserver = browserGlobal.MutationObserver || browserGlobal.WebKitMutationObserver;
444 | var isNode = typeof self === 'undefined' && typeof process !== 'undefined' && {}.toString.call(process) === '[object process]';
445 |
446 | // test for web worker but not in IE10
447 | var isWorker = typeof Uint8ClampedArray !== 'undefined' && typeof importScripts !== 'undefined' && typeof MessageChannel !== 'undefined';
448 |
449 | // node
450 | function useNextTick() {
451 | // node version 0.10.x displays a deprecation warning when nextTick is used recursively
452 | // see https://github.com/cujojs/when/issues/410 for details
453 | return function () {
454 | return process.nextTick(flush);
455 | };
456 | }
457 |
458 | // vertx
459 | function useVertxTimer() {
460 | if (typeof vertxNext !== 'undefined') {
461 | return function () {
462 | vertxNext(flush);
463 | };
464 | }
465 |
466 | return useSetTimeout();
467 | }
468 |
469 | function useMutationObserver() {
470 | var iterations = 0;
471 | var observer = new BrowserMutationObserver(flush);
472 | var node = document.createTextNode('');
473 | observer.observe(node, { characterData: true });
474 |
475 | return function () {
476 | node.data = iterations = ++iterations % 2;
477 | };
478 | }
479 |
480 | // web worker
481 | function useMessageChannel() {
482 | var channel = new MessageChannel();
483 | channel.port1.onmessage = flush;
484 | return function () {
485 | return channel.port2.postMessage(0);
486 | };
487 | }
488 |
489 | function useSetTimeout() {
490 | // Store setTimeout reference so es6-promise will be unaffected by
491 | // other code modifying setTimeout (like sinon.useFakeTimers())
492 | var globalSetTimeout = setTimeout;
493 | return function () {
494 | return globalSetTimeout(flush, 1);
495 | };
496 | }
497 |
498 | var queue = new Array(1000);
499 | function flush() {
500 | for (var i = 0; i < len; i += 2) {
501 | var callback = queue[i];
502 | var arg = queue[i + 1];
503 |
504 | callback(arg);
505 |
506 | queue[i] = undefined;
507 | queue[i + 1] = undefined;
508 | }
509 |
510 | len = 0;
511 | }
512 |
513 | function attemptVertx() {
514 | try {
515 | var r = require;
516 | var vertx = __webpack_require__(5);
517 | vertxNext = vertx.runOnLoop || vertx.runOnContext;
518 | return useVertxTimer();
519 | } catch (e) {
520 | return useSetTimeout();
521 | }
522 | }
523 |
524 | var scheduleFlush = void 0;
525 | // Decide what async method to use to triggering processing of queued callbacks:
526 | if (isNode) {
527 | scheduleFlush = useNextTick();
528 | } else if (BrowserMutationObserver) {
529 | scheduleFlush = useMutationObserver();
530 | } else if (isWorker) {
531 | scheduleFlush = useMessageChannel();
532 | } else if (browserWindow === undefined && "function" === 'function') {
533 | scheduleFlush = attemptVertx();
534 | } else {
535 | scheduleFlush = useSetTimeout();
536 | }
537 |
538 | function then(onFulfillment, onRejection) {
539 | var parent = this;
540 |
541 | var child = new this.constructor(noop);
542 |
543 | if (child[PROMISE_ID] === undefined) {
544 | makePromise(child);
545 | }
546 |
547 | var _state = parent._state;
548 |
549 |
550 | if (_state) {
551 | var callback = arguments[_state - 1];
552 | asap(function () {
553 | return invokeCallback(_state, child, callback, parent._result);
554 | });
555 | } else {
556 | subscribe(parent, child, onFulfillment, onRejection);
557 | }
558 |
559 | return child;
560 | }
561 |
562 | /**
563 | `Promise.resolve` returns a promise that will become resolved with the
564 | passed `value`. It is shorthand for the following:
565 |
566 | ```javascript
567 | let promise = new Promise(function(resolve, reject){
568 | resolve(1);
569 | });
570 |
571 | promise.then(function(value){
572 | // value === 1
573 | });
574 | ```
575 |
576 | Instead of writing the above, your code now simply becomes the following:
577 |
578 | ```javascript
579 | let promise = Promise.resolve(1);
580 |
581 | promise.then(function(value){
582 | // value === 1
583 | });
584 | ```
585 |
586 | @method resolve
587 | @static
588 | @param {Any} value value that the returned promise will be resolved with
589 | Useful for tooling.
590 | @return {Promise} a promise that will become fulfilled with the given
591 | `value`
592 | */
593 | function resolve$1(object) {
594 | /*jshint validthis:true */
595 | var Constructor = this;
596 |
597 | if (object && typeof object === 'object' && object.constructor === Constructor) {
598 | return object;
599 | }
600 |
601 | var promise = new Constructor(noop);
602 | resolve(promise, object);
603 | return promise;
604 | }
605 |
606 | var PROMISE_ID = Math.random().toString(36).substring(16);
607 |
608 | function noop() {}
609 |
610 | var PENDING = void 0;
611 | var FULFILLED = 1;
612 | var REJECTED = 2;
613 |
614 | var GET_THEN_ERROR = new ErrorObject();
615 |
616 | function selfFulfillment() {
617 | return new TypeError("You cannot resolve a promise with itself");
618 | }
619 |
620 | function cannotReturnOwn() {
621 | return new TypeError('A promises callback cannot return that same promise.');
622 | }
623 |
624 | function getThen(promise) {
625 | try {
626 | return promise.then;
627 | } catch (error) {
628 | GET_THEN_ERROR.error = error;
629 | return GET_THEN_ERROR;
630 | }
631 | }
632 |
633 | function tryThen(then$$1, value, fulfillmentHandler, rejectionHandler) {
634 | try {
635 | then$$1.call(value, fulfillmentHandler, rejectionHandler);
636 | } catch (e) {
637 | return e;
638 | }
639 | }
640 |
641 | function handleForeignThenable(promise, thenable, then$$1) {
642 | asap(function (promise) {
643 | var sealed = false;
644 | var error = tryThen(then$$1, thenable, function (value) {
645 | if (sealed) {
646 | return;
647 | }
648 | sealed = true;
649 | if (thenable !== value) {
650 | resolve(promise, value);
651 | } else {
652 | fulfill(promise, value);
653 | }
654 | }, function (reason) {
655 | if (sealed) {
656 | return;
657 | }
658 | sealed = true;
659 |
660 | reject(promise, reason);
661 | }, 'Settle: ' + (promise._label || ' unknown promise'));
662 |
663 | if (!sealed && error) {
664 | sealed = true;
665 | reject(promise, error);
666 | }
667 | }, promise);
668 | }
669 |
670 | function handleOwnThenable(promise, thenable) {
671 | if (thenable._state === FULFILLED) {
672 | fulfill(promise, thenable._result);
673 | } else if (thenable._state === REJECTED) {
674 | reject(promise, thenable._result);
675 | } else {
676 | subscribe(thenable, undefined, function (value) {
677 | return resolve(promise, value);
678 | }, function (reason) {
679 | return reject(promise, reason);
680 | });
681 | }
682 | }
683 |
684 | function handleMaybeThenable(promise, maybeThenable, then$$1) {
685 | if (maybeThenable.constructor === promise.constructor && then$$1 === then && maybeThenable.constructor.resolve === resolve$1) {
686 | handleOwnThenable(promise, maybeThenable);
687 | } else {
688 | if (then$$1 === GET_THEN_ERROR) {
689 | reject(promise, GET_THEN_ERROR.error);
690 | GET_THEN_ERROR.error = null;
691 | } else if (then$$1 === undefined) {
692 | fulfill(promise, maybeThenable);
693 | } else if (isFunction(then$$1)) {
694 | handleForeignThenable(promise, maybeThenable, then$$1);
695 | } else {
696 | fulfill(promise, maybeThenable);
697 | }
698 | }
699 | }
700 |
701 | function resolve(promise, value) {
702 | if (promise === value) {
703 | reject(promise, selfFulfillment());
704 | } else if (objectOrFunction(value)) {
705 | handleMaybeThenable(promise, value, getThen(value));
706 | } else {
707 | fulfill(promise, value);
708 | }
709 | }
710 |
711 | function publishRejection(promise) {
712 | if (promise._onerror) {
713 | promise._onerror(promise._result);
714 | }
715 |
716 | publish(promise);
717 | }
718 |
719 | function fulfill(promise, value) {
720 | if (promise._state !== PENDING) {
721 | return;
722 | }
723 |
724 | promise._result = value;
725 | promise._state = FULFILLED;
726 |
727 | if (promise._subscribers.length !== 0) {
728 | asap(publish, promise);
729 | }
730 | }
731 |
732 | function reject(promise, reason) {
733 | if (promise._state !== PENDING) {
734 | return;
735 | }
736 | promise._state = REJECTED;
737 | promise._result = reason;
738 |
739 | asap(publishRejection, promise);
740 | }
741 |
742 | function subscribe(parent, child, onFulfillment, onRejection) {
743 | var _subscribers = parent._subscribers;
744 | var length = _subscribers.length;
745 |
746 |
747 | parent._onerror = null;
748 |
749 | _subscribers[length] = child;
750 | _subscribers[length + FULFILLED] = onFulfillment;
751 | _subscribers[length + REJECTED] = onRejection;
752 |
753 | if (length === 0 && parent._state) {
754 | asap(publish, parent);
755 | }
756 | }
757 |
758 | function publish(promise) {
759 | var subscribers = promise._subscribers;
760 | var settled = promise._state;
761 |
762 | if (subscribers.length === 0) {
763 | return;
764 | }
765 |
766 | var child = void 0,
767 | callback = void 0,
768 | detail = promise._result;
769 |
770 | for (var i = 0; i < subscribers.length; i += 3) {
771 | child = subscribers[i];
772 | callback = subscribers[i + settled];
773 |
774 | if (child) {
775 | invokeCallback(settled, child, callback, detail);
776 | } else {
777 | callback(detail);
778 | }
779 | }
780 |
781 | promise._subscribers.length = 0;
782 | }
783 |
784 | function ErrorObject() {
785 | this.error = null;
786 | }
787 |
788 | var TRY_CATCH_ERROR = new ErrorObject();
789 |
790 | function tryCatch(callback, detail) {
791 | try {
792 | return callback(detail);
793 | } catch (e) {
794 | TRY_CATCH_ERROR.error = e;
795 | return TRY_CATCH_ERROR;
796 | }
797 | }
798 |
799 | function invokeCallback(settled, promise, callback, detail) {
800 | var hasCallback = isFunction(callback),
801 | value = void 0,
802 | error = void 0,
803 | succeeded = void 0,
804 | failed = void 0;
805 |
806 | if (hasCallback) {
807 | value = tryCatch(callback, detail);
808 |
809 | if (value === TRY_CATCH_ERROR) {
810 | failed = true;
811 | error = value.error;
812 | value.error = null;
813 | } else {
814 | succeeded = true;
815 | }
816 |
817 | if (promise === value) {
818 | reject(promise, cannotReturnOwn());
819 | return;
820 | }
821 | } else {
822 | value = detail;
823 | succeeded = true;
824 | }
825 |
826 | if (promise._state !== PENDING) {
827 | // noop
828 | } else if (hasCallback && succeeded) {
829 | resolve(promise, value);
830 | } else if (failed) {
831 | reject(promise, error);
832 | } else if (settled === FULFILLED) {
833 | fulfill(promise, value);
834 | } else if (settled === REJECTED) {
835 | reject(promise, value);
836 | }
837 | }
838 |
839 | function initializePromise(promise, resolver) {
840 | try {
841 | resolver(function resolvePromise(value) {
842 | resolve(promise, value);
843 | }, function rejectPromise(reason) {
844 | reject(promise, reason);
845 | });
846 | } catch (e) {
847 | reject(promise, e);
848 | }
849 | }
850 |
851 | var id = 0;
852 | function nextId() {
853 | return id++;
854 | }
855 |
856 | function makePromise(promise) {
857 | promise[PROMISE_ID] = id++;
858 | promise._state = undefined;
859 | promise._result = undefined;
860 | promise._subscribers = [];
861 | }
862 |
863 | function validationError() {
864 | return new Error('Array Methods must be provided an Array');
865 | }
866 |
867 | function validationError() {
868 | return new Error('Array Methods must be provided an Array');
869 | }
870 |
871 | var Enumerator = function () {
872 | function Enumerator(Constructor, input) {
873 | this._instanceConstructor = Constructor;
874 | this.promise = new Constructor(noop);
875 |
876 | if (!this.promise[PROMISE_ID]) {
877 | makePromise(this.promise);
878 | }
879 |
880 | if (isArray(input)) {
881 | this.length = input.length;
882 | this._remaining = input.length;
883 |
884 | this._result = new Array(this.length);
885 |
886 | if (this.length === 0) {
887 | fulfill(this.promise, this._result);
888 | } else {
889 | this.length = this.length || 0;
890 | this._enumerate(input);
891 | if (this._remaining === 0) {
892 | fulfill(this.promise, this._result);
893 | }
894 | }
895 | } else {
896 | reject(this.promise, validationError());
897 | }
898 | }
899 |
900 | Enumerator.prototype._enumerate = function _enumerate(input) {
901 | for (var i = 0; this._state === PENDING && i < input.length; i++) {
902 | this._eachEntry(input[i], i);
903 | }
904 | };
905 |
906 | Enumerator.prototype._eachEntry = function _eachEntry(entry, i) {
907 | var c = this._instanceConstructor;
908 | var resolve$$1 = c.resolve;
909 |
910 |
911 | if (resolve$$1 === resolve$1) {
912 | var _then = getThen(entry);
913 |
914 | if (_then === then && entry._state !== PENDING) {
915 | this._settledAt(entry._state, i, entry._result);
916 | } else if (typeof _then !== 'function') {
917 | this._remaining--;
918 | this._result[i] = entry;
919 | } else if (c === Promise$1) {
920 | var promise = new c(noop);
921 | handleMaybeThenable(promise, entry, _then);
922 | this._willSettleAt(promise, i);
923 | } else {
924 | this._willSettleAt(new c(function (resolve$$1) {
925 | return resolve$$1(entry);
926 | }), i);
927 | }
928 | } else {
929 | this._willSettleAt(resolve$$1(entry), i);
930 | }
931 | };
932 |
933 | Enumerator.prototype._settledAt = function _settledAt(state, i, value) {
934 | var promise = this.promise;
935 |
936 |
937 | if (promise._state === PENDING) {
938 | this._remaining--;
939 |
940 | if (state === REJECTED) {
941 | reject(promise, value);
942 | } else {
943 | this._result[i] = value;
944 | }
945 | }
946 |
947 | if (this._remaining === 0) {
948 | fulfill(promise, this._result);
949 | }
950 | };
951 |
952 | Enumerator.prototype._willSettleAt = function _willSettleAt(promise, i) {
953 | var enumerator = this;
954 |
955 | subscribe(promise, undefined, function (value) {
956 | return enumerator._settledAt(FULFILLED, i, value);
957 | }, function (reason) {
958 | return enumerator._settledAt(REJECTED, i, reason);
959 | });
960 | };
961 |
962 | return Enumerator;
963 | }();
964 |
965 | /**
966 | `Promise.all` accepts an array of promises, and returns a new promise which
967 | is fulfilled with an array of fulfillment values for the passed promises, or
968 | rejected with the reason of the first passed promise to be rejected. It casts all
969 | elements of the passed iterable to promises as it runs this algorithm.
970 |
971 | Example:
972 |
973 | ```javascript
974 | let promise1 = resolve(1);
975 | let promise2 = resolve(2);
976 | let promise3 = resolve(3);
977 | let promises = [ promise1, promise2, promise3 ];
978 |
979 | Promise.all(promises).then(function(array){
980 | // The array here would be [ 1, 2, 3 ];
981 | });
982 | ```
983 |
984 | If any of the `promises` given to `all` are rejected, the first promise
985 | that is rejected will be given as an argument to the returned promises's
986 | rejection handler. For example:
987 |
988 | Example:
989 |
990 | ```javascript
991 | let promise1 = resolve(1);
992 | let promise2 = reject(new Error("2"));
993 | let promise3 = reject(new Error("3"));
994 | let promises = [ promise1, promise2, promise3 ];
995 |
996 | Promise.all(promises).then(function(array){
997 | // Code here never runs because there are rejected promises!
998 | }, function(error) {
999 | // error.message === "2"
1000 | });
1001 | ```
1002 |
1003 | @method all
1004 | @static
1005 | @param {Array} entries array of promises
1006 | @param {String} label optional string for labeling the promise.
1007 | Useful for tooling.
1008 | @return {Promise} promise that is fulfilled when all `promises` have been
1009 | fulfilled, or rejected if any of them become rejected.
1010 | @static
1011 | */
1012 | function all(entries) {
1013 | return new Enumerator(this, entries).promise;
1014 | }
1015 |
1016 | /**
1017 | `Promise.race` returns a new promise which is settled in the same way as the
1018 | first passed promise to settle.
1019 |
1020 | Example:
1021 |
1022 | ```javascript
1023 | let promise1 = new Promise(function(resolve, reject){
1024 | setTimeout(function(){
1025 | resolve('promise 1');
1026 | }, 200);
1027 | });
1028 |
1029 | let promise2 = new Promise(function(resolve, reject){
1030 | setTimeout(function(){
1031 | resolve('promise 2');
1032 | }, 100);
1033 | });
1034 |
1035 | Promise.race([promise1, promise2]).then(function(result){
1036 | // result === 'promise 2' because it was resolved before promise1
1037 | // was resolved.
1038 | });
1039 | ```
1040 |
1041 | `Promise.race` is deterministic in that only the state of the first
1042 | settled promise matters. For example, even if other promises given to the
1043 | `promises` array argument are resolved, but the first settled promise has
1044 | become rejected before the other promises became fulfilled, the returned
1045 | promise will become rejected:
1046 |
1047 | ```javascript
1048 | let promise1 = new Promise(function(resolve, reject){
1049 | setTimeout(function(){
1050 | resolve('promise 1');
1051 | }, 200);
1052 | });
1053 |
1054 | let promise2 = new Promise(function(resolve, reject){
1055 | setTimeout(function(){
1056 | reject(new Error('promise 2'));
1057 | }, 100);
1058 | });
1059 |
1060 | Promise.race([promise1, promise2]).then(function(result){
1061 | // Code here never runs
1062 | }, function(reason){
1063 | // reason.message === 'promise 2' because promise 2 became rejected before
1064 | // promise 1 became fulfilled
1065 | });
1066 | ```
1067 |
1068 | An example real-world use case is implementing timeouts:
1069 |
1070 | ```javascript
1071 | Promise.race([ajax('foo.json'), timeout(5000)])
1072 | ```
1073 |
1074 | @method race
1075 | @static
1076 | @param {Array} promises array of promises to observe
1077 | Useful for tooling.
1078 | @return {Promise} a promise which settles in the same way as the first passed
1079 | promise to settle.
1080 | */
1081 | function race(entries) {
1082 | /*jshint validthis:true */
1083 | var Constructor = this;
1084 |
1085 | if (!isArray(entries)) {
1086 | return new Constructor(function (_, reject) {
1087 | return reject(new TypeError('You must pass an array to race.'));
1088 | });
1089 | } else {
1090 | return new Constructor(function (resolve, reject) {
1091 | var length = entries.length;
1092 | for (var i = 0; i < length; i++) {
1093 | Constructor.resolve(entries[i]).then(resolve, reject);
1094 | }
1095 | });
1096 | }
1097 | }
1098 |
1099 | /**
1100 | `Promise.reject` returns a promise rejected with the passed `reason`.
1101 | It is shorthand for the following:
1102 |
1103 | ```javascript
1104 | let promise = new Promise(function(resolve, reject){
1105 | reject(new Error('WHOOPS'));
1106 | });
1107 |
1108 | promise.then(function(value){
1109 | // Code here doesn't run because the promise is rejected!
1110 | }, function(reason){
1111 | // reason.message === 'WHOOPS'
1112 | });
1113 | ```
1114 |
1115 | Instead of writing the above, your code now simply becomes the following:
1116 |
1117 | ```javascript
1118 | let promise = Promise.reject(new Error('WHOOPS'));
1119 |
1120 | promise.then(function(value){
1121 | // Code here doesn't run because the promise is rejected!
1122 | }, function(reason){
1123 | // reason.message === 'WHOOPS'
1124 | });
1125 | ```
1126 |
1127 | @method reject
1128 | @static
1129 | @param {Any} reason value that the returned promise will be rejected with.
1130 | Useful for tooling.
1131 | @return {Promise} a promise rejected with the given `reason`.
1132 | */
1133 | function reject$1(reason) {
1134 | /*jshint validthis:true */
1135 | var Constructor = this;
1136 | var promise = new Constructor(noop);
1137 | reject(promise, reason);
1138 | return promise;
1139 | }
1140 |
1141 | function needsResolver() {
1142 | throw new TypeError('You must pass a resolver function as the first argument to the promise constructor');
1143 | }
1144 |
1145 | function needsNew() {
1146 | throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.");
1147 | }
1148 |
1149 | /**
1150 | Promise objects represent the eventual result of an asynchronous operation. The
1151 | primary way of interacting with a promise is through its `then` method, which
1152 | registers callbacks to receive either a promise's eventual value or the reason
1153 | why the promise cannot be fulfilled.
1154 |
1155 | Terminology
1156 | -----------
1157 |
1158 | - `promise` is an object or function with a `then` method whose behavior conforms to this specification.
1159 | - `thenable` is an object or function that defines a `then` method.
1160 | - `value` is any legal JavaScript value (including undefined, a thenable, or a promise).
1161 | - `exception` is a value that is thrown using the throw statement.
1162 | - `reason` is a value that indicates why a promise was rejected.
1163 | - `settled` the final resting state of a promise, fulfilled or rejected.
1164 |
1165 | A promise can be in one of three states: pending, fulfilled, or rejected.
1166 |
1167 | Promises that are fulfilled have a fulfillment value and are in the fulfilled
1168 | state. Promises that are rejected have a rejection reason and are in the
1169 | rejected state. A fulfillment value is never a thenable.
1170 |
1171 | Promises can also be said to *resolve* a value. If this value is also a
1172 | promise, then the original promise's settled state will match the value's
1173 | settled state. So a promise that *resolves* a promise that rejects will
1174 | itself reject, and a promise that *resolves* a promise that fulfills will
1175 | itself fulfill.
1176 |
1177 |
1178 | Basic Usage:
1179 | ------------
1180 |
1181 | ```js
1182 | let promise = new Promise(function(resolve, reject) {
1183 | // on success
1184 | resolve(value);
1185 |
1186 | // on failure
1187 | reject(reason);
1188 | });
1189 |
1190 | promise.then(function(value) {
1191 | // on fulfillment
1192 | }, function(reason) {
1193 | // on rejection
1194 | });
1195 | ```
1196 |
1197 | Advanced Usage:
1198 | ---------------
1199 |
1200 | Promises shine when abstracting away asynchronous interactions such as
1201 | `XMLHttpRequest`s.
1202 |
1203 | ```js
1204 | function getJSON(url) {
1205 | return new Promise(function(resolve, reject){
1206 | let xhr = new XMLHttpRequest();
1207 |
1208 | xhr.open('GET', url);
1209 | xhr.onreadystatechange = handler;
1210 | xhr.responseType = 'json';
1211 | xhr.setRequestHeader('Accept', 'application/json');
1212 | xhr.send();
1213 |
1214 | function handler() {
1215 | if (this.readyState === this.DONE) {
1216 | if (this.status === 200) {
1217 | resolve(this.response);
1218 | } else {
1219 | reject(new Error('getJSON: `' + url + '` failed with status: [' + this.status + ']'));
1220 | }
1221 | }
1222 | };
1223 | });
1224 | }
1225 |
1226 | getJSON('/posts.json').then(function(json) {
1227 | // on fulfillment
1228 | }, function(reason) {
1229 | // on rejection
1230 | });
1231 | ```
1232 |
1233 | Unlike callbacks, promises are great composable primitives.
1234 |
1235 | ```js
1236 | Promise.all([
1237 | getJSON('/posts'),
1238 | getJSON('/comments')
1239 | ]).then(function(values){
1240 | values[0] // => postsJSON
1241 | values[1] // => commentsJSON
1242 |
1243 | return values;
1244 | });
1245 | ```
1246 |
1247 | @class Promise
1248 | @param {Function} resolver
1249 | Useful for tooling.
1250 | @constructor
1251 | */
1252 |
1253 | var Promise$1 = function () {
1254 | function Promise(resolver) {
1255 | this[PROMISE_ID] = nextId();
1256 | this._result = this._state = undefined;
1257 | this._subscribers = [];
1258 |
1259 | if (noop !== resolver) {
1260 | typeof resolver !== 'function' && needsResolver();
1261 | this instanceof Promise ? initializePromise(this, resolver) : needsNew();
1262 | }
1263 | }
1264 |
1265 | /**
1266 | The primary way of interacting with a promise is through its `then` method,
1267 | which registers callbacks to receive either a promise's eventual value or the
1268 | reason why the promise cannot be fulfilled.
1269 | ```js
1270 | findUser().then(function(user){
1271 | // user is available
1272 | }, function(reason){
1273 | // user is unavailable, and you are given the reason why
1274 | });
1275 | ```
1276 | Chaining
1277 | --------
1278 | The return value of `then` is itself a promise. This second, 'downstream'
1279 | promise is resolved with the return value of the first promise's fulfillment
1280 | or rejection handler, or rejected if the handler throws an exception.
1281 | ```js
1282 | findUser().then(function (user) {
1283 | return user.name;
1284 | }, function (reason) {
1285 | return 'default name';
1286 | }).then(function (userName) {
1287 | // If `findUser` fulfilled, `userName` will be the user's name, otherwise it
1288 | // will be `'default name'`
1289 | });
1290 | findUser().then(function (user) {
1291 | throw new Error('Found user, but still unhappy');
1292 | }, function (reason) {
1293 | throw new Error('`findUser` rejected and we're unhappy');
1294 | }).then(function (value) {
1295 | // never reached
1296 | }, function (reason) {
1297 | // if `findUser` fulfilled, `reason` will be 'Found user, but still unhappy'.
1298 | // If `findUser` rejected, `reason` will be '`findUser` rejected and we're unhappy'.
1299 | });
1300 | ```
1301 | If the downstream promise does not specify a rejection handler, rejection reasons will be propagated further downstream.
1302 | ```js
1303 | findUser().then(function (user) {
1304 | throw new PedagogicalException('Upstream error');
1305 | }).then(function (value) {
1306 | // never reached
1307 | }).then(function (value) {
1308 | // never reached
1309 | }, function (reason) {
1310 | // The `PedgagocialException` is propagated all the way down to here
1311 | });
1312 | ```
1313 | Assimilation
1314 | ------------
1315 | Sometimes the value you want to propagate to a downstream promise can only be
1316 | retrieved asynchronously. This can be achieved by returning a promise in the
1317 | fulfillment or rejection handler. The downstream promise will then be pending
1318 | until the returned promise is settled. This is called *assimilation*.
1319 | ```js
1320 | findUser().then(function (user) {
1321 | return findCommentsByAuthor(user);
1322 | }).then(function (comments) {
1323 | // The user's comments are now available
1324 | });
1325 | ```
1326 | If the assimliated promise rejects, then the downstream promise will also reject.
1327 | ```js
1328 | findUser().then(function (user) {
1329 | return findCommentsByAuthor(user);
1330 | }).then(function (comments) {
1331 | // If `findCommentsByAuthor` fulfills, we'll have the value here
1332 | }, function (reason) {
1333 | // If `findCommentsByAuthor` rejects, we'll have the reason here
1334 | });
1335 | ```
1336 | Simple Example
1337 | --------------
1338 | Synchronous Example
1339 | ```javascript
1340 | let result;
1341 | try {
1342 | result = findResult();
1343 | // success
1344 | } catch(reason) {
1345 | // failure
1346 | }
1347 | ```
1348 | Errback Example
1349 | ```js
1350 | findResult(function(result, err){
1351 | if (err) {
1352 | // failure
1353 | } else {
1354 | // success
1355 | }
1356 | });
1357 | ```
1358 | Promise Example;
1359 | ```javascript
1360 | findResult().then(function(result){
1361 | // success
1362 | }, function(reason){
1363 | // failure
1364 | });
1365 | ```
1366 | Advanced Example
1367 | --------------
1368 | Synchronous Example
1369 | ```javascript
1370 | let author, books;
1371 | try {
1372 | author = findAuthor();
1373 | books = findBooksByAuthor(author);
1374 | // success
1375 | } catch(reason) {
1376 | // failure
1377 | }
1378 | ```
1379 | Errback Example
1380 | ```js
1381 | function foundBooks(books) {
1382 | }
1383 | function failure(reason) {
1384 | }
1385 | findAuthor(function(author, err){
1386 | if (err) {
1387 | failure(err);
1388 | // failure
1389 | } else {
1390 | try {
1391 | findBoooksByAuthor(author, function(books, err) {
1392 | if (err) {
1393 | failure(err);
1394 | } else {
1395 | try {
1396 | foundBooks(books);
1397 | } catch(reason) {
1398 | failure(reason);
1399 | }
1400 | }
1401 | });
1402 | } catch(error) {
1403 | failure(err);
1404 | }
1405 | // success
1406 | }
1407 | });
1408 | ```
1409 | Promise Example;
1410 | ```javascript
1411 | findAuthor().
1412 | then(findBooksByAuthor).
1413 | then(function(books){
1414 | // found books
1415 | }).catch(function(reason){
1416 | // something went wrong
1417 | });
1418 | ```
1419 | @method then
1420 | @param {Function} onFulfilled
1421 | @param {Function} onRejected
1422 | Useful for tooling.
1423 | @return {Promise}
1424 | */
1425 |
1426 | /**
1427 | `catch` is simply sugar for `then(undefined, onRejection)` which makes it the same
1428 | as the catch block of a try/catch statement.
1429 | ```js
1430 | function findAuthor(){
1431 | throw new Error('couldn't find that author');
1432 | }
1433 | // synchronous
1434 | try {
1435 | findAuthor();
1436 | } catch(reason) {
1437 | // something went wrong
1438 | }
1439 | // async with promises
1440 | findAuthor().catch(function(reason){
1441 | // something went wrong
1442 | });
1443 | ```
1444 | @method catch
1445 | @param {Function} onRejection
1446 | Useful for tooling.
1447 | @return {Promise}
1448 | */
1449 |
1450 |
1451 | Promise.prototype.catch = function _catch(onRejection) {
1452 | return this.then(null, onRejection);
1453 | };
1454 |
1455 | /**
1456 | `finally` will be invoked regardless of the promise's fate just as native
1457 | try/catch/finally behaves
1458 |
1459 | Synchronous example:
1460 |
1461 | ```js
1462 | findAuthor() {
1463 | if (Math.random() > 0.5) {
1464 | throw new Error();
1465 | }
1466 | return new Author();
1467 | }
1468 |
1469 | try {
1470 | return findAuthor(); // succeed or fail
1471 | } catch(error) {
1472 | return findOtherAuther();
1473 | } finally {
1474 | // always runs
1475 | // doesn't affect the return value
1476 | }
1477 | ```
1478 |
1479 | Asynchronous example:
1480 |
1481 | ```js
1482 | findAuthor().catch(function(reason){
1483 | return findOtherAuther();
1484 | }).finally(function(){
1485 | // author was either found, or not
1486 | });
1487 | ```
1488 |
1489 | @method finally
1490 | @param {Function} callback
1491 | @return {Promise}
1492 | */
1493 |
1494 |
1495 | Promise.prototype.finally = function _finally(callback) {
1496 | var promise = this;
1497 | var constructor = promise.constructor;
1498 |
1499 | return promise.then(function (value) {
1500 | return constructor.resolve(callback()).then(function () {
1501 | return value;
1502 | });
1503 | }, function (reason) {
1504 | return constructor.resolve(callback()).then(function () {
1505 | throw reason;
1506 | });
1507 | });
1508 | };
1509 |
1510 | return Promise;
1511 | }();
1512 |
1513 | Promise$1.prototype.then = then;
1514 | Promise$1.all = all;
1515 | Promise$1.race = race;
1516 | Promise$1.resolve = resolve$1;
1517 | Promise$1.reject = reject$1;
1518 | Promise$1._setScheduler = setScheduler;
1519 | Promise$1._setAsap = setAsap;
1520 | Promise$1._asap = asap;
1521 |
1522 | /*global self*/
1523 | function polyfill() {
1524 | var local = void 0;
1525 |
1526 | if (typeof global !== 'undefined') {
1527 | local = global;
1528 | } else if (typeof self !== 'undefined') {
1529 | local = self;
1530 | } else {
1531 | try {
1532 | local = Function('return this')();
1533 | } catch (e) {
1534 | throw new Error('polyfill failed because global object is unavailable in this environment');
1535 | }
1536 | }
1537 |
1538 | var P = local.Promise;
1539 |
1540 | if (P) {
1541 | var promiseToString = null;
1542 | try {
1543 | promiseToString = Object.prototype.toString.call(P.resolve());
1544 | } catch (e) {
1545 | // silently ignored
1546 | }
1547 |
1548 | if (promiseToString === '[object Promise]' && !P.cast) {
1549 | return;
1550 | }
1551 | }
1552 |
1553 | local.Promise = Promise$1;
1554 | }
1555 |
1556 | // Strange compat..
1557 | Promise$1.polyfill = polyfill;
1558 | Promise$1.Promise = Promise$1;
1559 |
1560 | return Promise$1;
1561 |
1562 | })));
1563 |
1564 |
1565 |
1566 | //# sourceMappingURL=es6-promise.map
1567 |
1568 | /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3), __webpack_require__(4)))
1569 |
1570 | /***/ }),
1571 | /* 3 */
1572 | /***/ (function(module, exports) {
1573 |
1574 | // shim for using process in browser
1575 | var process = module.exports = {};
1576 |
1577 | // cached from whatever global is present so that test runners that stub it
1578 | // don't break things. But we need to wrap it in a try catch in case it is
1579 | // wrapped in strict mode code which doesn't define any globals. It's inside a
1580 | // function because try/catches deoptimize in certain engines.
1581 |
1582 | var cachedSetTimeout;
1583 | var cachedClearTimeout;
1584 |
1585 | function defaultSetTimout() {
1586 | throw new Error('setTimeout has not been defined');
1587 | }
1588 | function defaultClearTimeout () {
1589 | throw new Error('clearTimeout has not been defined');
1590 | }
1591 | (function () {
1592 | try {
1593 | if (typeof setTimeout === 'function') {
1594 | cachedSetTimeout = setTimeout;
1595 | } else {
1596 | cachedSetTimeout = defaultSetTimout;
1597 | }
1598 | } catch (e) {
1599 | cachedSetTimeout = defaultSetTimout;
1600 | }
1601 | try {
1602 | if (typeof clearTimeout === 'function') {
1603 | cachedClearTimeout = clearTimeout;
1604 | } else {
1605 | cachedClearTimeout = defaultClearTimeout;
1606 | }
1607 | } catch (e) {
1608 | cachedClearTimeout = defaultClearTimeout;
1609 | }
1610 | } ())
1611 | function runTimeout(fun) {
1612 | if (cachedSetTimeout === setTimeout) {
1613 | //normal enviroments in sane situations
1614 | return setTimeout(fun, 0);
1615 | }
1616 | // if setTimeout wasn't available but was latter defined
1617 | if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {
1618 | cachedSetTimeout = setTimeout;
1619 | return setTimeout(fun, 0);
1620 | }
1621 | try {
1622 | // when when somebody has screwed with setTimeout but no I.E. maddness
1623 | return cachedSetTimeout(fun, 0);
1624 | } catch(e){
1625 | try {
1626 | // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
1627 | return cachedSetTimeout.call(null, fun, 0);
1628 | } catch(e){
1629 | // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error
1630 | return cachedSetTimeout.call(this, fun, 0);
1631 | }
1632 | }
1633 |
1634 |
1635 | }
1636 | function runClearTimeout(marker) {
1637 | if (cachedClearTimeout === clearTimeout) {
1638 | //normal enviroments in sane situations
1639 | return clearTimeout(marker);
1640 | }
1641 | // if clearTimeout wasn't available but was latter defined
1642 | if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {
1643 | cachedClearTimeout = clearTimeout;
1644 | return clearTimeout(marker);
1645 | }
1646 | try {
1647 | // when when somebody has screwed with setTimeout but no I.E. maddness
1648 | return cachedClearTimeout(marker);
1649 | } catch (e){
1650 | try {
1651 | // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
1652 | return cachedClearTimeout.call(null, marker);
1653 | } catch (e){
1654 | // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.
1655 | // Some versions of I.E. have different rules for clearTimeout vs setTimeout
1656 | return cachedClearTimeout.call(this, marker);
1657 | }
1658 | }
1659 |
1660 |
1661 |
1662 | }
1663 | var queue = [];
1664 | var draining = false;
1665 | var currentQueue;
1666 | var queueIndex = -1;
1667 |
1668 | function cleanUpNextTick() {
1669 | if (!draining || !currentQueue) {
1670 | return;
1671 | }
1672 | draining = false;
1673 | if (currentQueue.length) {
1674 | queue = currentQueue.concat(queue);
1675 | } else {
1676 | queueIndex = -1;
1677 | }
1678 | if (queue.length) {
1679 | drainQueue();
1680 | }
1681 | }
1682 |
1683 | function drainQueue() {
1684 | if (draining) {
1685 | return;
1686 | }
1687 | var timeout = runTimeout(cleanUpNextTick);
1688 | draining = true;
1689 |
1690 | var len = queue.length;
1691 | while(len) {
1692 | currentQueue = queue;
1693 | queue = [];
1694 | while (++queueIndex < len) {
1695 | if (currentQueue) {
1696 | currentQueue[queueIndex].run();
1697 | }
1698 | }
1699 | queueIndex = -1;
1700 | len = queue.length;
1701 | }
1702 | currentQueue = null;
1703 | draining = false;
1704 | runClearTimeout(timeout);
1705 | }
1706 |
1707 | process.nextTick = function (fun) {
1708 | var args = new Array(arguments.length - 1);
1709 | if (arguments.length > 1) {
1710 | for (var i = 1; i < arguments.length; i++) {
1711 | args[i - 1] = arguments[i];
1712 | }
1713 | }
1714 | queue.push(new Item(fun, args));
1715 | if (queue.length === 1 && !draining) {
1716 | runTimeout(drainQueue);
1717 | }
1718 | };
1719 |
1720 | // v8 likes predictible objects
1721 | function Item(fun, array) {
1722 | this.fun = fun;
1723 | this.array = array;
1724 | }
1725 | Item.prototype.run = function () {
1726 | this.fun.apply(null, this.array);
1727 | };
1728 | process.title = 'browser';
1729 | process.browser = true;
1730 | process.env = {};
1731 | process.argv = [];
1732 | process.version = ''; // empty string to avoid regexp issues
1733 | process.versions = {};
1734 |
1735 | function noop() {}
1736 |
1737 | process.on = noop;
1738 | process.addListener = noop;
1739 | process.once = noop;
1740 | process.off = noop;
1741 | process.removeListener = noop;
1742 | process.removeAllListeners = noop;
1743 | process.emit = noop;
1744 | process.prependListener = noop;
1745 | process.prependOnceListener = noop;
1746 |
1747 | process.listeners = function (name) { return [] }
1748 |
1749 | process.binding = function (name) {
1750 | throw new Error('process.binding is not supported');
1751 | };
1752 |
1753 | process.cwd = function () { return '/' };
1754 | process.chdir = function (dir) {
1755 | throw new Error('process.chdir is not supported');
1756 | };
1757 | process.umask = function() { return 0; };
1758 |
1759 |
1760 | /***/ }),
1761 | /* 4 */
1762 | /***/ (function(module, exports) {
1763 |
1764 | var g;
1765 |
1766 | // This works in non-strict mode
1767 | g = (function() {
1768 | return this;
1769 | })();
1770 |
1771 | try {
1772 | // This works if eval is allowed (see CSP)
1773 | g = g || Function("return this")() || (1,eval)("this");
1774 | } catch(e) {
1775 | // This works if the window reference is available
1776 | if(typeof window === "object")
1777 | g = window;
1778 | }
1779 |
1780 | // g can still be undefined, but nothing to do about it...
1781 | // We return undefined, instead of nothing here, so it's
1782 | // easier to handle this case. if(!global) { ...}
1783 |
1784 | module.exports = g;
1785 |
1786 |
1787 | /***/ }),
1788 | /* 5 */
1789 | /***/ (function(module, exports) {
1790 |
1791 | /* (ignored) */
1792 |
1793 | /***/ })
1794 | /******/ ]);
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "typescript-webpack-dynamic-import",
3 | "version": "1.0.0",
4 | "description": "A demo of how to use dynamic import() expressions with TypeScript and webpack",
5 | "scripts": {
6 | "build": "webpack",
7 | "start": "webpack-dev-server"
8 | },
9 | "keywords": [],
10 | "author": "Marius Schulz",
11 | "private": true,
12 | "license": "MIT",
13 | "dependencies": {
14 | "es6-promise": "^4.2.2",
15 | "jquery": "^3.2.1",
16 | "tslib": "^1.9.0"
17 | },
18 | "devDependencies": {
19 | "@types/jquery": "^3.2.17",
20 | "ts-loader": "^3.5.0",
21 | "typescript": "^2.6.2",
22 | "webpack": "^3.10.0",
23 | "webpack-dev-server": "^2.10.1"
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/src/main.ts:
--------------------------------------------------------------------------------
1 | // We have to provide a Promise polyfill if we're targeting older browsers
2 | // because import() returns a promise which resolves once the module is loaded
3 | import * as ES6Promise from "es6-promise";
4 | ES6Promise.polyfill();
5 |
6 | async function renderWidget() {
7 | // Locate the widget container
8 | const container = document.getElementById("widget");
9 |
10 | // If we found the container, import the widget and render it into the container
11 | if (container !== null) {
12 | const widget = await import(/* webpackChunkName: "widget" */ "./widget");
13 | widget.render(container);
14 | }
15 | }
16 |
17 | renderWidget();
18 |
--------------------------------------------------------------------------------
/src/widget.ts:
--------------------------------------------------------------------------------
1 | import * as $ from "jquery";
2 |
3 | export function render(container: HTMLElement) {
4 | // Imagine lots of widget code here.
5 | // For this demo, $.text() will have to do.
6 | $(container).text("Hello, World!");
7 | }
8 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "moduleResolution": "node",
5 | "module": "esnext",
6 | "strict": true,
7 | "importHelpers": true,
8 | "lib": [
9 | "dom",
10 | "es5",
11 | "es2015.promise"
12 | ]
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/webpack.config.js:
--------------------------------------------------------------------------------
1 | const path = require("path");
2 |
3 | module.exports = {
4 | entry: "./src/main.ts",
5 |
6 | output: {
7 | path: path.join(__dirname, "dist3"),
8 | filename: "[name].bundle.js",
9 | chunkFilename: "[name].chunk.js"
10 | },
11 |
12 | resolve: {
13 | extensions: [".js", ".ts"]
14 | },
15 |
16 | module: {
17 | loaders: [
18 | {
19 | test: /\.ts$/,
20 | include: path.join(__dirname, "src"),
21 | loader: "ts-loader"
22 | }
23 | ]
24 | },
25 |
26 | devServer: {
27 | contentBase: "./dist"
28 | }
29 | };
30 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@types/jquery@^3.2.17":
6 | version "3.2.17"
7 | resolved "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.2.17.tgz#01df9805dd5cf83a14cf5bfd81adced7d4fbd970"
8 |
9 | abbrev@1:
10 | version "1.1.1"
11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
12 |
13 | accepts@~1.3.4:
14 | version "1.3.4"
15 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.4.tgz#86246758c7dd6d21a6474ff084a4740ec05eb21f"
16 | dependencies:
17 | mime-types "~2.1.16"
18 | negotiator "0.6.1"
19 |
20 | acorn-dynamic-import@^2.0.0:
21 | version "2.0.2"
22 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4"
23 | dependencies:
24 | acorn "^4.0.3"
25 |
26 | acorn@^4.0.3:
27 | version "4.0.13"
28 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787"
29 |
30 | acorn@^5.0.0:
31 | version "5.3.0"
32 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.3.0.tgz#7446d39459c54fb49a80e6ee6478149b940ec822"
33 |
34 | ajv-keywords@^2.0.0:
35 | version "2.1.1"
36 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762"
37 |
38 | ajv@^4.9.1:
39 | version "4.11.8"
40 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
41 | dependencies:
42 | co "^4.6.0"
43 | json-stable-stringify "^1.0.1"
44 |
45 | ajv@^5.1.5:
46 | version "5.5.2"
47 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
48 | dependencies:
49 | co "^4.6.0"
50 | fast-deep-equal "^1.0.0"
51 | fast-json-stable-stringify "^2.0.0"
52 | json-schema-traverse "^0.3.0"
53 |
54 | align-text@^0.1.1, align-text@^0.1.3:
55 | version "0.1.4"
56 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
57 | dependencies:
58 | kind-of "^3.0.2"
59 | longest "^1.0.1"
60 | repeat-string "^1.5.2"
61 |
62 | ansi-html@0.0.7:
63 | version "0.0.7"
64 | resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e"
65 |
66 | ansi-regex@^2.0.0:
67 | version "2.1.1"
68 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
69 |
70 | ansi-regex@^3.0.0:
71 | version "3.0.0"
72 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
73 |
74 | ansi-styles@^3.1.0:
75 | version "3.2.0"
76 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88"
77 | dependencies:
78 | color-convert "^1.9.0"
79 |
80 | anymatch@^1.3.0:
81 | version "1.3.2"
82 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
83 | dependencies:
84 | micromatch "^2.1.5"
85 | normalize-path "^2.0.0"
86 |
87 | anymatch@^2.0.0:
88 | version "2.0.0"
89 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
90 | dependencies:
91 | micromatch "^3.1.4"
92 | normalize-path "^2.1.1"
93 |
94 | aproba@^1.0.3:
95 | version "1.2.0"
96 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
97 |
98 | are-we-there-yet@~1.1.2:
99 | version "1.1.4"
100 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
101 | dependencies:
102 | delegates "^1.0.0"
103 | readable-stream "^2.0.6"
104 |
105 | arr-diff@^2.0.0:
106 | version "2.0.0"
107 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
108 | dependencies:
109 | arr-flatten "^1.0.1"
110 |
111 | arr-diff@^4.0.0:
112 | version "4.0.0"
113 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
114 |
115 | arr-flatten@^1.0.1, arr-flatten@^1.1.0:
116 | version "1.1.0"
117 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
118 |
119 | arr-union@^3.1.0:
120 | version "3.1.0"
121 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
122 |
123 | array-find-index@^1.0.1:
124 | version "1.0.2"
125 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
126 |
127 | array-flatten@1.1.1:
128 | version "1.1.1"
129 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
130 |
131 | array-flatten@^2.1.0:
132 | version "2.1.1"
133 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.1.tgz#426bb9da84090c1838d812c8150af20a8331e296"
134 |
135 | array-includes@^3.0.3:
136 | version "3.0.3"
137 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d"
138 | dependencies:
139 | define-properties "^1.1.2"
140 | es-abstract "^1.7.0"
141 |
142 | array-union@^1.0.1:
143 | version "1.0.2"
144 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
145 | dependencies:
146 | array-uniq "^1.0.1"
147 |
148 | array-uniq@^1.0.1:
149 | version "1.0.3"
150 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
151 |
152 | array-unique@^0.2.1:
153 | version "0.2.1"
154 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
155 |
156 | array-unique@^0.3.2:
157 | version "0.3.2"
158 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
159 |
160 | asn1.js@^4.0.0:
161 | version "4.9.2"
162 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.2.tgz#8117ef4f7ed87cd8f89044b5bff97ac243a16c9a"
163 | dependencies:
164 | bn.js "^4.0.0"
165 | inherits "^2.0.1"
166 | minimalistic-assert "^1.0.0"
167 |
168 | asn1@~0.2.3:
169 | version "0.2.3"
170 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
171 |
172 | assert-plus@1.0.0, assert-plus@^1.0.0:
173 | version "1.0.0"
174 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
175 |
176 | assert-plus@^0.2.0:
177 | version "0.2.0"
178 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
179 |
180 | assert@^1.1.1:
181 | version "1.4.1"
182 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
183 | dependencies:
184 | util "0.10.3"
185 |
186 | assign-symbols@^1.0.0:
187 | version "1.0.0"
188 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
189 |
190 | async-each@^1.0.0:
191 | version "1.0.1"
192 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
193 |
194 | async@^1.5.2:
195 | version "1.5.2"
196 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
197 |
198 | async@^2.1.2:
199 | version "2.6.0"
200 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4"
201 | dependencies:
202 | lodash "^4.14.0"
203 |
204 | asynckit@^0.4.0:
205 | version "0.4.0"
206 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
207 |
208 | atob@^2.0.0:
209 | version "2.0.3"
210 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.0.3.tgz#19c7a760473774468f20b2d2d03372ad7d4cbf5d"
211 |
212 | aws-sign2@~0.6.0:
213 | version "0.6.0"
214 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
215 |
216 | aws4@^1.2.1:
217 | version "1.6.0"
218 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
219 |
220 | balanced-match@^1.0.0:
221 | version "1.0.0"
222 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
223 |
224 | base64-js@^1.0.2:
225 | version "1.2.1"
226 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886"
227 |
228 | base@^0.11.1:
229 | version "0.11.2"
230 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
231 | dependencies:
232 | cache-base "^1.0.1"
233 | class-utils "^0.3.5"
234 | component-emitter "^1.2.1"
235 | define-property "^1.0.0"
236 | isobject "^3.0.1"
237 | mixin-deep "^1.2.0"
238 | pascalcase "^0.1.1"
239 |
240 | batch@0.6.1:
241 | version "0.6.1"
242 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16"
243 |
244 | bcrypt-pbkdf@^1.0.0:
245 | version "1.0.1"
246 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
247 | dependencies:
248 | tweetnacl "^0.14.3"
249 |
250 | big.js@^3.1.3:
251 | version "3.2.0"
252 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e"
253 |
254 | binary-extensions@^1.0.0:
255 | version "1.11.0"
256 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205"
257 |
258 | block-stream@*:
259 | version "0.0.9"
260 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
261 | dependencies:
262 | inherits "~2.0.0"
263 |
264 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
265 | version "4.11.8"
266 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f"
267 |
268 | body-parser@1.18.2:
269 | version "1.18.2"
270 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454"
271 | dependencies:
272 | bytes "3.0.0"
273 | content-type "~1.0.4"
274 | debug "2.6.9"
275 | depd "~1.1.1"
276 | http-errors "~1.6.2"
277 | iconv-lite "0.4.19"
278 | on-finished "~2.3.0"
279 | qs "6.5.1"
280 | raw-body "2.3.2"
281 | type-is "~1.6.15"
282 |
283 | bonjour@^3.5.0:
284 | version "3.5.0"
285 | resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5"
286 | dependencies:
287 | array-flatten "^2.1.0"
288 | deep-equal "^1.0.1"
289 | dns-equal "^1.0.0"
290 | dns-txt "^2.0.2"
291 | multicast-dns "^6.0.1"
292 | multicast-dns-service-types "^1.1.0"
293 |
294 | boom@2.x.x:
295 | version "2.10.1"
296 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
297 | dependencies:
298 | hoek "2.x.x"
299 |
300 | brace-expansion@^1.1.7:
301 | version "1.1.8"
302 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
303 | dependencies:
304 | balanced-match "^1.0.0"
305 | concat-map "0.0.1"
306 |
307 | braces@^1.8.2:
308 | version "1.8.5"
309 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
310 | dependencies:
311 | expand-range "^1.8.1"
312 | preserve "^0.2.0"
313 | repeat-element "^1.1.2"
314 |
315 | braces@^2.3.0:
316 | version "2.3.0"
317 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.0.tgz#a46941cb5fb492156b3d6a656e06c35364e3e66e"
318 | dependencies:
319 | arr-flatten "^1.1.0"
320 | array-unique "^0.3.2"
321 | define-property "^1.0.0"
322 | extend-shallow "^2.0.1"
323 | fill-range "^4.0.0"
324 | isobject "^3.0.1"
325 | repeat-element "^1.1.2"
326 | snapdragon "^0.8.1"
327 | snapdragon-node "^2.0.1"
328 | split-string "^3.0.2"
329 | to-regex "^3.0.1"
330 |
331 | brorand@^1.0.1:
332 | version "1.1.0"
333 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
334 |
335 | browserify-aes@^1.0.0, browserify-aes@^1.0.4:
336 | version "1.1.1"
337 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f"
338 | dependencies:
339 | buffer-xor "^1.0.3"
340 | cipher-base "^1.0.0"
341 | create-hash "^1.1.0"
342 | evp_bytestokey "^1.0.3"
343 | inherits "^2.0.1"
344 | safe-buffer "^5.0.1"
345 |
346 | browserify-cipher@^1.0.0:
347 | version "1.0.0"
348 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a"
349 | dependencies:
350 | browserify-aes "^1.0.4"
351 | browserify-des "^1.0.0"
352 | evp_bytestokey "^1.0.0"
353 |
354 | browserify-des@^1.0.0:
355 | version "1.0.0"
356 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd"
357 | dependencies:
358 | cipher-base "^1.0.1"
359 | des.js "^1.0.0"
360 | inherits "^2.0.1"
361 |
362 | browserify-rsa@^4.0.0:
363 | version "4.0.1"
364 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524"
365 | dependencies:
366 | bn.js "^4.1.0"
367 | randombytes "^2.0.1"
368 |
369 | browserify-sign@^4.0.0:
370 | version "4.0.4"
371 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298"
372 | dependencies:
373 | bn.js "^4.1.1"
374 | browserify-rsa "^4.0.0"
375 | create-hash "^1.1.0"
376 | create-hmac "^1.1.2"
377 | elliptic "^6.0.0"
378 | inherits "^2.0.1"
379 | parse-asn1 "^5.0.0"
380 |
381 | browserify-zlib@^0.2.0:
382 | version "0.2.0"
383 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"
384 | dependencies:
385 | pako "~1.0.5"
386 |
387 | buffer-indexof@^1.0.0:
388 | version "1.1.1"
389 | resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c"
390 |
391 | buffer-xor@^1.0.3:
392 | version "1.0.3"
393 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
394 |
395 | buffer@^4.3.0:
396 | version "4.9.1"
397 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298"
398 | dependencies:
399 | base64-js "^1.0.2"
400 | ieee754 "^1.1.4"
401 | isarray "^1.0.0"
402 |
403 | builtin-modules@^1.0.0:
404 | version "1.1.1"
405 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
406 |
407 | builtin-status-codes@^3.0.0:
408 | version "3.0.0"
409 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
410 |
411 | bytes@3.0.0:
412 | version "3.0.0"
413 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
414 |
415 | cache-base@^1.0.1:
416 | version "1.0.1"
417 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
418 | dependencies:
419 | collection-visit "^1.0.0"
420 | component-emitter "^1.2.1"
421 | get-value "^2.0.6"
422 | has-value "^1.0.0"
423 | isobject "^3.0.1"
424 | set-value "^2.0.0"
425 | to-object-path "^0.3.0"
426 | union-value "^1.0.0"
427 | unset-value "^1.0.0"
428 |
429 | camelcase-keys@^2.0.0:
430 | version "2.1.0"
431 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
432 | dependencies:
433 | camelcase "^2.0.0"
434 | map-obj "^1.0.0"
435 |
436 | camelcase@^1.0.2:
437 | version "1.2.1"
438 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
439 |
440 | camelcase@^2.0.0:
441 | version "2.1.1"
442 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
443 |
444 | camelcase@^3.0.0:
445 | version "3.0.0"
446 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"
447 |
448 | camelcase@^4.1.0:
449 | version "4.1.0"
450 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
451 |
452 | caseless@~0.12.0:
453 | version "0.12.0"
454 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
455 |
456 | center-align@^0.1.1:
457 | version "0.1.3"
458 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
459 | dependencies:
460 | align-text "^0.1.3"
461 | lazy-cache "^1.0.3"
462 |
463 | chalk@^2.3.0:
464 | version "2.3.0"
465 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba"
466 | dependencies:
467 | ansi-styles "^3.1.0"
468 | escape-string-regexp "^1.0.5"
469 | supports-color "^4.0.0"
470 |
471 | chokidar@^1.7.0:
472 | version "1.7.0"
473 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
474 | dependencies:
475 | anymatch "^1.3.0"
476 | async-each "^1.0.0"
477 | glob-parent "^2.0.0"
478 | inherits "^2.0.1"
479 | is-binary-path "^1.0.0"
480 | is-glob "^2.0.0"
481 | path-is-absolute "^1.0.0"
482 | readdirp "^2.0.0"
483 | optionalDependencies:
484 | fsevents "^1.0.0"
485 |
486 | chokidar@^2.0.0:
487 | version "2.0.0"
488 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.0.tgz#6686313c541d3274b2a5c01233342037948c911b"
489 | dependencies:
490 | anymatch "^2.0.0"
491 | async-each "^1.0.0"
492 | braces "^2.3.0"
493 | glob-parent "^3.1.0"
494 | inherits "^2.0.1"
495 | is-binary-path "^1.0.0"
496 | is-glob "^4.0.0"
497 | normalize-path "^2.1.1"
498 | path-is-absolute "^1.0.0"
499 | readdirp "^2.0.0"
500 | optionalDependencies:
501 | fsevents "^1.0.0"
502 |
503 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
504 | version "1.0.4"
505 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
506 | dependencies:
507 | inherits "^2.0.1"
508 | safe-buffer "^5.0.1"
509 |
510 | class-utils@^0.3.5:
511 | version "0.3.6"
512 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
513 | dependencies:
514 | arr-union "^3.1.0"
515 | define-property "^0.2.5"
516 | isobject "^3.0.0"
517 | static-extend "^0.1.1"
518 |
519 | cliui@^2.1.0:
520 | version "2.1.0"
521 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
522 | dependencies:
523 | center-align "^0.1.1"
524 | right-align "^0.1.1"
525 | wordwrap "0.0.2"
526 |
527 | cliui@^3.2.0:
528 | version "3.2.0"
529 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
530 | dependencies:
531 | string-width "^1.0.1"
532 | strip-ansi "^3.0.1"
533 | wrap-ansi "^2.0.0"
534 |
535 | co@^4.6.0:
536 | version "4.6.0"
537 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
538 |
539 | code-point-at@^1.0.0:
540 | version "1.1.0"
541 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
542 |
543 | collection-visit@^1.0.0:
544 | version "1.0.0"
545 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
546 | dependencies:
547 | map-visit "^1.0.0"
548 | object-visit "^1.0.0"
549 |
550 | color-convert@^1.9.0:
551 | version "1.9.1"
552 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed"
553 | dependencies:
554 | color-name "^1.1.1"
555 |
556 | color-name@^1.1.1:
557 | version "1.1.3"
558 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
559 |
560 | combined-stream@^1.0.5, combined-stream@~1.0.5:
561 | version "1.0.5"
562 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
563 | dependencies:
564 | delayed-stream "~1.0.0"
565 |
566 | component-emitter@^1.2.1:
567 | version "1.2.1"
568 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
569 |
570 | compressible@~2.0.11:
571 | version "2.0.12"
572 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.12.tgz#c59a5c99db76767e9876500e271ef63b3493bd66"
573 | dependencies:
574 | mime-db ">= 1.30.0 < 2"
575 |
576 | compression@^1.5.2:
577 | version "1.7.1"
578 | resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.1.tgz#eff2603efc2e22cf86f35d2eb93589f9875373db"
579 | dependencies:
580 | accepts "~1.3.4"
581 | bytes "3.0.0"
582 | compressible "~2.0.11"
583 | debug "2.6.9"
584 | on-headers "~1.0.1"
585 | safe-buffer "5.1.1"
586 | vary "~1.1.2"
587 |
588 | concat-map@0.0.1:
589 | version "0.0.1"
590 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
591 |
592 | connect-history-api-fallback@^1.3.0:
593 | version "1.5.0"
594 | resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz#b06873934bc5e344fef611a196a6faae0aee015a"
595 |
596 | console-browserify@^1.1.0:
597 | version "1.1.0"
598 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
599 | dependencies:
600 | date-now "^0.1.4"
601 |
602 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
603 | version "1.1.0"
604 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
605 |
606 | constants-browserify@^1.0.0:
607 | version "1.0.0"
608 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
609 |
610 | content-disposition@0.5.2:
611 | version "0.5.2"
612 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
613 |
614 | content-type@~1.0.4:
615 | version "1.0.4"
616 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
617 |
618 | cookie-signature@1.0.6:
619 | version "1.0.6"
620 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
621 |
622 | cookie@0.3.1:
623 | version "0.3.1"
624 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
625 |
626 | copy-descriptor@^0.1.0:
627 | version "0.1.1"
628 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
629 |
630 | core-util-is@1.0.2, core-util-is@~1.0.0:
631 | version "1.0.2"
632 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
633 |
634 | create-ecdh@^4.0.0:
635 | version "4.0.0"
636 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d"
637 | dependencies:
638 | bn.js "^4.1.0"
639 | elliptic "^6.0.0"
640 |
641 | create-hash@^1.1.0, create-hash@^1.1.2:
642 | version "1.1.3"
643 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd"
644 | dependencies:
645 | cipher-base "^1.0.1"
646 | inherits "^2.0.1"
647 | ripemd160 "^2.0.0"
648 | sha.js "^2.4.0"
649 |
650 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
651 | version "1.1.6"
652 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06"
653 | dependencies:
654 | cipher-base "^1.0.3"
655 | create-hash "^1.1.0"
656 | inherits "^2.0.1"
657 | ripemd160 "^2.0.0"
658 | safe-buffer "^5.0.1"
659 | sha.js "^2.4.8"
660 |
661 | cross-spawn@^5.0.1:
662 | version "5.1.0"
663 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
664 | dependencies:
665 | lru-cache "^4.0.1"
666 | shebang-command "^1.2.0"
667 | which "^1.2.9"
668 |
669 | cryptiles@2.x.x:
670 | version "2.0.5"
671 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
672 | dependencies:
673 | boom "2.x.x"
674 |
675 | crypto-browserify@^3.11.0:
676 | version "3.12.0"
677 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec"
678 | dependencies:
679 | browserify-cipher "^1.0.0"
680 | browserify-sign "^4.0.0"
681 | create-ecdh "^4.0.0"
682 | create-hash "^1.1.0"
683 | create-hmac "^1.1.0"
684 | diffie-hellman "^5.0.0"
685 | inherits "^2.0.1"
686 | pbkdf2 "^3.0.3"
687 | public-encrypt "^4.0.0"
688 | randombytes "^2.0.0"
689 | randomfill "^1.0.3"
690 |
691 | currently-unhandled@^0.4.1:
692 | version "0.4.1"
693 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
694 | dependencies:
695 | array-find-index "^1.0.1"
696 |
697 | d@1:
698 | version "1.0.0"
699 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f"
700 | dependencies:
701 | es5-ext "^0.10.9"
702 |
703 | dashdash@^1.12.0:
704 | version "1.14.1"
705 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
706 | dependencies:
707 | assert-plus "^1.0.0"
708 |
709 | date-now@^0.1.4:
710 | version "0.1.4"
711 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
712 |
713 | debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.6, debug@^2.6.8:
714 | version "2.6.9"
715 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
716 | dependencies:
717 | ms "2.0.0"
718 |
719 | debug@^3.1.0:
720 | version "3.1.0"
721 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
722 | dependencies:
723 | ms "2.0.0"
724 |
725 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2:
726 | version "1.2.0"
727 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
728 |
729 | decode-uri-component@^0.2.0:
730 | version "0.2.0"
731 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
732 |
733 | deep-equal@^1.0.1:
734 | version "1.0.1"
735 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5"
736 |
737 | deep-extend@~0.4.0:
738 | version "0.4.2"
739 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
740 |
741 | define-properties@^1.1.2:
742 | version "1.1.2"
743 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94"
744 | dependencies:
745 | foreach "^2.0.5"
746 | object-keys "^1.0.8"
747 |
748 | define-property@^0.2.5:
749 | version "0.2.5"
750 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
751 | dependencies:
752 | is-descriptor "^0.1.0"
753 |
754 | define-property@^1.0.0:
755 | version "1.0.0"
756 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
757 | dependencies:
758 | is-descriptor "^1.0.0"
759 |
760 | del@^3.0.0:
761 | version "3.0.0"
762 | resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5"
763 | dependencies:
764 | globby "^6.1.0"
765 | is-path-cwd "^1.0.0"
766 | is-path-in-cwd "^1.0.0"
767 | p-map "^1.1.1"
768 | pify "^3.0.0"
769 | rimraf "^2.2.8"
770 |
771 | delayed-stream@~1.0.0:
772 | version "1.0.0"
773 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
774 |
775 | delegates@^1.0.0:
776 | version "1.0.0"
777 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
778 |
779 | depd@1.1.1:
780 | version "1.1.1"
781 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359"
782 |
783 | depd@~1.1.1:
784 | version "1.1.2"
785 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
786 |
787 | des.js@^1.0.0:
788 | version "1.0.0"
789 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"
790 | dependencies:
791 | inherits "^2.0.1"
792 | minimalistic-assert "^1.0.0"
793 |
794 | destroy@~1.0.4:
795 | version "1.0.4"
796 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
797 |
798 | detect-libc@^1.0.2:
799 | version "1.0.3"
800 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
801 |
802 | detect-node@^2.0.3:
803 | version "2.0.3"
804 | resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.3.tgz#a2033c09cc8e158d37748fbde7507832bd6ce127"
805 |
806 | diffie-hellman@^5.0.0:
807 | version "5.0.2"
808 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e"
809 | dependencies:
810 | bn.js "^4.1.0"
811 | miller-rabin "^4.0.0"
812 | randombytes "^2.0.0"
813 |
814 | dns-equal@^1.0.0:
815 | version "1.0.0"
816 | resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d"
817 |
818 | dns-packet@^1.0.1:
819 | version "1.3.1"
820 | resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.3.1.tgz#12aa426981075be500b910eedcd0b47dd7deda5a"
821 | dependencies:
822 | ip "^1.1.0"
823 | safe-buffer "^5.0.1"
824 |
825 | dns-txt@^2.0.2:
826 | version "2.0.2"
827 | resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6"
828 | dependencies:
829 | buffer-indexof "^1.0.0"
830 |
831 | domain-browser@^1.1.1:
832 | version "1.1.7"
833 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc"
834 |
835 | ecc-jsbn@~0.1.1:
836 | version "0.1.1"
837 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
838 | dependencies:
839 | jsbn "~0.1.0"
840 |
841 | ee-first@1.1.1:
842 | version "1.1.1"
843 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
844 |
845 | elliptic@^6.0.0:
846 | version "6.4.0"
847 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df"
848 | dependencies:
849 | bn.js "^4.4.0"
850 | brorand "^1.0.1"
851 | hash.js "^1.0.0"
852 | hmac-drbg "^1.0.0"
853 | inherits "^2.0.1"
854 | minimalistic-assert "^1.0.0"
855 | minimalistic-crypto-utils "^1.0.0"
856 |
857 | emojis-list@^2.0.0:
858 | version "2.1.0"
859 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
860 |
861 | encodeurl@~1.0.1:
862 | version "1.0.1"
863 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20"
864 |
865 | enhanced-resolve@^3.0.0, enhanced-resolve@^3.4.0:
866 | version "3.4.1"
867 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e"
868 | dependencies:
869 | graceful-fs "^4.1.2"
870 | memory-fs "^0.4.0"
871 | object-assign "^4.0.1"
872 | tapable "^0.2.7"
873 |
874 | errno@^0.1.3:
875 | version "0.1.6"
876 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.6.tgz#c386ce8a6283f14fc09563b71560908c9bf53026"
877 | dependencies:
878 | prr "~1.0.1"
879 |
880 | error-ex@^1.2.0:
881 | version "1.3.1"
882 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
883 | dependencies:
884 | is-arrayish "^0.2.1"
885 |
886 | es-abstract@^1.7.0:
887 | version "1.10.0"
888 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864"
889 | dependencies:
890 | es-to-primitive "^1.1.1"
891 | function-bind "^1.1.1"
892 | has "^1.0.1"
893 | is-callable "^1.1.3"
894 | is-regex "^1.0.4"
895 |
896 | es-to-primitive@^1.1.1:
897 | version "1.1.1"
898 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d"
899 | dependencies:
900 | is-callable "^1.1.1"
901 | is-date-object "^1.0.1"
902 | is-symbol "^1.0.1"
903 |
904 | es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14:
905 | version "0.10.37"
906 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.37.tgz#0ee741d148b80069ba27d020393756af257defc3"
907 | dependencies:
908 | es6-iterator "~2.0.1"
909 | es6-symbol "~3.1.1"
910 |
911 | es6-iterator@^2.0.1, es6-iterator@~2.0.1:
912 | version "2.0.3"
913 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7"
914 | dependencies:
915 | d "1"
916 | es5-ext "^0.10.35"
917 | es6-symbol "^3.1.1"
918 |
919 | es6-map@^0.1.3:
920 | version "0.1.5"
921 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0"
922 | dependencies:
923 | d "1"
924 | es5-ext "~0.10.14"
925 | es6-iterator "~2.0.1"
926 | es6-set "~0.1.5"
927 | es6-symbol "~3.1.1"
928 | event-emitter "~0.3.5"
929 |
930 | es6-promise@^4.2.2:
931 | version "4.2.2"
932 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.2.tgz#f722d7769af88bd33bc13ec6605e1f92966b82d9"
933 |
934 | es6-set@~0.1.5:
935 | version "0.1.5"
936 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1"
937 | dependencies:
938 | d "1"
939 | es5-ext "~0.10.14"
940 | es6-iterator "~2.0.1"
941 | es6-symbol "3.1.1"
942 | event-emitter "~0.3.5"
943 |
944 | es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1:
945 | version "3.1.1"
946 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77"
947 | dependencies:
948 | d "1"
949 | es5-ext "~0.10.14"
950 |
951 | es6-weak-map@^2.0.1:
952 | version "2.0.2"
953 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f"
954 | dependencies:
955 | d "1"
956 | es5-ext "^0.10.14"
957 | es6-iterator "^2.0.1"
958 | es6-symbol "^3.1.1"
959 |
960 | escape-html@~1.0.3:
961 | version "1.0.3"
962 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
963 |
964 | escape-string-regexp@^1.0.5:
965 | version "1.0.5"
966 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
967 |
968 | escope@^3.6.0:
969 | version "3.6.0"
970 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
971 | dependencies:
972 | es6-map "^0.1.3"
973 | es6-weak-map "^2.0.1"
974 | esrecurse "^4.1.0"
975 | estraverse "^4.1.1"
976 |
977 | esrecurse@^4.1.0:
978 | version "4.2.0"
979 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163"
980 | dependencies:
981 | estraverse "^4.1.0"
982 | object-assign "^4.0.1"
983 |
984 | estraverse@^4.1.0, estraverse@^4.1.1:
985 | version "4.2.0"
986 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
987 |
988 | etag@~1.8.1:
989 | version "1.8.1"
990 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
991 |
992 | event-emitter@~0.3.5:
993 | version "0.3.5"
994 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39"
995 | dependencies:
996 | d "1"
997 | es5-ext "~0.10.14"
998 |
999 | eventemitter3@1.x.x:
1000 | version "1.2.0"
1001 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508"
1002 |
1003 | events@^1.0.0:
1004 | version "1.1.1"
1005 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
1006 |
1007 | eventsource@0.1.6:
1008 | version "0.1.6"
1009 | resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232"
1010 | dependencies:
1011 | original ">=0.0.5"
1012 |
1013 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
1014 | version "1.0.3"
1015 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
1016 | dependencies:
1017 | md5.js "^1.3.4"
1018 | safe-buffer "^5.1.1"
1019 |
1020 | execa@^0.7.0:
1021 | version "0.7.0"
1022 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
1023 | dependencies:
1024 | cross-spawn "^5.0.1"
1025 | get-stream "^3.0.0"
1026 | is-stream "^1.1.0"
1027 | npm-run-path "^2.0.0"
1028 | p-finally "^1.0.0"
1029 | signal-exit "^3.0.0"
1030 | strip-eof "^1.0.0"
1031 |
1032 | expand-brackets@^0.1.4:
1033 | version "0.1.5"
1034 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1035 | dependencies:
1036 | is-posix-bracket "^0.1.0"
1037 |
1038 | expand-brackets@^2.1.4:
1039 | version "2.1.4"
1040 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
1041 | dependencies:
1042 | debug "^2.3.3"
1043 | define-property "^0.2.5"
1044 | extend-shallow "^2.0.1"
1045 | posix-character-classes "^0.1.0"
1046 | regex-not "^1.0.0"
1047 | snapdragon "^0.8.1"
1048 | to-regex "^3.0.1"
1049 |
1050 | expand-range@^1.8.1:
1051 | version "1.8.2"
1052 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1053 | dependencies:
1054 | fill-range "^2.1.0"
1055 |
1056 | express@^4.16.2:
1057 | version "4.16.2"
1058 | resolved "https://registry.yarnpkg.com/express/-/express-4.16.2.tgz#e35c6dfe2d64b7dca0a5cd4f21781be3299e076c"
1059 | dependencies:
1060 | accepts "~1.3.4"
1061 | array-flatten "1.1.1"
1062 | body-parser "1.18.2"
1063 | content-disposition "0.5.2"
1064 | content-type "~1.0.4"
1065 | cookie "0.3.1"
1066 | cookie-signature "1.0.6"
1067 | debug "2.6.9"
1068 | depd "~1.1.1"
1069 | encodeurl "~1.0.1"
1070 | escape-html "~1.0.3"
1071 | etag "~1.8.1"
1072 | finalhandler "1.1.0"
1073 | fresh "0.5.2"
1074 | merge-descriptors "1.0.1"
1075 | methods "~1.1.2"
1076 | on-finished "~2.3.0"
1077 | parseurl "~1.3.2"
1078 | path-to-regexp "0.1.7"
1079 | proxy-addr "~2.0.2"
1080 | qs "6.5.1"
1081 | range-parser "~1.2.0"
1082 | safe-buffer "5.1.1"
1083 | send "0.16.1"
1084 | serve-static "1.13.1"
1085 | setprototypeof "1.1.0"
1086 | statuses "~1.3.1"
1087 | type-is "~1.6.15"
1088 | utils-merge "1.0.1"
1089 | vary "~1.1.2"
1090 |
1091 | extend-shallow@^2.0.1:
1092 | version "2.0.1"
1093 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
1094 | dependencies:
1095 | is-extendable "^0.1.0"
1096 |
1097 | extend-shallow@^3.0.0:
1098 | version "3.0.2"
1099 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
1100 | dependencies:
1101 | assign-symbols "^1.0.0"
1102 | is-extendable "^1.0.1"
1103 |
1104 | extend@~3.0.0:
1105 | version "3.0.1"
1106 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
1107 |
1108 | extglob@^0.3.1:
1109 | version "0.3.2"
1110 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1111 | dependencies:
1112 | is-extglob "^1.0.0"
1113 |
1114 | extglob@^2.0.2:
1115 | version "2.0.4"
1116 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
1117 | dependencies:
1118 | array-unique "^0.3.2"
1119 | define-property "^1.0.0"
1120 | expand-brackets "^2.1.4"
1121 | extend-shallow "^2.0.1"
1122 | fragment-cache "^0.2.1"
1123 | regex-not "^1.0.0"
1124 | snapdragon "^0.8.1"
1125 | to-regex "^3.0.1"
1126 |
1127 | extsprintf@1.3.0:
1128 | version "1.3.0"
1129 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
1130 |
1131 | extsprintf@^1.2.0:
1132 | version "1.4.0"
1133 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
1134 |
1135 | fast-deep-equal@^1.0.0:
1136 | version "1.0.0"
1137 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff"
1138 |
1139 | fast-json-stable-stringify@^2.0.0:
1140 | version "2.0.0"
1141 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
1142 |
1143 | faye-websocket@^0.10.0:
1144 | version "0.10.0"
1145 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4"
1146 | dependencies:
1147 | websocket-driver ">=0.5.1"
1148 |
1149 | faye-websocket@~0.11.0:
1150 | version "0.11.1"
1151 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38"
1152 | dependencies:
1153 | websocket-driver ">=0.5.1"
1154 |
1155 | filename-regex@^2.0.0:
1156 | version "2.0.1"
1157 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1158 |
1159 | fill-range@^2.1.0:
1160 | version "2.2.3"
1161 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1162 | dependencies:
1163 | is-number "^2.1.0"
1164 | isobject "^2.0.0"
1165 | randomatic "^1.1.3"
1166 | repeat-element "^1.1.2"
1167 | repeat-string "^1.5.2"
1168 |
1169 | fill-range@^4.0.0:
1170 | version "4.0.0"
1171 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
1172 | dependencies:
1173 | extend-shallow "^2.0.1"
1174 | is-number "^3.0.0"
1175 | repeat-string "^1.6.1"
1176 | to-regex-range "^2.1.0"
1177 |
1178 | finalhandler@1.1.0:
1179 | version "1.1.0"
1180 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5"
1181 | dependencies:
1182 | debug "2.6.9"
1183 | encodeurl "~1.0.1"
1184 | escape-html "~1.0.3"
1185 | on-finished "~2.3.0"
1186 | parseurl "~1.3.2"
1187 | statuses "~1.3.1"
1188 | unpipe "~1.0.0"
1189 |
1190 | find-up@^1.0.0:
1191 | version "1.1.2"
1192 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1193 | dependencies:
1194 | path-exists "^2.0.0"
1195 | pinkie-promise "^2.0.0"
1196 |
1197 | find-up@^2.0.0, find-up@^2.1.0:
1198 | version "2.1.0"
1199 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1200 | dependencies:
1201 | locate-path "^2.0.0"
1202 |
1203 | for-in@^1.0.1, for-in@^1.0.2:
1204 | version "1.0.2"
1205 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1206 |
1207 | for-own@^0.1.4:
1208 | version "0.1.5"
1209 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1210 | dependencies:
1211 | for-in "^1.0.1"
1212 |
1213 | foreach@^2.0.5:
1214 | version "2.0.5"
1215 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
1216 |
1217 | forever-agent@~0.6.1:
1218 | version "0.6.1"
1219 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1220 |
1221 | form-data@~2.1.1:
1222 | version "2.1.4"
1223 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
1224 | dependencies:
1225 | asynckit "^0.4.0"
1226 | combined-stream "^1.0.5"
1227 | mime-types "^2.1.12"
1228 |
1229 | forwarded@~0.1.2:
1230 | version "0.1.2"
1231 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
1232 |
1233 | fragment-cache@^0.2.1:
1234 | version "0.2.1"
1235 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
1236 | dependencies:
1237 | map-cache "^0.2.2"
1238 |
1239 | fresh@0.5.2:
1240 | version "0.5.2"
1241 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
1242 |
1243 | fs.realpath@^1.0.0:
1244 | version "1.0.0"
1245 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1246 |
1247 | fsevents@^1.0.0:
1248 | version "1.1.3"
1249 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8"
1250 | dependencies:
1251 | nan "^2.3.0"
1252 | node-pre-gyp "^0.6.39"
1253 |
1254 | fstream-ignore@^1.0.5:
1255 | version "1.0.5"
1256 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
1257 | dependencies:
1258 | fstream "^1.0.0"
1259 | inherits "2"
1260 | minimatch "^3.0.0"
1261 |
1262 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
1263 | version "1.0.11"
1264 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
1265 | dependencies:
1266 | graceful-fs "^4.1.2"
1267 | inherits "~2.0.0"
1268 | mkdirp ">=0.5 0"
1269 | rimraf "2"
1270 |
1271 | function-bind@^1.0.2, function-bind@^1.1.1:
1272 | version "1.1.1"
1273 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1274 |
1275 | gauge@~2.7.3:
1276 | version "2.7.4"
1277 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1278 | dependencies:
1279 | aproba "^1.0.3"
1280 | console-control-strings "^1.0.0"
1281 | has-unicode "^2.0.0"
1282 | object-assign "^4.1.0"
1283 | signal-exit "^3.0.0"
1284 | string-width "^1.0.1"
1285 | strip-ansi "^3.0.1"
1286 | wide-align "^1.1.0"
1287 |
1288 | get-caller-file@^1.0.1:
1289 | version "1.0.2"
1290 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
1291 |
1292 | get-stdin@^4.0.1:
1293 | version "4.0.1"
1294 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
1295 |
1296 | get-stream@^3.0.0:
1297 | version "3.0.0"
1298 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
1299 |
1300 | get-value@^2.0.3, get-value@^2.0.6:
1301 | version "2.0.6"
1302 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
1303 |
1304 | getpass@^0.1.1:
1305 | version "0.1.7"
1306 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
1307 | dependencies:
1308 | assert-plus "^1.0.0"
1309 |
1310 | glob-base@^0.3.0:
1311 | version "0.3.0"
1312 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1313 | dependencies:
1314 | glob-parent "^2.0.0"
1315 | is-glob "^2.0.0"
1316 |
1317 | glob-parent@^2.0.0:
1318 | version "2.0.0"
1319 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1320 | dependencies:
1321 | is-glob "^2.0.0"
1322 |
1323 | glob-parent@^3.1.0:
1324 | version "3.1.0"
1325 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
1326 | dependencies:
1327 | is-glob "^3.1.0"
1328 | path-dirname "^1.0.0"
1329 |
1330 | glob@^7.0.3, glob@^7.0.5:
1331 | version "7.1.2"
1332 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
1333 | dependencies:
1334 | fs.realpath "^1.0.0"
1335 | inflight "^1.0.4"
1336 | inherits "2"
1337 | minimatch "^3.0.4"
1338 | once "^1.3.0"
1339 | path-is-absolute "^1.0.0"
1340 |
1341 | globby@^6.1.0:
1342 | version "6.1.0"
1343 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
1344 | dependencies:
1345 | array-union "^1.0.1"
1346 | glob "^7.0.3"
1347 | object-assign "^4.0.1"
1348 | pify "^2.0.0"
1349 | pinkie-promise "^2.0.0"
1350 |
1351 | graceful-fs@^4.1.2:
1352 | version "4.1.11"
1353 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1354 |
1355 | handle-thing@^1.2.5:
1356 | version "1.2.5"
1357 | resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-1.2.5.tgz#fd7aad726bf1a5fd16dfc29b2f7a6601d27139c4"
1358 |
1359 | har-schema@^1.0.5:
1360 | version "1.0.5"
1361 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
1362 |
1363 | har-validator@~4.2.1:
1364 | version "4.2.1"
1365 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
1366 | dependencies:
1367 | ajv "^4.9.1"
1368 | har-schema "^1.0.5"
1369 |
1370 | has-flag@^2.0.0:
1371 | version "2.0.0"
1372 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
1373 |
1374 | has-unicode@^2.0.0:
1375 | version "2.0.1"
1376 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1377 |
1378 | has-value@^0.3.1:
1379 | version "0.3.1"
1380 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
1381 | dependencies:
1382 | get-value "^2.0.3"
1383 | has-values "^0.1.4"
1384 | isobject "^2.0.0"
1385 |
1386 | has-value@^1.0.0:
1387 | version "1.0.0"
1388 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
1389 | dependencies:
1390 | get-value "^2.0.6"
1391 | has-values "^1.0.0"
1392 | isobject "^3.0.0"
1393 |
1394 | has-values@^0.1.4:
1395 | version "0.1.4"
1396 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
1397 |
1398 | has-values@^1.0.0:
1399 | version "1.0.0"
1400 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
1401 | dependencies:
1402 | is-number "^3.0.0"
1403 | kind-of "^4.0.0"
1404 |
1405 | has@^1.0.1:
1406 | version "1.0.1"
1407 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
1408 | dependencies:
1409 | function-bind "^1.0.2"
1410 |
1411 | hash-base@^2.0.0:
1412 | version "2.0.2"
1413 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1"
1414 | dependencies:
1415 | inherits "^2.0.1"
1416 |
1417 | hash-base@^3.0.0:
1418 | version "3.0.4"
1419 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918"
1420 | dependencies:
1421 | inherits "^2.0.1"
1422 | safe-buffer "^5.0.1"
1423 |
1424 | hash.js@^1.0.0, hash.js@^1.0.3:
1425 | version "1.1.3"
1426 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846"
1427 | dependencies:
1428 | inherits "^2.0.3"
1429 | minimalistic-assert "^1.0.0"
1430 |
1431 | hawk@3.1.3, hawk@~3.1.3:
1432 | version "3.1.3"
1433 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1434 | dependencies:
1435 | boom "2.x.x"
1436 | cryptiles "2.x.x"
1437 | hoek "2.x.x"
1438 | sntp "1.x.x"
1439 |
1440 | hmac-drbg@^1.0.0:
1441 | version "1.0.1"
1442 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
1443 | dependencies:
1444 | hash.js "^1.0.3"
1445 | minimalistic-assert "^1.0.0"
1446 | minimalistic-crypto-utils "^1.0.1"
1447 |
1448 | hoek@2.x.x:
1449 | version "2.16.3"
1450 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
1451 |
1452 | hosted-git-info@^2.1.4:
1453 | version "2.5.0"
1454 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
1455 |
1456 | hpack.js@^2.1.6:
1457 | version "2.1.6"
1458 | resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2"
1459 | dependencies:
1460 | inherits "^2.0.1"
1461 | obuf "^1.0.0"
1462 | readable-stream "^2.0.1"
1463 | wbuf "^1.1.0"
1464 |
1465 | html-entities@^1.2.0:
1466 | version "1.2.1"
1467 | resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f"
1468 |
1469 | http-deceiver@^1.2.7:
1470 | version "1.2.7"
1471 | resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87"
1472 |
1473 | http-errors@1.6.2, http-errors@~1.6.2:
1474 | version "1.6.2"
1475 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736"
1476 | dependencies:
1477 | depd "1.1.1"
1478 | inherits "2.0.3"
1479 | setprototypeof "1.0.3"
1480 | statuses ">= 1.3.1 < 2"
1481 |
1482 | http-parser-js@>=0.4.0:
1483 | version "0.4.9"
1484 | resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.9.tgz#ea1a04fb64adff0242e9974f297dd4c3cad271e1"
1485 |
1486 | http-proxy-middleware@~0.17.4:
1487 | version "0.17.4"
1488 | resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz#642e8848851d66f09d4f124912846dbaeb41b833"
1489 | dependencies:
1490 | http-proxy "^1.16.2"
1491 | is-glob "^3.1.0"
1492 | lodash "^4.17.2"
1493 | micromatch "^2.3.11"
1494 |
1495 | http-proxy@^1.16.2:
1496 | version "1.16.2"
1497 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742"
1498 | dependencies:
1499 | eventemitter3 "1.x.x"
1500 | requires-port "1.x.x"
1501 |
1502 | http-signature@~1.1.0:
1503 | version "1.1.1"
1504 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
1505 | dependencies:
1506 | assert-plus "^0.2.0"
1507 | jsprim "^1.2.2"
1508 | sshpk "^1.7.0"
1509 |
1510 | https-browserify@^1.0.0:
1511 | version "1.0.0"
1512 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
1513 |
1514 | iconv-lite@0.4.19:
1515 | version "0.4.19"
1516 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
1517 |
1518 | ieee754@^1.1.4:
1519 | version "1.1.8"
1520 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"
1521 |
1522 | import-local@^1.0.0:
1523 | version "1.0.0"
1524 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc"
1525 | dependencies:
1526 | pkg-dir "^2.0.0"
1527 | resolve-cwd "^2.0.0"
1528 |
1529 | indent-string@^2.1.0:
1530 | version "2.1.0"
1531 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
1532 | dependencies:
1533 | repeating "^2.0.0"
1534 |
1535 | indexof@0.0.1:
1536 | version "0.0.1"
1537 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
1538 |
1539 | inflight@^1.0.4:
1540 | version "1.0.6"
1541 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1542 | dependencies:
1543 | once "^1.3.0"
1544 | wrappy "1"
1545 |
1546 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3:
1547 | version "2.0.3"
1548 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1549 |
1550 | inherits@2.0.1:
1551 | version "2.0.1"
1552 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
1553 |
1554 | ini@~1.3.0:
1555 | version "1.3.5"
1556 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
1557 |
1558 | internal-ip@1.2.0:
1559 | version "1.2.0"
1560 | resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-1.2.0.tgz#ae9fbf93b984878785d50a8de1b356956058cf5c"
1561 | dependencies:
1562 | meow "^3.3.0"
1563 |
1564 | interpret@^1.0.0:
1565 | version "1.1.0"
1566 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614"
1567 |
1568 | invert-kv@^1.0.0:
1569 | version "1.0.0"
1570 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
1571 |
1572 | ip@^1.1.0, ip@^1.1.5:
1573 | version "1.1.5"
1574 | resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a"
1575 |
1576 | ipaddr.js@1.5.2:
1577 | version "1.5.2"
1578 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.5.2.tgz#d4b505bde9946987ccf0fc58d9010ff9607e3fa0"
1579 |
1580 | is-accessor-descriptor@^0.1.6:
1581 | version "0.1.6"
1582 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
1583 | dependencies:
1584 | kind-of "^3.0.2"
1585 |
1586 | is-accessor-descriptor@^1.0.0:
1587 | version "1.0.0"
1588 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
1589 | dependencies:
1590 | kind-of "^6.0.0"
1591 |
1592 | is-arrayish@^0.2.1:
1593 | version "0.2.1"
1594 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1595 |
1596 | is-binary-path@^1.0.0:
1597 | version "1.0.1"
1598 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
1599 | dependencies:
1600 | binary-extensions "^1.0.0"
1601 |
1602 | is-buffer@^1.1.5:
1603 | version "1.1.6"
1604 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
1605 |
1606 | is-builtin-module@^1.0.0:
1607 | version "1.0.0"
1608 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
1609 | dependencies:
1610 | builtin-modules "^1.0.0"
1611 |
1612 | is-callable@^1.1.1, is-callable@^1.1.3:
1613 | version "1.1.3"
1614 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
1615 |
1616 | is-data-descriptor@^0.1.4:
1617 | version "0.1.4"
1618 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
1619 | dependencies:
1620 | kind-of "^3.0.2"
1621 |
1622 | is-data-descriptor@^1.0.0:
1623 | version "1.0.0"
1624 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
1625 | dependencies:
1626 | kind-of "^6.0.0"
1627 |
1628 | is-date-object@^1.0.1:
1629 | version "1.0.1"
1630 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
1631 |
1632 | is-descriptor@^0.1.0:
1633 | version "0.1.6"
1634 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
1635 | dependencies:
1636 | is-accessor-descriptor "^0.1.6"
1637 | is-data-descriptor "^0.1.4"
1638 | kind-of "^5.0.0"
1639 |
1640 | is-descriptor@^1.0.0:
1641 | version "1.0.2"
1642 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
1643 | dependencies:
1644 | is-accessor-descriptor "^1.0.0"
1645 | is-data-descriptor "^1.0.0"
1646 | kind-of "^6.0.2"
1647 |
1648 | is-dotfile@^1.0.0:
1649 | version "1.0.3"
1650 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
1651 |
1652 | is-equal-shallow@^0.1.3:
1653 | version "0.1.3"
1654 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1655 | dependencies:
1656 | is-primitive "^2.0.0"
1657 |
1658 | is-extendable@^0.1.0, is-extendable@^0.1.1:
1659 | version "0.1.1"
1660 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1661 |
1662 | is-extendable@^1.0.1:
1663 | version "1.0.1"
1664 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
1665 | dependencies:
1666 | is-plain-object "^2.0.4"
1667 |
1668 | is-extglob@^1.0.0:
1669 | version "1.0.0"
1670 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1671 |
1672 | is-extglob@^2.1.0, is-extglob@^2.1.1:
1673 | version "2.1.1"
1674 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
1675 |
1676 | is-finite@^1.0.0:
1677 | version "1.0.2"
1678 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
1679 | dependencies:
1680 | number-is-nan "^1.0.0"
1681 |
1682 | is-fullwidth-code-point@^1.0.0:
1683 | version "1.0.0"
1684 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1685 | dependencies:
1686 | number-is-nan "^1.0.0"
1687 |
1688 | is-fullwidth-code-point@^2.0.0:
1689 | version "2.0.0"
1690 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1691 |
1692 | is-glob@^2.0.0, is-glob@^2.0.1:
1693 | version "2.0.1"
1694 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1695 | dependencies:
1696 | is-extglob "^1.0.0"
1697 |
1698 | is-glob@^3.1.0:
1699 | version "3.1.0"
1700 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
1701 | dependencies:
1702 | is-extglob "^2.1.0"
1703 |
1704 | is-glob@^4.0.0:
1705 | version "4.0.0"
1706 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0"
1707 | dependencies:
1708 | is-extglob "^2.1.1"
1709 |
1710 | is-number@^2.1.0:
1711 | version "2.1.0"
1712 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1713 | dependencies:
1714 | kind-of "^3.0.2"
1715 |
1716 | is-number@^3.0.0:
1717 | version "3.0.0"
1718 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
1719 | dependencies:
1720 | kind-of "^3.0.2"
1721 |
1722 | is-odd@^1.0.0:
1723 | version "1.0.0"
1724 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-1.0.0.tgz#3b8a932eb028b3775c39bb09e91767accdb69088"
1725 | dependencies:
1726 | is-number "^3.0.0"
1727 |
1728 | is-path-cwd@^1.0.0:
1729 | version "1.0.0"
1730 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
1731 |
1732 | is-path-in-cwd@^1.0.0:
1733 | version "1.0.0"
1734 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
1735 | dependencies:
1736 | is-path-inside "^1.0.0"
1737 |
1738 | is-path-inside@^1.0.0:
1739 | version "1.0.1"
1740 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"
1741 | dependencies:
1742 | path-is-inside "^1.0.1"
1743 |
1744 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
1745 | version "2.0.4"
1746 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
1747 | dependencies:
1748 | isobject "^3.0.1"
1749 |
1750 | is-posix-bracket@^0.1.0:
1751 | version "0.1.1"
1752 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1753 |
1754 | is-primitive@^2.0.0:
1755 | version "2.0.0"
1756 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1757 |
1758 | is-regex@^1.0.4:
1759 | version "1.0.4"
1760 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
1761 | dependencies:
1762 | has "^1.0.1"
1763 |
1764 | is-stream@^1.1.0:
1765 | version "1.1.0"
1766 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
1767 |
1768 | is-symbol@^1.0.1:
1769 | version "1.0.1"
1770 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572"
1771 |
1772 | is-typedarray@~1.0.0:
1773 | version "1.0.0"
1774 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1775 |
1776 | is-utf8@^0.2.0:
1777 | version "0.2.1"
1778 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
1779 |
1780 | is-wsl@^1.1.0:
1781 | version "1.1.0"
1782 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
1783 |
1784 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
1785 | version "1.0.0"
1786 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1787 |
1788 | isexe@^2.0.0:
1789 | version "2.0.0"
1790 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1791 |
1792 | isobject@^2.0.0:
1793 | version "2.1.0"
1794 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1795 | dependencies:
1796 | isarray "1.0.0"
1797 |
1798 | isobject@^3.0.0, isobject@^3.0.1:
1799 | version "3.0.1"
1800 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
1801 |
1802 | isstream@~0.1.2:
1803 | version "0.1.2"
1804 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1805 |
1806 | jquery@^3.2.1:
1807 | version "3.2.1"
1808 | resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.2.1.tgz#5c4d9de652af6cd0a770154a631bba12b015c787"
1809 |
1810 | jsbn@~0.1.0:
1811 | version "0.1.1"
1812 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
1813 |
1814 | json-loader@^0.5.4:
1815 | version "0.5.7"
1816 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d"
1817 |
1818 | json-schema-traverse@^0.3.0:
1819 | version "0.3.1"
1820 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
1821 |
1822 | json-schema@0.2.3:
1823 | version "0.2.3"
1824 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
1825 |
1826 | json-stable-stringify@^1.0.1:
1827 | version "1.0.1"
1828 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1829 | dependencies:
1830 | jsonify "~0.0.0"
1831 |
1832 | json-stringify-safe@~5.0.1:
1833 | version "5.0.1"
1834 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
1835 |
1836 | json3@^3.3.2:
1837 | version "3.3.2"
1838 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1"
1839 |
1840 | json5@^0.5.0, json5@^0.5.1:
1841 | version "0.5.1"
1842 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
1843 |
1844 | jsonify@~0.0.0:
1845 | version "0.0.0"
1846 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
1847 |
1848 | jsprim@^1.2.2:
1849 | version "1.4.1"
1850 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
1851 | dependencies:
1852 | assert-plus "1.0.0"
1853 | extsprintf "1.3.0"
1854 | json-schema "0.2.3"
1855 | verror "1.10.0"
1856 |
1857 | killable@^1.0.0:
1858 | version "1.0.0"
1859 | resolved "https://registry.yarnpkg.com/killable/-/killable-1.0.0.tgz#da8b84bd47de5395878f95d64d02f2449fe05e6b"
1860 |
1861 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
1862 | version "3.2.2"
1863 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
1864 | dependencies:
1865 | is-buffer "^1.1.5"
1866 |
1867 | kind-of@^4.0.0:
1868 | version "4.0.0"
1869 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
1870 | dependencies:
1871 | is-buffer "^1.1.5"
1872 |
1873 | kind-of@^5.0.0, kind-of@^5.0.2:
1874 | version "5.1.0"
1875 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
1876 |
1877 | kind-of@^6.0.0, kind-of@^6.0.2:
1878 | version "6.0.2"
1879 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
1880 |
1881 | lazy-cache@^1.0.3:
1882 | version "1.0.4"
1883 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
1884 |
1885 | lazy-cache@^2.0.2:
1886 | version "2.0.2"
1887 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-2.0.2.tgz#b9190a4f913354694840859f8a8f7084d8822264"
1888 | dependencies:
1889 | set-getter "^0.1.0"
1890 |
1891 | lcid@^1.0.0:
1892 | version "1.0.0"
1893 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
1894 | dependencies:
1895 | invert-kv "^1.0.0"
1896 |
1897 | load-json-file@^1.0.0:
1898 | version "1.1.0"
1899 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
1900 | dependencies:
1901 | graceful-fs "^4.1.2"
1902 | parse-json "^2.2.0"
1903 | pify "^2.0.0"
1904 | pinkie-promise "^2.0.0"
1905 | strip-bom "^2.0.0"
1906 |
1907 | load-json-file@^2.0.0:
1908 | version "2.0.0"
1909 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
1910 | dependencies:
1911 | graceful-fs "^4.1.2"
1912 | parse-json "^2.2.0"
1913 | pify "^2.0.0"
1914 | strip-bom "^3.0.0"
1915 |
1916 | loader-runner@^2.3.0:
1917 | version "2.3.0"
1918 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2"
1919 |
1920 | loader-utils@^1.0.2, loader-utils@^1.1.0:
1921 | version "1.1.0"
1922 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd"
1923 | dependencies:
1924 | big.js "^3.1.3"
1925 | emojis-list "^2.0.0"
1926 | json5 "^0.5.0"
1927 |
1928 | locate-path@^2.0.0:
1929 | version "2.0.0"
1930 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
1931 | dependencies:
1932 | p-locate "^2.0.0"
1933 | path-exists "^3.0.0"
1934 |
1935 | lodash@^4.14.0, lodash@^4.17.2:
1936 | version "4.17.4"
1937 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
1938 |
1939 | loglevel@^1.4.1:
1940 | version "1.6.1"
1941 | resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.1.tgz#e0fc95133b6ef276cdc8887cdaf24aa6f156f8fa"
1942 |
1943 | longest@^1.0.1:
1944 | version "1.0.1"
1945 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
1946 |
1947 | loud-rejection@^1.0.0:
1948 | version "1.6.0"
1949 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
1950 | dependencies:
1951 | currently-unhandled "^0.4.1"
1952 | signal-exit "^3.0.0"
1953 |
1954 | lru-cache@^4.0.1:
1955 | version "4.1.1"
1956 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55"
1957 | dependencies:
1958 | pseudomap "^1.0.2"
1959 | yallist "^2.1.2"
1960 |
1961 | map-cache@^0.2.2:
1962 | version "0.2.2"
1963 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
1964 |
1965 | map-obj@^1.0.0, map-obj@^1.0.1:
1966 | version "1.0.1"
1967 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
1968 |
1969 | map-visit@^1.0.0:
1970 | version "1.0.0"
1971 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
1972 | dependencies:
1973 | object-visit "^1.0.0"
1974 |
1975 | md5.js@^1.3.4:
1976 | version "1.3.4"
1977 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d"
1978 | dependencies:
1979 | hash-base "^3.0.0"
1980 | inherits "^2.0.1"
1981 |
1982 | media-typer@0.3.0:
1983 | version "0.3.0"
1984 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
1985 |
1986 | mem@^1.1.0:
1987 | version "1.1.0"
1988 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
1989 | dependencies:
1990 | mimic-fn "^1.0.0"
1991 |
1992 | memory-fs@^0.4.0, memory-fs@~0.4.1:
1993 | version "0.4.1"
1994 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
1995 | dependencies:
1996 | errno "^0.1.3"
1997 | readable-stream "^2.0.1"
1998 |
1999 | meow@^3.3.0:
2000 | version "3.7.0"
2001 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
2002 | dependencies:
2003 | camelcase-keys "^2.0.0"
2004 | decamelize "^1.1.2"
2005 | loud-rejection "^1.0.0"
2006 | map-obj "^1.0.1"
2007 | minimist "^1.1.3"
2008 | normalize-package-data "^2.3.4"
2009 | object-assign "^4.0.1"
2010 | read-pkg-up "^1.0.1"
2011 | redent "^1.0.0"
2012 | trim-newlines "^1.0.0"
2013 |
2014 | merge-descriptors@1.0.1:
2015 | version "1.0.1"
2016 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
2017 |
2018 | methods@~1.1.2:
2019 | version "1.1.2"
2020 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
2021 |
2022 | micromatch@^2.1.5, micromatch@^2.3.11:
2023 | version "2.3.11"
2024 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2025 | dependencies:
2026 | arr-diff "^2.0.0"
2027 | array-unique "^0.2.1"
2028 | braces "^1.8.2"
2029 | expand-brackets "^0.1.4"
2030 | extglob "^0.3.1"
2031 | filename-regex "^2.0.0"
2032 | is-extglob "^1.0.0"
2033 | is-glob "^2.0.1"
2034 | kind-of "^3.0.2"
2035 | normalize-path "^2.0.1"
2036 | object.omit "^2.0.0"
2037 | parse-glob "^3.0.4"
2038 | regex-cache "^0.4.2"
2039 |
2040 | micromatch@^3.1.4:
2041 | version "3.1.5"
2042 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.5.tgz#d05e168c206472dfbca985bfef4f57797b4cd4ba"
2043 | dependencies:
2044 | arr-diff "^4.0.0"
2045 | array-unique "^0.3.2"
2046 | braces "^2.3.0"
2047 | define-property "^1.0.0"
2048 | extend-shallow "^2.0.1"
2049 | extglob "^2.0.2"
2050 | fragment-cache "^0.2.1"
2051 | kind-of "^6.0.0"
2052 | nanomatch "^1.2.5"
2053 | object.pick "^1.3.0"
2054 | regex-not "^1.0.0"
2055 | snapdragon "^0.8.1"
2056 | to-regex "^3.0.1"
2057 |
2058 | miller-rabin@^4.0.0:
2059 | version "4.0.1"
2060 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
2061 | dependencies:
2062 | bn.js "^4.0.0"
2063 | brorand "^1.0.1"
2064 |
2065 | "mime-db@>= 1.30.0 < 2":
2066 | version "1.32.0"
2067 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.32.0.tgz#485b3848b01a3cda5f968b4882c0771e58e09414"
2068 |
2069 | mime-db@~1.30.0:
2070 | version "1.30.0"
2071 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01"
2072 |
2073 | mime-types@^2.1.12, mime-types@~2.1.15, mime-types@~2.1.16, mime-types@~2.1.17, mime-types@~2.1.7:
2074 | version "2.1.17"
2075 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a"
2076 | dependencies:
2077 | mime-db "~1.30.0"
2078 |
2079 | mime@1.4.1:
2080 | version "1.4.1"
2081 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6"
2082 |
2083 | mime@^1.5.0:
2084 | version "1.6.0"
2085 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
2086 |
2087 | mimic-fn@^1.0.0:
2088 | version "1.1.0"
2089 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
2090 |
2091 | minimalistic-assert@^1.0.0:
2092 | version "1.0.0"
2093 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3"
2094 |
2095 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
2096 | version "1.0.1"
2097 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
2098 |
2099 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4:
2100 | version "3.0.4"
2101 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2102 | dependencies:
2103 | brace-expansion "^1.1.7"
2104 |
2105 | minimist@0.0.8:
2106 | version "0.0.8"
2107 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2108 |
2109 | minimist@^1.1.3, minimist@^1.2.0:
2110 | version "1.2.0"
2111 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2112 |
2113 | mixin-deep@^1.2.0:
2114 | version "1.3.0"
2115 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.0.tgz#47a8732ba97799457c8c1eca28f95132d7e8150a"
2116 | dependencies:
2117 | for-in "^1.0.2"
2118 | is-extendable "^1.0.1"
2119 |
2120 | mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0:
2121 | version "0.5.1"
2122 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2123 | dependencies:
2124 | minimist "0.0.8"
2125 |
2126 | ms@2.0.0:
2127 | version "2.0.0"
2128 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2129 |
2130 | multicast-dns-service-types@^1.1.0:
2131 | version "1.1.0"
2132 | resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901"
2133 |
2134 | multicast-dns@^6.0.1:
2135 | version "6.2.1"
2136 | resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.2.1.tgz#c5035defa9219d30640558a49298067352098060"
2137 | dependencies:
2138 | dns-packet "^1.0.1"
2139 | thunky "^0.1.0"
2140 |
2141 | nan@^2.3.0:
2142 | version "2.8.0"
2143 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a"
2144 |
2145 | nanomatch@^1.2.5:
2146 | version "1.2.7"
2147 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.7.tgz#53cd4aa109ff68b7f869591fdc9d10daeeea3e79"
2148 | dependencies:
2149 | arr-diff "^4.0.0"
2150 | array-unique "^0.3.2"
2151 | define-property "^1.0.0"
2152 | extend-shallow "^2.0.1"
2153 | fragment-cache "^0.2.1"
2154 | is-odd "^1.0.0"
2155 | kind-of "^5.0.2"
2156 | object.pick "^1.3.0"
2157 | regex-not "^1.0.0"
2158 | snapdragon "^0.8.1"
2159 | to-regex "^3.0.1"
2160 |
2161 | negotiator@0.6.1:
2162 | version "0.6.1"
2163 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9"
2164 |
2165 | node-forge@0.6.33:
2166 | version "0.6.33"
2167 | resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.6.33.tgz#463811879f573d45155ad6a9f43dc296e8e85ebc"
2168 |
2169 | node-libs-browser@^2.0.0:
2170 | version "2.1.0"
2171 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df"
2172 | dependencies:
2173 | assert "^1.1.1"
2174 | browserify-zlib "^0.2.0"
2175 | buffer "^4.3.0"
2176 | console-browserify "^1.1.0"
2177 | constants-browserify "^1.0.0"
2178 | crypto-browserify "^3.11.0"
2179 | domain-browser "^1.1.1"
2180 | events "^1.0.0"
2181 | https-browserify "^1.0.0"
2182 | os-browserify "^0.3.0"
2183 | path-browserify "0.0.0"
2184 | process "^0.11.10"
2185 | punycode "^1.2.4"
2186 | querystring-es3 "^0.2.0"
2187 | readable-stream "^2.3.3"
2188 | stream-browserify "^2.0.1"
2189 | stream-http "^2.7.2"
2190 | string_decoder "^1.0.0"
2191 | timers-browserify "^2.0.4"
2192 | tty-browserify "0.0.0"
2193 | url "^0.11.0"
2194 | util "^0.10.3"
2195 | vm-browserify "0.0.4"
2196 |
2197 | node-pre-gyp@^0.6.39:
2198 | version "0.6.39"
2199 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649"
2200 | dependencies:
2201 | detect-libc "^1.0.2"
2202 | hawk "3.1.3"
2203 | mkdirp "^0.5.1"
2204 | nopt "^4.0.1"
2205 | npmlog "^4.0.2"
2206 | rc "^1.1.7"
2207 | request "2.81.0"
2208 | rimraf "^2.6.1"
2209 | semver "^5.3.0"
2210 | tar "^2.2.1"
2211 | tar-pack "^3.4.0"
2212 |
2213 | nopt@^4.0.1:
2214 | version "4.0.1"
2215 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
2216 | dependencies:
2217 | abbrev "1"
2218 | osenv "^0.1.4"
2219 |
2220 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
2221 | version "2.4.0"
2222 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
2223 | dependencies:
2224 | hosted-git-info "^2.1.4"
2225 | is-builtin-module "^1.0.0"
2226 | semver "2 || 3 || 4 || 5"
2227 | validate-npm-package-license "^3.0.1"
2228 |
2229 | normalize-path@^2.0.0, normalize-path@^2.0.1, normalize-path@^2.1.1:
2230 | version "2.1.1"
2231 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
2232 | dependencies:
2233 | remove-trailing-separator "^1.0.1"
2234 |
2235 | npm-run-path@^2.0.0:
2236 | version "2.0.2"
2237 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
2238 | dependencies:
2239 | path-key "^2.0.0"
2240 |
2241 | npmlog@^4.0.2:
2242 | version "4.1.2"
2243 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
2244 | dependencies:
2245 | are-we-there-yet "~1.1.2"
2246 | console-control-strings "~1.1.0"
2247 | gauge "~2.7.3"
2248 | set-blocking "~2.0.0"
2249 |
2250 | number-is-nan@^1.0.0:
2251 | version "1.0.1"
2252 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2253 |
2254 | oauth-sign@~0.8.1:
2255 | version "0.8.2"
2256 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
2257 |
2258 | object-assign@^4.0.1, object-assign@^4.1.0:
2259 | version "4.1.1"
2260 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2261 |
2262 | object-copy@^0.1.0:
2263 | version "0.1.0"
2264 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
2265 | dependencies:
2266 | copy-descriptor "^0.1.0"
2267 | define-property "^0.2.5"
2268 | kind-of "^3.0.3"
2269 |
2270 | object-keys@^1.0.8:
2271 | version "1.0.11"
2272 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
2273 |
2274 | object-visit@^1.0.0:
2275 | version "1.0.1"
2276 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
2277 | dependencies:
2278 | isobject "^3.0.0"
2279 |
2280 | object.omit@^2.0.0:
2281 | version "2.0.1"
2282 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
2283 | dependencies:
2284 | for-own "^0.1.4"
2285 | is-extendable "^0.1.1"
2286 |
2287 | object.pick@^1.3.0:
2288 | version "1.3.0"
2289 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
2290 | dependencies:
2291 | isobject "^3.0.1"
2292 |
2293 | obuf@^1.0.0, obuf@^1.1.1:
2294 | version "1.1.1"
2295 | resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.1.tgz#104124b6c602c6796881a042541d36db43a5264e"
2296 |
2297 | on-finished@~2.3.0:
2298 | version "2.3.0"
2299 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
2300 | dependencies:
2301 | ee-first "1.1.1"
2302 |
2303 | on-headers@~1.0.1:
2304 | version "1.0.1"
2305 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7"
2306 |
2307 | once@^1.3.0, once@^1.3.3:
2308 | version "1.4.0"
2309 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2310 | dependencies:
2311 | wrappy "1"
2312 |
2313 | opn@^5.1.0:
2314 | version "5.1.0"
2315 | resolved "https://registry.yarnpkg.com/opn/-/opn-5.1.0.tgz#72ce2306a17dbea58ff1041853352b4a8fc77519"
2316 | dependencies:
2317 | is-wsl "^1.1.0"
2318 |
2319 | original@>=0.0.5:
2320 | version "1.0.0"
2321 | resolved "https://registry.yarnpkg.com/original/-/original-1.0.0.tgz#9147f93fa1696d04be61e01bd50baeaca656bd3b"
2322 | dependencies:
2323 | url-parse "1.0.x"
2324 |
2325 | os-browserify@^0.3.0:
2326 | version "0.3.0"
2327 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
2328 |
2329 | os-homedir@^1.0.0:
2330 | version "1.0.2"
2331 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
2332 |
2333 | os-locale@^1.4.0:
2334 | version "1.4.0"
2335 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9"
2336 | dependencies:
2337 | lcid "^1.0.0"
2338 |
2339 | os-locale@^2.0.0:
2340 | version "2.1.0"
2341 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
2342 | dependencies:
2343 | execa "^0.7.0"
2344 | lcid "^1.0.0"
2345 | mem "^1.1.0"
2346 |
2347 | os-tmpdir@^1.0.0:
2348 | version "1.0.2"
2349 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
2350 |
2351 | osenv@^0.1.4:
2352 | version "0.1.4"
2353 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
2354 | dependencies:
2355 | os-homedir "^1.0.0"
2356 | os-tmpdir "^1.0.0"
2357 |
2358 | p-finally@^1.0.0:
2359 | version "1.0.0"
2360 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
2361 |
2362 | p-limit@^1.1.0:
2363 | version "1.2.0"
2364 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c"
2365 | dependencies:
2366 | p-try "^1.0.0"
2367 |
2368 | p-locate@^2.0.0:
2369 | version "2.0.0"
2370 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
2371 | dependencies:
2372 | p-limit "^1.1.0"
2373 |
2374 | p-map@^1.1.1:
2375 | version "1.2.0"
2376 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b"
2377 |
2378 | p-try@^1.0.0:
2379 | version "1.0.0"
2380 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
2381 |
2382 | pako@~1.0.5:
2383 | version "1.0.6"
2384 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258"
2385 |
2386 | parse-asn1@^5.0.0:
2387 | version "5.1.0"
2388 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712"
2389 | dependencies:
2390 | asn1.js "^4.0.0"
2391 | browserify-aes "^1.0.0"
2392 | create-hash "^1.1.0"
2393 | evp_bytestokey "^1.0.0"
2394 | pbkdf2 "^3.0.3"
2395 |
2396 | parse-glob@^3.0.4:
2397 | version "3.0.4"
2398 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
2399 | dependencies:
2400 | glob-base "^0.3.0"
2401 | is-dotfile "^1.0.0"
2402 | is-extglob "^1.0.0"
2403 | is-glob "^2.0.0"
2404 |
2405 | parse-json@^2.2.0:
2406 | version "2.2.0"
2407 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
2408 | dependencies:
2409 | error-ex "^1.2.0"
2410 |
2411 | parseurl@~1.3.2:
2412 | version "1.3.2"
2413 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3"
2414 |
2415 | pascalcase@^0.1.1:
2416 | version "0.1.1"
2417 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
2418 |
2419 | path-browserify@0.0.0:
2420 | version "0.0.0"
2421 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
2422 |
2423 | path-dirname@^1.0.0:
2424 | version "1.0.2"
2425 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
2426 |
2427 | path-exists@^2.0.0:
2428 | version "2.1.0"
2429 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
2430 | dependencies:
2431 | pinkie-promise "^2.0.0"
2432 |
2433 | path-exists@^3.0.0:
2434 | version "3.0.0"
2435 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
2436 |
2437 | path-is-absolute@^1.0.0:
2438 | version "1.0.1"
2439 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2440 |
2441 | path-is-inside@^1.0.1:
2442 | version "1.0.2"
2443 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
2444 |
2445 | path-key@^2.0.0:
2446 | version "2.0.1"
2447 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
2448 |
2449 | path-to-regexp@0.1.7:
2450 | version "0.1.7"
2451 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
2452 |
2453 | path-type@^1.0.0:
2454 | version "1.1.0"
2455 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
2456 | dependencies:
2457 | graceful-fs "^4.1.2"
2458 | pify "^2.0.0"
2459 | pinkie-promise "^2.0.0"
2460 |
2461 | path-type@^2.0.0:
2462 | version "2.0.0"
2463 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
2464 | dependencies:
2465 | pify "^2.0.0"
2466 |
2467 | pbkdf2@^3.0.3:
2468 | version "3.0.14"
2469 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade"
2470 | dependencies:
2471 | create-hash "^1.1.2"
2472 | create-hmac "^1.1.4"
2473 | ripemd160 "^2.0.1"
2474 | safe-buffer "^5.0.1"
2475 | sha.js "^2.4.8"
2476 |
2477 | performance-now@^0.2.0:
2478 | version "0.2.0"
2479 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
2480 |
2481 | pify@^2.0.0:
2482 | version "2.3.0"
2483 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2484 |
2485 | pify@^3.0.0:
2486 | version "3.0.0"
2487 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
2488 |
2489 | pinkie-promise@^2.0.0:
2490 | version "2.0.1"
2491 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
2492 | dependencies:
2493 | pinkie "^2.0.0"
2494 |
2495 | pinkie@^2.0.0:
2496 | version "2.0.4"
2497 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
2498 |
2499 | pkg-dir@^2.0.0:
2500 | version "2.0.0"
2501 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
2502 | dependencies:
2503 | find-up "^2.1.0"
2504 |
2505 | portfinder@^1.0.9:
2506 | version "1.0.13"
2507 | resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9"
2508 | dependencies:
2509 | async "^1.5.2"
2510 | debug "^2.2.0"
2511 | mkdirp "0.5.x"
2512 |
2513 | posix-character-classes@^0.1.0:
2514 | version "0.1.1"
2515 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
2516 |
2517 | preserve@^0.2.0:
2518 | version "0.2.0"
2519 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
2520 |
2521 | process-nextick-args@~1.0.6:
2522 | version "1.0.7"
2523 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
2524 |
2525 | process@^0.11.10:
2526 | version "0.11.10"
2527 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
2528 |
2529 | proxy-addr@~2.0.2:
2530 | version "2.0.2"
2531 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.2.tgz#6571504f47bb988ec8180253f85dd7e14952bdec"
2532 | dependencies:
2533 | forwarded "~0.1.2"
2534 | ipaddr.js "1.5.2"
2535 |
2536 | prr@~1.0.1:
2537 | version "1.0.1"
2538 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
2539 |
2540 | pseudomap@^1.0.2:
2541 | version "1.0.2"
2542 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
2543 |
2544 | public-encrypt@^4.0.0:
2545 | version "4.0.0"
2546 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6"
2547 | dependencies:
2548 | bn.js "^4.1.0"
2549 | browserify-rsa "^4.0.0"
2550 | create-hash "^1.1.0"
2551 | parse-asn1 "^5.0.0"
2552 | randombytes "^2.0.1"
2553 |
2554 | punycode@1.3.2:
2555 | version "1.3.2"
2556 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
2557 |
2558 | punycode@^1.2.4, punycode@^1.4.1:
2559 | version "1.4.1"
2560 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2561 |
2562 | qs@6.5.1:
2563 | version "6.5.1"
2564 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8"
2565 |
2566 | qs@~6.4.0:
2567 | version "6.4.0"
2568 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
2569 |
2570 | querystring-es3@^0.2.0:
2571 | version "0.2.1"
2572 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
2573 |
2574 | querystring@0.2.0:
2575 | version "0.2.0"
2576 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
2577 |
2578 | querystringify@0.0.x:
2579 | version "0.0.4"
2580 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-0.0.4.tgz#0cf7f84f9463ff0ae51c4c4b142d95be37724d9c"
2581 |
2582 | querystringify@~1.0.0:
2583 | version "1.0.0"
2584 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-1.0.0.tgz#6286242112c5b712fa654e526652bf6a13ff05cb"
2585 |
2586 | randomatic@^1.1.3:
2587 | version "1.1.7"
2588 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
2589 | dependencies:
2590 | is-number "^3.0.0"
2591 | kind-of "^4.0.0"
2592 |
2593 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5:
2594 | version "2.0.6"
2595 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80"
2596 | dependencies:
2597 | safe-buffer "^5.1.0"
2598 |
2599 | randomfill@^1.0.3:
2600 | version "1.0.3"
2601 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.3.tgz#b96b7df587f01dd91726c418f30553b1418e3d62"
2602 | dependencies:
2603 | randombytes "^2.0.5"
2604 | safe-buffer "^5.1.0"
2605 |
2606 | range-parser@^1.0.3, range-parser@~1.2.0:
2607 | version "1.2.0"
2608 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
2609 |
2610 | raw-body@2.3.2:
2611 | version "2.3.2"
2612 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89"
2613 | dependencies:
2614 | bytes "3.0.0"
2615 | http-errors "1.6.2"
2616 | iconv-lite "0.4.19"
2617 | unpipe "1.0.0"
2618 |
2619 | rc@^1.1.7:
2620 | version "1.2.3"
2621 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.3.tgz#51575a900f8dd68381c710b4712c2154c3e2035b"
2622 | dependencies:
2623 | deep-extend "~0.4.0"
2624 | ini "~1.3.0"
2625 | minimist "^1.2.0"
2626 | strip-json-comments "~2.0.1"
2627 |
2628 | read-pkg-up@^1.0.1:
2629 | version "1.0.1"
2630 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
2631 | dependencies:
2632 | find-up "^1.0.0"
2633 | read-pkg "^1.0.0"
2634 |
2635 | read-pkg-up@^2.0.0:
2636 | version "2.0.0"
2637 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
2638 | dependencies:
2639 | find-up "^2.0.0"
2640 | read-pkg "^2.0.0"
2641 |
2642 | read-pkg@^1.0.0:
2643 | version "1.1.0"
2644 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
2645 | dependencies:
2646 | load-json-file "^1.0.0"
2647 | normalize-package-data "^2.3.2"
2648 | path-type "^1.0.0"
2649 |
2650 | read-pkg@^2.0.0:
2651 | version "2.0.0"
2652 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
2653 | dependencies:
2654 | load-json-file "^2.0.0"
2655 | normalize-package-data "^2.3.2"
2656 | path-type "^2.0.0"
2657 |
2658 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.6, readable-stream@^2.2.9, readable-stream@^2.3.3:
2659 | version "2.3.3"
2660 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c"
2661 | dependencies:
2662 | core-util-is "~1.0.0"
2663 | inherits "~2.0.3"
2664 | isarray "~1.0.0"
2665 | process-nextick-args "~1.0.6"
2666 | safe-buffer "~5.1.1"
2667 | string_decoder "~1.0.3"
2668 | util-deprecate "~1.0.1"
2669 |
2670 | readdirp@^2.0.0:
2671 | version "2.1.0"
2672 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
2673 | dependencies:
2674 | graceful-fs "^4.1.2"
2675 | minimatch "^3.0.2"
2676 | readable-stream "^2.0.2"
2677 | set-immediate-shim "^1.0.1"
2678 |
2679 | redent@^1.0.0:
2680 | version "1.0.0"
2681 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
2682 | dependencies:
2683 | indent-string "^2.1.0"
2684 | strip-indent "^1.0.1"
2685 |
2686 | regex-cache@^0.4.2:
2687 | version "0.4.4"
2688 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
2689 | dependencies:
2690 | is-equal-shallow "^0.1.3"
2691 |
2692 | regex-not@^1.0.0:
2693 | version "1.0.0"
2694 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.0.tgz#42f83e39771622df826b02af176525d6a5f157f9"
2695 | dependencies:
2696 | extend-shallow "^2.0.1"
2697 |
2698 | remove-trailing-separator@^1.0.1:
2699 | version "1.1.0"
2700 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
2701 |
2702 | repeat-element@^1.1.2:
2703 | version "1.1.2"
2704 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
2705 |
2706 | repeat-string@^1.5.2, repeat-string@^1.6.1:
2707 | version "1.6.1"
2708 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
2709 |
2710 | repeating@^2.0.0:
2711 | version "2.0.1"
2712 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
2713 | dependencies:
2714 | is-finite "^1.0.0"
2715 |
2716 | request@2.81.0:
2717 | version "2.81.0"
2718 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
2719 | dependencies:
2720 | aws-sign2 "~0.6.0"
2721 | aws4 "^1.2.1"
2722 | caseless "~0.12.0"
2723 | combined-stream "~1.0.5"
2724 | extend "~3.0.0"
2725 | forever-agent "~0.6.1"
2726 | form-data "~2.1.1"
2727 | har-validator "~4.2.1"
2728 | hawk "~3.1.3"
2729 | http-signature "~1.1.0"
2730 | is-typedarray "~1.0.0"
2731 | isstream "~0.1.2"
2732 | json-stringify-safe "~5.0.1"
2733 | mime-types "~2.1.7"
2734 | oauth-sign "~0.8.1"
2735 | performance-now "^0.2.0"
2736 | qs "~6.4.0"
2737 | safe-buffer "^5.0.1"
2738 | stringstream "~0.0.4"
2739 | tough-cookie "~2.3.0"
2740 | tunnel-agent "^0.6.0"
2741 | uuid "^3.0.0"
2742 |
2743 | require-directory@^2.1.1:
2744 | version "2.1.1"
2745 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
2746 |
2747 | require-main-filename@^1.0.1:
2748 | version "1.0.1"
2749 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
2750 |
2751 | requires-port@1.0.x, requires-port@1.x.x, requires-port@~1.0.0:
2752 | version "1.0.0"
2753 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
2754 |
2755 | resolve-cwd@^2.0.0:
2756 | version "2.0.0"
2757 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
2758 | dependencies:
2759 | resolve-from "^3.0.0"
2760 |
2761 | resolve-from@^3.0.0:
2762 | version "3.0.0"
2763 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
2764 |
2765 | resolve-url@^0.2.1:
2766 | version "0.2.1"
2767 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
2768 |
2769 | right-align@^0.1.1:
2770 | version "0.1.3"
2771 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
2772 | dependencies:
2773 | align-text "^0.1.1"
2774 |
2775 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1:
2776 | version "2.6.2"
2777 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
2778 | dependencies:
2779 | glob "^7.0.5"
2780 |
2781 | ripemd160@^2.0.0, ripemd160@^2.0.1:
2782 | version "2.0.1"
2783 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7"
2784 | dependencies:
2785 | hash-base "^2.0.0"
2786 | inherits "^2.0.1"
2787 |
2788 | safe-buffer@5.1.1, 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:
2789 | version "5.1.1"
2790 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
2791 |
2792 | select-hose@^2.0.0:
2793 | version "2.0.0"
2794 | resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca"
2795 |
2796 | selfsigned@^1.9.1:
2797 | version "1.10.1"
2798 | resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.1.tgz#bf8cb7b83256c4551e31347c6311778db99eec52"
2799 | dependencies:
2800 | node-forge "0.6.33"
2801 |
2802 | "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.3.0:
2803 | version "5.4.1"
2804 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
2805 |
2806 | send@0.16.1:
2807 | version "0.16.1"
2808 | resolved "https://registry.yarnpkg.com/send/-/send-0.16.1.tgz#a70e1ca21d1382c11d0d9f6231deb281080d7ab3"
2809 | dependencies:
2810 | debug "2.6.9"
2811 | depd "~1.1.1"
2812 | destroy "~1.0.4"
2813 | encodeurl "~1.0.1"
2814 | escape-html "~1.0.3"
2815 | etag "~1.8.1"
2816 | fresh "0.5.2"
2817 | http-errors "~1.6.2"
2818 | mime "1.4.1"
2819 | ms "2.0.0"
2820 | on-finished "~2.3.0"
2821 | range-parser "~1.2.0"
2822 | statuses "~1.3.1"
2823 |
2824 | serve-index@^1.7.2:
2825 | version "1.9.1"
2826 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239"
2827 | dependencies:
2828 | accepts "~1.3.4"
2829 | batch "0.6.1"
2830 | debug "2.6.9"
2831 | escape-html "~1.0.3"
2832 | http-errors "~1.6.2"
2833 | mime-types "~2.1.17"
2834 | parseurl "~1.3.2"
2835 |
2836 | serve-static@1.13.1:
2837 | version "1.13.1"
2838 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.1.tgz#4c57d53404a761d8f2e7c1e8a18a47dbf278a719"
2839 | dependencies:
2840 | encodeurl "~1.0.1"
2841 | escape-html "~1.0.3"
2842 | parseurl "~1.3.2"
2843 | send "0.16.1"
2844 |
2845 | set-blocking@^2.0.0, set-blocking@~2.0.0:
2846 | version "2.0.0"
2847 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
2848 |
2849 | set-getter@^0.1.0:
2850 | version "0.1.0"
2851 | resolved "https://registry.yarnpkg.com/set-getter/-/set-getter-0.1.0.tgz#d769c182c9d5a51f409145f2fba82e5e86e80376"
2852 | dependencies:
2853 | to-object-path "^0.3.0"
2854 |
2855 | set-immediate-shim@^1.0.1:
2856 | version "1.0.1"
2857 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
2858 |
2859 | set-value@^0.4.3:
2860 | version "0.4.3"
2861 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"
2862 | dependencies:
2863 | extend-shallow "^2.0.1"
2864 | is-extendable "^0.1.1"
2865 | is-plain-object "^2.0.1"
2866 | to-object-path "^0.3.0"
2867 |
2868 | set-value@^2.0.0:
2869 | version "2.0.0"
2870 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274"
2871 | dependencies:
2872 | extend-shallow "^2.0.1"
2873 | is-extendable "^0.1.1"
2874 | is-plain-object "^2.0.3"
2875 | split-string "^3.0.1"
2876 |
2877 | setimmediate@^1.0.4:
2878 | version "1.0.5"
2879 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
2880 |
2881 | setprototypeof@1.0.3:
2882 | version "1.0.3"
2883 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04"
2884 |
2885 | setprototypeof@1.1.0:
2886 | version "1.1.0"
2887 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
2888 |
2889 | sha.js@^2.4.0, sha.js@^2.4.8:
2890 | version "2.4.9"
2891 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d"
2892 | dependencies:
2893 | inherits "^2.0.1"
2894 | safe-buffer "^5.0.1"
2895 |
2896 | shebang-command@^1.2.0:
2897 | version "1.2.0"
2898 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
2899 | dependencies:
2900 | shebang-regex "^1.0.0"
2901 |
2902 | shebang-regex@^1.0.0:
2903 | version "1.0.0"
2904 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
2905 |
2906 | signal-exit@^3.0.0:
2907 | version "3.0.2"
2908 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
2909 |
2910 | snapdragon-node@^2.0.1:
2911 | version "2.1.1"
2912 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
2913 | dependencies:
2914 | define-property "^1.0.0"
2915 | isobject "^3.0.0"
2916 | snapdragon-util "^3.0.1"
2917 |
2918 | snapdragon-util@^3.0.1:
2919 | version "3.0.1"
2920 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
2921 | dependencies:
2922 | kind-of "^3.2.0"
2923 |
2924 | snapdragon@^0.8.1:
2925 | version "0.8.1"
2926 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.1.tgz#e12b5487faded3e3dea0ac91e9400bf75b401370"
2927 | dependencies:
2928 | base "^0.11.1"
2929 | debug "^2.2.0"
2930 | define-property "^0.2.5"
2931 | extend-shallow "^2.0.1"
2932 | map-cache "^0.2.2"
2933 | source-map "^0.5.6"
2934 | source-map-resolve "^0.5.0"
2935 | use "^2.0.0"
2936 |
2937 | sntp@1.x.x:
2938 | version "1.0.9"
2939 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
2940 | dependencies:
2941 | hoek "2.x.x"
2942 |
2943 | sockjs-client@1.1.4:
2944 | version "1.1.4"
2945 | resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.4.tgz#5babe386b775e4cf14e7520911452654016c8b12"
2946 | dependencies:
2947 | debug "^2.6.6"
2948 | eventsource "0.1.6"
2949 | faye-websocket "~0.11.0"
2950 | inherits "^2.0.1"
2951 | json3 "^3.3.2"
2952 | url-parse "^1.1.8"
2953 |
2954 | sockjs@0.3.19:
2955 | version "0.3.19"
2956 | resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.19.tgz#d976bbe800af7bd20ae08598d582393508993c0d"
2957 | dependencies:
2958 | faye-websocket "^0.10.0"
2959 | uuid "^3.0.1"
2960 |
2961 | source-list-map@^2.0.0:
2962 | version "2.0.0"
2963 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085"
2964 |
2965 | source-map-resolve@^0.5.0:
2966 | version "0.5.1"
2967 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a"
2968 | dependencies:
2969 | atob "^2.0.0"
2970 | decode-uri-component "^0.2.0"
2971 | resolve-url "^0.2.1"
2972 | source-map-url "^0.4.0"
2973 | urix "^0.1.0"
2974 |
2975 | source-map-url@^0.4.0:
2976 | version "0.4.0"
2977 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
2978 |
2979 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1:
2980 | version "0.5.7"
2981 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
2982 |
2983 | source-map@~0.6.1:
2984 | version "0.6.1"
2985 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
2986 |
2987 | spdx-correct@~1.0.0:
2988 | version "1.0.2"
2989 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
2990 | dependencies:
2991 | spdx-license-ids "^1.0.2"
2992 |
2993 | spdx-expression-parse@~1.0.0:
2994 | version "1.0.4"
2995 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
2996 |
2997 | spdx-license-ids@^1.0.2:
2998 | version "1.2.2"
2999 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
3000 |
3001 | spdy-transport@^2.0.18:
3002 | version "2.0.20"
3003 | resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-2.0.20.tgz#735e72054c486b2354fe89e702256004a39ace4d"
3004 | dependencies:
3005 | debug "^2.6.8"
3006 | detect-node "^2.0.3"
3007 | hpack.js "^2.1.6"
3008 | obuf "^1.1.1"
3009 | readable-stream "^2.2.9"
3010 | safe-buffer "^5.0.1"
3011 | wbuf "^1.7.2"
3012 |
3013 | spdy@^3.4.1:
3014 | version "3.4.7"
3015 | resolved "https://registry.yarnpkg.com/spdy/-/spdy-3.4.7.tgz#42ff41ece5cc0f99a3a6c28aabb73f5c3b03acbc"
3016 | dependencies:
3017 | debug "^2.6.8"
3018 | handle-thing "^1.2.5"
3019 | http-deceiver "^1.2.7"
3020 | safe-buffer "^5.0.1"
3021 | select-hose "^2.0.0"
3022 | spdy-transport "^2.0.18"
3023 |
3024 | split-string@^3.0.1, split-string@^3.0.2:
3025 | version "3.1.0"
3026 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
3027 | dependencies:
3028 | extend-shallow "^3.0.0"
3029 |
3030 | sshpk@^1.7.0:
3031 | version "1.13.1"
3032 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
3033 | dependencies:
3034 | asn1 "~0.2.3"
3035 | assert-plus "^1.0.0"
3036 | dashdash "^1.12.0"
3037 | getpass "^0.1.1"
3038 | optionalDependencies:
3039 | bcrypt-pbkdf "^1.0.0"
3040 | ecc-jsbn "~0.1.1"
3041 | jsbn "~0.1.0"
3042 | tweetnacl "~0.14.0"
3043 |
3044 | static-extend@^0.1.1:
3045 | version "0.1.2"
3046 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
3047 | dependencies:
3048 | define-property "^0.2.5"
3049 | object-copy "^0.1.0"
3050 |
3051 | "statuses@>= 1.3.1 < 2":
3052 | version "1.4.0"
3053 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087"
3054 |
3055 | statuses@~1.3.1:
3056 | version "1.3.1"
3057 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e"
3058 |
3059 | stream-browserify@^2.0.1:
3060 | version "2.0.1"
3061 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"
3062 | dependencies:
3063 | inherits "~2.0.1"
3064 | readable-stream "^2.0.2"
3065 |
3066 | stream-http@^2.7.2:
3067 | version "2.7.2"
3068 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad"
3069 | dependencies:
3070 | builtin-status-codes "^3.0.0"
3071 | inherits "^2.0.1"
3072 | readable-stream "^2.2.6"
3073 | to-arraybuffer "^1.0.0"
3074 | xtend "^4.0.0"
3075 |
3076 | string-width@^1.0.1, string-width@^1.0.2:
3077 | version "1.0.2"
3078 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
3079 | dependencies:
3080 | code-point-at "^1.0.0"
3081 | is-fullwidth-code-point "^1.0.0"
3082 | strip-ansi "^3.0.0"
3083 |
3084 | string-width@^2.0.0:
3085 | version "2.1.1"
3086 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
3087 | dependencies:
3088 | is-fullwidth-code-point "^2.0.0"
3089 | strip-ansi "^4.0.0"
3090 |
3091 | string_decoder@^1.0.0, string_decoder@~1.0.3:
3092 | version "1.0.3"
3093 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
3094 | dependencies:
3095 | safe-buffer "~5.1.0"
3096 |
3097 | stringstream@~0.0.4:
3098 | version "0.0.5"
3099 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
3100 |
3101 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
3102 | version "3.0.1"
3103 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
3104 | dependencies:
3105 | ansi-regex "^2.0.0"
3106 |
3107 | strip-ansi@^4.0.0:
3108 | version "4.0.0"
3109 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
3110 | dependencies:
3111 | ansi-regex "^3.0.0"
3112 |
3113 | strip-bom@^2.0.0:
3114 | version "2.0.0"
3115 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
3116 | dependencies:
3117 | is-utf8 "^0.2.0"
3118 |
3119 | strip-bom@^3.0.0:
3120 | version "3.0.0"
3121 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
3122 |
3123 | strip-eof@^1.0.0:
3124 | version "1.0.0"
3125 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
3126 |
3127 | strip-indent@^1.0.1:
3128 | version "1.0.1"
3129 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
3130 | dependencies:
3131 | get-stdin "^4.0.1"
3132 |
3133 | strip-json-comments@~2.0.1:
3134 | version "2.0.1"
3135 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
3136 |
3137 | supports-color@^4.0.0, supports-color@^4.2.1:
3138 | version "4.5.0"
3139 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b"
3140 | dependencies:
3141 | has-flag "^2.0.0"
3142 |
3143 | supports-color@^5.1.0:
3144 | version "5.1.0"
3145 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.1.0.tgz#058a021d1b619f7ddf3980d712ea3590ce7de3d5"
3146 | dependencies:
3147 | has-flag "^2.0.0"
3148 |
3149 | tapable@^0.2.7:
3150 | version "0.2.8"
3151 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22"
3152 |
3153 | tar-pack@^3.4.0:
3154 | version "3.4.1"
3155 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f"
3156 | dependencies:
3157 | debug "^2.2.0"
3158 | fstream "^1.0.10"
3159 | fstream-ignore "^1.0.5"
3160 | once "^1.3.3"
3161 | readable-stream "^2.1.4"
3162 | rimraf "^2.5.1"
3163 | tar "^2.2.1"
3164 | uid-number "^0.0.6"
3165 |
3166 | tar@^2.2.1:
3167 | version "2.2.1"
3168 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
3169 | dependencies:
3170 | block-stream "*"
3171 | fstream "^1.0.2"
3172 | inherits "2"
3173 |
3174 | thunky@^0.1.0:
3175 | version "0.1.0"
3176 | resolved "https://registry.yarnpkg.com/thunky/-/thunky-0.1.0.tgz#bf30146824e2b6e67b0f2d7a4ac8beb26908684e"
3177 |
3178 | time-stamp@^2.0.0:
3179 | version "2.0.0"
3180 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-2.0.0.tgz#95c6a44530e15ba8d6f4a3ecb8c3a3fac46da357"
3181 |
3182 | timers-browserify@^2.0.4:
3183 | version "2.0.4"
3184 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6"
3185 | dependencies:
3186 | setimmediate "^1.0.4"
3187 |
3188 | to-arraybuffer@^1.0.0:
3189 | version "1.0.1"
3190 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
3191 |
3192 | to-object-path@^0.3.0:
3193 | version "0.3.0"
3194 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
3195 | dependencies:
3196 | kind-of "^3.0.2"
3197 |
3198 | to-regex-range@^2.1.0:
3199 | version "2.1.1"
3200 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
3201 | dependencies:
3202 | is-number "^3.0.0"
3203 | repeat-string "^1.6.1"
3204 |
3205 | to-regex@^3.0.1:
3206 | version "3.0.1"
3207 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.1.tgz#15358bee4a2c83bd76377ba1dc049d0f18837aae"
3208 | dependencies:
3209 | define-property "^0.2.5"
3210 | extend-shallow "^2.0.1"
3211 | regex-not "^1.0.0"
3212 |
3213 | tough-cookie@~2.3.0:
3214 | version "2.3.3"
3215 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561"
3216 | dependencies:
3217 | punycode "^1.4.1"
3218 |
3219 | trim-newlines@^1.0.0:
3220 | version "1.0.0"
3221 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
3222 |
3223 | ts-loader@^3.5.0:
3224 | version "3.5.0"
3225 | resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-3.5.0.tgz#151d004dcddb4cf8e381a3bf9d6b74c2d957a9c0"
3226 | dependencies:
3227 | chalk "^2.3.0"
3228 | enhanced-resolve "^3.0.0"
3229 | loader-utils "^1.0.2"
3230 | micromatch "^3.1.4"
3231 | semver "^5.0.1"
3232 |
3233 | tslib@^1.9.0:
3234 | version "1.9.0"
3235 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8"
3236 |
3237 | tty-browserify@0.0.0:
3238 | version "0.0.0"
3239 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
3240 |
3241 | tunnel-agent@^0.6.0:
3242 | version "0.6.0"
3243 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
3244 | dependencies:
3245 | safe-buffer "^5.0.1"
3246 |
3247 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
3248 | version "0.14.5"
3249 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
3250 |
3251 | type-is@~1.6.15:
3252 | version "1.6.15"
3253 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410"
3254 | dependencies:
3255 | media-typer "0.3.0"
3256 | mime-types "~2.1.15"
3257 |
3258 | typescript@^2.6.2:
3259 | version "2.6.2"
3260 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.6.2.tgz#3c5b6fd7f6de0914269027f03c0946758f7673a4"
3261 |
3262 | uglify-js@^2.8.29:
3263 | version "2.8.29"
3264 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
3265 | dependencies:
3266 | source-map "~0.5.1"
3267 | yargs "~3.10.0"
3268 | optionalDependencies:
3269 | uglify-to-browserify "~1.0.0"
3270 |
3271 | uglify-to-browserify@~1.0.0:
3272 | version "1.0.2"
3273 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
3274 |
3275 | uglifyjs-webpack-plugin@^0.4.6:
3276 | version "0.4.6"
3277 | resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309"
3278 | dependencies:
3279 | source-map "^0.5.6"
3280 | uglify-js "^2.8.29"
3281 | webpack-sources "^1.0.1"
3282 |
3283 | uid-number@^0.0.6:
3284 | version "0.0.6"
3285 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
3286 |
3287 | union-value@^1.0.0:
3288 | version "1.0.0"
3289 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4"
3290 | dependencies:
3291 | arr-union "^3.1.0"
3292 | get-value "^2.0.6"
3293 | is-extendable "^0.1.1"
3294 | set-value "^0.4.3"
3295 |
3296 | unpipe@1.0.0, unpipe@~1.0.0:
3297 | version "1.0.0"
3298 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
3299 |
3300 | unset-value@^1.0.0:
3301 | version "1.0.0"
3302 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
3303 | dependencies:
3304 | has-value "^0.3.1"
3305 | isobject "^3.0.0"
3306 |
3307 | urix@^0.1.0:
3308 | version "0.1.0"
3309 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
3310 |
3311 | url-parse@1.0.x:
3312 | version "1.0.5"
3313 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.0.5.tgz#0854860422afdcfefeb6c965c662d4800169927b"
3314 | dependencies:
3315 | querystringify "0.0.x"
3316 | requires-port "1.0.x"
3317 |
3318 | url-parse@^1.1.8:
3319 | version "1.2.0"
3320 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.2.0.tgz#3a19e8aaa6d023ddd27dcc44cb4fc8f7fec23986"
3321 | dependencies:
3322 | querystringify "~1.0.0"
3323 | requires-port "~1.0.0"
3324 |
3325 | url@^0.11.0:
3326 | version "0.11.0"
3327 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
3328 | dependencies:
3329 | punycode "1.3.2"
3330 | querystring "0.2.0"
3331 |
3332 | use@^2.0.0:
3333 | version "2.0.2"
3334 | resolved "https://registry.yarnpkg.com/use/-/use-2.0.2.tgz#ae28a0d72f93bf22422a18a2e379993112dec8e8"
3335 | dependencies:
3336 | define-property "^0.2.5"
3337 | isobject "^3.0.0"
3338 | lazy-cache "^2.0.2"
3339 |
3340 | util-deprecate@~1.0.1:
3341 | version "1.0.2"
3342 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3343 |
3344 | util@0.10.3, util@^0.10.3:
3345 | version "0.10.3"
3346 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
3347 | dependencies:
3348 | inherits "2.0.1"
3349 |
3350 | utils-merge@1.0.1:
3351 | version "1.0.1"
3352 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
3353 |
3354 | uuid@^3.0.0, uuid@^3.0.1:
3355 | version "3.1.0"
3356 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
3357 |
3358 | validate-npm-package-license@^3.0.1:
3359 | version "3.0.1"
3360 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
3361 | dependencies:
3362 | spdx-correct "~1.0.0"
3363 | spdx-expression-parse "~1.0.0"
3364 |
3365 | vary@~1.1.2:
3366 | version "1.1.2"
3367 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
3368 |
3369 | verror@1.10.0:
3370 | version "1.10.0"
3371 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
3372 | dependencies:
3373 | assert-plus "^1.0.0"
3374 | core-util-is "1.0.2"
3375 | extsprintf "^1.2.0"
3376 |
3377 | vm-browserify@0.0.4:
3378 | version "0.0.4"
3379 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"
3380 | dependencies:
3381 | indexof "0.0.1"
3382 |
3383 | watchpack@^1.4.0:
3384 | version "1.4.0"
3385 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac"
3386 | dependencies:
3387 | async "^2.1.2"
3388 | chokidar "^1.7.0"
3389 | graceful-fs "^4.1.2"
3390 |
3391 | wbuf@^1.1.0, wbuf@^1.7.2:
3392 | version "1.7.2"
3393 | resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.2.tgz#d697b99f1f59512df2751be42769c1580b5801fe"
3394 | dependencies:
3395 | minimalistic-assert "^1.0.0"
3396 |
3397 | webpack-dev-middleware@1.12.2:
3398 | version "1.12.2"
3399 | resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.12.2.tgz#f8fc1120ce3b4fc5680ceecb43d777966b21105e"
3400 | dependencies:
3401 | memory-fs "~0.4.1"
3402 | mime "^1.5.0"
3403 | path-is-absolute "^1.0.0"
3404 | range-parser "^1.0.3"
3405 | time-stamp "^2.0.0"
3406 |
3407 | webpack-dev-server@^2.10.1:
3408 | version "2.10.1"
3409 | resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-2.10.1.tgz#a9768375346e62155860fe3cef3d4d641b24273e"
3410 | dependencies:
3411 | ansi-html "0.0.7"
3412 | array-includes "^3.0.3"
3413 | bonjour "^3.5.0"
3414 | chokidar "^2.0.0"
3415 | compression "^1.5.2"
3416 | connect-history-api-fallback "^1.3.0"
3417 | debug "^3.1.0"
3418 | del "^3.0.0"
3419 | express "^4.16.2"
3420 | html-entities "^1.2.0"
3421 | http-proxy-middleware "~0.17.4"
3422 | import-local "^1.0.0"
3423 | internal-ip "1.2.0"
3424 | ip "^1.1.5"
3425 | killable "^1.0.0"
3426 | loglevel "^1.4.1"
3427 | opn "^5.1.0"
3428 | portfinder "^1.0.9"
3429 | selfsigned "^1.9.1"
3430 | serve-index "^1.7.2"
3431 | sockjs "0.3.19"
3432 | sockjs-client "1.1.4"
3433 | spdy "^3.4.1"
3434 | strip-ansi "^4.0.0"
3435 | supports-color "^5.1.0"
3436 | webpack-dev-middleware "1.12.2"
3437 | yargs "6.6.0"
3438 |
3439 | webpack-sources@^1.0.1:
3440 | version "1.1.0"
3441 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54"
3442 | dependencies:
3443 | source-list-map "^2.0.0"
3444 | source-map "~0.6.1"
3445 |
3446 | webpack@^3.10.0:
3447 | version "3.10.0"
3448 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.10.0.tgz#5291b875078cf2abf42bdd23afe3f8f96c17d725"
3449 | dependencies:
3450 | acorn "^5.0.0"
3451 | acorn-dynamic-import "^2.0.0"
3452 | ajv "^5.1.5"
3453 | ajv-keywords "^2.0.0"
3454 | async "^2.1.2"
3455 | enhanced-resolve "^3.4.0"
3456 | escope "^3.6.0"
3457 | interpret "^1.0.0"
3458 | json-loader "^0.5.4"
3459 | json5 "^0.5.1"
3460 | loader-runner "^2.3.0"
3461 | loader-utils "^1.1.0"
3462 | memory-fs "~0.4.1"
3463 | mkdirp "~0.5.0"
3464 | node-libs-browser "^2.0.0"
3465 | source-map "^0.5.3"
3466 | supports-color "^4.2.1"
3467 | tapable "^0.2.7"
3468 | uglifyjs-webpack-plugin "^0.4.6"
3469 | watchpack "^1.4.0"
3470 | webpack-sources "^1.0.1"
3471 | yargs "^8.0.2"
3472 |
3473 | websocket-driver@>=0.5.1:
3474 | version "0.7.0"
3475 | resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.0.tgz#0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb"
3476 | dependencies:
3477 | http-parser-js ">=0.4.0"
3478 | websocket-extensions ">=0.1.1"
3479 |
3480 | websocket-extensions@>=0.1.1:
3481 | version "0.1.3"
3482 | resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29"
3483 |
3484 | which-module@^1.0.0:
3485 | version "1.0.0"
3486 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f"
3487 |
3488 | which-module@^2.0.0:
3489 | version "2.0.0"
3490 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
3491 |
3492 | which@^1.2.9:
3493 | version "1.3.0"
3494 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
3495 | dependencies:
3496 | isexe "^2.0.0"
3497 |
3498 | wide-align@^1.1.0:
3499 | version "1.1.2"
3500 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
3501 | dependencies:
3502 | string-width "^1.0.2"
3503 |
3504 | window-size@0.1.0:
3505 | version "0.1.0"
3506 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
3507 |
3508 | wordwrap@0.0.2:
3509 | version "0.0.2"
3510 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
3511 |
3512 | wrap-ansi@^2.0.0:
3513 | version "2.1.0"
3514 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
3515 | dependencies:
3516 | string-width "^1.0.1"
3517 | strip-ansi "^3.0.1"
3518 |
3519 | wrappy@1:
3520 | version "1.0.2"
3521 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3522 |
3523 | xtend@^4.0.0:
3524 | version "4.0.1"
3525 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
3526 |
3527 | y18n@^3.2.1:
3528 | version "3.2.1"
3529 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
3530 |
3531 | yallist@^2.1.2:
3532 | version "2.1.2"
3533 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
3534 |
3535 | yargs-parser@^4.2.0:
3536 | version "4.2.1"
3537 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c"
3538 | dependencies:
3539 | camelcase "^3.0.0"
3540 |
3541 | yargs-parser@^7.0.0:
3542 | version "7.0.0"
3543 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
3544 | dependencies:
3545 | camelcase "^4.1.0"
3546 |
3547 | yargs@6.6.0:
3548 | version "6.6.0"
3549 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208"
3550 | dependencies:
3551 | camelcase "^3.0.0"
3552 | cliui "^3.2.0"
3553 | decamelize "^1.1.1"
3554 | get-caller-file "^1.0.1"
3555 | os-locale "^1.4.0"
3556 | read-pkg-up "^1.0.1"
3557 | require-directory "^2.1.1"
3558 | require-main-filename "^1.0.1"
3559 | set-blocking "^2.0.0"
3560 | string-width "^1.0.2"
3561 | which-module "^1.0.0"
3562 | y18n "^3.2.1"
3563 | yargs-parser "^4.2.0"
3564 |
3565 | yargs@^8.0.2:
3566 | version "8.0.2"
3567 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360"
3568 | dependencies:
3569 | camelcase "^4.1.0"
3570 | cliui "^3.2.0"
3571 | decamelize "^1.1.1"
3572 | get-caller-file "^1.0.1"
3573 | os-locale "^2.0.0"
3574 | read-pkg-up "^2.0.0"
3575 | require-directory "^2.1.1"
3576 | require-main-filename "^1.0.1"
3577 | set-blocking "^2.0.0"
3578 | string-width "^2.0.0"
3579 | which-module "^2.0.0"
3580 | y18n "^3.2.1"
3581 | yargs-parser "^7.0.0"
3582 |
3583 | yargs@~3.10.0:
3584 | version "3.10.0"
3585 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
3586 | dependencies:
3587 | camelcase "^1.0.2"
3588 | cliui "^2.1.0"
3589 | decamelize "^1.0.0"
3590 | window-size "0.1.0"
3591 |
--------------------------------------------------------------------------------