Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/soenkekluth/run-script-proxy
execute scripts inside package.json with npm or yarn with a simple run command
https://github.com/soenkekluth/run-script-proxy
npm package-json scripts yarn
Last synced: 9 days ago
JSON representation
execute scripts inside package.json with npm or yarn with a simple run command
- Host: GitHub
- URL: https://github.com/soenkekluth/run-script-proxy
- Owner: soenkekluth
- Created: 2017-03-11T19:57:04.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T05:30:20.000Z (11 months ago)
- Last Synced: 2024-04-14T22:14:35.159Z (7 months ago)
- Topics: npm, package-json, scripts, yarn
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# run-script-proxy
run-script-proxy calls scripts inside package.json either with npm or yarn (if used) with a simple `run` command# install
## npm
`npm i --save-dev run-script-proxy`## yarn
`yarn add -D run-script-proxy`## usage
in package.json scripts you can now use `run` instead of `npm run` or `yarn`
```
{
"scripts": {
"test": "run echo",
"echo": "echo \"hello world\""
}
}
```## see also
### yarn-run
Run locally installed node module executables with yarn from command line
https://www.npmjs.com/package/yarn-run