Npm Postinstall Script

NPM package.json: postinstall script

A feature I did not know about npm is the ability to run post install scripts.

"scripts": {
        "test": "grunt karma:ci",
        "postinstall": "node node_modules/bower/bin/bower install"
    },

Here is a list of all the suported script tags: