-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1022 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "ses-proxy",
"version": "1.0.6",
"description": "Proxy SMTP emails to Amazon's SES (Simple Email Service)",
"main": "index.js",
"bin": {
"ses-proxy": "bin/cmd.js"
},
"preferGlobal": "true",
"scripts": {
"test": "mocha tests/test-send-email.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/garrows/ses-proxy.git"
},
"keywords": [
"email",
"ses",
"smtp",
"proxy",
"amazon",
"aws"
],
"author": {
"name": "Glen Arrowsmith",
"email": "[email protected]"
},
"license": "GPL v3.0",
"bugs": {
"url": "https://github.com/garrows/ses-proxy/issues"
},
"homepage": "https://github.com/garrows/ses-proxy",
"devDependencies": {
"mocha": "^2.1.0",
"nodemailer": "^1.3.0",
"nodemailer-smtp-transport": "^0.1.13",
"should": "^4.4.2"
},
"dependencies": {
"async": "^0.9.0",
"aws-sdk": "^2.1.4",
"commander": "^2.6.0",
"proxy-agent": "^1.1.0"
}
}