forked from nodemailer/nodemailer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.02 KB
/
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
48
49
50
51
52
{
"name": "nodemailer",
"description": "Easy to use module to send e-mails, supports unicode and SSL/TLS",
"version": "0.6.0",
"author": "Andris Reinman",
"maintainers": [
{
"name": "andris",
"email": "[email protected]"
}
],
"homepage": "http://github.com/andris9/nodemailer",
"repository": {
"type": "git",
"url": "http://github.com/andris9/nodemailer.git"
},
"scripts": {
"test": "nodeunit test/"
},
"main": "./lib/nodemailer",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/andris9/nodemailer/blob/master/LICENSE"
}
],
"dependencies": {
"mailcomposer": "~0.2.7",
"simplesmtp": "~0.2 || ~0.3",
"directmail": "~0.1.6",
"he": "~0.3.6",
"public-address": "~0.1.0"
},
"devDependencies": {
"nodeunit": "*"
},
"optionalDependencies": {
"readable-stream": "~1.1.9"
},
"engines": {
"node": ">=0.6.0"
},
"keywords": [
"e-mail",
"mime",
"email",
"mail",
"sendmail",
"ses",
"smtp"
]
}