-
Notifications
You must be signed in to change notification settings - Fork 217
/
package.json
89 lines (89 loc) · 2.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "quickblox",
"description": "QuickBlox JavaScript SDK",
"version": "2.19.2",
"homepage": "https://quickblox.com/developers/Javascript",
"main": "src/qbMain.js",
"types": "quickblox.d.ts",
"license": "(Apache-2.0)",
"keywords": [
"quickblox",
"javascript",
"sdk",
"baas",
"cloud",
"api",
"chat",
"communication",
"messaging",
"webrtc"
],
"maintainers": [
"Igor Khomenko <[email protected]>",
"Vlad Lukhanin <[email protected]>",
"Dima Lobanov <[email protected]>",
"Iegor Kozakov <[email protected]>"
],
"contributors": [
"Igor Khomenko <[email protected]>",
"Vlad Lukhanin <[email protected]>",
"Dima Lobanov <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/QuickBlox/quickblox-javascript-sdk.git"
},
"bugs": {
"url": "https://github.com/QuickBlox/quickblox-javascript-sdk/issues",
"email": "[email protected]"
},
"dependencies": {
"crypto-js": "3.1.2-2",
"form-data": "^2.3.1",
"nativescript-xmpp-client": "^1.2.0",
"node-fetch": "^1.7.3",
"node-xmpp-client": "^3.0.0",
"sdp-transform": "^2.3.0",
"strophe.js": "2.0.0",
"webrtc-adapter": "^7.7.1"
},
"devDependencies": {
"browserify": "^13.1.0",
"cross-env": "^3.1.2",
"ghooks": "^1.3.2",
"gulp": "^4.0.0",
"gulp-rename": "^1.4.0",
"gulp-uglify-es": "^1.0.4",
"jaguarjs-jsdoc": "^1.0.1",
"jasmine": "^3.6.3",
"jasmine-console-reporter": "^3.1.0",
"jsdoc": "^4.0.0",
"jshint": "^2.9.6",
"jshint-stylish": "^2.2.1",
"vinyl-source-stream": "^2.0.0"
},
"autoupdate": {
"source": "git",
"target": "git://github.com/QuickBlox/quickblox-javascript-sdk.git",
"basePath": "",
"files": [
"quickblox.min.js"
]
},
"config": {
"ghooks": {
"pre-commit": "npm run lint",
"pre-push": "jasmine"
}
},
"scripts": {
"dev": "NODE_ENV=develop gulp watch",
"setDependencies": "npm i && npm i -g gulp-cli && npm install rimraf -g && npm install -g jasmine",
"lint": "jshint src --reporter=node_modules/jshint-stylish",
"build": "cross-env NODE_ENV=production npm run lint && gulp build && gulp minify",
"buildNotMinified": "npm run lint && gulp build",
"generateBuildVersion": "gulp generate-build_version",
"docs": "rm -rf docs && mkdir docs && jsdoc -c ./jsdoc.conf.json",
"test": "jasmine"
}
}