forked from haraka/Haraka
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.56 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
{
"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.13",
"homepage": "http://haraka.github.io",
"repository": {
"type": "git",
"url": "git://github.com/haraka/Haraka.git"
},
"main": "haraka.js",
"engines": {
"node": ">= v6.10.0"
},
"dependencies": {
"address-rfc2821" : "^1.1.1",
"address-rfc2822" : "^2.0.0",
"async" : "~2.5.0",
"daemon" : "~1.1.0",
"generic-pool" : "~2.5.0",
"iconv" : "~2.3.0",
"ipaddr.js" : "~1.4.0",
"js-yaml" : "~3.8.0",
"nopt" : "~4.0.1",
"npid" : "~0.4.0",
"semver" : "~5.3.0",
"sprintf-js" : "~1.1.0",
"haraka-tld" : "*",
"haraka-constants" : "*",
"haraka-net-utils" : ">=1.0.8",
"haraka-results" : "^2.0.0",
"haraka-utils" : "*",
"haraka-plugin-asn" : "*",
"haraka-plugin-geoip" : "*",
"haraka-plugin-fcrdns" : "*",
"haraka-plugin-karma" : "*",
"haraka-plugin-limit" : "*",
"haraka-plugin-watch" : "*"
},
"optionalDependencies": {
"elasticsearch" : "*",
"ldapjs" : "~1.0.0",
"haraka-plugin-redis" : "*",
"haraka-plugin-syslog" : "*",
"ocsp" : "~1.2.0",
"redis" : "~2.7.0",
"tmp" : "~0.0.28",
"vs-stun" : "~0.0.7"
},
"devDependencies": {
"nodeunit" : "*",
"haraka-test-fixtures" : ">=1.0.17",
"eslint" : ">=3",
"eslint-plugin-haraka" : "*",
"nodemailer" : "^2.7.2"
},
"bugs": {
"mail": "[email protected]",
"url": "https://github.com/haraka/Haraka/issues"
},
"greenkeeper": {
"ignore": [
"generic-pool",
"nodemailer"
]
},
"bin": {
"haraka": "./bin/haraka",
"spf": "./bin/spf",
"dkimverify": "./bin/dkimverify",
"haraka_grep": "./bin/haraka_grep"
},
"scripts": {
"test": "node run_tests",
"lint": "./node_modules/.bin/eslint *.js plugins/*.js plugins/*/*.js tests/*.js tests/*/*.js bin/haraka bin/spf bin/dkimverify",
"lintfix": "./node_modules/.bin/eslint --fix *.js plugins/*.js plugins/*/*.js tests/*.js tests/*/*.js bin/haraka bin/spf bin/dkimverify",
"cover": "NODE_ENV=cov ./node_modules/.bin/istanbul cov run_tests"
}
}