jiti-meet/package.json

101 lines
2.5 KiB
JSON
Raw Normal View History

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",
"bootstrap": "^3.1.1",
"events": "*",
"i18next-client": "1.7.7",
"jquery": "^2.1.1",
"jQuery-Impromptu": "git+https://github.com/trentrichardson/jQuery-Impromptu.git#v6.0.0",
"jquery-ui": "^1.10.5",
"jssha": "1.5.0",
"pako": "*",
"retry": "0.6.1",
"sdp-interop": "0.1.10",
"sdp-simulcast": "0.1.0",
"sdp-transform": "1.4.1",
"socket.io-client": "1.3.6",
"strophe": "^1.2.2",
"strophejs-plugins": "^0.0.6",
"toastr": "^2.0.3"
},
"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",
"clean-css": "*"
2014-04-13 12:25:47 +00:00
},
"license": "Apache-2.0",
"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": [
"browserify-shim"
]
},
"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"
},
"autosize": {
"depends": "jquery:jQuery"
}
}
2014-04-13 12:25:47 +00:00
}