forked from haraka/Haraka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.89 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
{
"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.2",
"homepage": "http://haraka.github.io",
"repository": {
"type": "git",
"url": "git://github.com/haraka/Haraka.git"
},
"main": "haraka.js",
"engines": {
"node": ">=16"
},
"dependencies": {
"address-rfc2821": "^2.0.1",
"address-rfc2822": "^2.1.0",
"async": "^3.2.4",
"daemon": "~1.1.0",
"ipaddr.js": "~2.1.0",
"node-gyp": "^9.4.0",
"nopt": "~7.2.0",
"npid": "~0.4.0",
"semver": "~7.5.2",
"sprintf-js": "~1.1.2",
"haraka-config": "^1.1.0",
"haraka-constants": "^1.0.6",
"haraka-dsn": "^1.0.4",
"haraka-email-message": "^1.2.0",
"haraka-message-stream": "^1.2.0",
"haraka-net-utils": "^1.5.0",
"haraka-notes": "^1.0.6",
"haraka-plugin-attachment": "^1.0.7",
"haraka-plugin-spf": "1.2.0",
"haraka-plugin-redis": "^2.0.5",
"haraka-results": "^2.2.3",
"haraka-tld": "^1.1.1",
"haraka-utils": "^1.0.3",
"openssl-wrapper": "^0.3.4",
"sockaddr": "^1.0.1"
},
"optionalDependencies": {
"haraka-plugin-access": "^1.1.5",
"haraka-plugin-aliases": "^1.0.1",
"haraka-plugin-asn": "^2.0.1",
"haraka-plugin-auth-ldap": "^1.0.2",
"haraka-plugin-dcc": "^1.0.1",
"haraka-plugin-elasticsearch": "^1.0.6",
"haraka-plugin-fcrdns": "^1.1.0",
"haraka-plugin-graph": "^1.0.5",
"haraka-plugin-geoip": "^1.0.17",
"haraka-plugin-headers": "^1.0.3",
"haraka-plugin-karma": "^2.1.0",
"haraka-plugin-limit": "^1.1.0",
"haraka-plugin-p0f": "^1.0.9",
"haraka-plugin-qmail-deliverable": "^1.2.1",
"haraka-plugin-known-senders": "^1.0.8",
"haraka-plugin-rcpt-ldap": "^1.0.0",
"haraka-plugin-recipient-routes": "^1.0.4",
"haraka-plugin-rspamd": "^1.2.0",
"haraka-plugin-syslog": "^1.0.3",
"haraka-plugin-uribl": "^1.0.6",
"haraka-plugin-watch": "^2.0.2",
"ocsp": "~1.2.0",
"redis": "^4.5.1",
"tmp": "~0.2.1"
},
"devDependencies": {
"nodeunit-x": "^0.16.0",
"haraka-test-fixtures": "^1.3.0",
"mock-require": "^3.0.3",
"eslint": "^8.42.0",
"eslint-plugin-haraka": "^1.0.15",
"nodemailer": "^6.9.3"
},
"bugs": {
"mail": "[email protected]",
"url": "https://github.com/haraka/Haraka/issues"
},
"bin": {
"haraka": "./bin/haraka",
"dkimverify": "./bin/dkimverify",
"haraka_grep": "./bin/haraka_grep"
},
"scripts": {
"test": "node run_tests",
"lint": "npx eslint *.js outbound plugins plugins/*/*.js tests tests/*/*.js tests/*/*/*.js bin/haraka bin/dkimverify",
"lintfix": "npx eslint --fix *.js outbound plugins plugins/*/*.js tests tests/*/*.js tests/*/*/*.js bin/haraka bin/dkimverify",
"versions": "npx dependency-version-checker check"
}
}