2014-04-13 12:25:47 +00:00
|
|
|
{
|
|
|
|
"name": "jitsi-meet",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"description": "A sample app for the Jitsi Videobridge",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/jitsi/jitsi-meet"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"jingle",
|
|
|
|
"webrtc",
|
|
|
|
"xmpp",
|
|
|
|
"browser"
|
|
|
|
],
|
|
|
|
"author": "",
|
|
|
|
"readmeFilename": "README.md",
|
2015-08-13 14:31:50 +00:00
|
|
|
"//": "Callstats.io does not work with recent versions of jsSHA (2.0.1 in particular)",
|
2014-04-13 12:25:47 +00:00
|
|
|
"dependencies": {
|
2015-09-10 17:15:56 +00:00
|
|
|
"async": "0.9.0",
|
|
|
|
"autosize": "^1.18.13",
|
2015-10-06 21:14:37 +00:00
|
|
|
"bootstrap": "3.1.1",
|
2015-09-10 17:15:56 +00:00
|
|
|
"events": "*",
|
|
|
|
"i18next-client": "1.7.7",
|
2016-01-21 19:27:55 +00:00
|
|
|
"jquery": "~2.1.1",
|
2015-09-10 17:15:56 +00:00
|
|
|
"jQuery-Impromptu": "git+https://github.com/trentrichardson/jQuery-Impromptu.git#v6.0.0",
|
2016-07-14 15:23:47 +00:00
|
|
|
"lib-jitsi-meet": "git+https://github.com/jitsi/lib-jitsi-meet.git",
|
2016-05-07 01:50:37 +00:00
|
|
|
"jquery-contextmenu": "*",
|
2016-07-08 19:41:25 +00:00
|
|
|
"jquery-ui": "1.10.5",
|
2015-09-10 17:15:56 +00:00
|
|
|
"jssha": "1.5.0",
|
|
|
|
"retry": "0.6.1",
|
|
|
|
"strophe": "^1.2.2",
|
2016-06-14 18:36:46 +00:00
|
|
|
"strophejs-plugins": "^0.0.6",
|
2016-06-13 21:11:44 +00:00
|
|
|
"toastr": "^2.0.3",
|
|
|
|
"postis": "^2.2.0",
|
|
|
|
"jws": "*"
|
2015-09-11 15:52:53 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2015-09-10 17:15:56 +00:00
|
|
|
"browserify": "11.1.x",
|
|
|
|
"browserify-shim": "^3.8.10",
|
|
|
|
"exorcist": "*",
|
|
|
|
"jshint": "2.8.0",
|
|
|
|
"precommit-hook": "3.0.0",
|
2015-10-06 19:50:06 +00:00
|
|
|
"uglify-js": "2.4.24",
|
2015-12-04 13:46:25 +00:00
|
|
|
"clean-css": "*",
|
|
|
|
"babelify": "*",
|
|
|
|
"babel-preset-es2015": "*",
|
|
|
|
"babel-polyfill": "*"
|
2014-04-13 12:25:47 +00:00
|
|
|
},
|
2015-09-14 15:08:24 +00:00
|
|
|
"license": "Apache-2.0",
|
2015-09-11 02:14:29 +00:00
|
|
|
"scripts": {
|
2015-09-10 17:15:56 +00:00
|
|
|
"lint": "./node_modules/.bin/jshint .",
|
|
|
|
"validate": "npm ls"
|
2014-04-13 12:25:47 +00:00
|
|
|
},
|
2015-09-10 17:15:56 +00:00
|
|
|
"pre-commit": [
|
|
|
|
"lint"
|
|
|
|
],
|
|
|
|
"browserify": {
|
|
|
|
"transform": [
|
2015-12-04 13:46:25 +00:00
|
|
|
"browserify-shim",
|
|
|
|
["babelify", {
|
|
|
|
"ignore": "node_modules"
|
|
|
|
}]
|
2015-09-10 17:15:56 +00:00
|
|
|
]
|
|
|
|
},
|
2015-12-04 13:46:25 +00:00
|
|
|
"babel": {
|
|
|
|
"presets": ["es2015"]
|
|
|
|
},
|
2015-09-10 17:15:56 +00:00
|
|
|
"browser": {
|
|
|
|
"jquery": "./node_modules/jquery/dist/jquery.js",
|
|
|
|
"jquery-ui": "./node_modules/jquery-ui/jquery-ui.js",
|
|
|
|
"strophe": "./node_modules/strophe/strophe.js",
|
|
|
|
"strophe-disco": "./node_modules/strophejs-plugins/disco/strophe.disco.js",
|
|
|
|
"strophe-caps": "./node_modules/strophejs-plugins/caps/strophe.caps.jsonly.js",
|
|
|
|
"toastr": "./node_modules/toastr/toastr.js",
|
|
|
|
"tooltip": "./node_modules/bootstrap/js/tooltip.js",
|
|
|
|
"popover": "./node_modules/bootstrap/js/popover.js",
|
|
|
|
"jQuery-Impromptu": "./node_modules/jQuery-Impromptu/dist/jquery-impromptu.js",
|
|
|
|
"autosize": "./node_modules/autosize/build/jquery.autosize.js"
|
|
|
|
},
|
|
|
|
"browserify-shim": {
|
|
|
|
"jquery": [
|
|
|
|
"$"
|
|
|
|
],
|
|
|
|
"strophe": {
|
|
|
|
"exports": "Strophe",
|
|
|
|
"depends": [
|
|
|
|
"jquery:$"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"strophe-disco": {
|
|
|
|
"depends": [
|
|
|
|
"strophe:Strophe"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"tooltip": {
|
|
|
|
"depends": "jquery:jQuery"
|
|
|
|
},
|
|
|
|
"popover": {
|
|
|
|
"depends": "jquery:jQuery"
|
|
|
|
},
|
|
|
|
"jQuery-Impromptu": {
|
|
|
|
"depends": "jquery:jQuery"
|
|
|
|
},
|
2016-05-07 01:50:37 +00:00
|
|
|
"jquery-contextmenu": {
|
|
|
|
"depends": "jquery:jQuery"
|
|
|
|
},
|
2015-09-10 17:15:56 +00:00
|
|
|
"autosize": {
|
|
|
|
"depends": "jquery:jQuery"
|
|
|
|
}
|
|
|
|
}
|
2014-04-13 12:25:47 +00:00
|
|
|
}
|