├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── adapter.js ├── package.json └── test └── adapter-test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmppjs/hubot-xmpp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmppjs/hubot-xmpp/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmppjs/hubot-xmpp/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmppjs/hubot-xmpp/HEAD/README.md -------------------------------------------------------------------------------- /adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmppjs/hubot-xmpp/HEAD/adapter.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmppjs/hubot-xmpp/HEAD/package.json -------------------------------------------------------------------------------- /test/adapter-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmppjs/hubot-xmpp/HEAD/test/adapter-test.js --------------------------------------------------------------------------------