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.9KB

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