#!/bin/bash

if [[ `git diff HEAD@{1} --stat -- package.json` != "" ]]; then
  npm install ; npm prune
fi
