forked from haraka/Haraka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.26 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
{
"author": "Matt Sergeant <helpme@gmail.com> (http://baudehlo.com/)",
"name": "Haraka",
"license": "MIT",
"description": "An SMTP Server project.",
"keywords": [
"haraka",
"smtp",
"server",
"email"
],
"version": "2.8.28",
"homepage": "http://haraka.github.io",
"repository": {
"type": "git",
"url": "git://github.com/haraka/Haraka.git"
},
"main": "haraka.js",
"engines": {
"node": ">=12.22.6"
},
"dependencies": {
"address-rfc2821" : "^2.0.1",
"address-rfc2822" : "^2.1.0",
"async" : "~3.2.1",
"daemon" : "~1.1.0",
"generic-pool" : "~2.5.4",
"iconv" : "~3.0.1",
"ipaddr.js" : "~2.0.1",
"libqp" : "^1.1.0",
"libmime" : "^5.0.0",
"nopt" : "~5.0.0",
"npid" : "~0.4.0",
"semver" : "~7.3.5",
"sprintf-js" : "~1.1.2",
"haraka-config" : "^1.0.20",
"haraka-constants" : "^1.0.5",
"haraka-dsn" : "^1.0.3",
"haraka-net-utils" : "^1.3.1",
"haraka-notes" : "^1.0.4",
"haraka-plugin-redis" : "^1.0.12",
"haraka-results" : "^2.0.3",
"haraka-tld" : "^1.0.28",
"haraka-utils" : "^1.0.2",
"openssl-wrapper" : "^0.3.4",
"sockaddr" : "^1.0.1"
},
"optionalDependencies": {
"haraka-plugin-access" : "^1.1.4",
"haraka-plugin-asn" : "^1.0.8",
"haraka-plugin-auth-ldap": "^1.0.2",
"haraka-plugin-dcc" : "^1.0.1",
"haraka-plugin-elasticsearch" : "^1.0.6",
"haraka-plugin-fcrdns" : "^1.0.3",
"haraka-plugin-graph" : "^1.0.3",
"haraka-plugin-geoip" : "^1.0.15",
"haraka-plugin-headers" : "^1.0.2",
"haraka-plugin-karma" : "^1.0.13",
"haraka-plugin-limit" : "^1.0.4",
"haraka-plugin-p0f" : "^1.0.5",
"haraka-plugin-qmail-deliverable" : "^1.0.5",
"haraka-plugin-rcpt-ldap": "^1.0.0",
"haraka-plugin-recipient-routes" : "^1.0.2",
"haraka-plugin-rspamd" : "^1.1.6",
"haraka-plugin-syslog" : "^1.0.3",
"haraka-plugin-watch" : "^1.0.15",
"ocsp" : "~1.2.0",
"redis" : "~3.1.2",
"tmp" : "~0.2.1"
},
"devDependencies": {
"nodeunit-x" : "^0.15.0",
"haraka-test-fixtures" : "^1.0.33",
"mock-require" : "^3.0.3",
"eslint" : "^8.0",
"eslint-plugin-haraka" : "^1.0.14",
"nodemailer" : "6.7.0"
},
"bugs": {
"mail": "haraka.mail@gmail.com",
"url": "https://github.com/haraka/Haraka/issues"
},
"bin": {
"haraka": "./bin/haraka",
"spf": "./bin/spf",
"dkimverify": "./bin/dkimverify",
"haraka_grep": "./bin/haraka_grep"
},
"scripts": {
"test": "node run_tests",
"lint": "npx eslint *.js outbound/*.js plugins/*.js plugins/*/*.js tests/*.js tests/*/*.js tests/*/*/*.js bin/haraka bin/spf bin/dkimverify",
"lintfix": "npx eslint --fix *.js outbound/*.js plugins/*.js plugins/*/*.js tests/*.js tests/*/*.js tests/*/*/*.js bin/haraka bin/spf bin/dkimverify",
"cover": "NODE_ENV=cov npx nyc --reporter=lcovonly npm run test",
"versions": "npx dependency-version-checker check"
}
}