forked from postalsys/emailengine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.74 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
{
"name": "imapapi",
"version": "1.3.5",
"description": "Email Sync Engine",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "grunt",
"licenses": "npm-license-crawler --production --csv ./licenses.csv",
"build": "pkg --out-path dist/ package.json --options max_old_space_size=4096"
},
"keywords": [
"IMAP"
],
"author": "Andris Reinman",
"license": "AGPL-3.0-or-later",
"bin": {
"imapapi": "./bin/imapapi.js"
},
"dependencies": {
"@hapi/boom": "9.1.0",
"@hapi/hapi": "20.0.1",
"@hapi/inert": "6.0.3",
"@hapi/vision": "6.0.1",
"bull": "3.18.0",
"dotenv": "8.2.0",
"email-reply-parser": "1.2.3",
"exponential-backoff": "3.1.0",
"hapi-pino": "8.3.0",
"hapi-swagger": "14.0.0",
"he": "1.2.0",
"html-to-text": "5.1.1",
"imapflow": "1.0.51",
"ioredis": "4.17.3",
"joi": "17.2.1",
"jquery": "3.5.1",
"libmime": "5.0.0",
"linkifyjs": "2.1.9",
"msgpack5": "4.2.1",
"node-fetch": "2.6.1",
"nodemailer": "6.4.13",
"pino": "6.6.1",
"prom-client": "12.0.0",
"wild-config": "1.5.1"
},
"devDependencies": {
"eslint": "7.10.0",
"eslint-config-nodemailer": "1.2.0",
"eslint-config-prettier": "6.12.0",
"grunt": "1.3.0",
"grunt-cli": "1.3.2",
"grunt-eslint": "23.0.0",
"npm-license-crawler": "0.2.1",
"pkg": "4.4.9"
},
"pkg": {
"scripts": "workers/**/*.js",
"assets": [
"node_modules/@hapi/teamwork/lib/index.js",
"views/**/*",
"static/**/*"
]
}
}