forked from zone-eu/zone-mta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.85 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
55
56
57
58
59
60
61
62
63
{
"name": "zone-mta",
"private": false,
"version": "3.6.6",
"description": "Tiny outbound MTA",
"main": "app.js",
"scripts": {
"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"
},
"author": "Andris Reinman",
"license": "EUPL-1.1+",
"dependencies": {
"base32.js": "0.1.0",
"cors": "^2.8.5",
"crc-32": "1.2.2",
"dnscache": "1.0.2",
"gelf": "2.0.1",
"ioredis": "5.3.2",
"isemail": "3.2.0",
"joi": "^17.9.2",
"js-yaml": "4.1.0",
"libmime": "5.2.1",
"mailsplit": "5.4.0",
"minimist": "1.2.8",
"mongodb": "4.14.0",
"msgpack-js": "0.3.0",
"multer": "^1.4.5-lts.1",
"mx-connect": "1.4.4",
"nodemailer": "6.9.2",
"npmlog": "github:RichiMaulana/npmlog",
"prom-client": "14.2.0",
"punycode": "2.3.0",
"request": "2.88.2",
"restify": "11.1.0",
"seq-index": "1.1.0",
"smtp-server": "3.12.0",
"srs.js": "0.1.0",
"uuid": "9.0.0",
"wild-config": "1.7.0"
},
"devDependencies": {
"ajv": "8.12.0",
"eslint": "8.41.0",
"eslint-config-nodemailer": "1.2.0",
"eslint-config-prettier": "8.8.0",
"grunt": "1.6.1",
"grunt-cli": "1.4.3",
"grunt-contrib-nodeunit": "5.0.0",
"grunt-eslint": "24.1.0",
"moment": "2.29.4",
"random-message": "1.1.0",
"zip-stream": "4.1.0"
},
"engines": {
"node": ">=14.0.0"
},
"bin": {
"check-bounce": "bin/check-bounce.js"
}
}