├── .gitignore ├── LICENSE ├── README.md ├── package.json └── src └── twitter.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathildeLemee/hubot-twitter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathildeLemee/hubot-twitter/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathildeLemee/hubot-twitter/HEAD/package.json -------------------------------------------------------------------------------- /src/twitter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathildeLemee/hubot-twitter/HEAD/src/twitter.coffee --------------------------------------------------------------------------------