create init file
bower init
set download directory in the bowerrc file
.bowerrc
{
"directory": "builds/lib"
}
install something
bower install git://github.com/components/jquery.git
bower install jquery
download specific version of something
in bower.json
"jquery": "~1.10.2"
"jquery": "2.x.x"
in bower
bower install jquery#3.1.1
bower install jquery#1.10.2
bower.json
set dependencies
remove spaces from the "name" field
install eerything in the bower.josn file
bower install
bower search
bower search jquery
update
update all
bower update
update individual package
bower update jquery
uninstall
bower uninstall jquery
view all versions of a package
bower info jquery