I\'m building a yeoman generator for simple websites. I want to include a popular JavaScript library in my scaffold.
It\'s easy enough with bower install <
bower install <
Create a file called .bowerrc in the same directory as your bower.json with the contents:
.bowerrc
bower.json
{ "directory": "bower" }
Bower will then install all dependencies in the directory "bower" or whatever directory you specify.
Hope that helps!