forked from nodemailer/nodemailer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.12 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
{
"name": "nodemailer",
"version": "1.8.0",
"description": "Easy as cake e-mail sending from your Node.js applications",
"main": "src/nodemailer.js",
"scripts": {
"test": "grunt"
},
"repository": {
"type": "git",
"url": "git://github.com/andris9/Nodemailer.git"
},
"keywords": [
"e-mail",
"mime",
"email",
"mail",
"sendmail",
"ses",
"smtp"
],
"author": "Andris Reinman",
"license": "MIT",
"bugs": {
"url": "https://github.com/andris9/Nodemailer/issues"
},
"homepage": "http://www.nodemailer.com",
"devDependencies": {
"chai": "^3.3.0",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.3",
"grunt-mocha-test": "^0.12.7",
"mocha": "^2.3.3",
"nodemailer-dkim": "^1.0.3",
"nodemailer-markdown": "^1.0.0",
"nodemailer-stub-transport": "^1.0.0",
"sinon": "^1.17.1",
"smtp-server": "^1.6.0"
},
"dependencies": {
"libmime": "^1.2.0",
"mailcomposer": "^2.0.0",
"needle": "^0.10.0",
"nodemailer-direct-transport": "^1.0.2",
"nodemailer-smtp-transport": "^1.0.3"
},
"engines": {
"node": ">=0.10.0"
}
}