├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json ├── script ├── bootstrap └── test ├── src └── fliptable.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-fliptable/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-fliptable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-fliptable/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-fliptable/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-fliptable/HEAD/package.json -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-fliptable/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-fliptable/HEAD/script/test -------------------------------------------------------------------------------- /src/fliptable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-fliptable/HEAD/src/fliptable.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-fliptable/HEAD/yarn.lock --------------------------------------------------------------------------------