-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.31 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.31 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "octomailer",
"version": "1.1.0",
"description": "A universal library for sending emails using different services.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest 2>&1 | grep -v \"watchman warning\" | grep -v \"To clear this warning, run:\" | grep -v \"watchman watch-del\" | grep -v \"watchman watch-project\" | grep -v \"MustScanSubDirs\" | grep -v \"https://facebook.github.io/watchman\"",
"test:watch": "jest --watch 2>&1 | grep -v \"watchman warning\" | grep -v \"To clear this warning, run:\" | grep -v \"watchman watch-del\" | grep -v \"watchman watch-project\" | grep -v \"MustScanSubDirs\" | grep -v \"https://facebook.github.io/watchman\"",
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts' --fix",
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'"
},
"keywords": [
"email",
"mailer",
"sendgrid",
"brevo",
"mailgun",
"ses",
"postmark",
"mandrill",
"sparkpost",
"infobip",
"mailjet",
"transactional-email"
],
"author": "aaurelions",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@aws-sdk/client-ses": "^3.846.0",
"@mailchimp/mailchimp_transactional": "^1.0.59",
"@sendgrid/mail": "^8.1.3",
"axios": "^1.7.2",
"form-data": "^4.0.0",
"mailgun.js": "^12.0.3",
"node-mailjet": "^6.0.5",
"nodemailer": "^7.0.5",
"postmark": "^4.0.2",
"resend": "^4.6.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.4.0",
"@types/jest": "^30.0.0",
"@types/mailchimp__mailchimp_transactional": "^1.0.11",
"@types/node": "^24.0.14",
"@types/nodemailer": "^6.4.15",
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.31",
"@typescript-eslint/parser": "^8.0.0-alpha.31",
"eslint": "^9.4.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^30.0.4",
"prettier": "^3.3.1",
"ts-jest": "^29.4.0",
"typescript": "^5.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/aaurelions/octomailer.git"
},
"bugs": {
"url": "https://github.com/aaurelions/octomailer/issues"
},
"homepage": "https://github.com/aaurelions/octomailer#readme",
"overrides": {
"glob": "^10.4.5"
}
}