forked from haraka/Haraka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.87 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
{
"author": "Matt Sergeant <[email protected]> (http://baudehlo.com/)",
"name": "Haraka",
"description": "An SMTP Server project.",
"keywords": ["haraka", "smtp", "server", "email"],
"version": "2.6.1",
"homepage": "http://haraka.github.io",
"repository": {
"type": "git",
"url": "git://github.com/baudehlo/Haraka.git"
},
"main": "haraka.js",
"engines": {
"node": ">= v0.10.0"
},
"dependencies": {
"nopt" : "~3.0.1",
"generic-pool" : "~2.2.0",
"iconv" : "~2.1.0",
"ipaddr.js" : "~1.0.1",
"semver" : "~2.2.1",
"async" : "~1.1.0",
"daemon" : "~1.1.0",
"npid" : "~0.4.0",
"address-rfc2822":"~0.0.2",
"js-yaml" : "~3.3.0",
"sprintf-js" : "~1.0.2"
},
"optionalDependencies": {
"node-syslog": "~1.2.0",
"strong-fork-syslog": "~1.2.3",
"ldapjs": "~0.7.1",
"vs-stun": "~0.0.7",
"maxmind": "*",
"redis": "~0.10.1",
"tmp": "~0.0.24",
"haraka-nosql": "*",
"elasticsearch": "*"
},
"devDependencies": {
"nodeunit" : "https://github.com/godsflaw/nodeunit/archive/master.tar.gz",
"jscoverage" : "*",
"coveralls" : "*",
"grunt" : "*",
"grunt-contrib-clean" : "*",
"grunt-contrib-jshint" : "*",
"grunt-version-check" : "*"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/baudehlo/Haraka/blob/master/LICENSE"
}
],
"bugs": {
"mail": "[email protected]",
"url": "https://github.com/baudehlo/Haraka/issues"
},
"bin": {
"haraka": "./bin/haraka",
"spf": "./bin/spf",
"dkimverify": "./bin/dkimverify",
"haraka_grep": "./bin/haraka_grep"
},
"scripts": {
"test": "node run_tests",
"coveralls": "jscoverage *.js && QUICKSORT_COV=1 ./node_modules/nodeunit/bin/nodeunit --reporter=lcov tests --reporter=lcov tests | coveralls"
}
}