forked from haraka/Haraka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.4 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
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
100
101
102
103
104
105
106
107
{
"author": "Matt Sergeant <[email protected]> (http://baudehlo.com/)",
"name": "Haraka",
"license": "MIT",
"description": "An SMTP Server project.",
"keywords": [
"haraka",
"smtp",
"server",
"email"
],
"version": "3.0.5",
"homepage": "http://haraka.github.io",
"repository": {
"type": "git",
"url": "git://github.com/haraka/Haraka.git"
},
"main": "haraka.js",
"engines": {
"node": ">=18"
},
"dependencies": {
"address-rfc2821": "^2.1.2",
"address-rfc2822": "^2.2.2",
"async": "^3.2.6",
"daemon": "~1.1.0",
"haraka-config": "^1.4.0",
"haraka-constants": "^1.0.7",
"haraka-dsn": "^1.1.0",
"haraka-email-message": "^1.2.4",
"haraka-message-stream": "^1.2.2",
"haraka-net-utils": "^1.7.0",
"haraka-notes": "^1.1.0",
"haraka-plugin-redis": "^2.0.7",
"haraka-results": "^2.2.4",
"haraka-tld": "^1.2.2",
"haraka-utils": "^1.1.3",
"ipaddr.js": "~2.2.0",
"node-gyp": "^10.2.0",
"nopt": "^8.0.0",
"npid": "~0.4.0",
"redis": "~4.7.0",
"semver": "^7.6.3",
"sockaddr": "^1.0.1",
"sprintf-js": "~1.1.3"
},
"optionalDependencies": {
"haraka-plugin-access": "^1.1.6",
"haraka-plugin-aliases": "^1.0.2",
"haraka-plugin-asn": "^2.0.3",
"haraka-plugin-attachment": "^1.1.2",
"haraka-plugin-avg": "^1.1.0",
"haraka-plugin-bounce": "1.0.2",
"haraka-plugin-clamd": "1.0.1",
"haraka-plugin-dcc": "^1.0.2",
"haraka-plugin-dkim": "^1.0.7",
"haraka-plugin-dns-list": "^1.2.1",
"haraka-plugin-elasticsearch": "^8.0.3",
"haraka-plugin-esets": "^1.0.0",
"haraka-plugin-fcrdns": "^1.1.0",
"haraka-plugin-geoip": "^1.1.0",
"haraka-plugin-graph": "^1.0.5",
"haraka-plugin-greylist": "^1.0.0",
"haraka-plugin-headers": "^1.0.4",
"haraka-plugin-helo.checks": "^1.0.0",
"haraka-plugin-karma": "^2.1.5",
"haraka-plugin-known-senders": "^1.1.0",
"haraka-plugin-limit": "^1.2.5",
"haraka-plugin-messagesniffer": "^1.0.0",
"haraka-plugin-p0f": "^1.0.9",
"haraka-plugin-qmail-deliverable": "^1.2.3",
"haraka-plugin-recipient-routes": "^1.2.0",
"haraka-plugin-rspamd": "^1.3.1",
"haraka-plugin-spamassassin": "^1.0.0",
"haraka-plugin-spf": "1.2.7",
"haraka-plugin-syslog": "^1.0.6",
"haraka-plugin-uribl": "^1.0.8",
"haraka-plugin-watch": "^2.0.4",
"ocsp": "~1.2.0",
"tmp": "~0.2.3"
},
"devDependencies": {
"@haraka/eslint-config": "^1.1.5",
"haraka-test-fixtures": "^1.3.8",
"mocha": "^10.7.3",
"mock-require": "^3.0.3",
"nodemailer": "^6.9.15"
},
"bugs": {
"mail": "[email protected]",
"url": "https://github.com/haraka/Haraka/issues"
},
"bin": {
"haraka": "./bin/haraka",
"haraka_grep": "./bin/haraka_grep"
},
"scripts": {
"format:NYET": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint@^8 *.js outbound plugins plugins/*/*.js test test/*/*.js test/*/*/*.js bin/haraka",
"lint:fix": "npx eslint@^8 --fix *.js outbound plugins plugins/*/*.js test test/*/*.js test/*/*/*.js bin/haraka",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "npx mocha --exit --timeout=4000 test test/outbound test/plugins/auth test/plugins/queue test/plugins",
"versions": "npx dependency-version-checker check",
"versions:fix": "npx dependency-version-checker update && npm run prettier:fix"
}
}