forked from zone-eu/zone-mta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.68 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
{
"name": "zone-mta",
"private": false,
"version": "2.4.2",
"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": {
"crc-32": "1.2.0",
"dnscache": "1.0.2",
"gelf": "2.0.1",
"ioredis": "4.19.4",
"isemail": "3.2.0",
"js-yaml": "4.0.0",
"libmime": "5.0.0",
"mailsplit": "5.0.1",
"minimist": "1.2.5",
"mongodb": "3.6.3",
"msgpack-js": "0.3.0",
"mx-connect": "1.2.0",
"nodemailer": "6.4.17",
"npmlog": "4.1.2",
"prom-client": "13.1.0",
"request": "2.88.2",
"restify": "8.5.1",
"seq-index": "1.1.0",
"smtp-server": "3.8.0",
"srs.js": "0.1.0",
"uuid": "8.3.2",
"wild-config": "1.5.1"
},
"devDependencies": {
"ajv": "7.0.3",
"eslint": "7.19.0",
"eslint-config-nodemailer": "1.2.0",
"eslint-config-prettier": "7.2.0",
"grunt": "1.3.0",
"grunt-cli": "1.3.2",
"grunt-contrib-nodeunit": "2.1.0",
"grunt-eslint": "23.0.0",
"moment": "2.29.1",
"random-message": "1.1.0",
"zip-stream": "4.0.4"
},
"engines": {
"node": ">=8.0.0"
},
"bin": {
"check-bounce": "bin/check-bounce.js"
}
}