run-proxy calls npm scripts either with npm or yarn (if used)
##npm
npm i --save-dev run-proxy
##yarn
yarn add -D run-proxy
in package.json scripts you can now use run instead of npm run or yarn
{
"scripts": {
"test": "run echo",
"echo": "echo \"echo\""
}
}