-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "ms-mailer-client",
"version": "7.0.0",
"description": "client for ms-mailer",
"main": "./src/index.js",
"scripts": {
"lint": "eslint ./src",
"test": "pnpm lint && mocha --bail --timeout 10000 -R spec",
"semantic-release": "semantic-release",
"prepare": "mdep install || true"
},
"files": [
"src/",
"schemas/"
],
"keywords": [
"microservice",
"amqp",
"nodemailer",
"mailer",
"smtp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/makeomatic/ms-mailer-client.git"
},
"author": "Vitaly Aminev <v@makeomatic.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/makeomatic/ms-mailer-client/issues"
},
"homepage": "https://github.com/makeomatic/ms-mailer-client#readme",
"devDependencies": {
"@makeomatic/deploy": "^13.0.7",
"@microfleet/validation": "^12.0.0",
"common-errors": "^1.2.0",
"eslint": "^8.33.0",
"eslint-config-makeomatic": "^6.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^50.0.1",
"mocha": "^10.2.0",
"semantic-release": "^23.0.0"
},
"peerDependencies": {
"@microfleet/transport-amqp": ">= 12.x.x",
"@microfleet/validation": ">= 12.x.x",
"common-errors": "~1.x.x"
},
"dependencies": {
"lodash.merge": "^4.6.2"
}
}