├── .editorconfig ├── .gitignore ├── .jscsrc ├── ATTRIBUTIONS.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── index.js ├── package.json ├── src └── index.js └── tests └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howdyai/botkit-storage-redis/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howdyai/botkit-storage-redis/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howdyai/botkit-storage-redis/HEAD/.jscsrc -------------------------------------------------------------------------------- /ATTRIBUTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howdyai/botkit-storage-redis/HEAD/ATTRIBUTIONS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howdyai/botkit-storage-redis/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howdyai/botkit-storage-redis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howdyai/botkit-storage-redis/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src'); 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howdyai/botkit-storage-redis/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howdyai/botkit-storage-redis/HEAD/src/index.js -------------------------------------------------------------------------------- /tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howdyai/botkit-storage-redis/HEAD/tests/index.js --------------------------------------------------------------------------------