-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
37 lines (37 loc) · 966 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-express-handlebars",
"version": "7.0.0",
"description": "A plugin for nodemailer that uses express-handlebars view engine to generate emails",
"main": "index.js",
"type": "module",
"scripts": {
"test": "mocha --recursive test/tests"
},
"keywords": [
"nodemailer",
"html",
"express-handlebars",
"handlebars"
],
"author": "Vadim Kazakov <[email protected]>",
"homepage": "https://github.com/yads/nodemailer-express-handlebars",
"bugs": "https://github.com/yads/nodemailer-express-handlebars/issues",
"repository": {
"type": "git",
"url": "https://github.com/yads/nodemailer-express-handlebars"
},
"license": "MIT",
"peerDependencies": {
"express-handlebars": ">= 8.0.0",
"nodemailer": ">= 6.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"express-handlebars": "^8.0.0",
"mocha": "^10.0.0",
"nodemailer": "^6.4.6"
},
"engines": {
"node": ">= 20"
}
}