-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 998 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": "fastify-nodemailer",
"version": "4.1.1",
"description": "Fastify nodemailer plugin",
"main": "index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"lint": "standard --fix",
"test": " standard && tap test.js --cov --no-browser",
"coverage": "standard && tap test.js --cov --no-browser --coverage-report html"
},
"repository": {
"type": "git",
"url": "https://github.com/lependu/fastify-nodemailer.git"
},
"keywords": [
"nodejs",
"fastify",
"nodemailer"
],
"author": "Akos Kovács <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lependu/fastify-nodemailer/issues"
},
"homepage": "https://github.com/lependu/fastify-nodemailer#readme",
"devDependencies": {
"fastify": "^2.13.1",
"standard": "^14.0.0",
"tap": "^12.7.0"
},
"dependencies": {
"fastify-plugin": "^1.6.1",
"nodemailer": "^6.4.6"
},
"greenkeeper": {
"ignore": [
"tap"
]
}
}