forked from postalsys/emailengine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.79 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
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": "emailengine-app",
"version": "2.20.1",
"private": true,
"description": "Email Sync Engine",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "node server --dbs.redis='redis://127.0.0.1:6379/9' | pino-pretty",
"raw": "EENGINE_LOG_RAW=true node server --dbs.redis='redis://127.0.0.1:6379/9' | eerawlog",
"test": "grunt",
"swagger": "./getswagger.sh",
"build-source": "rm -rf node_modules package-lock.json && npm install && npm run licenses && rm -rf node_modules package-lock.json && npm install --production && rm -rf package-lock.json && ./update-info.sh",
"build-dist": "npx pkg --compress Brotli package.json && rm -rf package-lock.json && npm install",
"build-dist-fast": "npx pkg --debug package.json && rm -rf package-lock.json && npm install",
"licenses": "license-checker --json | node license-table.js > static/licenses.html",
"postinstall": "npm run licenses"
},
"keywords": [
"IMAP"
],
"author": "Postal Systems OU",
"license": "AGPL-3.0-or-later OR LICENSE_EMAILENGINE",
"bin": {
"emailengine": "bin/emailengine.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/postalsys/emailengine.git"
},
"bugs": {
"url": "https://github.com/postalsys/emailengine/issues"
},
"homepage": "https://emailengine.app/",
"dependencies": {
"@hapi/boom": "10.0.0",
"@hapi/cookie": "11.0.2",
"@hapi/crumb": "8.0.1",
"@hapi/hapi": "20.2.2",
"@hapi/inert": "6.0.5",
"@hapi/vision": "6.1.0",
"@hapipal/hecks": "3.0.0",
"@phc/pbkdf2": "1.1.14",
"bull-arena": "3.29.3",
"bullmq": "1.81.4",
"compare-versions": "4.1.3",
"dotenv": "16.0.0",
"encoding-japanese": "2.0.0",
"exponential-backoff": "3.1.0",
"express": "4.18.1",
"handlebars": "4.7.7",
"hapi-auth-bearer-token": "8.0.0",
"hapi-pino": "9.3.0",
"hapi-swagger": "14.4.0",
"he": "1.2.0",
"humanize": "0.0.9",
"iconv-lite": "0.6.3",
"imapflow": "1.0.95",
"ioredis": "5.0.4",
"joi": "17.6.0",
"jquery": "3.6.0",
"js-beautify": "1.14.3",
"libmime": "5.1.0",
"license-checker": "25.0.1",
"mailparser": "3.5.0",
"mailsplit": "5.3.2",
"minimist": "1.2.6",
"msgpack5": "6.0.0",
"nanoid": "3.3.4",
"node-fetch": "2.6.7",
"node-vault": "0.9.22",
"nodemailer": "6.7.5",
"pino": "7.11.0",
"prom-client": "14.0.1",
"psl": "1.8.0",
"pubface": "1.0.2",
"punycode": "2.1.1",
"smtp-server": "3.11.0",
"socks": "2.6.2",
"uuid": "8.3.2",
"wild-config": "1.6.0",
"xml2js": "0.4.23"
},
"devDependencies": {
"eerawlog": "1.4.1",
"eslint": "8.14.0",
"eslint-config-nodemailer": "1.2.0",
"eslint-config-prettier": "8.5.0",
"grunt": "1.5.2",
"grunt-cli": "1.4.3",
"grunt-eslint": "24.0.0",
"pino-pretty": "7.6.1",
"pkg": "5.6.0"
},
"engines": {
"node": ">=16.x"
},
"pkg": {
"scripts": [
"workers/**/*.js"
],
"assets": [
"static/**/*",
"views/**/*",
"lib/lua/**/*",
"node_modules/bull/lib/commands/**/*",
"node_modules/swagger-ui-dist/**/*",
"LICENSE.txt",
"LICENSE_EMAILENGINE.txt",
"help.txt",
"version-info.json"
],
"targets": [
"node16-linux-x64",
"node16-macos-x64",
"node16-win-x64"
],
"outputPath": "ee-dist"
}
}