forked from senecajs/seneca-mail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 866 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
{
"name": "seneca-mail",
"version": "0.2.1",
"description": "Seneca email plugin",
"main": "mail.js",
"scripts": {
"test": "node mail.js"
},
"keywords": [
"seneca",
"mail",
"email",
"plugin"
],
"author": "Richard Rodger (http://richardrodger.com)",
"license": "MIT",
"dependencies": {
"underscore": "~1.7.0",
"email-templates": "~1.2.1",
"nodemailer-smtp-transport": "~1.0.3",
"nodemailer-stub-transport": "~1.0.0",
"nodemailer": "~1.4.0"
},
"peerDependencies": {
"seneca": "*"
},
"devDependencies": {
"async": "~0.9.0",
"chai": "~1.10.0",
"gex": "~0.1.4",
"mocha": "~2.0.1",
"seneca": "~0.5.17",
"ejs": "~1.0.0"
},
"files": [
"README.md",
"LICENSE.txt",
"mail.js",
"test/readme.js",
"lib/defaultActions.js",
"lib/templateActions.js"
]
}