-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.09 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.09 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
{
"name": "@zone-eu/zone-mta",
"private": false,
"version": "3.10.15",
"description": "Tiny outbound MTA",
"main": "app.js",
"scripts": {
"test": "grunt",
"runtest": "NODE_ENV=test grunt",
"start": "node app.js",
"show": "NODE_CONFIG_ONLY=true node app.js",
"certs": "mkdir -p keys && cd keys && openssl req -x509 -newkey rsa:2048 -nodes -subj \"/C=US/ST=Oregon/L=Portland/O=Company Name/OU=Org/CN=www.example.com\" -keyout private.key -out server.crt -days 365",
"update": "rm -rf node_modules package-lock.json && ncu -u && npm install"
},
"author": "Andris Reinman",
"license": "EUPL-1.1+",
"dependencies": {
"@zone-eu/mailsplit": "5.4.9",
"@zone-eu/seq-index": "1.1.3",
"@zone-eu/wild-config": "1.7.3",
"@zone-eu/wild-plugins": "1.0.5",
"base32.js": "0.1.0",
"crc-32": "1.2.2",
"dnscache": "1.0.2",
"gelf": "2.0.1",
"http-parser-js": "0.5.10",
"ioredis": "5.10.1",
"isemail": "3.2.0",
"js-yaml": "4.1.1",
"libmime": "5.3.8",
"mailauth": "4.13.1",
"minimist": "1.2.8",
"mongodb": "4.17.2",
"msgpack-js": "0.3.0",
"mx-connect": "1.6.0",
"nodemailer": "8.0.5",
"npmlog": "7.0.1",
"prom-client": "15.1.3",
"punycode": "2.3.1",
"request": "2.88.2",
"restify": "11.1.0",
"smtp-server": "3.18.4",
"srs.js": "0.1.0"
},
"devDependencies": {
"ajv": "8.18.0",
"eslint": "8.57.0",
"eslint-config-nodemailer": "1.2.0",
"eslint-config-prettier": "10.1.8",
"grunt": "1.6.1",
"grunt-cli": "1.5.0",
"grunt-contrib-nodeunit": "5.0.0",
"grunt-eslint": "24.3.0",
"moment": "2.30.1",
"random-message": "1.1.0",
"zip-stream": "7.0.2"
},
"repository": {
"type": "git",
"url": "git://github.com/zone-eu/zone-mta.git"
},
"engines": {
"node": ">=16.0.0"
},
"bin": {
"check-bounce": "bin/check-bounce.js"
}
}