forked from signalapp/Signal-Desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bower.json
124 lines (124 loc) · 2.51 KB
/
bower.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "textsecure-chrome",
"version": "0.0.0",
"homepage": "https://github.com/WhisperSystems/TextSecure-Browser",
"license": "GPLV3",
"private": true,
"dependencies": {
"jquery": "liliakai/jquery#2.1.1-ajax-nativetransport",
"underscore": "~1.7.0",
"backbone": "~1.1.2",
"protobuf": "~3.8.0",
"mustache": "~0.8.2",
"qrcode": "https://github.com/davidshimjs/qrcodejs.git#1c78ccd71",
"libphonenumber-api": "https://github.com/liliakai/libphonenumber-api.git",
"momentjs": "~2.8.3",
"indexeddb-backbonejs-adapter": "*",
"intl-tel-input": "~4.0.1",
"blueimp-load-image": "~1.13.0",
"blueimp-canvas-to-blob": "~2.1.1",
"twemoji": "~2.0.5",
"emojijs": "https://github.com/iamcal/js-emoji.git",
"autosize": "~3.0.6"
},
"devDependencies": {
"mocha": "~2.0.1",
"chai": "~3.5.0",
"mock-socket": "~0.3.2"
},
"preen": {
"jquery": [
"dist/jquery.js"
],
"long": [
"dist/Long.js"
],
"bytebuffer": [
"dist/ByteBufferAB.js"
],
"protobuf": [
"dist/ProtoBuf.js"
],
"mustache": [
"mustache.js"
],
"underscore": [
"underscore.js"
],
"backbone": [
"backbone.js"
],
"qrcode": [
"qrcode.js"
],
"mocha": [
"mocha.js",
"mocha.css"
],
"chai": [
"chai.js"
],
"libphonenumber-api": [
"libphonenumber_api-compiled.js"
],
"momentjs": [
"moment.js"
],
"indexeddb-backbonejs-adapter": [
"backbone-indexeddb.js"
],
"intl-tel-input": [
"build/css/intlTelInput.css",
"build/img/flags.png",
"build/js/intlTelInput.js"
],
"blueimp-load-image": [
"js/load-image.js"
],
"blueimp-canvas-to-blob": [
"js/canvas-to-blob.js"
],
"twemoji": [
"twemoji.js",
"72x72/*",
"36x36/*",
"16x16/*"
],
"emojijs": [
"emoji.js"
],
"mock-socket": [
"dist/mock-socket.js"
],
"autosize": [
"dist/autosize.js"
]
},
"concat": {
"app": [
"jquery",
"long",
"bytebuffer",
"protobuf",
"mustache",
"underscore",
"backbone",
"indexeddb-backbonejs-adapter",
"qrcode",
"libphonenumber-api",
"momentjs",
"intl-tel-input",
"backbone.typeahead",
"blueimp-load-image",
"blueimp-canvas-to-blob",
"twemoji",
"emojijs",
"autosize"
],
"libtextsecure": [
"long",
"bytebuffer",
"protobuf"
]
}
}