├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── Procfile ├── README.md ├── bin ├── hubot └── hubot.cmd ├── external-scripts.json ├── package.json ├── scripts ├── example.js └── version.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketChat/hubot-rocketchat-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketChat/hubot-rocketchat-boilerplate/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketChat/hubot-rocketchat-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bin/hubot -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketChat/hubot-rocketchat-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /bin/hubot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketChat/hubot-rocketchat-boilerplate/HEAD/bin/hubot -------------------------------------------------------------------------------- /bin/hubot.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketChat/hubot-rocketchat-boilerplate/HEAD/bin/hubot.cmd -------------------------------------------------------------------------------- /external-scripts.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketChat/hubot-rocketchat-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /scripts/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketChat/hubot-rocketchat-boilerplate/HEAD/scripts/example.js -------------------------------------------------------------------------------- /scripts/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketChat/hubot-rocketchat-boilerplate/HEAD/scripts/version.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RocketChat/hubot-rocketchat-boilerplate/HEAD/yarn.lock --------------------------------------------------------------------------------