Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
a49c1f55
Commit
a49c1f55
authored
Oct 21, 2018
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Strophe.js, strophe plugins and backbone.browserStorage
parent
a7577930
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
846 additions
and
1081 deletions
+846
-1081
.travis.yml
.travis.yml
+1
-1
dist/converse.js
dist/converse.js
+371
-511
package-lock.json
package-lock.json
+463
-553
package.json
package.json
+7
-9
src/converse-core.js
src/converse-core.js
+1
-1
src/converse-mam.js
src/converse-mam.js
+1
-1
src/converse-ping.js
src/converse-ping.js
+1
-1
src/utils/core.js
src/utils/core.js
+1
-1
webpack.config.js
webpack.config.js
+0
-3
No files found.
.travis.yml
View file @
a49c1f55
...
...
@@ -6,7 +6,7 @@ cache:
addons
:
chrome
:
stable
node_js
:
-
6
-
"
9"
install
:
make stamp-npm
before_script
:
make serve_bg
script
:
make check
...
...
dist/converse.js
View file @
a49c1f55
...
...
@@ -86,272 +86,6 @@
/************************************************************************/
/******/ ({
/***/ "../Backbone.browserStorage/backbone.browserStorage.js":
/*!*************************************************************!*\
!*** ../Backbone.browserStorage/backbone.browserStorage.js ***!
\*************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/**
* Backbone localStorage and sessionStorage Adapter
* Version 0.0.3
*
* https://github.com/jcbrand/Backbone.browserStorage
*/
(function (root, factory) {
if (true) {
module.exports = factory(__webpack_require__(/*! backbone */ "./node_modules/backbone/backbone.js"), __webpack_require__(/*! underscore */ "./src/underscore-shim.js"));
} else {}
})(void 0, function (Backbone, _) {
// A simple module to replace `Backbone.sync` with *browser storage*-based
// persistence. Models are given GUIDS, and saved into a JSON object. Simple
// as that.
// Hold reference to Underscore.js and Backbone.js in the closure in order
// to make things work even if they are removed from the global namespace
// Generate four random hex digits.
function S4() {
return ((1 + Math.random()) * 0x10000 | 0).toString(16).substring(1);
} // Generate a pseudo-GUID by concatenating random hexadecimal.
function guid() {
return S4() + S4() + "-" + S4() + "-" + S4() + "-" + S4() + "-" + S4() + S4() + S4();
}
function contains(array, item) {
var i = array.length;
while (i--) if (array[i] === item) return true;
return false;
}
function extend(obj, props) {
for (var key in props) {
obj[key] = props[key];
}
return obj;
}
function _browserStorage(name, serializer, type) {
var _store;
if (type === 'local' && !window.localStorage) {
throw "Backbone.browserStorage: Environment does not support localStorage.";
} else if (type === 'session' && !window.sessionStorage) {
throw "Backbone.browserStorage: Environment does not support sessionStorage.";
}
this.name = name;
this.serializer = serializer || {
serialize: function serialize(item) {
return _.isObject(item) ? JSON.stringify(item) : item;
},
// fix for "illegal access" error on Android when JSON.parse is passed null
deserialize: function deserialize(data) {
return data && JSON.parse(data);
}
};
if (type === 'session') {
this.store = window.sessionStorage;
} else if (type === 'local') {
this.store = window.localStorage;
} else {
throw "Backbone.browserStorage: No storage type was specified";
}
_store = this.store.getItem(this.name);
this.records = _store && _store.split(",") || [];
} // Our Store is represented by a single JS object in *localStorage* or *sessionStorage*.
// Create it with a meaningful name, like the name you'd give a table.
Backbone.BrowserStorage = {
local: function local(name, serializer) {
return _browserStorage.bind(this, name, serializer, 'local')();
},
session: function session(name, serializer) {
return _browserStorage.bind(this, name, serializer, 'session')();
}
}; // The browser's local and session stores will be extended with this obj.
var _extension = {
// Save the current state of the **Store**
save: function save() {
this.store.setItem(this.name, this.records.join(","));
},
// Add a model, giving it a (hopefully)-unique GUID, if it doesn't already
// have an id of it's own.
create: function create(model) {
if (!model.id) {
model.id = guid();
model.set(model.idAttribute, model.id);
}
this.store.setItem(this._itemName(model.id), this.serializer.serialize(model));
this.records.push(model.id.toString());
this.save();
return this.find(model);
},
// Update a model by replacing its copy in `this.data`.
update: function update(model) {
this.store.setItem(this._itemName(model.id), this.serializer.serialize(model));
var modelId = model.id.toString();
if (!contains(this.records, modelId)) {
this.records.push(modelId);
this.save();
}
return this.find(model);
},
// Retrieve a model from `this.data` by id.
find: function find(model) {
return this.serializer.deserialize(this.store.getItem(this._itemName(model.id)));
},
// Return the array of all models currently in storage.
findAll: function findAll() {
var result = [];
for (var i = 0, id, data; i < this.records.length; i++) {
id = this.records[i];
data = this.serializer.deserialize(this.store.getItem(this._itemName(id)));
if (data !== null) result.push(data);
}
return result;
},
// Delete a model from `this.data`, returning it.
destroy: function destroy(model) {
this.store.removeItem(this._itemName(model.id));
var modelId = model.id.toString();
for (var i = 0, id; i < this.records.length; i++) {
if (this.records[i] === modelId) {
this.records.splice(i, 1);
}
}
this.save();
return model;
},
browserStorage: function browserStorage() {
return {
session: sessionStorage,
local: localStorage
};
},
// Clear browserStorage for specific collection.
_clear: function _clear() {
var local = this.store,
itemRe; // Escape special regex characters in id.
itemRe = new RegExp("^" + this.name.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&") + "-"); // Remove id-tracking item (e.g., "foo").
local.removeItem(this.name); // Match all data items (e.g., "foo-ID") and remove.
for (var k in local) {
if (itemRe.test(k)) {
local.removeItem(k);
}
}
this.records.length = 0;
},
// Size of browserStorage.
_storageSize: function _storageSize() {
return this.store.length;
},
_itemName: function _itemName(id) {
return this.name + "-" + id;
}
};
extend(Backbone.BrowserStorage.session.prototype, _extension);
extend(Backbone.BrowserStorage.local.prototype, _extension); // localSync delegate to the model or collection's
// *browserStorage* property, which should be an instance of `Store`.
// window.Store.sync and Backbone.localSync is deprecated, use Backbone.BrowserStorage.sync instead
Backbone.BrowserStorage.sync = Backbone.localSync = function (method, model, options) {
var store = model.browserStorage || model.collection.browserStorage;
var resp, errorMessage; //If $ is having Deferred - use it.
var syncDfd = Backbone.$ ? Backbone.$.Deferred && Backbone.$.Deferred() : Backbone.Deferred && Backbone.Deferred();
try {
switch (method) {
case "read":
resp = model.id !== undefined ? store.find(model) : store.findAll();
break;
case "create":
resp = store.create(model);
break;
case "update":
resp = store.update(model);
break;
case "delete":
resp = store.destroy(model);
break;
}
} catch (error) {
if (error.code === 22 && store._storageSize() === 0) errorMessage = "Private browsing is unsupported";else errorMessage = error.message;
}
if (resp) {
if (options && options.success) {
options.success(resp);
}
if (syncDfd) {
syncDfd.resolve(resp);
}
} else {
errorMessage = errorMessage ? errorMessage : "Record Not Found";
if (options && options.error) {
options.error(errorMessage);
}
if (syncDfd) {
syncDfd.reject(errorMessage);
}
} // add compatibility with $.ajax
// always execute callback for success and error
if (options && options.complete) options.complete(resp);
return syncDfd && syncDfd.promise();
};
Backbone.ajaxSync = Backbone.sync;
Backbone.getSyncMethod = function (model) {
if (model.browserStorage || model.collection && model.collection.browserStorage) {
return Backbone.localSync;
}
return Backbone.ajaxSync;
}; // Override 'Backbone.sync' to default to localSync,
// the original 'Backbone.sync' is still available in 'Backbone.ajaxSync'
Backbone.sync = function (method, model, options) {
return Backbone.getSyncMethod(model).apply(this, [method, model, options]);
};
return Backbone.BrowserStorage;
});
/***/ }),
/***/ "./3rdparty/lodash.fp.js":
/*!*******************************!*\
!*** ./3rdparty/lodash.fp.js ***!
...
...
@@ -359,12 +93,9 @@
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
(function webpackUniversalModuleDefinition(root, factory) {
if (true) module.exports = factory();else {}
})(
void 0
, function () {
})(
this
, function () {
return (
/******/
function (modules) {
...
...
@@ -1988,6 +1719,275 @@ return _;
/*** EXPORTS FROM exports-loader ***/
module.exports = Awesomplete;
/***/ }),
/***/ "./node_modules/backbone.browserStorage/backbone.browserStorage.js":
/*!*************************************************************************!*\
!*** ./node_modules/backbone.browserStorage/backbone.browserStorage.js ***!
\*************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
/**
* Backbone localStorage and sessionStorage Adapter
* Version 0.0.3
*
* https://github.com/jcbrand/Backbone.browserStorage
*/
(function (root, factory) {
if (true) {
module.exports = factory(__webpack_require__(/*! backbone */ "./node_modules/backbone/backbone.js"), __webpack_require__(/*! underscore */ "./src/underscore-shim.js"));
} else {}
}(this, function(Backbone, _) {
// A simple module to replace `Backbone.sync` with *browser storage*-based
// persistence. Models are given GUIDS, and saved into a JSON object. Simple
// as that.
// Hold reference to Underscore.js and Backbone.js in the closure in order
// to make things work even if they are removed from the global namespace
// Generate four random hex digits.
function S4() {
return (((1+Math.random())*0x10000)|0).toString(16).substring(1);
}
// Generate a pseudo-GUID by concatenating random hexadecimal.
function guid() {
return (S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4());
}
function contains(array, item) {
var i = array.length;
while (i--) if (array[i] === item) return true;
return false;
}
function extend(obj, props) {
for (var key in props) { obj[key] = props[key]; }
return obj;
}
function _browserStorage (name, serializer, type) {
var _store;
if (type === 'local' && !window.localStorage ) {
throw "Backbone.browserStorage: Environment does not support localStorage.";
} else if (type === 'session' && !window.sessionStorage ) {
throw "Backbone.browserStorage: Environment does not support sessionStorage.";
}
this.name = name;
this.serializer = serializer || {
serialize: function(item) {
return _.isObject(item) ? JSON.stringify(item) : item;
},
// fix for "illegal access" error on Android when JSON.parse is passed null
deserialize: function (data) {
return data && JSON.parse(data);
}
};
if (type === 'session') {
this.store = window.sessionStorage;
} else if (type === 'local') {
this.store = window.localStorage;
} else {
throw "Backbone.browserStorage: No storage type was specified";
}
_store = this.store.getItem(this.name);
this.records = (_store && _store.split(",")) || [];
}
// Our Store is represented by a single JS object in *localStorage* or *sessionStorage*.
// Create it with a meaningful name, like the name you'd give a table.
Backbone.BrowserStorage = {
local: function (name, serializer) {
return _browserStorage.bind(this, name, serializer, 'local')();
},
session: function (name, serializer) {
return _browserStorage.bind(this, name, serializer, 'session')();
}
};
// The browser's local and session stores will be extended with this obj.
var _extension = {
// Save the current state of the **Store**
save: function() {
this.store.setItem(this.name, this.records.join(","));
},
// Add a model, giving it a (hopefully)-unique GUID, if it doesn't already
// have an id of it's own.
create: function(model) {
if (!model.id) {
model.id = guid();
model.set(model.idAttribute, model.id);
}
this.store.setItem(this._itemName(model.id), this.serializer.serialize(model));
this.records.push(model.id.toString());
this.save();
return this.find(model);
},
// Update a model by replacing its copy in `this.data`.
update: function(model) {
this.store.setItem(this._itemName(model.id), this.serializer.serialize(model));
var modelId = model.id.toString();
if (!contains(this.records, modelId)) {
this.records.push(modelId);
this.save();
}
return this.find(model);
},
// Retrieve a model from `this.data` by id.
find: function(model) {
return this.serializer.deserialize(this.store.getItem(this._itemName(model.id)));
},
// Return the array of all models currently in storage.
findAll: function() {
var result = [];
for (var i = 0, id, data; i < this.records.length; i++) {
id = this.records[i];
data = this.serializer.deserialize(this.store.getItem(this._itemName(id)));
if (data !== null) result.push(data);
}
return result;
},
// Delete a model from `this.data`, returning it.
destroy: function(model) {
this.store.removeItem(this._itemName(model.id));
var modelId = model.id.toString();
for (var i = 0, id; i < this.records.length; i++) {
if (this.records[i] === modelId) {
this.records.splice(i, 1);
}
}
this.save();
return model;
},
browserStorage: function() {
return {
session: sessionStorage,
local: localStorage
};
},
// Clear browserStorage for specific collection.
_clear: function() {
var local = this.store, itemRe;
// Escape special regex characters in id.
itemRe = new RegExp("^" + this.name.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&") + "-");
// Remove id-tracking item (e.g., "foo").
local.removeItem(this.name);
// Match all data items (e.g., "foo-ID") and remove.
for (var k in local) {
if (itemRe.test(k)) {
local.removeItem(k);
}
}
this.records.length = 0;
},
// Size of browserStorage.
_storageSize: function() {
return this.store.length;
},
_itemName: function(id) {
return this.name+"-"+id;
}
};
extend(Backbone.BrowserStorage.session.prototype, _extension);
extend(Backbone.BrowserStorage.local.prototype, _extension);
// localSync delegate to the model or collection's
// *browserStorage* property, which should be an instance of `Store`.
// window.Store.sync and Backbone.localSync is deprecated, use Backbone.BrowserStorage.sync instead
Backbone.BrowserStorage.sync = Backbone.localSync = function(method, model, options) {
var store = model.browserStorage || model.collection.browserStorage;
var resp, errorMessage;
//If $ is having Deferred - use it.
var syncDfd = Backbone.$ ?
(Backbone.$.Deferred && Backbone.$.Deferred()) :
(Backbone.Deferred && Backbone.Deferred());
try {
switch (method) {
case "read":
resp = model.id !== undefined ? store.find(model) : store.findAll();
break;
case "create":
resp = store.create(model);
break;
case "update":
resp = store.update(model);
break;
case "delete":
resp = store.destroy(model);
break;
}
} catch(error) {
if (error.code === 22 && store._storageSize() === 0)
errorMessage = "Private browsing is unsupported";
else
errorMessage = error.message;
}
if (resp) {
if (options && options.success) {
options.success(resp);
}
if (syncDfd) {
syncDfd.resolve(resp);
}
} else {
errorMessage = errorMessage ? errorMessage : "Record Not Found";
if (options && options.error) {
options.error(errorMessage);
}
if (syncDfd) {
syncDfd.reject(errorMessage);
}
}
// add compatibility with $.ajax
// always execute callback for success and error
if (options && options.complete) options.complete(resp);
return syncDfd && syncDfd.promise();
};
Backbone.ajaxSync = Backbone.sync;
Backbone.getSyncMethod = function(model) {
if(model.browserStorage || (model.collection && model.collection.browserStorage)) {
return Backbone.localSync;
}
return Backbone.ajaxSync;
};
// Override 'Backbone.sync' to default to localSync,
// the original 'Backbone.sync' is still available in 'Backbone.ajaxSync'
Backbone.sync = function(method, model, options) {
return Backbone.getSyncMethod(model).apply(this, [method, model, options]);
};
return Backbone.BrowserStorage;
}));
/***/ }),
/***/ "./node_modules/backbone.nativeview/backbone.nativeview.js":
...
...
@@ -48550,7 +48550,7 @@ function $pres(attrs) {
var Strophe = {
/** Constant: VERSION */
VERSION: "
@VERSION@
",
VERSION: "
1.3.0
",
/** Constants: XMPP Namespace Constants
* Common namespace constants from the XMPP RFCs and XEPs.
...
...
@@ -53437,7 +53437,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*
if (true) {
// AMD. Register as an anonymous module.
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
__webpack_require__(/*! strophe */ "./node_modules/strophe.js/dist/strophe.js")
__webpack_require__(/*! strophe
.js
*/ "./node_modules/strophe.js/dist/strophe.js")
], __WEBPACK_AMD_DEFINE_RESULT__ = (function (Strophe) {
factory(
Strophe.Strophe,
...
...
@@ -53507,37 +53507,21 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*
/***/ }),
/***/ "./node_modules/strophejs-plugin-rsm/strophe.rsm.js":
/*!**********************************************************!*\
!*** ./node_modules/strophejs-plugin-rsm/strophe.rsm.js ***!
\**********************************************************/
/***/ "./node_modules/strophejs-plugin-rsm/
lib/
strophe.rsm.js":
/*!**********************************************************
****
!*\
!*** ./node_modules/strophejs-plugin-rsm/
lib/
strophe.rsm.js ***!
\**********************************************************
****
/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// http://xmpp.org/extensions/xep-0059.html
(function (global, factory) {
true ? factory(__webpack_require__(/*! strophe.js */ "./node_modules/strophe.js/dist/strophe.js")) :
undefined;
}(this, (function (strophe_js) { 'use strict';
(function (root, factory) {
if (true) {
// AMD. Register as an anonymous module.
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
__webpack_require__(/*! strophe */ "./node_modules/strophe.js/dist/strophe.js")
], __WEBPACK_AMD_DEFINE_RESULT__ = (function (Strophe) {
factory(
Strophe.Strophe,
Strophe.$build,
Strophe.$iq ,
Strophe.$msg,
Strophe.$pres
);
return Strophe;
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
} else {}
}(this, function (Strophe, $build, $iq, $msg, $pres) {
strophe_js.Strophe.addNamespace('RSM', 'http://jabber.org/protocol/rsm');
Strophe.addNamespace('RSM', 'http://jabber.org/protocol/rsm');
Strophe.RSM = function(options) {
strophe_js.Strophe.RSM = function(options) {
this.attribs = ['max', 'first', 'last', 'after', 'before', 'index', 'count'];
if (typeof options.xml != 'undefined') {
...
...
@@ -53550,9 +53534,9 @@ Strophe.RSM = function(options) {
}
};
Strophe.RSM.prototype = {
strophe_js.
Strophe.RSM.prototype = {
toXML: function() {
var xml =
$build('set', {xmlns:
Strophe.NS.RSM});
var xml =
strophe_js.$build('set', {xmlns: strophe_js.
Strophe.NS.RSM});
for (var ii = 0; ii < this.attribs.length; ii++) {
var attrib = this.attribs[ii];
if (typeof this[attrib] != 'undefined') {
...
...
@@ -53563,12 +53547,12 @@ Strophe.RSM.prototype = {
},
next: function(max) {
var newSet = new Strophe.RSM({max: max, after: this.last});
var newSet = new
strophe_js.
Strophe.RSM({max: max, after: this.last});
return newSet;
},
previous: function(max) {
var newSet = new Strophe.RSM({max: max, before: this.first});
var newSet = new
strophe_js.
Strophe.RSM({max: max, before: this.first});
return newSet;
},
...
...
@@ -53577,7 +53561,7 @@ Strophe.RSM.prototype = {
var attrib = this.attribs[ii];
var elem = xmlElement.getElementsByTagName(attrib)[0];
if (typeof elem != 'undefined' && elem !== null) {
this[attrib] = Strophe.getText(elem);
this[attrib] =
strophe_js.
Strophe.getText(elem);
if (attrib == 'first') {
this.index = elem.getAttribute('index');
}
...
...
@@ -53585,7 +53569,9 @@ Strophe.RSM.prototype = {
}
}
};
}));
})));
//# sourceMappingURL=strophe.rsm.js.map
/***/ }),
...
...
@@ -58627,10 +58613,7 @@ exports["filterCSS"] = (filterCSS);
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
/*global define */
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*global define */
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! backbone */ "./node_modules/backbone/backbone.js")], __WEBPACK_AMD_DEFINE_RESULT__ = (function (Backbone) {
return Backbone.noConflict();
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
...
...
@@ -58645,10 +58628,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js
// http://conversejs.org
//
// Copyright (c) 2013-2018, the Converse.js developers
...
...
@@ -58660,7 +58640,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse) {
})(
this
, function (converse) {
const _converse$env = converse.env,
_ = _converse$env._,
Backbone = _converse$env.Backbone,
...
...
@@ -59099,10 +59079,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js (A browser based XMPP chat client)
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js (A browser based XMPP chat client)
// http://conversejs.org
//
// Copyright (c) 2012-2017, Jan-Carel Brand <jc@opkode.com>
...
...
@@ -59119,7 +59096,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse, muc, tpl_chatroom_bookmark_form, tpl_chatroom_bookmark_toggle, tpl_bookmark, tpl_bookmarks_list) {
})(
this
, function (converse, muc, tpl_chatroom_bookmark_form, tpl_chatroom_bookmark_toggle, tpl_bookmark, tpl_bookmarks_list) {
const _converse$env = converse.env,
Backbone = _converse$env.Backbone,
Promise = _converse$env.Promise,
...
...
@@ -59752,10 +59729,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js
// http://conversejs.org
//
// Copyright (c) 2013-2018, the Converse.js developers
...
...
@@ -59765,7 +59739,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse) {
})(
this
, function (converse) {
const _converse$env = converse.env,
Strophe = _converse$env.Strophe,
$build = _converse$env.$build,
...
...
@@ -59832,10 +59806,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js
// http://conversejs.org
//
// Copyright (c) 2012-2018, the Converse.js developers
...
...
@@ -59845,7 +59816,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse, filesize) {
})(
this
, function (converse, filesize) {
"use strict";
const _converse$env = converse.env,
...
...
@@ -60895,10 +60866,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js
// http://conversejs.org
//
// Copyright (c) 2012-2018, the Converse.js developers
...
...
@@ -60908,7 +60876,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse, tpl_chatboxes) {
})(
this
, function (converse, tpl_chatboxes) {
"use strict";
const _converse$env = converse.env,
...
...
@@ -61093,10 +61061,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js
// http://conversejs.org
//
// Copyright (c) 2012-2018, the Converse.js developers
...
...
@@ -61106,7 +61071,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (u, converse, bootstrap, twemoji, xss, tpl_chatbox, tpl_chatbox_head, tpl_chatbox_message_form, tpl_emojis, tpl_error_message, tpl_help_message, tpl_info, tpl_new_day, tpl_user_details_modal, tpl_toolbar_fileupload, tpl_spinner, tpl_spoiler_button, tpl_status_message, tpl_toolbar) {
})(
this
, function (u, converse, bootstrap, twemoji, xss, tpl_chatbox, tpl_chatbox_head, tpl_chatbox_message_form, tpl_emojis, tpl_error_message, tpl_help_message, tpl_info, tpl_new_day, tpl_user_details_modal, tpl_toolbar_fileupload, tpl_spinner, tpl_spoiler_button, tpl_status_message, tpl_toolbar) {
"use strict";
const _converse$env = converse.env,
...
...
@@ -62481,10 +62446,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js (A browser based XMPP chat client)
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js (A browser based XMPP chat client)
// http://conversejs.org
//
// Copyright (c) 2012-2017, Jan-Carel Brand <jc@opkode.com>
...
...
@@ -62497,7 +62459,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse, bootstrap, _FormData, fp, tpl_brand_heading, tpl_controlbox, tpl_controlbox_toggle, tpl_login_panel) {
})(
this
, function (converse, bootstrap, _FormData, fp, tpl_brand_heading, tpl_controlbox, tpl_controlbox_toggle, tpl_login_panel) {
"use strict";
const CHATBOX_TYPE = 'chatbox';
...
...
@@ -63154,20 +63116,17 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js
// https://conversejs.org
//
// Copyright (c) 2013-2018, the Converse.js developers
// Licensed under the Mozilla Public License (MPLv2)
(function (root, factory) {
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! sizzle */ "./node_modules/sizzle/dist/sizzle.js"), __webpack_require__(/*! es6-promise */ "./node_modules/es6-promise/dist/es6-promise.auto.js"), __webpack_require__(/*! lodash.noconflict */ "./src/lodash.noconflict.js"), __webpack_require__(/*! lodash.fp */ "./src/lodash.fp.js"), __webpack_require__(/*! polyfill */ "./src/polyfill.js"), __webpack_require__(/*! i18n */ "./src/i18n.js"), __webpack_require__(/*! utils/core */ "./src/utils/core.js"), __webpack_require__(/*! moment */ "./node_modules/moment/moment.js"), __webpack_require__(/*! strophe
*/ "./node_modules/strophe.js/dist/strophe.js"), __webpack_require__(/*! pluggable */ "./node_modules/pluggable.js/dist/pluggable.js"), __webpack_require__(/*! backbone.noconflict */ "./src/backbone.noconflict.js"), __webpack_require__(/*! backbone.nativeview */ "./node_modules/backbone.nativeview/backbone.nativeview.js"), __webpack_require__(/*! backbone.browserStorage */ "../B
ackbone.browserStorage/backbone.browserStorage.js")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! sizzle */ "./node_modules/sizzle/dist/sizzle.js"), __webpack_require__(/*! es6-promise */ "./node_modules/es6-promise/dist/es6-promise.auto.js"), __webpack_require__(/*! lodash.noconflict */ "./src/lodash.noconflict.js"), __webpack_require__(/*! lodash.fp */ "./src/lodash.fp.js"), __webpack_require__(/*! polyfill */ "./src/polyfill.js"), __webpack_require__(/*! i18n */ "./src/i18n.js"), __webpack_require__(/*! utils/core */ "./src/utils/core.js"), __webpack_require__(/*! moment */ "./node_modules/moment/moment.js"), __webpack_require__(/*! strophe
.js */ "./node_modules/strophe.js/dist/strophe.js"), __webpack_require__(/*! pluggable */ "./node_modules/pluggable.js/dist/pluggable.js"), __webpack_require__(/*! backbone.noconflict */ "./src/backbone.noconflict.js"), __webpack_require__(/*! backbone.nativeview */ "./node_modules/backbone.nativeview/backbone.nativeview.js"), __webpack_require__(/*! backbone.browserStorage */ "./node_modules/b
ackbone.browserStorage/backbone.browserStorage.js")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (sizzle, Promise, _, f, polyfill, i18n, u, moment, Strophe, pluggable, Backbone) {
})(
this
, function (sizzle, Promise, _, f, polyfill, i18n, u, moment, Strophe, pluggable, Backbone) {
"use strict"; // Strophe globals
const _Strophe = Strophe,
...
...
@@ -65019,10 +64978,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js
// http://conversejs.org
//
// Copyright (c) 2013-2018, the Converse developers
...
...
@@ -65034,7 +64990,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse, sizzle) {
})(
this
, function (converse, sizzle) {
const _converse$env = converse.env,
Backbone = _converse$env.Backbone,
Promise = _converse$env.Promise,
...
...
@@ -65775,10 +65731,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js (A browser based XMPP chat client)
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js (A browser based XMPP chat client)
// http://conversejs.org
//
// Copyright (c) 2012-2017, Jan-Carel Brand <jc@opkode.com>
...
...
@@ -65791,7 +65744,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse, tpl_dragresize) {
})(
this
, function (converse, tpl_dragresize) {
"use strict";
const _ = converse.env._;
...
...
@@ -66200,10 +66153,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js
// http://conversejs.org
//
// Copyright (c) 2012-2018, the Converse.js developers
...
...
@@ -66213,7 +66163,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse) {
})(
this
, function (converse) {
"use strict";
const _converse$env = converse.env,
...
...
@@ -66260,10 +66210,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js (A browser based XMPP chat client)
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js (A browser based XMPP chat client)
// http://conversejs.org
//
// Copyright (c) JC Brand <jc@opkode.com>
...
...
@@ -66276,7 +66223,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse, tpl_brand_heading) {
})(
this
, function (converse, tpl_brand_heading) {
"use strict";
const _converse$env = converse.env,
...
...
@@ -66331,10 +66278,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js (A browser based XMPP chat client)
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js (A browser based XMPP chat client)
// http://conversejs.org
//
// Copyright (c) 2012-2017, Jan-Carel Brand <jc@opkode.com>
...
...
@@ -66347,7 +66291,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse, tpl_chatbox) {
})(
this
, function (converse, tpl_chatbox) {
"use strict";
const _converse$env = converse.env,
...
...
@@ -66507,10 +66451,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js (A browser based XMPP chat client)
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js (A browser based XMPP chat client)
// http://conversejs.org
//
// Copyright (c) 2012-2017, Jan-Carel Brand <jc@opkode.com>
...
...
@@ -66520,11 +66461,11 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*global define */
// XEP-0059 Result Set Management
(function (root, factory) {
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! sizzle */ "./node_modules/sizzle/dist/sizzle.js"), __webpack_require__(/*! converse-core */ "./src/converse-core.js"), __webpack_require__(/*! converse-disco */ "./src/converse-disco.js"), __webpack_require__(/*! strophe
.rsm */ "./node_modules/strophejs-plugin-rsm
/strophe.rsm.js")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! sizzle */ "./node_modules/sizzle/dist/sizzle.js"), __webpack_require__(/*! converse-core */ "./src/converse-core.js"), __webpack_require__(/*! converse-disco */ "./src/converse-disco.js"), __webpack_require__(/*! strophe
js-plugin-rsm */ "./node_modules/strophejs-plugin-rsm/lib
/strophe.rsm.js")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (sizzle, converse) {
})(
this
, function (sizzle, converse) {
"use strict";
const CHATROOMS_TYPE = 'chatroom';
...
...
@@ -67184,10 +67125,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js
// https://conversejs.org
//
// Copyright (c) 2013-2018, the Converse.js developers
...
...
@@ -67197,7 +67135,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (u, converse, xss, filesize, tpl_csn, tpl_file_progress, tpl_info, tpl_message, tpl_message_versions_modal) {
})(
this
, function (u, converse, xss, filesize, tpl_csn, tpl_file_progress, tpl_info, tpl_message, tpl_message_versions_modal) {
"use strict";
const _converse$env = converse.env,
...
...
@@ -67460,10 +67398,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js (A browser based XMPP chat client)
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js (A browser based XMPP chat client)
// http://conversejs.org
//
// Copyright (c) 2012-2017, Jan-Carel Brand <jc@opkode.com>
...
...
@@ -67476,7 +67411,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse, tpl_chatbox_minimize, tpl_toggle_chats, tpl_trimmed_chat, tpl_chats_panel) {
})(
this
, function (converse, tpl_chatbox_minimize, tpl_toggle_chats, tpl_trimmed_chat, tpl_chats_panel) {
"use strict";
const _converse$env = converse.env,
...
...
@@ -68078,10 +68013,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js
// http://conversejs.org
//
// Copyright (c) 2018, the Converse.js developers
...
...
@@ -68093,7 +68025,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
}
})(
void 0
, function (converse, tpl_alert_modal, bootstrap) {
})(
this
, function (converse, tpl_alert_modal, bootstrap) {
"use strict";
const _converse$env = converse.env,
...
...
@@ -68215,10 +68147,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js
// http://conversejs.org
//
// Copyright (c) 2013-2018, the Converse.js developers
...
...
@@ -68228,7 +68157,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse, _FormData, muc_utils, xss, tpl_add_chatroom_modal, tpl_chatarea, tpl_chatroom, tpl_chatroom_details_modal, tpl_chatroom_destroyed, tpl_chatroom_disconnect, tpl_chatroom_features, tpl_chatroom_form, tpl_chatroom_head, tpl_chatroom_invite, tpl_chatroom_nickname_form, tpl_chatroom_password_form, tpl_chatroom_sidebar, tpl_info, tpl_list_chatrooms_modal, tpl_occupant, tpl_room_description, tpl_room_item, tpl_room_panel, tpl_rooms_results, tpl_spinner, Awesomplete) {
})(
this
, function (converse, _FormData, muc_utils, xss, tpl_add_chatroom_modal, tpl_chatarea, tpl_chatroom, tpl_chatroom_details_modal, tpl_chatroom_destroyed, tpl_chatroom_disconnect, tpl_chatroom_features, tpl_chatroom_form, tpl_chatroom_head, tpl_chatroom_invite, tpl_chatroom_nickname_form, tpl_chatroom_password_form, tpl_chatroom_sidebar, tpl_info, tpl_list_chatrooms_modal, tpl_occupant, tpl_room_description, tpl_room_item, tpl_room_panel, tpl_rooms_results, tpl_spinner, Awesomplete) {
"use strict";
const _converse$env = converse.env,
...
...
@@ -70463,10 +70392,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest(); }
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); }
...
...
@@ -70484,7 +70410,7 @@ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (u, converse) {
})(
this
, function (u, converse) {
"use strict";
const MUC_ROLE_WEIGHTS = {
...
...
@@ -72201,10 +72127,7 @@ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js (A browser based XMPP chat client)
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js (A browser based XMPP chat client)
// http://conversejs.org
//
// Copyright (c) 2013-2018, JC Brand <jc@opkode.com>
...
...
@@ -72217,7 +72140,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse) {
})(
this
, function (converse) {
"use strict";
const _converse$env = converse.env,
...
...
@@ -72523,10 +72446,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js
// http://conversejs.org
//
// Copyright (c) 2013-2018, the Converse.js developers
...
...
@@ -72538,7 +72458,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse, tpl_toolbar_omemo) {
})(
this
, function (converse, tpl_toolbar_omemo) {
const _converse$env = converse.env,
Backbone = _converse$env.Backbone,
Promise = _converse$env.Promise,
...
...
@@ -73693,10 +73613,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js
// https://conversejs.org
//
// Copyright (c) 2013-2018, the Converse.js developers
...
...
@@ -73706,11 +73623,11 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
* as specified in XEP-0199 XMPP Ping.
*/
(function (root, factory) {
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! converse-core */ "./src/converse-core.js"), __webpack_require__(/*! strophe
.
ping */ "./node_modules/strophejs-plugin-ping/strophe.ping.js")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! converse-core */ "./src/converse-core.js"), __webpack_require__(/*! strophe
js-plugin-
ping */ "./node_modules/strophejs-plugin-ping/strophe.ping.js")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse) {
})(
this
, function (converse) {
"use strict"; // Strophe methods for building stanzas
const _converse$env = converse.env,
...
...
@@ -73828,10 +73745,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js (A browser based XMPP chat client)
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js (A browser based XMPP chat client)
// http://conversejs.org
//
// Copyright (c) 2013-2017, Jan-Carel Brand <jc@opkode.com>
...
...
@@ -73844,7 +73758,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse, bootstrap, _FormData, tpl_alert, tpl_chat_status_modal, tpl_profile_modal, tpl_profile_view, tpl_status_option) {
})(
this
, function (converse, bootstrap, _FormData, tpl_alert, tpl_chat_status_modal, tpl_profile_modal, tpl_profile_view, tpl_status_option) {
"use strict";
const _converse$env = converse.env,
...
...
@@ -74105,10 +74019,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js
// https://conversejs.org
//
// Copyright (c) 2013-2018, the Converse.js developers
...
...
@@ -74122,7 +74033,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse) {
})(
this
, function (converse) {
"use strict";
const _converse$env = converse.env,
...
...
@@ -74281,10 +74192,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js (A browser based XMPP chat client)
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js (A browser based XMPP chat client)
// http://conversejs.org
//
// Copyright (c) 2012-2017, Jan-Carel Brand <jc@opkode.com>
...
...
@@ -74301,7 +74209,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (utils, converse, tpl_form_username, tpl_register_link, tpl_register_panel, tpl_registration_form, tpl_registration_request, tpl_form_input, tpl_spinner) {
})(
this
, function (utils, converse, tpl_form_username, tpl_register_link, tpl_register_panel, tpl_registration_form, tpl_registration_request, tpl_form_input, tpl_spinner) {
"use strict"; // Strophe methods for building stanzas
const _converse$env = converse.env,
...
...
@@ -75035,10 +74943,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js (A browser based XMPP chat client)
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js (A browser based XMPP chat client)
// http://conversejs.org
//
// Copyright (c) 2012-2017, Jan-Carel Brand <jc@opkode.com>
...
...
@@ -75055,7 +74960,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse, muc, tpl_rooms_list, tpl_rooms_list_item) {
})(
this
, function (converse, muc, tpl_rooms_list, tpl_rooms_list_item) {
const _converse$env = converse.env,
Backbone = _converse$env.Backbone,
Promise = _converse$env.Promise,
...
...
@@ -75382,10 +75287,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js
// http://conversejs.org
//
// Copyright (c) 2012-2018, the Converse.js developers
...
...
@@ -75395,7 +75297,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse) {
})(
this
, function (converse) {
"use strict";
const _converse$env = converse.env,
...
...
@@ -76449,10 +76351,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js
// http://conversejs.org
//
// Copyright (c) 2012-2018, the Converse.js developers
...
...
@@ -76462,7 +76361,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse, _FormData, tpl_add_contact_modal, tpl_group_header, tpl_pending_contact, tpl_requesting_contact, tpl_roster, tpl_roster_filter, tpl_roster_item, tpl_search_contact, Awesomplete) {
})(
this
, function (converse, _FormData, tpl_add_contact_modal, tpl_group_header, tpl_pending_contact, tpl_requesting_contact, tpl_roster, tpl_roster_filter, tpl_roster_item, tpl_search_contact, Awesomplete) {
"use strict";
const _converse$env = converse.env,
...
...
@@ -77548,10 +77447,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js
// http://conversejs.org
//
// Copyright (c) 2012-2018, the Converse.js developers
...
...
@@ -77573,7 +77469,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse) {
})(
this
, function (converse) {
"use strict";
const _converse$env = converse.env,
...
...
@@ -77698,10 +77594,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js
// http://conversejs.org
//
// Copyright (c) 2013-2018, the Converse.js developers
...
...
@@ -77711,7 +77604,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse, tpl_vcard) {
})(
this
, function (converse, tpl_vcard) {
"use strict";
const _converse$env = converse.env,
...
...
@@ -77971,10 +77864,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
/*global define */
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*global define */
if (true) {
// The section below determines which plugins will be included in a build
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! converse-core */ "./src/converse-core.js"),
...
...
@@ -78012,10 +77902,7 @@ if (true) {
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js (A browser based XMPP chat client)
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js (A browser based XMPP chat client)
// http://conversejs.org
//
// This is the internationalization module.
...
...
@@ -78030,7 +77917,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (Promise, Jed, _, moment) {
})(
this
, function (Promise, Jed, _, moment) {
'use strict';
function detectLocale(library_check) {
...
...
@@ -78178,10 +78065,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
/*global define */
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*global define */
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_RESULT__ = (function () {
return Object;
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
...
...
@@ -78196,10 +78080,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! lodash */ "./node_modules/lodash/lodash.js"), __webpack_require__(/*! lodash.converter */ "./3rdparty/lodash.fp.js")], __WEBPACK_AMD_DEFINE_RESULT__ = (function (_, lodashConverter) {
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! lodash */ "./node_modules/lodash/lodash.js"), __webpack_require__(/*! lodash.converter */ "./3rdparty/lodash.fp.js")], __WEBPACK_AMD_DEFINE_RESULT__ = (function (_, lodashConverter) {
var fp = lodashConverter(_.runInContext());
return fp;
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
...
...
@@ -78214,10 +78095,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
/*global define */
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*global define */
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! lodash */ "./node_modules/lodash/lodash.js")], __WEBPACK_AMD_DEFINE_RESULT__ = (function (_) {
return _.noConflict();
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
...
...
@@ -78230,10 +78108,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
!*** ./src/polyfill.js ***!
\*************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/***/ (function(module, exports) {
function CustomEvent(event, params) {
params = params || {
...
...
@@ -81566,10 +81441,7 @@ return __p
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
/*global define */
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*global define */
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! lodash */ "./node_modules/lodash/lodash.js")], __WEBPACK_AMD_DEFINE_RESULT__ = (function (_) {
return _.noConflict();
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
...
...
@@ -81584,10 +81456,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js (A browser based XMPP chat client)
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js (A browser based XMPP chat client)
// http://conversejs.org
//
// This is the utilities module.
...
...
@@ -81599,12 +81468,12 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*global define, escape, window, Uint8Array */
(function (root, factory) {
if (true) {
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! sizzle */ "./node_modules/sizzle/dist/sizzle.js"), __webpack_require__(/*! es6-promise */ "./node_modules/es6-promise/dist/es6-promise.auto.js"), __webpack_require__(/*! fast-text-encoding */ "./node_modules/fast-text-encoding/text.js"), __webpack_require__(/*! lodash.noconflict */ "./src/lodash.noconflict.js"), __webpack_require__(/*! backbone */ "./node_modules/backbone/backbone.js"), __webpack_require__(/*! strophe */ "./node_modules/strophe.js/dist/strophe.js"), __webpack_require__(/*! uri */ "./node_modules/urijs/src/URI.js"), __webpack_require__(/*! templates/audio.html */ "./src/templates/audio.html"), __webpack_require__(/*! templates/file.html */ "./src/templates/file.html"), __webpack_require__(/*! templates/image.html */ "./src/templates/image.html"), __webpack_require__(/*! templates/video.html */ "./src/templates/video.html")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! sizzle */ "./node_modules/sizzle/dist/sizzle.js"), __webpack_require__(/*! es6-promise */ "./node_modules/es6-promise/dist/es6-promise.auto.js"), __webpack_require__(/*! fast-text-encoding */ "./node_modules/fast-text-encoding/text.js"), __webpack_require__(/*! lodash.noconflict */ "./src/lodash.noconflict.js"), __webpack_require__(/*! backbone */ "./node_modules/backbone/backbone.js"), __webpack_require__(/*! strophe
.js
*/ "./node_modules/strophe.js/dist/strophe.js"), __webpack_require__(/*! uri */ "./node_modules/urijs/src/URI.js"), __webpack_require__(/*! templates/audio.html */ "./src/templates/audio.html"), __webpack_require__(/*! templates/file.html */ "./src/templates/file.html"), __webpack_require__(/*! templates/image.html */ "./src/templates/image.html"), __webpack_require__(/*! templates/video.html */ "./src/templates/video.html")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
} else {}
})(
void 0
, function (sizzle, Promise, FastTextEncoding, _, Backbone, Strophe, URI, tpl_audio, tpl_file, tpl_image, tpl_video) {
})(
this
, function (sizzle, Promise, FastTextEncoding, _, Backbone, Strophe, URI, tpl_audio, tpl_file, tpl_image, tpl_video) {
"use strict";
Strophe = Strophe.Strophe;
...
...
@@ -82549,15 +82418,12 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
(function (root, factory) {
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;(function (root, factory) {
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! lodash.noconflict */ "./src/lodash.noconflict.js"), __webpack_require__(/*! utils/core */ "./src/utils/core.js"), __webpack_require__(/*! twemoji */ "./node_modules/twemoji/2/esm.js")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (_, u, twemoji) {
})(
this
, function (_, u, twemoji) {
"use strict";
const emoji_list = {
...
...
@@ -104059,10 +103925,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js (A browser based XMPP chat client)
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js (A browser based XMPP chat client)
// http://conversejs.org
//
// This is the utilities module.
...
...
@@ -104077,7 +103940,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (sizzle, _, u, tpl_field, tpl_select_option, tpl_form_select, tpl_form_textarea, tpl_form_checkbox, tpl_form_username, tpl_form_input, tpl_form_captcha, tpl_form_url) {
})(
this
, function (sizzle, _, u, tpl_field, tpl_select_option, tpl_form_select, tpl_form_textarea, tpl_form_checkbox, tpl_form_username, tpl_form_input, tpl_form_captcha, tpl_form_url) {
"use strict";
var XFORM_TYPE_MAP = {
...
...
@@ -104220,10 +104083,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
// Converse.js (A browser based XMPP chat client)
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Converse.js (A browser based XMPP chat client)
// http://conversejs.org
//
// This is the utilities module.
...
...
@@ -104238,7 +104098,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
})(
void 0
, function (converse, u) {
})(
this
, function (converse, u) {
"use strict";
const _converse$env = converse.env,
package-lock.json
View file @
a49c1f55
...
...
@@ -5,9 +5,9 @@
"requires"
:
true
,
"dependencies"
:
{
"@babel/cli"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/cli/-/cli-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-0YbN1Z+SNryRVqqo7aYWOPVmt/w
="
,
"version"
:
"7.
1.2
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/cli/-/cli-7.
1.2
.tgz"
,
"integrity"
:
"sha
512-K3WDlpBPGpoW11SLKFEBhMsITomPovsrZ/wnM3y+WStbytukDXC0OBic3yQp+j058QUw0+R/jfx2obwp1fOzcA=
="
,
"dev"
:
true
,
"requires"
:
{
"chokidar"
:
"2.0.4"
,
...
...
@@ -16,841 +16,735 @@
"fs-readdir-recursive"
:
"1.1.0"
,
"glob"
:
"7.1.2"
,
"lodash"
:
"4.17.10"
,
"mkdirp"
:
"0.5.1"
,
"output-file-sync"
:
"2.0.1"
,
"slash"
:
"
1
.0.0"
,
"slash"
:
"
2
.0.0"
,
"source-map"
:
"0.5.7"
},
"dependencies"
:
{
"
lod
ash"
:
{
"version"
:
"
4.17.1
0"
,
"resolved"
:
"https://registry.npmjs.org/
lodash/-/lodash-4.17.1
0.tgz"
,
"integrity"
:
"sha512-
UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg
=="
,
"
sl
ash"
:
{
"version"
:
"
2.0.
0"
,
"resolved"
:
"https://registry.npmjs.org/
slash/-/slash-2.0.
0.tgz"
,
"integrity"
:
"sha512-
ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A
=="
,
"dev"
:
true
}
}
},
"@babel/code-frame"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-vXHZsZKvl435FYKdOdQJRFZDmgw
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz"
,
"integrity"
:
"sha
512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/highlight"
:
"7.0.0
-beta.51
"
"@babel/highlight"
:
"7.0.0"
}
},
"@babel/core"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/core/-/core-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-DlS9a2OHNrKuWTwxpH8JaeKyuW0
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/code-frame"
:
"7.0.0
-beta.51
"
,
"@babel/generator"
:
"7.
0.0-beta.51
"
,
"@babel/helpers"
:
"7.
0.0-beta.51
"
,
"@babel/parser"
:
"7.
0.0-beta.51
"
,
"@babel/template"
:
"7.
0.0-beta.51
"
,
"@babel/traverse"
:
"7.
0.0-beta.51
"
,
"@babel/types"
:
"7.
0.0-beta.51
"
,
"version"
:
"7.
1.2
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/core/-/core-7.
1.2
.tgz"
,
"integrity"
:
"sha
512-IFeSSnjXdhDaoysIlev//UzHZbdEmm7D0EIH2qtse9xK7mXEZQpYjs2P00XlP1qYsYvid79p+Zgg6tz1mp6iVw=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/code-frame"
:
"7.0.0"
,
"@babel/generator"
:
"7.
1.3
"
,
"@babel/helpers"
:
"7.
1.2
"
,
"@babel/parser"
:
"7.
1.3
"
,
"@babel/template"
:
"7.
1.2
"
,
"@babel/traverse"
:
"7.
1.4
"
,
"@babel/types"
:
"7.
1.3
"
,
"convert-source-map"
:
"1.5.1"
,
"debug"
:
"3.1.0"
,
"json5"
:
"0.5.1"
,
"lodash"
:
"4.17.10"
,
"micromatch"
:
"3.1.10"
,
"resolve"
:
"1.8.1"
,
"semver"
:
"5.5.0"
,
"source-map"
:
"0.5.7"
},
"dependencies"
:
{
"lodash"
:
{
"version"
:
"4.17.10"
,
"resolved"
:
"https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz"
,
"integrity"
:
"sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg=="
,
"dev"
:
true
}
}
},
"@babel/generator"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/generator/-/generator-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-bHV1/952HQdIXgS67cA5LG2eMPY
="
,
"version"
:
"7.
1.3
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/generator/-/generator-7.
1.3
.tgz"
,
"integrity"
:
"sha
512-ZoCZGcfIJFJuZBqxcY9OjC1KW2lWK64qrX1o4UYL3yshVhwKFYgzpWZ0vvtGMNJdTlvkw0W+HR1VnYN8q3QPFQ=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/types"
:
"7.
0.0-beta.51
"
,
"@babel/types"
:
"7.
1.3
"
,
"jsesc"
:
"2.5.1"
,
"lodash"
:
"4.17.10"
,
"source-map"
:
"0.5.7"
,
"trim-right"
:
"1.0.1"
},
"dependencies"
:
{
"lodash"
:
{
"version"
:
"4.17.10"
,
"resolved"
:
"https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz"
,
"integrity"
:
"sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg=="
,
"dev"
:
true
}
}
},
"@babel/helper-annotate-as-pure"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-OM95IL9fM4oif3VOKGtvut7gS1g
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz"
,
"integrity"
:
"sha
512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/types"
:
"7.
0.0-beta.51
"
"@babel/types"
:
"7.
1.3
"
}
},
"@babel/helper-builder-binary-assignment-operator-visitor"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-ITP//j4vcVkeQhR7lHKRyirTkjc
="
,
"version"
:
"7.
1.0
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.
1.0
.tgz"
,
"integrity"
:
"sha
512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-explode-assignable-expression"
:
"7.
0.0-beta.51
"
,
"@babel/types"
:
"7.
0.0-beta.51
"
"@babel/helper-explode-assignable-expression"
:
"7.
1.0
"
,
"@babel/types"
:
"7.
1.3
"
}
},
"@babel/helper-call-delegate"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-BO1yfJfPBbyy/WRINzMasV1jyBk
="
,
"version"
:
"7.
1.0
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.
1.0
.tgz"
,
"integrity"
:
"sha
512-YEtYZrw3GUK6emQHKthltKNZwszBcHK58Ygcis+gVUrF4/FmTVr5CCqQNSfmvg2y+YDEANyYoaLz/SHsnusCwQ=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-hoist-variables"
:
"7.0.0
-beta.51
"
,
"@babel/traverse"
:
"7.
0.0-beta.51
"
,
"@babel/types"
:
"7.
0.0-beta.51
"
"@babel/helper-hoist-variables"
:
"7.0.0"
,
"@babel/traverse"
:
"7.
1.4
"
,
"@babel/types"
:
"7.
1.3
"
}
},
"@babel/helper-define-map"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-2Ixkc36UjHE/nxFTM46EFf7kCxE
="
,
"version"
:
"7.
1.0
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.
1.0
.tgz"
,
"integrity"
:
"sha
512-yPPcW8dc3gZLN+U1mhYV91QU3n5uTbx7DUdf8NnPbjS0RMwBuHi9Xt2MUgppmNz7CJxTBWsGczTiEp1CSOTPRg=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-function-name"
:
"7.
0.0-beta.51
"
,
"@babel/types"
:
"7.
0.0-beta.51
"
,
"@babel/helper-function-name"
:
"7.
1.0
"
,
"@babel/types"
:
"7.
1.3
"
,
"lodash"
:
"4.17.10"
},
"dependencies"
:
{
"lodash"
:
{
"version"
:
"4.17.10"
,
"resolved"
:
"https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz"
,
"integrity"
:
"sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg=="
,
"dev"
:
true
}
}
},
"@babel/helper-explode-assignable-expression"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-mHUzKti11cmC+kgcuCtzFwPyzS0
="
,
"version"
:
"7.
1.0
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.
1.0
.tgz"
,
"integrity"
:
"sha
512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/traverse"
:
"7.
0.0-beta.51
"
,
"@babel/types"
:
"7.
0.0-beta.51
"
"@babel/traverse"
:
"7.
1.4
"
,
"@babel/types"
:
"7.
1.3
"
}
},
"@babel/helper-function-name"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-IbSHSiJ8+Z7K/MMKkDAtpaJkBWE
="
,
"version"
:
"7.
1.0
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.
1.0
.tgz"
,
"integrity"
:
"sha
512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-get-function-arity"
:
"7.0.0
-beta.51
"
,
"@babel/template"
:
"7.
0.0-beta.51
"
,
"@babel/types"
:
"7.
0.0-beta.51
"
"@babel/helper-get-function-arity"
:
"7.0.0"
,
"@babel/template"
:
"7.
1.2
"
,
"@babel/types"
:
"7.
1.3
"
}
},
"@babel/helper-get-function-arity"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-MoGy0EWvlcFyzpGyCCXYXqRnZBE
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz"
,
"integrity"
:
"sha
512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/types"
:
"7.
0.0-beta.51
"
"@babel/types"
:
"7.
1.3
"
}
},
"@babel/helper-hoist-variables"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-XX68hZZWe2RPyYmRLDo++YvgWPw
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.0.0.tgz"
,
"integrity"
:
"sha
512-Ggv5sldXUeSKsuzLkddtyhyHe2YantsxWKNi7A+7LeD12ExRDWTRk29JCXpaHPAbMaIPZSil7n+lq78WY2VY7w=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/types"
:
"7.
0.0-beta.51
"
"@babel/types"
:
"7.
1.3
"
}
},
"@babel/helper-member-expression-to-functions"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-KkJTZXQXZYiAbmAusXpS0yP4KHA
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz"
,
"integrity"
:
"sha
512-avo+lm/QmZlv27Zsi0xEor2fKcqWG56D5ae9dzklpIaY7cQMK5N8VSpaNVPPagiqmy7LrEjK1IWdGMOqPu5csg=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/types"
:
"7.
0.0-beta.51
"
"@babel/types"
:
"7.
1.3
"
}
},
"@babel/helper-module-imports"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-zgBCgEX7t9XrwOp7+DV4nxU2arI
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz"
,
"integrity"
:
"sha
512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/types"
:
"7.0.0-beta.51"
,
"lodash"
:
"4.17.10"
},
"dependencies"
:
{
"lodash"
:
{
"version"
:
"4.17.10"
,
"resolved"
:
"https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz"
,
"integrity"
:
"sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg=="
,
"dev"
:
true
}
"@babel/types"
:
"7.1.3"
}
},
"@babel/helper-module-transforms"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-E68MjuQfJ3dDyPxD1EQxXbIyb3M
="
,
"version"
:
"7.
1.0
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.
1.0
.tgz"
,
"integrity"
:
"sha
512-0JZRd2yhawo79Rcm4w0LwSMILFmFXjugG3yqf+P/UsKsRS1mJCmMwwlHDlMg7Avr9LrvSpp4ZSULO9r8jpCzcw=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-module-imports"
:
"7.0.0
-beta.51
"
,
"@babel/helper-simple-access"
:
"7.
0.0-beta.51
"
,
"@babel/helper-split-export-declaration"
:
"7.0.0
-beta.51
"
,
"@babel/template"
:
"7.
0.0-beta.51
"
,
"@babel/types"
:
"7.
0.0-beta.51
"
,
"@babel/helper-module-imports"
:
"7.0.0"
,
"@babel/helper-simple-access"
:
"7.
1.0
"
,
"@babel/helper-split-export-declaration"
:
"7.0.0"
,
"@babel/template"
:
"7.
1.2
"
,
"@babel/types"
:
"7.
1.3
"
,
"lodash"
:
"4.17.10"
},
"dependencies"
:
{
"lodash"
:
{
"version"
:
"4.17.10"
,
"resolved"
:
"https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz"
,
"integrity"
:
"sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg=="
,
"dev"
:
true
}
}
},
"@babel/helper-optimise-call-expression"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-IfIVjvCDoSPOHgRmW1u4TzcAgNc
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz"
,
"integrity"
:
"sha
512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/types"
:
"7.
0.0-beta.51
"
"@babel/types"
:
"7.
1.3
"
}
},
"@babel/helper-plugin-utils"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-D2pfK20cZERBP4+rYJQNebY8IDE
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz"
,
"integrity"
:
"sha
512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA=
="
,
"dev"
:
true
},
"@babel/helper-regex"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-mXIqPAxwRZavsSMoSwqIihoAPYI
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.0.0.tgz"
,
"integrity"
:
"sha
512-TR0/N0NDCcUIUEbqV6dCO+LptmmSQFQ7q70lfcEB4URsjD0E1HzicrwUH+ap6BAQ2jhCX9Q4UqZy4wilujWlkg=
="
,
"dev"
:
true
,
"requires"
:
{
"lodash"
:
"4.17.10"
},
"dependencies"
:
{
"lodash"
:
{
"version"
:
"4.17.10"
,
"resolved"
:
"https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz"
,
"integrity"
:
"sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg=="
,
"dev"
:
true
}
}
},
"@babel/helper-remap-async-to-generator"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-DtxX4F3LXd4qC27m+NAmGYLe8l8
="
,
"version"
:
"7.
1.0
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.
1.0
.tgz"
,
"integrity"
:
"sha
512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-annotate-as-pure"
:
"7.0.0
-beta.51
"
,
"@babel/helper-wrap-function"
:
"7.
0.0-beta.51
"
,
"@babel/template"
:
"7.
0.0-beta.51
"
,
"@babel/traverse"
:
"7.
0.0-beta.51
"
,
"@babel/types"
:
"7.
0.0-beta.51
"
"@babel/helper-annotate-as-pure"
:
"7.0.0"
,
"@babel/helper-wrap-function"
:
"7.
1.0
"
,
"@babel/template"
:
"7.
1.2
"
,
"@babel/traverse"
:
"7.
1.4
"
,
"@babel/types"
:
"7.
1.3
"
}
},
"@babel/helper-replace-supers"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-J5phr7hJR2xsxw1VGfg99KdP+m8
="
,
"version"
:
"7.
1.0
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.
1.0
.tgz"
,
"integrity"
:
"sha
512-BvcDWYZRWVuDeXTYZWxekQNO5D4kO55aArwZOTFXw6rlLQA8ZaDicJR1sO47h+HrnCiDFiww0fSPV0d713KBGQ=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-member-expression-to-functions"
:
"7.0.0
-beta.51
"
,
"@babel/helper-optimise-call-expression"
:
"7.0.0
-beta.51
"
,
"@babel/traverse"
:
"7.
0.0-beta.51
"
,
"@babel/types"
:
"7.
0.0-beta.51
"
"@babel/helper-member-expression-to-functions"
:
"7.0.0"
,
"@babel/helper-optimise-call-expression"
:
"7.0.0"
,
"@babel/traverse"
:
"7.
1.4
"
,
"@babel/types"
:
"7.
1.3
"
}
},
"@babel/helper-simple-access"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-ydf+zYShgdUKOvzEIvyUqWi+MFA
="
,
"version"
:
"7.
1.0
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.
1.0
.tgz"
,
"integrity"
:
"sha
512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/template"
:
"7.0.0-beta.51"
,
"@babel/types"
:
"7.0.0-beta.51"
,
"lodash"
:
"4.17.10"
},
"dependencies"
:
{
"lodash"
:
{
"version"
:
"4.17.10"
,
"resolved"
:
"https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz"
,
"integrity"
:
"sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg=="
,
"dev"
:
true
}
"@babel/template"
:
"7.1.2"
,
"@babel/types"
:
"7.1.3"
}
},
"@babel/helper-split-export-declaration"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-imw/ZsTSZTUvwHdIT59ugKUauXg
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz"
,
"integrity"
:
"sha
512-MXkOJqva62dfC0w85mEf/LucPPS/1+04nmmRMPEBUB++hiiThQ2zPtX/mEWQ3mtzCEjIJvPY8nuwxXtQeQwUag=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/types"
:
"7.
0.0-beta.51
"
"@babel/types"
:
"7.
1.3
"
}
},
"@babel/helper-wrap-function"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-bFFvsEQQmWTuAxwiUAqDAxOGL7E
="
,
"version"
:
"7.
1.0
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.
1.0
.tgz"
,
"integrity"
:
"sha
512-R6HU3dete+rwsdAfrOzTlE9Mcpk4RjU3aX3gi9grtmugQY0u79X7eogUvfXA5sI81Mfq1cn6AgxihfN33STjJA=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-function-name"
:
"7.
0.0-beta.51
"
,
"@babel/template"
:
"7.
0.0-beta.51
"
,
"@babel/traverse"
:
"7.
0.0-beta.51
"
,
"@babel/types"
:
"7.
0.0-beta.51
"
"@babel/helper-function-name"
:
"7.
1.0
"
,
"@babel/template"
:
"7.
1.2
"
,
"@babel/traverse"
:
"7.
1.4
"
,
"@babel/types"
:
"7.
1.3
"
}
},
"@babel/helpers"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helpers/-/helpers-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-lScr4qtGNNaCBCX4klAxqSiRg5c
="
,
"version"
:
"7.
1.2
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/helpers/-/helpers-7.
1.2
.tgz"
,
"integrity"
:
"sha
512-Myc3pUE8eswD73aWcartxB16K6CGmHDv9KxOmD2CeOs/FaEAQodr3VYGmlvOmog60vNQ2w8QbatuahepZwrHiA=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/template"
:
"7.
0.0-beta.51
"
,
"@babel/traverse"
:
"7.
0.0-beta.51
"
,
"@babel/types"
:
"7.
0.0-beta.51
"
"@babel/template"
:
"7.
1.2
"
,
"@babel/traverse"
:
"7.
1.4
"
,
"@babel/types"
:
"7.
1.3
"
}
},
"@babel/highlight"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-6IRK4loVlcz9QriWI7Q3bKBtIl0
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz"
,
"integrity"
:
"sha
512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw=
="
,
"dev"
:
true
,
"requires"
:
{
"chalk"
:
"2.3.2"
,
"esutils"
:
"2.0.2"
,
"js-tokens"
:
"3.0.2"
"js-tokens"
:
"4.0.0"
},
"dependencies"
:
{
"js-tokens"
:
{
"version"
:
"4.0.0"
,
"resolved"
:
"https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"
,
"integrity"
:
"sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
,
"dev"
:
true
}
}
},
"@babel/parser"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/parser/-/parser-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-J87C30Cd9gr1gnDtj2qlVAnqhvY
="
,
"version"
:
"7.
1.3
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/parser/-/parser-7.
1.3
.tgz"
,
"integrity"
:
"sha
512-gqmspPZOMW3MIRb9HlrnbZHXI1/KHTOroBwN1NcLL6pWxzqzEKGvRTq0W/PxS45OtQGbaFikSQpkS5zbnsQm2w=
="
,
"dev"
:
true
},
"@babel/plugin-proposal-async-generator-functions"
:
{
"version"
:
"7.0.0-beta.51"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.0.0-beta.51.tgz"
,
"integrity"
:
"sha1-99aS+Uakp/ynjkM2QHoAvq+KTeo="
,
"version"
:
"7.1.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.1.0.tgz"
,
"integrity"
:
"sha512-Fq803F3Jcxo20MXUSDdmZZXrPe6BWyGcWBPPNB/M7WaUYESKDeKMOGIxEzQOjGSmW/NWb6UaPZrtTB2ekhB/ew=="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0"
,
"@babel/helper-remap-async-to-generator"
:
"7.1.0"
,
"@babel/plugin-syntax-async-generators"
:
"7.0.0"
}
},
"@babel/plugin-proposal-json-strings"
:
{
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.0.0.tgz"
,
"integrity"
:
"sha512-kfVdUkIAGJIVmHmtS/40i/fg/AGnw/rsZBCaapY5yjeO5RA9m165Xbw9KMOu2nqXP5dTFjEjHdfNdoVcHv133Q=="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0-beta.51"
,
"@babel/helper-remap-async-to-generator"
:
"7.0.0-beta.51"
,
"@babel/plugin-syntax-async-generators"
:
"7.0.0-beta.51"
"@babel/helper-plugin-utils"
:
"7.0.0"
,
"@babel/plugin-syntax-json-strings"
:
"7.0.0"
}
},
"@babel/plugin-proposal-object-rest-spread"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-W8Rp5ebRuEpdYEa1npDKAWwghtY
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.0.0.tgz"
,
"integrity"
:
"sha
512-14fhfoPcNu7itSen7Py1iGN0gEm87hX/B+8nZPqkdmANyyYWYMY2pjA3r8WXbWVKMzfnSNS0xY8GVS0IjXi/iw=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
,
"@babel/plugin-syntax-object-rest-spread"
:
"7.0.0
-beta.51
"
"@babel/helper-plugin-utils"
:
"7.0.0"
,
"@babel/plugin-syntax-object-rest-spread"
:
"7.0.0"
}
},
"@babel/plugin-proposal-optional-catch-binding"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-PsxtKRnVLJTL+uhiXaM1ghAvs9Y
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.0.0.tgz"
,
"integrity"
:
"sha
512-JPqAvLG1s13B/AuoBjdBYvn38RqW6n1TzrQO839/sIpqLpbnXKacsAgpZHzLD83Sm8SDXMkkrAvEnJ25+0yIpw=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
,
"@babel/plugin-syntax-optional-catch-binding"
:
"7.0.0
-beta.51
"
"@babel/helper-plugin-utils"
:
"7.0.0"
,
"@babel/plugin-syntax-optional-catch-binding"
:
"7.0.0"
}
},
"@babel/plugin-proposal-unicode-property-regex"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-0pbD6nTKN/1/pVu/jAzYWqfZn3s
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.0.0.tgz"
,
"integrity"
:
"sha
512-tM3icA6GhC3ch2SkmSxv7J/hCWKISzwycub6eGsDrFDgukD4dZ/I+x81XgW0YslS6mzNuQ1Cbzh5osjIMgepPQ=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
,
"@babel/helper-regex"
:
"7.0.0
-beta.51
"
,
"@babel/helper-plugin-utils"
:
"7.0.0"
,
"@babel/helper-regex"
:
"7.0.0"
,
"regexpu-core"
:
"4.2.0"
}
},
"@babel/plugin-syntax-async-generators"
:
{
"version"
:
"7.0.0-beta.51"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.0.0-beta.51.tgz"
,
"integrity"
:
"sha1-aSGvHcPaD87d4KYQc+7Hl7jKpwc="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.0.0.tgz"
,
"integrity"
:
"sha512-im7ged00ddGKAjcZgewXmp1vxSZQQywuQXe2B1A7kajjZmDeY/ekMPmWr9zJgveSaQH0k7BcGrojQhcK06l0zA=="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-syntax-json-strings"
:
{
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.0.0.tgz"
,
"integrity"
:
"sha512-UlSfNydC+XLj4bw7ijpldc1uZ/HB84vw+U6BTuqMdIEmz/LDe63w/GHtpQMdXWdqQZFeAI9PjnHe/vDhwirhKA=="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-syntax-object-rest-spread"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-bVehGcHwZMRY5FutRb7wqD7RDAA
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.0.0.tgz"
,
"integrity"
:
"sha
512-5A0n4p6bIiVe5OvQPxBnesezsgFJdHhSs3uFSvaPdMqtsovajLZ+G2vZyvNe10EzJBWWo3AcHGKhAFUxqwp2dw=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-syntax-optional-catch-binding"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-ziZ1cgy0EkjCZDNRXJDJS50Bpv0
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.0.0.tgz"
,
"integrity"
:
"sha
512-Wc+HVvwjcq5qBg1w5RG9o9RVzmCaAg/Vp0erHCKpAYV8La6I94o4GQAmFYNmkzoMO6gzoOSulpKeSSz6mPEoZw=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-arrow-functions"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-KbnbbjhoigbsXCVjmZbYml6/2+M
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.0.0.tgz"
,
"integrity"
:
"sha
512-2EZDBl1WIO/q4DIkIp4s86sdp4ZifL51MoIviLY/gG/mLSuOIEg7J8o6mhbxOTvUJkaN50n+8u41FVsr5KLy/w=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-async-to-generator"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-lFOFBVoubTVmv1WvEnyNclzToXM
="
,
"version"
:
"7.
1.0
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.
1.0
.tgz"
,
"integrity"
:
"sha
512-rNmcmoQ78IrvNCIt/R9U+cixUHeYAzgusTFgIAv+wQb9HJU4szhpDD6e5GCACmj/JP5KxuCwM96bX3L9v4ZN/g=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-module-imports"
:
"7.0.0
-beta.51
"
,
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
,
"@babel/helper-remap-async-to-generator"
:
"7.
0.0-beta.51
"
"@babel/helper-module-imports"
:
"7.0.0"
,
"@babel/helper-plugin-utils"
:
"7.0.0"
,
"@babel/helper-remap-async-to-generator"
:
"7.
1.0
"
}
},
"@babel/plugin-transform-block-scoped-functions"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-IxKbr4FEcfOeqU7shKsf/nbJ/pY
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.0.0.tgz"
,
"integrity"
:
"sha
512-AOBiyUp7vYTqz2Jibe1UaAWL0Hl9JUXEgjFvvvcSc9MVDItv46ViXFw2F7SVt1B5k+KWjl44eeXOAk3UDEaJjQ=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-block-scoping"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-vlVcefDaTrFop/4W14eppxc3AeA
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.0.0.tgz"
,
"integrity"
:
"sha
512-GWEMCrmHQcYWISilUrk9GDqH4enf3UmhOEbNbNrlNAX1ssH3MsS1xLOS6rdjRVPgA7XXVPn87tRkdTEoA/dxEg=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
,
"@babel/helper-plugin-utils"
:
"7.0.0"
,
"lodash"
:
"4.17.10"
},
"dependencies"
:
{
"lodash"
:
{
"version"
:
"4.17.10"
,
"resolved"
:
"https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz"
,
"integrity"
:
"sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg=="
,
"dev"
:
true
}
}
},
"@babel/plugin-transform-classes"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-BD8x+2MnZkoy2Lpl3hV5nv3GXaA
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-annotate-as-pure"
:
"7.0.0
-beta.51
"
,
"@babel/helper-define-map"
:
"7.
0.0-beta.51
"
,
"@babel/helper-function-name"
:
"7.
0.0-beta.51
"
,
"@babel/helper-optimise-call-expression"
:
"7.0.0
-beta.51
"
,
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
,
"@babel/helper-replace-supers"
:
"7.
0.0-beta.51
"
,
"@babel/helper-split-export-declaration"
:
"7.0.0
-beta.51
"
,
"version"
:
"7.
1.0
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.
1.0
.tgz"
,
"integrity"
:
"sha
512-rNaqoD+4OCBZjM7VaskladgqnZ1LO6o2UxuWSDzljzW21pN1KXkB7BstAVweZdxQkHAujps5QMNOTWesBciKFg=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-annotate-as-pure"
:
"7.0.0"
,
"@babel/helper-define-map"
:
"7.
1.0
"
,
"@babel/helper-function-name"
:
"7.
1.0
"
,
"@babel/helper-optimise-call-expression"
:
"7.0.0"
,
"@babel/helper-plugin-utils"
:
"7.0.0"
,
"@babel/helper-replace-supers"
:
"7.
1.0
"
,
"@babel/helper-split-export-declaration"
:
"7.0.0"
,
"globals"
:
"11.3.0"
}
},
"@babel/plugin-transform-computed-properties"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-jHKhqz4HZwNP+eZzLSWBwjwDLv4
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.0.0.tgz"
,
"integrity"
:
"sha
512-ubouZdChNAv4AAWAgU7QKbB93NU5sHwInEWfp+/OzJKA02E6Woh9RVoX4sZrbRwtybky/d7baTUqwFx+HgbvMA=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-destructuring"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-1dRU5XTH7zPuSekYsEivspvpNfY
="
,
"version"
:
"7.
1.3
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.
1.3
.tgz"
,
"integrity"
:
"sha
512-Mb9M4DGIOspH1ExHOUnn2UUXFOyVTiX84fXCd+6B5iWrQg/QMeeRmSwpZ9lnjYLSXtZwiw80ytVMr3zue0ucYw=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-dotall-regex"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-mAVYoeX34ohQ9f/eIEBCkeKqM/s
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.0.0.tgz"
,
"integrity"
:
"sha
512-00THs8eJxOJUFVx1w8i1MBF4XH4PsAjKjQ1eqN/uCH3YKwP21GCKfrn6YZFZswbOk9+0cw1zGQPHVc1KBlSxig=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
,
"@babel/helper-regex"
:
"7.0.0
-beta.51
"
,
"@babel/helper-plugin-utils"
:
"7.0.0"
,
"@babel/helper-regex"
:
"7.0.0"
,
"regexpu-core"
:
"4.2.0"
}
},
"@babel/plugin-transform-duplicate-keys"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-VB6vipfRSpgJs1nY9UgAHwhbm38
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.0.0.tgz"
,
"integrity"
:
"sha
512-w2vfPkMqRkdxx+C71ATLJG30PpwtTpW7DDdLqYt2acXU7YjztzeWW2Jk1T6hKqCLYCcEA5UQM/+xTAm+QCSnuQ=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-exponentiation-operator"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-BLTj5As3AREt1u2jliUTJ1eIH9Q
="
,
"version"
:
"7.
1.0
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.
1.0
.tgz"
,
"integrity"
:
"sha
512-uZt9kD1Pp/JubkukOGQml9tqAeI8NkE98oZnHZ2qHRElmeKCodbTZgOEUtujSCSLhHSBWbzNiFSDIMC4/RBTLQ=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-builder-binary-assignment-operator-visitor"
:
"7.
0.0-beta.51
"
,
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-builder-binary-assignment-operator-visitor"
:
"7.
1.0
"
,
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-for-of"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-RPR2sGxANVF6hAOiYk+xZMQ3FFU
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.0.0.tgz"
,
"integrity"
:
"sha
512-TlxKecN20X2tt2UEr2LNE6aqA0oPeMT1Y3cgz8k4Dn1j5ObT8M3nl9aA37LLklx0PBZKETC9ZAf9n/6SujTuXA=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-function-name"
:
{
"version"
:
"7.0.0-beta.51"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.0.0-beta.51.tgz"
,
"integrity"
:
"sha1-cGU8NgtTJUJG9GWexFCwwKVthqo="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-function-name"
:
"7.0.0-beta.51"
,
"@babel/helper-plugin-utils"
:
"7.0.0-beta.51"
}
},
"@babel/plugin-transform-instanceof"
:
{
"version"
:
"7.0.0-beta.51"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-instanceof/-/plugin-transform-instanceof-7.0.0-beta.51.tgz"
,
"integrity"
:
"sha1-ft1hag3njWuvU0NgpHWGWQbt6Zk="
,
"version"
:
"7.1.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.1.0.tgz"
,
"integrity"
:
"sha512-VxOa1TMlFMtqPW2IDYZQaHsFrq/dDoIjgN098NowhexhZcz3UGlvPgZXuE1jEvNygyWyxRacqDpCZt+par1FNg=="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0-beta.51"
"@babel/helper-function-name"
:
"7.1.0"
,
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-literals"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-RbB6lCI8+iJnAaeUYLQrMt8d7AU
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.0.0.tgz"
,
"integrity"
:
"sha
512-1NTDBWkeNXgpUcyoVFxbr9hS57EpZYXpje92zv0SUzjdu3enaRwF/l3cmyRnXLtIdyJASyiS6PtybK+CgKf7jA=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-modules-amd"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-9oqL5/ZRd9JGUGo5FNrk1m5nWh8
="
,
"version"
:
"7.
1.0
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.
1.0
.tgz"
,
"integrity"
:
"sha
512-wt8P+xQ85rrnGNr2x1iV3DW32W8zrB6ctuBkYBbf5/ZzJY99Ob4MFgsZDFgczNU76iy9PWsy4EuxOliDjdKw6A=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-module-transforms"
:
"7.
0.0-beta.51
"
,
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-module-transforms"
:
"7.
1.0
"
,
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-modules-commonjs"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-QDj54VJE4QkAy4n1t5bQUPHrGVs
="
,
"version"
:
"7.
1.0
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.
1.0
.tgz"
,
"integrity"
:
"sha
512-wtNwtMjn1XGwM0AXPspQgvmE6msSJP15CX2RVfpTSTNPLhKhaOjaIfBaVfj4iUZ/VrFSodcFedwtPg/NxwQlPA=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-module-transforms"
:
"7.
0.0-beta.51
"
,
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
,
"@babel/helper-simple-access"
:
"7.
0.0-beta.51
"
"@babel/helper-module-transforms"
:
"7.
1.0
"
,
"@babel/helper-plugin-utils"
:
"7.0.0"
,
"@babel/helper-simple-access"
:
"7.
1.0
"
}
},
"@babel/plugin-transform-modules-systemjs"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-bn/ErZQhtyXN3zfMkk6vd38ijCc
="
,
"version"
:
"7.
1.3
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.
1.3
.tgz"
,
"integrity"
:
"sha
512-PvTxgjxQAq4pvVUZF3mD5gEtVDuId8NtWkJsZLEJZMZAW3TvgQl1pmydLLN1bM8huHFVVU43lf0uvjQj9FRkKw=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-hoist-variables"
:
"7.0.0
-beta.51
"
,
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-hoist-variables"
:
"7.0.0"
,
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-modules-umd"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-7i71dVedluQGE/ym5sjttcrbbG8
="
,
"version"
:
"7.
1.0
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.
1.0
.tgz"
,
"integrity"
:
"sha
512-enrRtn5TfRhMmbRwm7F8qOj0qEYByqUvTttPEGimcBH4CJHphjyK1Vg7sdU7JjeEmgSpM890IT/efS2nMHwYig=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-module-transforms"
:
"7.
0.0-beta.51
"
,
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-module-transforms"
:
"7.
1.0
"
,
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-new-target"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-cHWhBllcv91CXta4MLefinr/UoM
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.0.0.tgz"
,
"integrity"
:
"sha
512-yin069FYjah+LbqfGeTfzIBODex/e++Yfa0rH0fpfam9uTbuEeEOx5GLGr210ggOV77mVRNoeqSYqeuaqSzVSw=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-object-super"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-rBjoi8HXm3GL2vSKdWgzzfW9zr8
="
,
"version"
:
"7.
1.0
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.
1.0
.tgz"
,
"integrity"
:
"sha
512-/O02Je1CRTSk2SSJaq0xjwQ8hG4zhZGNjE8psTsSNPXyLRCODv7/PBozqT5AmQMzp7MI3ndvMhGdqp9c96tTEw=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
,
"@babel/helper-replace-supers"
:
"7.
0.0-beta.51
"
"@babel/helper-plugin-utils"
:
"7.0.0"
,
"@babel/helper-replace-supers"
:
"7.
1.0
"
}
},
"@babel/plugin-transform-parameters"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-mQGVsd/bG8yUkG8wNJUQie0e3U4
="
,
"version"
:
"7.
1.0
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.
1.0
.tgz"
,
"integrity"
:
"sha
512-vHV7oxkEJ8IHxTfRr3hNGzV446GAb+0hgbA7o/0Jd76s+YzccdWuTU296FOCOl/xweU4t/Ya4g41yWz80RFCRw=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-call-delegate"
:
"7.
0.0-beta.51
"
,
"@babel/helper-get-function-arity"
:
"7.0.0
-beta.51
"
,
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-call-delegate"
:
"7.
1.0
"
,
"@babel/helper-get-function-arity"
:
"7.0.0"
,
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-regenerator"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-U28NWZ0nU9ygor6KZeLCRKe1YSs
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.0.0.tgz"
,
"integrity"
:
"sha
512-sj2qzsEx8KDVv1QuJc/dEfilkg3RRPvPYx/VnKLtItVQRWt1Wqf5eVCOLZm29CiGFfYYsA3VPjfizTCV0S0Dlw=
="
,
"dev"
:
true
,
"requires"
:
{
"regenerator-transform"
:
"0.1
2.4
"
"regenerator-transform"
:
"0.1
3.3
"
}
},
"@babel/plugin-transform-shorthand-properties"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-3bwLGuHds7z+aWnyyWgQPxHjK9k
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.0.0.tgz"
,
"integrity"
:
"sha
512-g/99LI4vm5iOf5r1Gdxq5Xmu91zvjhEG5+yZDJW268AZELAu4J1EiFLnkSG3yuUsZyOipVOVUKoGPYwfsTymhw=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-spread"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-EAEpvI19z0vHmtzWEppCFCWdilA
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.0.0.tgz"
,
"integrity"
:
"sha
512-L702YFy2EvirrR4shTj0g2xQp7aNwZoWNCkNu2mcoU0uyzMl0XRwDSwzB/xp6DSUFiBmEXuyAyEN16LsgVqGGQ=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-sticky-regex"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-SMvqzTG9Be6AC1+svLCcV4G9lhk
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.0.0.tgz"
,
"integrity"
:
"sha
512-LFUToxiyS/WD+XEWpkx/XJBrUXKewSZpzX68s+yEOtIbdnsRjpryDw9U06gYc6klYEij/+KQVRnD3nz3AoKmjw=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
,
"@babel/helper-regex"
:
"7.0.0
-beta.51
"
"@babel/helper-plugin-utils"
:
"7.0.0"
,
"@babel/helper-regex"
:
"7.0.0"
}
},
"@babel/plugin-transform-template-literals"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-LQWV9WRh1DRbo1w41zAz+H7Lu8g
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.0.0.tgz"
,
"integrity"
:
"sha
512-vA6rkTCabRZu7Nbl9DfLZE1imj4tzdWcg5vtdQGvj+OH9itNNB6hxuRMHuIY8SGnEt1T9g5foqs9LnrHzsqEFg=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-annotate-as-pure"
:
"7.0.0
-beta.51
"
,
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-annotate-as-pure"
:
"7.0.0"
,
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-typeof-symbol"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-SVDAyOPJ4eFB5Fzrq15hSCYyBMM
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.0.0.tgz"
,
"integrity"
:
"sha
512-1r1X5DO78WnaAIvs5uC48t41LLckxsYklJrZjNKcevyz83sF2l4RHbw29qrCPr/6ksFsdfRpT/ZgxNWHXRnffg=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
"@babel/helper-plugin-utils"
:
"7.0.0"
}
},
"@babel/plugin-transform-unicode-regex"
:
{
"version"
:
"7.0.0
-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.0.0
-beta.51
.tgz"
,
"integrity"
:
"sha
1-kBn5FQj0C1CmRDUEMijEFCws2GQ
="
,
"version"
:
"7.0.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.0.0.tgz"
,
"integrity"
:
"sha
512-uJBrJhBOEa3D033P95nPHu3nbFwFE9ZgXsfEitzoIXIwqAZWk7uXcg06yFKXz9FSxBH5ucgU/cYdX0IV8ldHKw=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0
-beta.51
"
,
"@babel/helper-regex"
:
"7.0.0
-beta.51
"
,
"@babel/helper-plugin-utils"
:
"7.0.0"
,
"@babel/helper-regex"
:
"7.0.0"
,
"regexpu-core"
:
"4.2.0"
}
},
"@babel/preset-env"
:
{
"version"
:
"7.0.0-beta.51"
,
"resolved"
:
"https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.0.0-beta.51.tgz"
,
"integrity"
:
"sha1-W1gObp6DBBZsExcBfoY8Btz8BKI="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-module-imports"
:
"7.0.0-beta.51"
,
"@babel/helper-plugin-utils"
:
"7.0.0-beta.51"
,
"@babel/plugin-proposal-async-generator-functions"
:
"7.0.0-beta.51"
,
"@babel/plugin-proposal-object-rest-spread"
:
"7.0.0-beta.51"
,
"@babel/plugin-proposal-optional-catch-binding"
:
"7.0.0-beta.51"
,
"@babel/plugin-proposal-unicode-property-regex"
:
"7.0.0-beta.51"
,
"@babel/plugin-syntax-async-generators"
:
"7.0.0-beta.51"
,
"@babel/plugin-syntax-object-rest-spread"
:
"7.0.0-beta.51"
,
"@babel/plugin-syntax-optional-catch-binding"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-arrow-functions"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-async-to-generator"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-block-scoped-functions"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-block-scoping"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-classes"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-computed-properties"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-destructuring"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-dotall-regex"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-duplicate-keys"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-exponentiation-operator"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-for-of"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-function-name"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-literals"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-modules-amd"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-modules-commonjs"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-modules-systemjs"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-modules-umd"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-new-target"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-object-super"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-parameters"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-regenerator"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-shorthand-properties"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-spread"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-sticky-regex"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-template-literals"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-typeof-symbol"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-unicode-regex"
:
"7.0.0-beta.51"
,
"browserslist"
:
"3.2.8"
,
"version"
:
"7.1.0"
,
"resolved"
:
"https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.1.0.tgz"
,
"integrity"
:
"sha512-ZLVSynfAoDHB/34A17/JCZbyrzbQj59QC1Anyueb4Bwjh373nVPq5/HMph0z+tCmcDjXDe+DlKQq9ywQuvWrQg=="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-module-imports"
:
"7.0.0"
,
"@babel/helper-plugin-utils"
:
"7.0.0"
,
"@babel/plugin-proposal-async-generator-functions"
:
"7.1.0"
,
"@babel/plugin-proposal-json-strings"
:
"7.0.0"
,
"@babel/plugin-proposal-object-rest-spread"
:
"7.0.0"
,
"@babel/plugin-proposal-optional-catch-binding"
:
"7.0.0"
,
"@babel/plugin-proposal-unicode-property-regex"
:
"7.0.0"
,
"@babel/plugin-syntax-async-generators"
:
"7.0.0"
,
"@babel/plugin-syntax-object-rest-spread"
:
"7.0.0"
,
"@babel/plugin-syntax-optional-catch-binding"
:
"7.0.0"
,
"@babel/plugin-transform-arrow-functions"
:
"7.0.0"
,
"@babel/plugin-transform-async-to-generator"
:
"7.1.0"
,
"@babel/plugin-transform-block-scoped-functions"
:
"7.0.0"
,
"@babel/plugin-transform-block-scoping"
:
"7.0.0"
,
"@babel/plugin-transform-classes"
:
"7.1.0"
,
"@babel/plugin-transform-computed-properties"
:
"7.0.0"
,
"@babel/plugin-transform-destructuring"
:
"7.1.3"
,
"@babel/plugin-transform-dotall-regex"
:
"7.0.0"
,
"@babel/plugin-transform-duplicate-keys"
:
"7.0.0"
,
"@babel/plugin-transform-exponentiation-operator"
:
"7.1.0"
,
"@babel/plugin-transform-for-of"
:
"7.0.0"
,
"@babel/plugin-transform-function-name"
:
"7.1.0"
,
"@babel/plugin-transform-literals"
:
"7.0.0"
,
"@babel/plugin-transform-modules-amd"
:
"7.1.0"
,
"@babel/plugin-transform-modules-commonjs"
:
"7.1.0"
,
"@babel/plugin-transform-modules-systemjs"
:
"7.1.3"
,
"@babel/plugin-transform-modules-umd"
:
"7.1.0"
,
"@babel/plugin-transform-new-target"
:
"7.0.0"
,
"@babel/plugin-transform-object-super"
:
"7.1.0"
,
"@babel/plugin-transform-parameters"
:
"7.1.0"
,
"@babel/plugin-transform-regenerator"
:
"7.0.0"
,
"@babel/plugin-transform-shorthand-properties"
:
"7.0.0"
,
"@babel/plugin-transform-spread"
:
"7.0.0"
,
"@babel/plugin-transform-sticky-regex"
:
"7.0.0"
,
"@babel/plugin-transform-template-literals"
:
"7.0.0"
,
"@babel/plugin-transform-typeof-symbol"
:
"7.0.0"
,
"@babel/plugin-transform-unicode-regex"
:
"7.0.0"
,
"browserslist"
:
"4.3.0"
,
"invariant"
:
"2.2.4"
,
"js-levenshtein"
:
"1.1.
3
"
,
"js-levenshtein"
:
"1.1.
4
"
,
"semver"
:
"5.5.0"
}
},
"@babel/preset-es2015"
:
{
"version"
:
"7.0.0-beta.51"
,
"resolved"
:
"https://registry.npmjs.org/@babel/preset-es2015/-/preset-es2015-7.0.0-beta.51.tgz"
,
"integrity"
:
"sha1-MfAtTGVpbYmt01TUjQvoEqbqhSQ="
,
"dev"
:
true
,
"requires"
:
{
"@babel/helper-plugin-utils"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-arrow-functions"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-block-scoped-functions"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-block-scoping"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-classes"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-computed-properties"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-destructuring"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-duplicate-keys"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-for-of"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-function-name"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-instanceof"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-literals"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-modules-amd"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-modules-commonjs"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-modules-systemjs"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-modules-umd"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-object-super"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-parameters"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-regenerator"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-shorthand-properties"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-spread"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-sticky-regex"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-template-literals"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-typeof-symbol"
:
"7.0.0-beta.51"
,
"@babel/plugin-transform-unicode-regex"
:
"7.0.0-beta.51"
}
},
"@babel/template"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/template/-/template-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-lgKkCuvPNXrpZ34lMu9fyBD1+/8
="
,
"version"
:
"7.
1.2
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/template/-/template-7.
1.2
.tgz"
,
"integrity"
:
"sha
512-SY1MmplssORfFiLDcOETrW7fCLl+PavlwMh92rrGcikQaRq4iWPVH0MpwPpY3etVMx6RnDjXtr6VZYr/IbP/Ag=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/code-frame"
:
"7.0.0-beta.51"
,
"@babel/parser"
:
"7.0.0-beta.51"
,
"@babel/types"
:
"7.0.0-beta.51"
,
"lodash"
:
"4.17.10"
},
"dependencies"
:
{
"lodash"
:
{
"version"
:
"4.17.10"
,
"resolved"
:
"https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz"
,
"integrity"
:
"sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg=="
,
"dev"
:
true
}
"@babel/code-frame"
:
"7.0.0"
,
"@babel/parser"
:
"7.1.3"
,
"@babel/types"
:
"7.1.3"
}
},
"@babel/traverse"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/traverse/-/traverse-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-mB2vLOw0emIx06odnhgDsDqqpKg
="
,
"version"
:
"7.
1.4
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/traverse/-/traverse-7.
1.4
.tgz"
,
"integrity"
:
"sha
512-my9mdrAIGdDiSVBuMjpn/oXYpva0/EZwWL3sm3Wcy/AVWO2eXnsoZruOT9jOGNRXU8KbCIu5zsKnXcAJ6PcV6Q=
="
,
"dev"
:
true
,
"requires"
:
{
"@babel/code-frame"
:
"7.0.0
-beta.51
"
,
"@babel/generator"
:
"7.
0.0-beta.51
"
,
"@babel/helper-function-name"
:
"7.
0.0-beta.51
"
,
"@babel/helper-split-export-declaration"
:
"7.0.0
-beta.51
"
,
"@babel/parser"
:
"7.
0.0-beta.51
"
,
"@babel/types"
:
"7.
0.0-beta.51
"
,
"@babel/code-frame"
:
"7.0.0"
,
"@babel/generator"
:
"7.
1.3
"
,
"@babel/helper-function-name"
:
"7.
1.0
"
,
"@babel/helper-split-export-declaration"
:
"7.0.0"
,
"@babel/parser"
:
"7.
1.3
"
,
"@babel/types"
:
"7.
1.3
"
,
"debug"
:
"3.1.0"
,
"globals"
:
"11.3.0"
,
"invariant"
:
"2.2.4"
,
"lodash"
:
"4.17.10"
},
"dependencies"
:
{
"lodash"
:
{
"version"
:
"4.17.10"
,
"resolved"
:
"https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz"
,
"integrity"
:
"sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg=="
,
"dev"
:
true
}
}
},
"@babel/types"
:
{
"version"
:
"7.
0.0-beta.51
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/types/-/types-7.
0.0-beta.51
.tgz"
,
"integrity"
:
"sha
1-2AK3tUO1g2x3iqaReXq/APPZfqk
="
,
"version"
:
"7.
1.3
"
,
"resolved"
:
"https://registry.npmjs.org/@babel/types/-/types-7.
1.3
.tgz"
,
"integrity"
:
"sha
512-RpPOVfK+yatXyn8n4PB1NW6k9qjinrXrRR8ugBN8fD6hCy5RXI6PSbVqpOJBO9oSaY7Nom4ohj35feb0UR9hSA=
="
,
"dev"
:
true
,
"requires"
:
{
"esutils"
:
"2.0.2"
,
"lodash"
:
"4.17.10"
,
"to-fast-properties"
:
"2.0.0"
},
"dependencies"
:
{
"lodash"
:
{
"version"
:
"4.17.10"
,
"resolved"
:
"https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz"
,
"integrity"
:
"sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg=="
,
"dev"
:
true
}
}
},
"@fortawesome/fontawesome-free"
:
{
...
...
@@ -1568,9 +1462,9 @@
}
},
"babel-loader"
:
{
"version"
:
"8.0.
0-beta.
4"
,
"resolved"
:
"https://registry.npmjs.org/babel-loader/-/babel-loader-8.0.
0-beta.
4.tgz"
,
"integrity"
:
"sha512-f
QMCj8jRpF/2CPuVnpFrOb8+8pRuquKqoC+tspy5RWBmL37/2qc104sLLLqpwWltrFzpYb30utPpKc3H6P3ETQ
=="
,
"version"
:
"8.0.4"
,
"resolved"
:
"https://registry.npmjs.org/babel-loader/-/babel-loader-8.0.4.tgz"
,
"integrity"
:
"sha512-f
hBhNkUToJcW9nV46v8w87AJOwAJDz84c1CL57n3Stj73FANM/b9TbCUK4YhdOwEyZ+OxhYpdeZDNzSI29Firw
=="
,
"dev"
:
true
,
"requires"
:
{
"find-cache-dir"
:
"1.0.0"
,
...
...
@@ -2252,7 +2146,9 @@
}
},
"backbone.browserStorage"
:
{
"version"
:
"github:jcbrand/Backbone.browserStorage#78e4a58f7cee10cad6af4fd5f3213331a396aa5a"
,
"version"
:
"0.0.4"
,
"resolved"
:
"https://registry.npmjs.org/backbone.browserStorage/-/backbone.browserStorage-0.0.4.tgz"
,
"integrity"
:
"sha512-4LvDP2IkOu9Nt6kj6ft4moKmqKqm3c0WY3c/aie0Cf374wjFuO7vCh/afcKdu1YSuVsryM8yH90/J7yqWbaPHw=="
,
"dev"
:
true
,
"requires"
:
{
"backbone"
:
"1.3.3"
,
...
...
@@ -2520,13 +2416,14 @@
}
},
"browserslist"
:
{
"version"
:
"
3.2.8
"
,
"resolved"
:
"https://registry.npmjs.org/browserslist/-/browserslist-
3.2.8
.tgz"
,
"integrity"
:
"sha512-
WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ
=="
,
"version"
:
"
4.3.0
"
,
"resolved"
:
"https://registry.npmjs.org/browserslist/-/browserslist-
4.3.0
.tgz"
,
"integrity"
:
"sha512-
j0jLqo+6ZhFWvTjEIcDyR8LIiN8pA3cUrT/SGAs0LPp/cKvkRpCnzuxtnAW+sOPLTic5wfb+TQvRX2RTN2wo4w
=="
,
"dev"
:
true
,
"requires"
:
{
"caniuse-lite"
:
"1.0.30000861"
,
"electron-to-chromium"
:
"1.3.50"
"caniuse-lite"
:
"1.0.30000893"
,
"electron-to-chromium"
:
"1.3.80"
,
"node-releases"
:
"1.0.0-alpha.14"
}
},
"buffer"
:
{
...
...
@@ -2671,9 +2568,9 @@
"dev"
:
true
},
"caniuse-lite"
:
{
"version"
:
"1.0.300008
61
"
,
"resolved"
:
"https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.300008
61
.tgz"
,
"integrity"
:
"sha512-
aeEQ4kyd41qCl8XFbCjWgVBI3EOd66M9sC43MFn0kuD/vcrNqvoIAlKon4xdp8yMCYvVjdCltI3lgArj8I6cNA
=="
,
"version"
:
"1.0.300008
93
"
,
"resolved"
:
"https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.300008
93
.tgz"
,
"integrity"
:
"sha512-
kOddHcTEef+NgN/fs0zmX2brHTNATVOWMEIhlZHCuwQRtXobjSw9pAECc44Op4bTBcavRjkLaPrGomknH7+Jvg
=="
,
"dev"
:
true
},
"catharsis"
:
{
...
...
@@ -3208,12 +3105,11 @@
"dev"
:
true
},
"define-properties"
:
{
"version"
:
"1.1.
2
"
,
"resolved"
:
"https://registry.npmjs.org/define-properties/-/define-properties-1.1.
2
.tgz"
,
"integrity"
:
"sha
1-g6c/L+pWmJj7c3GTyPhzyvbUXJQ
="
,
"version"
:
"1.1.
3
"
,
"resolved"
:
"https://registry.npmjs.org/define-properties/-/define-properties-1.1.
3
.tgz"
,
"integrity"
:
"sha
512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ=
="
,
"dev"
:
true
,
"requires"
:
{
"foreach"
:
"2.0.5"
,
"object-keys"
:
"1.0.12"
}
},
...
...
@@ -3446,9 +3342,9 @@
"dev"
:
true
},
"electron-to-chromium"
:
{
"version"
:
"1.3.
5
0"
,
"resolved"
:
"https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.
5
0.tgz"
,
"integrity"
:
"sha
1-dDi3b5K0G5GfP73TUPvQdX2s3fc
="
,
"version"
:
"1.3.
8
0"
,
"resolved"
:
"https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.
8
0.tgz"
,
"integrity"
:
"sha
512-WClidEWEUNx7OfwXehB0qaxCuetjbKjev2SmXWgybWPLKAThBiMTF/2Pd8GSUDtoGOavxVzdkKwfFAPRSWlkLw=
="
,
"dev"
:
true
},
"elegant-spinner"
:
{
...
...
@@ -3553,22 +3449,22 @@
"integrity"
:
"sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA=="
,
"dev"
:
true
,
"requires"
:
{
"es-to-primitive"
:
"1.
1.1
"
,
"es-to-primitive"
:
"1.
2.0
"
,
"function-bind"
:
"1.1.1"
,
"has"
:
"1.0.3"
,
"is-callable"
:
"1.1.
3
"
,
"is-callable"
:
"1.1.
4
"
,
"is-regex"
:
"1.0.4"
}
},
"es-to-primitive"
:
{
"version"
:
"1.
1.1
"
,
"resolved"
:
"https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.
1.1
.tgz"
,
"integrity"
:
"sha
1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0
="
,
"version"
:
"1.
2.0
"
,
"resolved"
:
"https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.
2.0
.tgz"
,
"integrity"
:
"sha
512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg=
="
,
"dev"
:
true
,
"requires"
:
{
"is-callable"
:
"1.1.
3
"
,
"is-callable"
:
"1.1.
4
"
,
"is-date-object"
:
"1.0.1"
,
"is-symbol"
:
"1.0.
1
"
"is-symbol"
:
"1.0.
2
"
}
},
"es6-promise"
:
{
...
...
@@ -4151,12 +4047,6 @@
"for-in"
:
"1.0.2"
}
},
"foreach"
:
{
"version"
:
"2.0.5"
,
"resolved"
:
"https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz"
,
"integrity"
:
"sha1-C+4AUBiusmDQo6865ljdATbsG5k="
,
"dev"
:
true
},
"formatio"
:
{
"version"
:
"1.2.0"
,
"resolved"
:
"https://registry.npmjs.org/formatio/-/formatio-1.2.0.tgz"
,
...
...
@@ -5165,6 +5055,12 @@
"integrity"
:
"sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw=="
,
"dev"
:
true
},
"has-symbols"
:
{
"version"
:
"1.0.0"
,
"resolved"
:
"https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz"
,
"integrity"
:
"sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q="
,
"dev"
:
true
},
"has-to-string-tag-x"
:
{
"version"
:
"1.4.1"
,
"resolved"
:
"https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz"
,
...
...
@@ -5621,9 +5517,9 @@
}
},
"is-callable"
:
{
"version"
:
"1.1.
3
"
,
"resolved"
:
"https://registry.npmjs.org/is-callable/-/is-callable-1.1.
3
.tgz"
,
"integrity"
:
"sha
1-hut1OSgF3cM69xySoO7fdO52BLI
="
,
"version"
:
"1.1.
4
"
,
"resolved"
:
"https://registry.npmjs.org/is-callable/-/is-callable-1.1.
4
.tgz"
,
"integrity"
:
"sha
512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA=
="
,
"dev"
:
true
},
"is-data-descriptor"
:
{
...
...
@@ -5837,10 +5733,13 @@
"dev"
:
true
},
"is-symbol"
:
{
"version"
:
"1.0.1"
,
"resolved"
:
"https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz"
,
"integrity"
:
"sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI="
,
"dev"
:
true
"version"
:
"1.0.2"
,
"resolved"
:
"https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz"
,
"integrity"
:
"sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw=="
,
"dev"
:
true
,
"requires"
:
{
"has-symbols"
:
"1.0.0"
}
},
"is-utf8"
:
{
"version"
:
"0.2.1"
,
...
...
@@ -5918,9 +5817,9 @@
"dev"
:
true
},
"js-levenshtein"
:
{
"version"
:
"1.1.
3
"
,
"resolved"
:
"https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.
3
.tgz"
,
"integrity"
:
"sha512-
/812MXr9RBtMObviZ8gQBhHO8MOrGj8HlEE+4ccMTElNA/6I3u39u+bhny55Lk921yn44nSZFy9naNLElL5wgQ
=="
,
"version"
:
"1.1.
4
"
,
"resolved"
:
"https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.
4
.tgz"
,
"integrity"
:
"sha512-
PxfGzSs0ztShKrUYPIn5r0MtyAhYcCwmndozzpz8YObbPnD1jFxzlBGbRnX2mIu6Z13xN6+PTu05TQFnZFlzow
=="
,
"dev"
:
true
},
"js-tokens"
:
{
...
...
@@ -7078,6 +6977,15 @@
}
}
},
"node-releases"
:
{
"version"
:
"1.0.0-alpha.14"
,
"resolved"
:
"https://registry.npmjs.org/node-releases/-/node-releases-1.0.0-alpha.14.tgz"
,
"integrity"
:
"sha512-G8nnF9cP9QPP/jUmYWw/uUUhumHmkm+X/EarCugYFjYm2uXRMFeOD6CVT3RLdoyCvDUNy51nirGfUItKWs/S1g=="
,
"dev"
:
true
,
"requires"
:
{
"semver"
:
"5.5.0"
}
},
"nomnom"
:
{
"version"
:
"1.8.1"
,
"resolved"
:
"https://registry.npmjs.org/nomnom/-/nomnom-1.8.1.tgz"
,
...
...
@@ -12211,7 +12119,7 @@
"integrity"
:
"sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY="
,
"dev"
:
true
,
"requires"
:
{
"define-properties"
:
"1.1.
2
"
,
"define-properties"
:
"1.1.
3
"
,
"es-abstract"
:
"1.12.0"
}
},
...
...
@@ -13033,9 +12941,9 @@
"dev"
:
true
},
"regenerator-transform"
:
{
"version"
:
"0.1
2.4
"
,
"resolved"
:
"https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.1
2.4
.tgz"
,
"integrity"
:
"sha512-
p2I0fY+TbSLD2/VFTFb/ypEHxs3e3AjU0DzttdPqk2bSmDhfSh5E54b86Yc6XhUa5KykK1tgbvZ4Nr82oCJWkQ
=="
,
"version"
:
"0.1
3.3
"
,
"resolved"
:
"https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.1
3.3
.tgz"
,
"integrity"
:
"sha512-
5ipTrZFSq5vU2YoGoww4uaRVAK4wyYC4TSICibbfEPOruUu8FFP7ErV0BjmbIOEpn3O/k9na9UEdYR/3m7N6uA
=="
,
"dev"
:
true
,
"requires"
:
{
"private"
:
"0.1.8"
...
...
@@ -13962,16 +13870,18 @@
"dev"
:
true
},
"strophe.js"
:
{
"version"
:
"github:strophe/strophejs#a2692dcfdaf7d591254ac73f3d8584992b6f8da7"
,
"version"
:
"1.3.0"
,
"resolved"
:
"https://registry.npmjs.org/strophe.js/-/strophe.js-1.3.0.tgz"
,
"integrity"
:
"sha512-1NSLqtpHevIGb0xQEY33XqaH+/cfrKenLwD5Vwn9QqY/cB21JGDUNg5afhDePXlaFViWHE6M80UkfIzQLbUGKQ=="
,
"dev"
:
true
},
"strophejs-plugin-ping"
:
{
"version"
:
"0.0.
1
"
,
"resolved"
:
"https://registry.npmjs.org/strophejs-plugin-ping/-/strophejs-plugin-ping-0.0.
1
.tgz"
,
"integrity"
:
"sha
1-NXEmxTZZSwZmjhh4c4Ey+sNciJY
="
,
"version"
:
"0.0.
3
"
,
"resolved"
:
"https://registry.npmjs.org/strophejs-plugin-ping/-/strophejs-plugin-ping-0.0.
3
.tgz"
,
"integrity"
:
"sha
512-HS/ArEGKXfu36fihjUSfjqmqOSyppQTJUbrkfEtOBRJmnaP3LsRRe5T2S3dmCdsWHKORaJYc/OHSKfFlxHPdqw=
="
,
"dev"
:
true
,
"requires"
:
{
"strophe.js"
:
"
github:strophe/strophejs#a2692dcfdaf7d591254ac73f3d8584992b6f8da7
"
"strophe.js"
:
"
1.3.0
"
}
},
"strophejs-plugin-register"
:
{
...
...
@@ -13981,9 +13891,9 @@
"dev"
:
true
},
"strophejs-plugin-rsm"
:
{
"version"
:
"0.0.
1
"
,
"resolved"
:
"https://registry.npmjs.org/strophejs-plugin-rsm/-/strophejs-plugin-rsm-0.0.
1
.tgz"
,
"integrity"
:
"sha
1-zBPqgHWmbJ2rdt04G37d/bG64Hs
="
,
"version"
:
"0.0.
2
"
,
"resolved"
:
"https://registry.npmjs.org/strophejs-plugin-rsm/-/strophejs-plugin-rsm-0.0.
2
.tgz"
,
"integrity"
:
"sha
512-Yn/VpxNz3Gkb790rJkwMyjlwHWCjWA9UxIl5kwGnsr7Ofo1MHztgyQ8XwQF1DGFp3Y4oiXbjZ/whG3S/cIgIew=
="
,
"dev"
:
true
},
"supports-color"
:
{
...
...
@@ -14535,7 +14445,7 @@
"integrity"
:
"sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA=="
,
"dev"
:
true
,
"requires"
:
{
"define-properties"
:
"1.1.
2
"
,
"define-properties"
:
"1.1.
3
"
,
"object.getownpropertydescriptors"
:
"2.0.3"
}
},
...
...
package.json
View file @
a49c1f55
...
...
@@ -32,15 +32,14 @@
"browser"
:
"*"
},
"devDependencies"
:
{
"
@babel/cli
"
:
"
^7.0.0-beta.48
"
,
"
@babel/core
"
:
"
^7.0.0-beta.48
"
,
"
@babel/preset-env
"
:
"
^7.0.0-beta.48
"
,
"
@babel/preset-es2015
"
:
"
^7.0.0-beta.49
"
,
"
@babel/cli
"
:
"
^7.1.0
"
,
"
@babel/core
"
:
"
^7.1.0
"
,
"
@babel/preset-env
"
:
"
^7.1.0
"
,
"
@fortawesome/fontawesome-free
"
:
"
5.3.1
"
,
"
awesomplete-avoid-xss
"
:
"
^1.1.2
"
,
"
babel-loader
"
:
"
^8.0.0
-beta.3
"
,
"
babel-loader
"
:
"
^8.0.0
"
,
"
backbone
"
:
"
1.3.3
"
,
"
backbone.browserStorage
"
:
"
jcbrand/Backbone.browserStorage#78e4a58f7cee10cad6af4fd5f3213331a396aa5a
"
,
"
backbone.browserStorage
"
:
"
0.0.4
"
,
"
backbone.nativeview
"
:
"
^0.3.3
"
,
"
backbone.overview
"
:
"
1.0.2
"
,
"
backbone.vdomview
"
:
"
1.0.1
"
,
...
...
@@ -78,10 +77,9 @@
"
sinon
"
:
"
^2.1.0
"
,
"
sizzle
"
:
"
^2.3.3
"
,
"
snabbdom
"
:
"
0.7.1
"
,
"
strophe.js
"
:
"
strophe/strophejs#a2692dcfdaf7d591254ac73f3d8584992b6f8da7
"
,
"
strophejs-plugin-ping
"
:
"
0.0.1
"
,
"
strophejs-plugin-ping
"
:
"
0.0.3
"
,
"
strophejs-plugin-register
"
:
"
0.0.1
"
,
"
strophejs-plugin-rsm
"
:
"
0.0.
1
"
,
"
strophejs-plugin-rsm
"
:
"
0.0.
2
"
,
"
twemoji
"
:
"
^11.0.1
"
,
"
uglify-es
"
:
"
^3.0.24
"
,
"
urijs
"
:
"
^1.19.1
"
,
...
...
src/converse-core.js
View file @
a49c1f55
...
...
@@ -13,7 +13,7 @@
"
i18n
"
,
"
utils/core
"
,
"
moment
"
,
"
strophe
"
,
"
strophe
.js
"
,
"
pluggable
"
,
"
backbone.noconflict
"
,
"
backbone.nativeview
"
,
...
...
src/converse-mam.js
View file @
a49c1f55
...
...
@@ -12,7 +12,7 @@
define
([
"
sizzle
"
,
"
converse-core
"
,
"
converse-disco
"
,
"
strophe
.
rsm
"
"
strophe
js-plugin-
rsm
"
],
factory
);
}(
this
,
function
(
sizzle
,
converse
)
{
"
use strict
"
;
...
...
src/converse-ping.js
View file @
a49c1f55
...
...
@@ -8,7 +8,7 @@
* as specified in XEP-0199 XMPP Ping.
*/
(
function
(
root
,
factory
)
{
define
([
"
converse-core
"
,
"
strophe
.
ping
"
],
factory
);
define
([
"
converse-core
"
,
"
strophe
js-plugin-
ping
"
],
factory
);
}(
this
,
function
(
converse
)
{
"
use strict
"
;
// Strophe methods for building stanzas
...
...
src/utils/core.js
View file @
a49c1f55
...
...
@@ -15,7 +15,7 @@
"
fast-text-encoding
"
,
"
lodash.noconflict
"
,
"
backbone
"
,
"
strophe
"
,
"
strophe
.js
"
,
"
uri
"
,
"
templates/audio.html
"
,
"
templates/file.html
"
,
...
...
webpack.config.js
View file @
a49c1f55
...
...
@@ -106,9 +106,6 @@ const config = {
"
snabbdom-eventlisteners
"
:
path
.
resolve
(
__dirname
,
"
node_modules/snabbdom/dist/snabbdom-eventlisteners
"
),
"
snabbdom-props
"
:
path
.
resolve
(
__dirname
,
"
node_modules/snabbdom/dist/snabbdom-props
"
),
"
snabbdom-style
"
:
path
.
resolve
(
__dirname
,
"
node_modules/snabbdom/dist/snabbdom-style
"
),
"
strophe
"
:
path
.
resolve
(
__dirname
,
"
node_modules/strophe.js/dist/strophe
"
),
"
strophe.ping
"
:
path
.
resolve
(
__dirname
,
"
node_modules/strophejs-plugin-ping/strophe.ping
"
),
"
strophe.rsm
"
:
path
.
resolve
(
__dirname
,
"
node_modules/strophejs-plugin-rsm/strophe.rsm
"
),
"
tovnode
"
:
path
.
resolve
(
__dirname
,
"
node_modules/snabbdom/dist/tovnode
"
),
"
underscore
"
:
path
.
resolve
(
__dirname
,
"
src/underscore-shim
"
),
"
uri
"
:
path
.
resolve
(
__dirname
,
"
node_modules/urijs/src/URI
"
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment