├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json ├── renovate.json └── tests ├── basic.js ├── cd.js ├── command-name.js ├── count.js ├── error.js ├── events.js ├── kill.js ├── output-file.js └── stdout.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afc163/exeq/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afc163/exeq/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afc163/exeq/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afc163/exeq/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afc163/exeq/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afc163/exeq/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afc163/exeq/HEAD/renovate.json -------------------------------------------------------------------------------- /tests/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afc163/exeq/HEAD/tests/basic.js -------------------------------------------------------------------------------- /tests/cd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afc163/exeq/HEAD/tests/cd.js -------------------------------------------------------------------------------- /tests/command-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afc163/exeq/HEAD/tests/command-name.js -------------------------------------------------------------------------------- /tests/count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afc163/exeq/HEAD/tests/count.js -------------------------------------------------------------------------------- /tests/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afc163/exeq/HEAD/tests/error.js -------------------------------------------------------------------------------- /tests/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afc163/exeq/HEAD/tests/events.js -------------------------------------------------------------------------------- /tests/kill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afc163/exeq/HEAD/tests/kill.js -------------------------------------------------------------------------------- /tests/output-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afc163/exeq/HEAD/tests/output-file.js -------------------------------------------------------------------------------- /tests/stdout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afc163/exeq/HEAD/tests/stdout.js --------------------------------------------------------------------------------