Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

package.json 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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. "@atlassian/aui": "^6.0.0",
  20. "async": "0.9.0",
  21. "autosize": "^1.18.13",
  22. "bootstrap": "3.1.1",
  23. "events": "*",
  24. "i18next-client": "1.7.7",
  25. "jQuery-Impromptu": "git+https://github.com/trentrichardson/jQuery-Impromptu.git#v6.0.0",
  26. "jquery": "~2.1.1",
  27. "jquery-contextmenu": "*",
  28. "jquery-ui": "1.10.5",
  29. "jssha": "1.5.0",
  30. "jws": "*",
  31. "lib-jitsi-meet": "git+https://github.com/jitsi/lib-jitsi-meet.git",
  32. "postis": "^2.2.0",
  33. "retry": "0.6.1",
  34. "strophe": "^1.2.2",
  35. "strophejs-plugins": "^0.0.6",
  36. "toastr": "^2.0.3"
  37. },
  38. "devDependencies": {
  39. "babel-polyfill": "*",
  40. "babel-preset-es2015": "*",
  41. "babelify": "*",
  42. "browserify": "11.1.x",
  43. "browserify-css": "^0.9.2",
  44. "browserify-shim": "^3.8.10",
  45. "clean-css": "*",
  46. "exorcist": "*",
  47. "jshint": "2.8.0",
  48. "node-sass": "^3.8.0",
  49. "precommit-hook": "3.0.0",
  50. "uglify-js": "2.4.24",
  51. "babel-core": "*",
  52. "babel-loader": "*",
  53. "babel-register": "*",
  54. "string-replace-loader": "*",
  55. "webpack": "*"
  56. },
  57. "license": "Apache-2.0",
  58. "scripts": {
  59. "lint": "./node_modules/.bin/jshint .",
  60. "validate": "npm ls"
  61. },
  62. "pre-commit": [
  63. "lint"
  64. ],
  65. "browserify": {
  66. "transform": [
  67. "browserify-shim",
  68. "browserify-css",
  69. [
  70. "babelify",
  71. {
  72. "ignore": "node_modules"
  73. }
  74. ]
  75. ]
  76. },
  77. "babel": {
  78. "presets": [
  79. "es2015"
  80. ]
  81. },
  82. "browser": {
  83. "jquery": "./node_modules/jquery/dist/jquery.js",
  84. "jquery-ui": "./node_modules/jquery-ui/jquery-ui.js",
  85. "strophe": "./node_modules/strophe/strophe.js",
  86. "strophe-disco": "./node_modules/strophejs-plugins/disco/strophe.disco.js",
  87. "strophe-caps": "./node_modules/strophejs-plugins/caps/strophe.caps.jsonly.js",
  88. "toastr": "./node_modules/toastr/toastr.js",
  89. "tooltip": "./node_modules/bootstrap/js/tooltip.js",
  90. "popover": "./node_modules/bootstrap/js/popover.js",
  91. "jQuery-Impromptu": "./node_modules/jQuery-Impromptu/dist/jquery-impromptu.js",
  92. "autosize": "./node_modules/autosize/build/jquery.autosize.js",
  93. "aui": "./node_modules/@atlassian/aui/dist/aui/js/aui.js",
  94. "aui-experimental": "./node_modules/@atlassian/aui/dist/aui/js/aui-experimental.js",
  95. "aui-css": "./node_modules/@atlassian/aui/dist/aui/css/aui.min.css",
  96. "aui-experimental-css": "./node_modules/@atlassian/aui/dist/aui/css/aui-experimental.min.css"
  97. },
  98. "browserify-shim": {
  99. "jquery": [
  100. "$"
  101. ],
  102. "strophe": {
  103. "exports": "Strophe",
  104. "depends": [
  105. "jquery:$"
  106. ]
  107. },
  108. "strophe-disco": {
  109. "depends": [
  110. "strophe:Strophe"
  111. ]
  112. },
  113. "tooltip": {
  114. "depends": "jquery:jQuery"
  115. },
  116. "popover": {
  117. "depends": "jquery:jQuery"
  118. },
  119. "jQuery-Impromptu": {
  120. "depends": "jquery:jQuery"
  121. },
  122. "aui-experimental": {
  123. "depends": "aui:AJS"
  124. },
  125. "jquery-contextmenu": {
  126. "depends": "jquery:jQuery"
  127. },
  128. "autosize": {
  129. "depends": "jquery:jQuery"
  130. },
  131. "browserify-css": {
  132. "autoInject": true
  133. }
  134. }
  135. }