npm-run-script
runs scripts defined in package
TLDR
Run npm script
$ npm run [script-name]
Run with arguments$ npm run [script] -- [args]
List available scripts$ npm run
Run script silently$ npm run [script] --silent
SYNOPSIS
npm run-script script [options]
DESCRIPTION
npm run-script runs scripts defined in package.json scripts field. Alias: npm run. Without arguments, lists available scripts. Arguments after -- are passed to the script.
PARAMETERS
--silent
Suppress output.--if-present
Don't error if script missing.--
Pass arguments to script.
