├── .babelrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json └── src ├── agent.js ├── bkrun.js ├── loadFile.js ├── metadata.js ├── pipeline.js └── promptForConfirm.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ "es2015" ] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeoneWeird/bkrun/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeoneWeird/bkrun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeoneWeird/bkrun/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeoneWeird/bkrun/HEAD/package.json -------------------------------------------------------------------------------- /src/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeoneWeird/bkrun/HEAD/src/agent.js -------------------------------------------------------------------------------- /src/bkrun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeoneWeird/bkrun/HEAD/src/bkrun.js -------------------------------------------------------------------------------- /src/loadFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeoneWeird/bkrun/HEAD/src/loadFile.js -------------------------------------------------------------------------------- /src/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeoneWeird/bkrun/HEAD/src/metadata.js -------------------------------------------------------------------------------- /src/pipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeoneWeird/bkrun/HEAD/src/pipeline.js -------------------------------------------------------------------------------- /src/promptForConfirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeoneWeird/bkrun/HEAD/src/promptForConfirm.js --------------------------------------------------------------------------------