forked from yads/nodemailer-express-handlebars
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1020 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
{
"name": "nodemailer-handlebars",
"version": "1.0.0",
"description": "A plugin for nodemailer that uses express-handlebars view engine to generate emails",
"main": "index.js",
"scripts": {
"test": "mocha --recursive test/tests"
},
"keywords": [
"nodemailer",
"html",
"express-handlebars",
"handlebars",
"partials",
"templates",
"email-templates",
"nodemailer-plugins",
"nodemailer-handlebars"
],
"author": "Accime Esterling <esterlinaccime@gmail.com>",
"homepage": "https://github.com/accimeesterlin/nodemailer-express-handlebars",
"bugs": "https://github.com/accimeesterlin/nodemailer-express-handlebars/issues",
"repository": {
"type": "git",
"url": "https://github.com/accimeesterlin/nodemailer-express-handlebars"
},
"license": "MIT",
"dependencies": {
"express-handlebars": "^3.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.0",
"nodemailer": "^4.4.2",
"nodemailer-stub-transport": "^1.1.0"
}
}