-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.29 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@autotelic/fastify-mail",
"version": "0.8.0",
"description": "A Fastify plugin for rendering and sending emails",
"main": "index.js",
"scripts": {
"lint": "standard",
"fix": "standard --fix",
"test": "tap",
"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": "^8.2.0",
"fastify-plugin": "^4.5.1",
"nodemailer": "^6.9.8",
"nunjucks": "^3.2.4"
},
"devDependencies": {
"fastify": "^4.25.2",
"fastify-cli": "^6.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"sinon": "^17.0.1",
"standard": "^17.1.0",
"tap": "^18.6.1"
},
"lint-staged": {
"*.js": "npm run fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"standard": {
"ignore": [
"**/*.ts"
]
}
}