Cable-Desktop/bower.json
lilia 73f4f64351 Grunt preen and concat
Set up grunt with tasks for:
  * preen - deletes unused files from bower_components, configured in
      bower.json
  * concat - concatenates preened bower components, configured
      automagically from the preen config

It's worth noting that this setup assumes the order of files within a
package doesn't matter. This is usually true since we often include only
one file from the package.
2014-10-29 20:50:51 -07:00

23 lines
622 B
JSON

{
"name": "textsecure-chrome",
"version": "0.0.0",
"homepage": "https://github.com/WhisperSystems/TextSecure-Browser",
"license": "GPLV3",
"private": true,
"dependencies": {
"backbone": "~1.1.2",
"underscore": "~1.7.0",
"protobuf": "~3.8.0",
"jquery": "~2.1.1",
"bootstrap": "~3.3.0"
},
"preen": {
"jquery": ["dist/jquery.js"],
"long": ["dist/Long.js"],
"bytebuffer": ["dist/ByteBufferAB.js"],
"protobuf": ["dist/ProtoBuf.js"],
"underscore": ["underscore.js"],
"backbone": ["backbone.js"],
"bootstrap": ["dist/css/bootstrap.css"]
}
}