bower.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. "momentjs": "~2.8.3",
  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. "twemoji": "~2.0.5",
  21. "emojijs": "https://github.com/iamcal/js-emoji.git",
  22. "autosize": "~3.0.6"
  23. },
  24. "devDependencies": {
  25. "mocha": "~2.0.1",
  26. "chai": "~3.5.0",
  27. "mock-socket": "~0.3.2"
  28. },
  29. "preen": {
  30. "jquery": [
  31. "dist/jquery.js"
  32. ],
  33. "long": [
  34. "dist/Long.js"
  35. ],
  36. "bytebuffer": [
  37. "dist/ByteBufferAB.js"
  38. ],
  39. "protobuf": [
  40. "dist/ProtoBuf.js"
  41. ],
  42. "mustache": [
  43. "mustache.js"
  44. ],
  45. "underscore": [
  46. "underscore.js"
  47. ],
  48. "backbone": [
  49. "backbone.js"
  50. ],
  51. "qrcode": [
  52. "qrcode.js"
  53. ],
  54. "mocha": [
  55. "mocha.js",
  56. "mocha.css"
  57. ],
  58. "chai": [
  59. "chai.js"
  60. ],
  61. "libphonenumber-api": [
  62. "libphonenumber_api-compiled.js"
  63. ],
  64. "momentjs": [
  65. "moment.js"
  66. ],
  67. "indexeddb-backbonejs-adapter": [
  68. "backbone-indexeddb.js"
  69. ],
  70. "intl-tel-input": [
  71. "build/css/intlTelInput.css",
  72. "build/img/flags.png",
  73. "build/js/intlTelInput.js"
  74. ],
  75. "blueimp-load-image": [
  76. "js/load-image.js"
  77. ],
  78. "blueimp-canvas-to-blob": [
  79. "js/canvas-to-blob.js"
  80. ],
  81. "twemoji": [
  82. "twemoji.js",
  83. "72x72/*",
  84. "36x36/*",
  85. "16x16/*"
  86. ],
  87. "emojijs": [
  88. "emoji.js"
  89. ],
  90. "mock-socket": [
  91. "dist/mock-socket.js"
  92. ],
  93. "autosize": [
  94. "dist/autosize.js"
  95. ]
  96. },
  97. "concat": {
  98. "app": [
  99. "jquery",
  100. "long",
  101. "bytebuffer",
  102. "protobuf",
  103. "mustache",
  104. "underscore",
  105. "backbone",
  106. "indexeddb-backbonejs-adapter",
  107. "qrcode",
  108. "libphonenumber-api",
  109. "momentjs",
  110. "intl-tel-input",
  111. "backbone.typeahead",
  112. "blueimp-load-image",
  113. "blueimp-canvas-to-blob",
  114. "twemoji",
  115. "emojijs",
  116. "autosize"
  117. ],
  118. "libtextsecure": [
  119. "long",
  120. "bytebuffer",
  121. "protobuf"
  122. ]
  123. }
  124. }