├── .gitignore ├── .jshintrc ├── History.md ├── LICENSE ├── README.md ├── index.js ├── lib ├── email.js └── ses.js ├── node-ses.d.ts ├── package.json ├── test └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/node-ses/HEAD/.jshintrc -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/node-ses/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/node-ses/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/node-ses/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/node-ses/HEAD/index.js -------------------------------------------------------------------------------- /lib/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/node-ses/HEAD/lib/email.js -------------------------------------------------------------------------------- /lib/ses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/node-ses/HEAD/lib/ses.js -------------------------------------------------------------------------------- /node-ses.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/node-ses/HEAD/node-ses.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/node-ses/HEAD/package.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/node-ses/HEAD/test/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/node-ses/HEAD/yarn.lock --------------------------------------------------------------------------------