How to push NodeJs application to heroku with oracle database support?

When I push to heroku im getting Push rejected, failed to compile Node.js app error. The problem seems to be related to an oracle dependency in the project. It currently works locally on my computer and I had to install Oracle Instant Client to make it work. What should I do to make Heroku accept my NodeJS project?

Here are the dependencies from my package file.

"   dependencies": {
        "express" : "4.4.x",
        "nodemon" : "1.2.1",
        "jade" : "*",
        "oracle" : "*"
     }

And this is the oracle module I am using. https://github.com/joeferner/node-oracle/tree/master

Any help would be appreciated.