You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. {
  2. "name": "jitsi-meet",
  3. "version": "0.0.0",
  4. "description": "A sample app for the Jitsi Videobridge",
  5. "repository": {
  6. "type": "git",
  7. "url": "git://github.com/jitsi/jitsi-meet"
  8. },
  9. "keywords": [
  10. "jingle",
  11. "webrtc",
  12. "xmpp",
  13. "browser"
  14. ],
  15. "author": "",
  16. "readmeFilename": "README.md",
  17. "//": "Callstats.io does not work with recent versions of jsSHA (2.0.1 in particular)",
  18. "dependencies": {
  19. "async": "0.9.0",
  20. "autosize": "^1.18.13",
  21. "bootstrap": "3.1.1",
  22. "events": "*",
  23. "i18next-client": "1.7.7",
  24. "jquery": "~2.1.1",
  25. "jQuery-Impromptu": "git+https://github.com/trentrichardson/jQuery-Impromptu.git#v6.0.0",
  26. "lib-jitsi-meet": "jitsi/lib-jitsi-meet",
  27. "jquery-contextmenu": "*",
  28. "jquery-ui": "^1.10.5",
  29. "jssha": "1.5.0",
  30. "retry": "0.6.1",
  31. "strophe": "^1.2.2",
  32. "strophejs-plugins": "^0.0.6",
  33. "toastr": "^2.0.3"
  34. },
  35. "devDependencies": {
  36. "browserify": "11.1.x",
  37. "browserify-shim": "^3.8.10",
  38. "exorcist": "*",
  39. "jshint": "2.8.0",
  40. "precommit-hook": "3.0.0",
  41. "uglify-js": "2.4.24",
  42. "clean-css": "*",
  43. "babelify": "*",
  44. "babel-preset-es2015": "*",
  45. "babel-polyfill": "*"
  46. },
  47. "license": "Apache-2.0",
  48. "scripts": {
  49. "lint": "./node_modules/.bin/jshint .",
  50. "validate": "npm ls"
  51. },
  52. "pre-commit": [
  53. "lint"
  54. ],
  55. "browserify": {
  56. "transform": [
  57. "browserify-shim",
  58. ["babelify", {
  59. "ignore": "node_modules"
  60. }]
  61. ]
  62. },
  63. "babel": {
  64. "presets": ["es2015"]
  65. },
  66. "browser": {
  67. "jquery": "./node_modules/jquery/dist/jquery.js",
  68. "jquery-ui": "./node_modules/jquery-ui/jquery-ui.js",
  69. "strophe": "./node_modules/strophe/strophe.js",
  70. "strophe-disco": "./node_modules/strophejs-plugins/disco/strophe.disco.js",
  71. "strophe-caps": "./node_modules/strophejs-plugins/caps/strophe.caps.jsonly.js",
  72. "toastr": "./node_modules/toastr/toastr.js",
  73. "tooltip": "./node_modules/bootstrap/js/tooltip.js",
  74. "popover": "./node_modules/bootstrap/js/popover.js",
  75. "jQuery-Impromptu": "./node_modules/jQuery-Impromptu/dist/jquery-impromptu.js",
  76. "autosize": "./node_modules/autosize/build/jquery.autosize.js"
  77. },
  78. "browserify-shim": {
  79. "jquery": [
  80. "$"
  81. ],
  82. "strophe": {
  83. "exports": "Strophe",
  84. "depends": [
  85. "jquery:$"
  86. ]
  87. },
  88. "strophe-disco": {
  89. "depends": [
  90. "strophe:Strophe"
  91. ]
  92. },
  93. "tooltip": {
  94. "depends": "jquery:jQuery"
  95. },
  96. "popover": {
  97. "depends": "jquery:jQuery"
  98. },
  99. "jQuery-Impromptu": {
  100. "depends": "jquery:jQuery"
  101. },
  102. "jquery-contextmenu": {
  103. "depends": "jquery:jQuery"
  104. },
  105. "autosize": {
  106. "depends": "jquery:jQuery"
  107. }
  108. }
  109. }