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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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": "strophe/strophejs-plugins",
  33. "toastr": "^2.0.3",
  34. "postis": "^2.2.0",
  35. "jws": "*"
  36. },
  37. "devDependencies": {
  38. "browserify": "11.1.x",
  39. "browserify-shim": "^3.8.10",
  40. "exorcist": "*",
  41. "jshint": "2.8.0",
  42. "precommit-hook": "3.0.0",
  43. "uglify-js": "2.4.24",
  44. "clean-css": "*",
  45. "babelify": "*",
  46. "babel-preset-es2015": "*",
  47. "babel-polyfill": "*"
  48. },
  49. "license": "Apache-2.0",
  50. "scripts": {
  51. "lint": "./node_modules/.bin/jshint .",
  52. "validate": "npm ls"
  53. },
  54. "pre-commit": [
  55. "lint"
  56. ],
  57. "browserify": {
  58. "transform": [
  59. "browserify-shim",
  60. ["babelify", {
  61. "ignore": "node_modules"
  62. }]
  63. ]
  64. },
  65. "babel": {
  66. "presets": ["es2015"]
  67. },
  68. "browser": {
  69. "jquery": "./node_modules/jquery/dist/jquery.js",
  70. "jquery-ui": "./node_modules/jquery-ui/jquery-ui.js",
  71. "strophe": "./node_modules/strophe/strophe.js",
  72. "strophe-disco": "./node_modules/strophejs-plugins/disco/strophe.disco.js",
  73. "strophe-caps": "./node_modules/strophejs-plugins/caps/strophe.caps.jsonly.js",
  74. "toastr": "./node_modules/toastr/toastr.js",
  75. "tooltip": "./node_modules/bootstrap/js/tooltip.js",
  76. "popover": "./node_modules/bootstrap/js/popover.js",
  77. "jQuery-Impromptu": "./node_modules/jQuery-Impromptu/dist/jquery-impromptu.js",
  78. "autosize": "./node_modules/autosize/build/jquery.autosize.js"
  79. },
  80. "browserify-shim": {
  81. "jquery": [
  82. "$"
  83. ],
  84. "strophe": {
  85. "exports": "Strophe",
  86. "depends": [
  87. "jquery:$"
  88. ]
  89. },
  90. "strophe-disco": {
  91. "depends": [
  92. "strophe:Strophe"
  93. ]
  94. },
  95. "tooltip": {
  96. "depends": "jquery:jQuery"
  97. },
  98. "popover": {
  99. "depends": "jquery:jQuery"
  100. },
  101. "jQuery-Impromptu": {
  102. "depends": "jquery:jQuery"
  103. },
  104. "jquery-contextmenu": {
  105. "depends": "jquery:jQuery"
  106. },
  107. "autosize": {
  108. "depends": "jquery:jQuery"
  109. }
  110. }
  111. }