A small node module to check if npm commands are present
$ npm install npm-check-command --save
var checkCommand = require('npm-check-command');
checkCommand('build', 'package.json'); // => true or falseimport { checkCommand } from 'npm-check-command';
checkCommand('build', 'package.json'); // => true or false$ npm test