forked from haraka/Haraka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.06 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
{
"author": "Matt Sergeant <[email protected]> (http://baudehlo.com/)",
"name": "Haraka",
"license": "MIT",
"description": "An SMTP Server project.",
"keywords": [
"haraka",
"smtp",
"server",
"email"
],
"version": "2.8.25",
"homepage": "http://haraka.github.io",
"repository": {
"type": "git",
"url": "git://github.com/haraka/Haraka.git"
},
"main": "haraka.js",
"engines": {
"node": ">= v10.21.0"
},
"dependencies": {
"address-rfc2821" : "^1.1.3",
"address-rfc2822" : "^2.0.5",
"async" : "~3.2.0",
"daemon" : "~1.1.0",
"generic-pool" : "~2.5.4",
"iconv" : "~2.3.5",
"ipaddr.js" : "~1.9.1",
"nopt" : "~4.0.3",
"npid" : "~0.4.0",
"semver" : "~7.3.2",
"sprintf-js" : "~1.1.2",
"haraka-config" : ">=1.0.15",
"haraka-constants" : ">=1.0.5",
"haraka-dsn" : "*",
"haraka-net-utils" : ">=1.1.2",
"haraka-notes" : "*",
"haraka-results" : "^2.0.3",
"haraka-tld" : "*",
"haraka-utils" : "*",
"openssl-wrapper" : "^0.3.4",
"sockaddr" : "^1.0.1"
},
"optionalDependencies": {
"haraka-plugin-access" : "*",
"haraka-plugin-asn" : "*",
"haraka-plugin-auth-ldap": "*",
"haraka-plugin-dcc" : "*",
"haraka-plugin-elasticsearch" : "*",
"haraka-plugin-fcrdns" : "*",
"haraka-plugin-graph" : "*",
"haraka-plugin-geoip" : "*",
"haraka-plugin-headers" : "*",
"haraka-plugin-karma" : "*",
"haraka-plugin-limit" : "*",
"haraka-plugin-p0f" : "*",
"haraka-plugin-qmail-deliverable" : "*",
"haraka-plugin-rcpt-ldap": "*",
"haraka-plugin-recipient-routes" : "*",
"haraka-plugin-redis" : "*",
"haraka-plugin-rspamd" : "*",
"haraka-plugin-syslog" : "*",
"haraka-plugin-watch" : "*",
"ocsp" : "~1.2.0",
"redis" : "~3.0.0",
"tmp" : "~0.1.0"
},
"devDependencies": {
"nodeunit" : "*",
"haraka-test-fixtures" : ">=1.0.27",
"mock-require" : "^3.0.3",
"eslint" : ">=6",
"eslint-plugin-haraka" : "*",
"nodemailer" : "6.2.1"
},
"bugs": {
"mail": "[email protected]",
"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"
}
}