looks like heroku is using npm version 1.0.94
I have a dependency that require node 0.6.x, but npm 1.0.94 is ‘based’ on node 0.4.7
is there any workaround to solve this issue.
Installing dependencies with npm 1.0.94
npm ERR! Unsupported
npm ERR! Not compatible with your version of node/npm: palette@0.0.1
npm ERR! Required: {"node":"0.6.x"}
npm ERR! Actual: {"npm":"1.0.94","node":"0.4.7"}
You can build your own node version for heroku with buildpacks.
fork and modify node version in https://github.com/heroku/heroku-buildpack-nodejs
also see http://blog.superpat.com/2011/11/15/running-your-own-node-js-version-on-heroku/