1.0.1 • Published 7 years ago

run-proxy v1.0.1

Weekly downloads
8
License
MIT
Repository
github
Last release
7 years ago

run-proxy

run-proxy calls npm scripts either with npm or yarn (if used)

install

##npm npm i --save-dev run-proxy

##yarn yarn add -D run-proxy

usage

in package.json scripts you can now use run instead of npm run or yarn

example

{
  "scripts": {
      "test": "run echo",
      "echo": "echo \"echo\""
  }
}