As mentioned in the bower.json specification, you should not include minified files in the main property. This also seems to affect wiredep in a way that it won't inject any dependencies of angular(js)-color-picker at all. I used the following override to make it work:
"overrides": {
"angularjs-color-picker": {
"main": [
"angularjs-color-picker.js",
"angularjs-color-picker.css"
]
}
}