Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. "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.3",
  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. "babelify": "*",
  47. "babel-preset-es2015": "*",
  48. "babel-polyfill": "*"
  49. },
  50. "license": "Apache-2.0",
  51. "scripts": {
  52. "lint": "./node_modules/.bin/jshint .",
  53. "validate": "npm ls"
  54. },
  55. "pre-commit": [
  56. "lint"
  57. ],
  58. "browserify": {
  59. "transform": [
  60. "browserify-shim",
  61. ["babelify", {
  62. "ignore": "node_modules"
  63. }]
  64. ]
  65. },
  66. "babel": {
  67. "presets": ["es2015"]
  68. },
  69. "browser": {
  70. "jquery": "./node_modules/jquery/dist/jquery.js",
  71. "jquery-ui": "./node_modules/jquery-ui/jquery-ui.js",
  72. "strophe": "./node_modules/strophe/strophe.js",
  73. "strophe-disco": "./node_modules/strophejs-plugins/disco/strophe.disco.js",
  74. "strophe-caps": "./node_modules/strophejs-plugins/caps/strophe.caps.jsonly.js",
  75. "toastr": "./node_modules/toastr/toastr.js",
  76. "tooltip": "./node_modules/bootstrap/js/tooltip.js",
  77. "popover": "./node_modules/bootstrap/js/popover.js",
  78. "jQuery-Impromptu": "./node_modules/jQuery-Impromptu/dist/jquery-impromptu.js",
  79. "autosize": "./node_modules/autosize/build/jquery.autosize.js"
  80. },
  81. "browserify-shim": {
  82. "jquery": [
  83. "$"
  84. ],
  85. "strophe": {
  86. "exports": "Strophe",
  87. "depends": [
  88. "jquery:$"
  89. ]
  90. },
  91. "strophe-disco": {
  92. "depends": [
  93. "strophe:Strophe"
  94. ]
  95. },
  96. "tooltip": {
  97. "depends": "jquery:jQuery"
  98. },
  99. "popover": {
  100. "depends": "jquery:jQuery"
  101. },
  102. "jQuery-Impromptu": {
  103. "depends": "jquery:jQuery"
  104. },
  105. "autosize": {
  106. "depends": "jquery:jQuery"
  107. }
  108. }
  109. }