├── .github └── pull_request_template.md ├── .gitignore ├── LICENSE ├── README.md ├── lib └── batchelor.js ├── package.json └── renovate.json /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/batchelor/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | npm-debug.log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/batchelor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/batchelor/HEAD/README.md -------------------------------------------------------------------------------- /lib/batchelor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/batchelor/HEAD/lib/batchelor.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/batchelor/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/batchelor/HEAD/renovate.json --------------------------------------------------------------------------------