-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.1 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.1 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "ms-mailer",
"description": "microservice mailer, incorporates nodemailer functionality with a number of useful plugins over smtp pool transport and amqp messageing layer",
"main": "./lib/index.js",
"version": "11.0.1",
"scripts": {
"compile": "babel -d ./lib ./src",
"prepublish": "pnpm compile",
"test": "pnpm lint && pnpm test:e2e",
"test:e2e": "pnpm compile && mdep test run",
"lint": "eslint ./src",
"start": "mfleet",
"prepare": "mdep install || true",
"semantic-release": "semantic-release",
"docker-release": "mdep docker release",
"release": "pnpm i --frozen-lockfile && pnpm semantic-release"
},
"keywords": [
"microservice",
"amqp",
"nodemailer",
"mailer",
"smtp"
],
"repository": {
"type": "git",
"url": "https://github.com/makeomatic/ms-mailer.git"
},
"author": "Vitaly Aminev <v@makeomatic.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/makeomatic/ms-mailer/issues"
},
"homepage": "https://github.com/makeomatic/ms-mailer#readme",
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-strict-mode": "^7.25.9",
"@babel/register": "^7.25.9",
"@makeomatic/deploy": "^13.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"babel-plugin-istanbul": "^7.0.0",
"c8": "^10.1.3",
"chai": "^4.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-makeomatic": "^6.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unicorn": "^56.0.1",
"mocha": "^11.0.1",
"semantic-release": "^24.2.0",
"smtp-server": "^3.13.6"
},
"dependencies": {
"@fastify/deepmerge": "^2.0.0",
"@hapi/hapi": "^21.3.12",
"@microfleet/core": "^21.0.1",
"@microfleet/plugin-amqp": "^4.0.1",
"@microfleet/plugin-hapi": "^4.0.1",
"@microfleet/plugin-logger": "^4.0.1",
"@microfleet/plugin-prometheus": "^4.0.1",
"@microfleet/plugin-router": "^4.0.1",
"@microfleet/plugin-router-amqp": "^4.0.1",
"@microfleet/plugin-router-hapi": "^4.0.1",
"@microfleet/plugin-validator": "^4.0.1",
"@microfleet/transport-amqp": "^17.8.2",
"@microfleet/utils": "^4.0.1",
"@microfleet/validation": "^12.0.0",
"bluebird": "^3.7.2",
"common-errors": "^1.2.0",
"is": "^3.3.0",
"joi": "^17.13.3",
"lodash": "^4.17.21",
"ms-conf": "^8.2.1",
"ms-mailer-templates": "^3.0.1",
"nodemailer": "^6.9.16",
"nodemailer-html-to-text": "^3.2.0",
"nodemailer-mailgun-transport": "^2.1.5",
"nodemailer-plugin-inline-base64": "^2.1.1",
"prom-client": "^15.1.3",
"sparkpost": "2.1.4",
"yargs": "^17.7.2"
},
"engine": {
"node": ">= 20.18.0"
},
"mocha": {
"require": [
"@babel/register"
],
"bail": true,
"timeout": 20000,
"reporter": "spec"
},
"packageManager": "pnpm@9.15.3+sha512.1f79bc245a66eb0b07c5d4d83131240774642caaa86ef7d0434ab47c0d16f66b04e21e0c086eb61e62c77efc4d7f7ec071afad3796af64892fae66509173893a"
}