1.0.2 • Published 8 years ago
@mikeljames/run-scripts v1.0.2
Add/Remove Run Scripts to your package.json
run-scripts allows you to add/remove run scripts to your package json in a oneliner.
run-scripts test mocha
run-scripts debug node --inspect --debug-brk index.jsboth commands would add:
"scripts": {
"debug": "node --inspect --debug-brk index.js",
"test": "mocha"
}Install
Global
npm i -g @mikeljames/run-scriptsyarn global add @mikeljames/run-scripts