I\'m having trouble registering my bower.json file at Bower. Any help would be greatly appreciated.
When I try to register my project at Bower using
I fixed this problem by opening the file with vim and saving with no bomb.
:setlocal nobomb
:w
The problem was caused by the encoding of my bower.json file. However, removing the BOM wasn't enough - UTF8 (without BOM) was accepted. Instead, I had to use ASCII encoding.
Your bower json file (as visible here: https://raw.github.com/mperdeck/jsnlog.js/2.4.3/bower.json) contains a leading invisible unicode character (likely a BOM).
This is visible in curl output: curl https://raw.github.com/mperdeck/jsnlog.js/2.4.3/bower.json
Start your bower.json file over from scratch, and use an editor that doesn't add crap :-).