├── .editorconfig ├── .env ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── index.js ├── lib └── exec.js ├── package.json └── test ├── command.js ├── env-extend.js ├── env.js └── params.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoror/better-npm-run/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoror/better-npm-run/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoror/better-npm-run/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoror/better-npm-run/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoror/better-npm-run/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoror/better-npm-run/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoror/better-npm-run/HEAD/index.js -------------------------------------------------------------------------------- /lib/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoror/better-npm-run/HEAD/lib/exec.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoror/better-npm-run/HEAD/package.json -------------------------------------------------------------------------------- /test/command.js: -------------------------------------------------------------------------------- 1 | console.log('Command executed!'); 2 | process.exit(0); 3 | -------------------------------------------------------------------------------- /test/env-extend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoror/better-npm-run/HEAD/test/env-extend.js -------------------------------------------------------------------------------- /test/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoror/better-npm-run/HEAD/test/env.js -------------------------------------------------------------------------------- /test/params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoror/better-npm-run/HEAD/test/params.js --------------------------------------------------------------------------------