Reputation: 1
I can't install my Hubot on Heroku and have no idea. I tried several versions of node and npm but always get the same error:
I tried that to install the dependencies "moment" and "express" but i get the error:
Upvotes: 0
Views: 30
Reputation: 7924
It looks like the line with version
in your package.json is quoted incorrectly - a starts with "
but is closed with '
.
Can you add a bit of your package.json file? I assume it fails locally in the same manner?
Upvotes: 0