1.0.2 • Published 7 years ago

@mikeljames/run-scripts v1.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

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.js

both commands would add:

	"scripts": {
		"debug": "node --inspect --debug-brk index.js",
		"test": "mocha"
	}

Install

Global

npm i -g @mikeljames/run-scripts
yarn global add @mikeljames/run-scripts