forked from autotelic/fastify-mail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.25 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.25 KB
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
51
52
53
54
55
{
"name": "@autotelic/fastify-mail",
"version": "0.6.0",
"description": "A Fastify plugin for rendering and sending emails",
"main": "index.js",
"scripts": {
"lint": "standard",
"fix": "standard --fix",
"test": "tap -R classic",
"validate": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autotelic/fastify-mail.git"
},
"keywords": [
"fastify",
"plugin",
"nodemailer",
"fastify-nodemailer",
"mail",
"point-of-view",
"template",
"view"
],
"author": "Autotelic Development Ltd <info@autotelic.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/autotelic/fastify-mail/issues"
},
"homepage": "https://github.com/autotelic/fastify-mail#readme",
"dependencies": {
"@fastify/view": "^7.1.0",
"fastify-plugin": "^3.0.0",
"nodemailer": "^6.4.17",
"nunjucks": "^3.2.2"
},
"devDependencies": {
"fastify": "^4.6.0",
"fastify-cli": "^5.4.2",
"husky": "^4.3.6",
"lint-staged": "^10.2.11",
"sinon": "^9.2.2",
"standard": "^14.3.4",
"tap": "^14.11.0"
},
"lint-staged": {
"*.js": "npm run fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
}
}