1.0.2 • Published 7 years ago

npm-run-proxy v1.0.2

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

npm-run-proxy alias run-proxy

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

install

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

##yarn yarn add -D npm-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\""
  }
}