I am a bower newbie. How can I download only a single file from GitHub instead of the entire set of files? I just want the latest fuelux.min.js
file from this link and I want to put it in my plugins directory.
{
"name": "my app",
"version": "1.0",
"dependencies": {
"angular-local-storage": "latest",
"fuelux":"latest"
},
"install" : {
"path" : {
"js": "plugins"
}
}
}