-
-
Notifications
You must be signed in to change notification settings - Fork 276
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.8 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.8 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@zone-eu/wildduck",
"version": "1.48.0",
"description": "IMAP/POP3 server built with Node.js and MongoDB",
"main": "server.js",
"scripts": {
"test": "mongosh --eval 'db.dropDatabase()' wildduck-test && redis-cli -n 13 flushdb && npm run runtest",
"test:proto": "NODE_ENV=test grunt proto",
"printconf": "NODE_CONFIG_ONLY=true npm start",
"runtest": "NODE_ENV=test grunt",
"runci": "npm run printconf && npm run runtest",
"apidoc": "apidoc -i lib/api/ -o docs/api/",
"show": "NODE_CONFIG_ONLY=true node server.js",
"start": "node server.js",
"update": "rm -rf node_modules package-lock.json && ncu -u && npm install",
"generate-api-docs": "GENERATE_API_DOCS=true REGENERATE_API_DOCS=true node server.js"
},
"keywords": [
"imap",
"mail server"
],
"author": {
"name": "Andris Reinman",
"email": "andris@kreata.ee"
},
"license": "EUPL-1.2",
"homepage": "https://wildduck.email/",
"devDependencies": {
"ajv": "8.18.0",
"chai": "4.3.10",
"docsify-cli": "4.4.4",
"eslint": "8.57.0",
"eslint-config-nodemailer": "1.2.0",
"eslint-config-prettier": "10.1.8",
"grunt": "1.6.1",
"grunt-cli": "1.5.0",
"grunt-eslint": "24.3.0",
"grunt-mocha-test": "0.13.3",
"grunt-shell-spawn": "0.5.0",
"grunt-wait": "0.3.0",
"imapflow": "1.3.1",
"mailparser": "3.9.8",
"mocha": "11.7.5",
"request": "2.88.2",
"supertest": "7.2.2"
},
"dependencies": {
"@fidm/x509": "1.2.1",
"@opensearch-project/opensearch": "3.5.1",
"@phc/pbkdf2": "1.1.14",
"@postalsys/vmc": "1.1.4",
"@root/acme": "3.1.0",
"@root/csr": "0.8.1",
"@zone-eu/mailsplit": "5.4.9",
"@zone-eu/mobileconfig": "2.4.3",
"@zone-eu/seq-index": "1.1.3",
"@zone-eu/wild-config": "1.7.3",
"@zone-eu/wild-plugins": "1.0.5",
"@zone-eu/zone-mta": "3.10.15",
"accesscontrol": "2.2.1",
"@zone-eu/smime-js": "0.1.0",
"axios": "1.15.0",
"base32.js": "0.1.0",
"bcryptjs": "3.0.3",
"bson": "7.2.0",
"bullmq": "5.73.2",
"fido2-lib": "3.5.9",
"gelf": "2.0.1",
"generate-password": "1.7.1",
"hash-wasm": "4.12.0",
"he": "1.2.0",
"html-to-text": "9.0.5",
"http-parser-js": "0.5.10",
"humanname": "0.2.2",
"iconv-lite": "0.7.2",
"ioredfour": "1.4.1",
"ioredis": "5.10.1",
"ipaddr.js": "2.3.0",
"isemail": "3.2.0",
"joi": "18.1.2",
"js-yaml": "4.1.1",
"key-fingerprint": "1.1.0",
"libbase64": "1.3.0",
"libmime": "5.3.8",
"libqp": "2.1.1",
"logic-query-parser": "0.0.5",
"mailauth": "4.13.1",
"mongo-cursor-pagination": "8.1.3",
"mongodb": "4.17.2",
"mongodb-extended-json": "1.11.1",
"msgpack5": "6.0.2",
"node-forge": "1.4.0",
"node-html-parser": "7.1.0",
"nodemailer": "8.0.5",
"npmlog": "7.0.1",
"openpgp": "6.1.1",
"pem-jwk": "2.0.0",
"punycode.js": "2.3.1",
"qrcode": "1.5.4",
"restify": "11.1.0",
"restify-cors-middleware2": "2.2.1",
"restify-errors": "8.1.0",
"restify-logger": "2.0.1",
"restifyapigenerate": "1.2.4",
"search-string": "4.1.0",
"smtp-server": "3.18.4",
"speakeasy": "2.0.0",
"undici": "7.24.0",
"unix-crypt-td-js": "1.1.4",
"unixcrypt": "1.2.0",
"yargs": "18.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/zone-eu/wildduck.git"
},
"engines": {
"node": ">=16.0.0"
}
}