選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

package.json 2.6KB

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