├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── gulpfile.js ├── index.js ├── lib ├── email.js └── sms.js ├── package.json └── test └── unit ├── all.js ├── email.js └── sms.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralyodio/app-notify/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralyodio/app-notify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralyodio/app-notify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralyodio/app-notify/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralyodio/app-notify/HEAD/TODO.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralyodio/app-notify/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralyodio/app-notify/HEAD/index.js -------------------------------------------------------------------------------- /lib/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralyodio/app-notify/HEAD/lib/email.js -------------------------------------------------------------------------------- /lib/sms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralyodio/app-notify/HEAD/lib/sms.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralyodio/app-notify/HEAD/package.json -------------------------------------------------------------------------------- /test/unit/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralyodio/app-notify/HEAD/test/unit/all.js -------------------------------------------------------------------------------- /test/unit/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralyodio/app-notify/HEAD/test/unit/email.js -------------------------------------------------------------------------------- /test/unit/sms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralyodio/app-notify/HEAD/test/unit/sms.js --------------------------------------------------------------------------------