-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
59 lines (59 loc) · 1.52 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
{
"name": "haraka-plugin-mongodb",
"version": "1.8.6",
"description": "Haraka plugin that stores emails in MongoDb. Additionally, stores reports on delivery.",
"main": "index.js",
"scripts": {
"lint": "npx eslint *.js test/*.js",
"lintfix": "npx eslint --fix *.js test/*.js",
"versions": "npx dependency-version-checker check",
"test": "npx mocha test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Helpmonks/haraka-plugin-mongodb.git"
},
"keywords": [
"haraka",
"plugin",
"mongodb",
"smtp",
"helpmonks",
"delivery",
"mailparser",
"email"
],
"author": "Nitai <[email protected]>",
"license": "GPL",
"bugs": {
"url": "https://github.com/Helpmonks/haraka-plugin-mongodb/issues"
},
"homepage": "https://github.com/haraka/haraka-plugin-mongodb#readme",
"dependencies": {
"async": "^3.2.5",
"decode-html": "^2.0.0",
"detect-character-encoding": "^0.9.0",
"fs-extra": "^10.1.0",
"iconv": "^3.0.1",
"ioredis": "^5.4.1",
"linkify-it": "^3.0.3",
"mailparser": "^3.7.1",
"mailsplit": "^5.4.0",
"mime": "^3.0.0",
"moment": "^2.30.1",
"mongodb": "^4.17.2",
"node-gyp": "^10.1.0",
"nodemailer": "^6.9.13",
"quoted-printable": "^1.0.1",
"string": "^3.3.3",
"tlds": "^1.252.0",
"uuid": "^8.3.2",
"watch": "^1.0.2"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-plugin-haraka": "^1.0.16",
"haraka-test-fixtures": "^1.3.7",
"mocha": "^10.4.0"
}
}