├── .gitignore ├── LICENCE ├── PATENTS ├── README.md ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomeau/parse-server-mailgun-adapter-template/HEAD/LICENCE -------------------------------------------------------------------------------- /PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomeau/parse-server-mailgun-adapter-template/HEAD/PATENTS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomeau/parse-server-mailgun-adapter-template/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomeau/parse-server-mailgun-adapter-template/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomeau/parse-server-mailgun-adapter-template/HEAD/package.json --------------------------------------------------------------------------------