I'm trying to override bower's component folder following the answers in this question: How to change bower's default components folder?
this is my bower.json file (with all the things I've tried)
{
  "name": "sample-app",
  "version": "1.0.0",
  "directory": "public/libs/",
  "componentsDirectory": "public/libs/",
  "dependencies": {
    "jquery": "latest"
  }
}
and this is my .bowerrc:
{
  "directory": "public/libs/",
  "componentsDirectory": "public/libs/"
}
I've tried a couple more things, but the settings just seems to be ignored, and the components are installed to bower_components
these are the versions I'm using:
$ bower -v
1.2.8
$ npm -v
1.3.24
$ node -v
v0.10.25
 
     
     
    