Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

package.json 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. "jquery-ui": "^1.10.5",
  27. "jssha": "1.5.0",
  28. "pako": "*",
  29. "retry": "0.6.1",
  30. "sdp-interop": "0.1.11",
  31. "sdp-simulcast": "0.1.4",
  32. "sdp-transform": "1.5.*",
  33. "socket.io-client": "1.3.6",
  34. "strophe": "^1.2.2",
  35. "strophejs-plugins": "^0.0.6",
  36. "toastr": "^2.0.3"
  37. },
  38. "devDependencies": {
  39. "browserify": "11.1.x",
  40. "browserify-shim": "^3.8.10",
  41. "exorcist": "*",
  42. "jshint": "2.8.0",
  43. "precommit-hook": "3.0.0",
  44. "uglify-js": "2.4.24",
  45. "clean-css": "*"
  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. ]
  59. },
  60. "browser": {
  61. "jquery": "./node_modules/jquery/dist/jquery.js",
  62. "jquery-ui": "./node_modules/jquery-ui/jquery-ui.js",
  63. "strophe": "./node_modules/strophe/strophe.js",
  64. "strophe-disco": "./node_modules/strophejs-plugins/disco/strophe.disco.js",
  65. "strophe-caps": "./node_modules/strophejs-plugins/caps/strophe.caps.jsonly.js",
  66. "toastr": "./node_modules/toastr/toastr.js",
  67. "tooltip": "./node_modules/bootstrap/js/tooltip.js",
  68. "popover": "./node_modules/bootstrap/js/popover.js",
  69. "jQuery-Impromptu": "./node_modules/jQuery-Impromptu/dist/jquery-impromptu.js",
  70. "autosize": "./node_modules/autosize/build/jquery.autosize.js"
  71. },
  72. "browserify-shim": {
  73. "jquery": [
  74. "$"
  75. ],
  76. "strophe": {
  77. "exports": "Strophe",
  78. "depends": [
  79. "jquery:$"
  80. ]
  81. },
  82. "strophe-disco": {
  83. "depends": [
  84. "strophe:Strophe"
  85. ]
  86. },
  87. "tooltip": {
  88. "depends": "jquery:jQuery"
  89. },
  90. "popover": {
  91. "depends": "jquery:jQuery"
  92. },
  93. "jQuery-Impromptu": {
  94. "depends": "jquery:jQuery"
  95. },
  96. "autosize": {
  97. "depends": "jquery:jQuery"
  98. }
  99. }
  100. }