-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "@uscreen.de/postal-mailer",
"version": "0.6.16",
"description": "Mailer engine using mjml templates to send mail via postal api or smtp",
"main": "index.js",
"homepage": "https://github.com/uscreen/postal-mailer",
"repository": {
"type": "git",
"url": "git+https://github.com/uscreen/postal-mailer.git"
},
"author": "Marcus Spiegel <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint --fix",
"prepare": "husky install",
"test": "tap test/**/*.test.js",
"test:cov": "tap --coverage-report=html test/**/*.test.js",
"test:ci": "tap --coverage-report=lcovonly test/**/*.test.js"
},
"devDependencies": {
"@uscreen.de/dev-service": "^0.12.3",
"@uscreen.de/eslint-config-prettystandard-node": "^0.2.11",
"deep-equal": "^2.2.0",
"husky": ">=8.0.1",
"lint-staged": ">=13.1.2",
"mailhog": "^4.16.0",
"nock": "^13.3.0",
"tap": "^16.3.4"
},
"dependencies": {
"@atech/postal": "^1.0.0",
"env-schema": "^6.0.0",
"globby": "^11.1.0",
"handlebars": "^4.7.7",
"html-to-text": "^9.0.4",
"mjml": "^4.13.0",
"nodemailer": "^6.9.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"services": [
{
"image": "mailhog/mailhog:latest",
"ports": [
"1025:1025",
"8025:8025"
]
}
]
}