quickblox 2.21.5-alpha.6 → 2.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -4
- package/quickblox.js +5456 -21467
- package/quickblox.min.js +1 -1
- package/src/modules/chat/qbChatHelpers.js +0 -8
- package/src/qbConfig.js +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quickblox",
|
|
3
3
|
"description": "QuickBlox JavaScript SDK",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.22.0",
|
|
5
5
|
"homepage": "https://quickblox.com/developers/Javascript",
|
|
6
6
|
"main": "src/qbMain.js",
|
|
7
7
|
"types": "quickblox.d.ts",
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"cordova-custom-config": "^5.1.1",
|
|
42
|
-
"crypto-js": "
|
|
43
|
-
"form-data": "^
|
|
42
|
+
"crypto-js": "^4.2.0",
|
|
43
|
+
"form-data": "^4.0.5",
|
|
44
44
|
"nativescript-xmpp-client": "^1.2.0",
|
|
45
|
-
"node-fetch": "^
|
|
45
|
+
"node-fetch": "^2.7.0",
|
|
46
46
|
"node-xmpp-client": "^3.0.0",
|
|
47
47
|
"sdp-transform": "^2.3.0",
|
|
48
48
|
"strophe.js": "2.0.0",
|
|
@@ -81,6 +81,8 @@
|
|
|
81
81
|
"dev": "NODE_ENV=develop gulp watch",
|
|
82
82
|
"setDependencies": "npm i && npm i -g gulp-cli && npm install rimraf -g && npm install -g jasmine",
|
|
83
83
|
"lint": "jshint src --reporter=node_modules/jshint-stylish",
|
|
84
|
+
"test:node-regression": "node spec/phase-a-upgrade-check.js",
|
|
85
|
+
"test:regression": "npm run test:node-regression && npm test",
|
|
84
86
|
"build": "cross-env NODE_ENV=production npm run lint && gulp build && gulp minify",
|
|
85
87
|
"buildNotMinified": "npm run lint && gulp build",
|
|
86
88
|
"generateBuildVersion": "gulp generate-build_version",
|