I am working on a small web application using Express.js, Backbone.js, Bootstrap and some others. I decided to give Bower a try to manage the front-end components for this, but after installing the packages I noticed that they all installed a lot of things that I don’t need at all, such as LESS files (Bootstrap) or QUnit for the framework (Backbone), README.md files , source code documentation, etc .:

As you can see, this is absolute madness here.
I searched the package index a bit, and I found a leaner version of Bootstrap called bootstrap.css, but after installation I noticed that it still remains version 2.3.2, so it’s pretty out of date.
Is there no way to install updated dist versions of all these libraries?
The idea of having a package manager is good, but it seems like it's a bit like my application source was bloating with all of this. I definitely don't need the Backbone documentation installed on my web server.
source share