bower.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. {
  2. "name": "textsecure-chrome",
  3. "version": "0.0.0",
  4. "homepage": "https://github.com/WhisperSystems/TextSecure-Browser",
  5. "license": "GPLV3",
  6. "private": true,
  7. "dependencies": {
  8. "jquery": "liliakai/jquery#2.1.1-ajax-nativetransport",
  9. "underscore": "~1.7.0",
  10. "backbone": "~1.1.2",
  11. "protobuf": "~3.8.0",
  12. "mustache": "~0.8.2",
  13. "qrcode": "https://github.com/davidshimjs/qrcodejs.git#1c78ccd71",
  14. "libphonenumber-api": "https://github.com/liliakai/libphonenumber-api.git",
  15. "moment": "~2.14.0",
  16. "indexeddb-backbonejs-adapter": "*",
  17. "intl-tel-input": "~4.0.1",
  18. "blueimp-load-image": "~1.13.0",
  19. "blueimp-canvas-to-blob": "~2.1.1",
  20. "emojijs": "https://github.com/iamcal/js-emoji.git",
  21. "emojidata": "https://github.com/iamcal/emoji-data.git",
  22. "autosize": "~3.0.6",
  23. "webaudiorecorder": "https://github.com/higuma/web-audio-recorder-js.git",
  24. "mp3lameencoder": "https://github.com/higuma/mp3-lame-encoder-js.git"
  25. },
  26. "devDependencies": {
  27. "mocha": "~2.0.1",
  28. "chai": "~3.5.0",
  29. "mock-socket": "~0.3.2"
  30. },
  31. "preen": {
  32. "jquery": [
  33. "dist/jquery.js"
  34. ],
  35. "long": [
  36. "dist/Long.js"
  37. ],
  38. "bytebuffer": [
  39. "dist/ByteBufferAB.js"
  40. ],
  41. "protobuf": [
  42. "dist/ProtoBuf.js"
  43. ],
  44. "mustache": [
  45. "mustache.js"
  46. ],
  47. "underscore": [
  48. "underscore.js"
  49. ],
  50. "backbone": [
  51. "backbone.js"
  52. ],
  53. "qrcode": [
  54. "qrcode.js"
  55. ],
  56. "mocha": [
  57. "mocha.js",
  58. "mocha.css"
  59. ],
  60. "chai": [
  61. "chai.js"
  62. ],
  63. "libphonenumber-api": [
  64. "libphonenumber_api-compiled.js"
  65. ],
  66. "moment": [
  67. "min/moment-with-locales.js"
  68. ],
  69. "indexeddb-backbonejs-adapter": [
  70. "backbone-indexeddb.js"
  71. ],
  72. "intl-tel-input": [
  73. "build/css/intlTelInput.css",
  74. "build/img/flags.png",
  75. "build/js/intlTelInput.js"
  76. ],
  77. "blueimp-load-image": [
  78. "js/load-image.js"
  79. ],
  80. "blueimp-canvas-to-blob": [
  81. "js/canvas-to-blob.js"
  82. ],
  83. "emojijs": [
  84. "lib/emoji.js",
  85. "demo/emoji.css"
  86. ],
  87. "emojidata": [
  88. "img-apple-64/*"
  89. ],
  90. "mock-socket": [
  91. "dist/mock-socket.js"
  92. ],
  93. "autosize": [
  94. "dist/autosize.js"
  95. ],
  96. "webaudiorecorder": [
  97. "lib/WebAudioRecorder.js",
  98. "lib/WebAudioRecorderMp3.js"
  99. ],
  100. "mp3lameencoder": [
  101. "lib/Mp3LameEncoder.js"
  102. ]
  103. },
  104. "concat": {
  105. "app": [
  106. "jquery",
  107. "long",
  108. "bytebuffer",
  109. "protobuf",
  110. "mustache",
  111. "underscore",
  112. "backbone",
  113. "indexeddb-backbonejs-adapter",
  114. "qrcode",
  115. "libphonenumber-api",
  116. "moment",
  117. "intl-tel-input",
  118. "backbone.typeahead",
  119. "blueimp-load-image",
  120. "blueimp-canvas-to-blob",
  121. "emojijs",
  122. "autosize"
  123. ],
  124. "libtextsecure": [
  125. "long",
  126. "bytebuffer",
  127. "protobuf"
  128. ]
  129. }
  130. }