├── .editorconfig ├── .gitignore ├── LICENSE.md ├── README.md ├── index.js ├── package.json └── src └── shortcut.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishathalye/hubot-shortcut/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishathalye/hubot-shortcut/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishathalye/hubot-shortcut/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishathalye/hubot-shortcut/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishathalye/hubot-shortcut/HEAD/package.json -------------------------------------------------------------------------------- /src/shortcut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishathalye/hubot-shortcut/HEAD/src/shortcut.js --------------------------------------------------------------------------------