forked from postalsys/emailengine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.55 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
{
"name": "emailengine-app",
"version": "2.12.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",
"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",
"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": "9.1.4",
"@hapi/cookie": "11.0.2",
"@hapi/crumb": "8.0.1",
"@hapi/hapi": "20.2.1",
"@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.68.4",
"compare-versions": "4.1.3",
"dotenv": "16.0.0",
"exponential-backoff": "3.1.0",
"express": "4.17.2",
"handlebars": "4.7.7",
"hapi-auth-bearer-token": "8.0.0",
"hapi-pino": "9.1.2",
"hapi-swagger": "14.2.4",
"he": "1.2.0",
"html-to-text": "8.1.0",
"humanize": "0.0.9",
"imapflow": "1.0.80",
"ioredis": "4.28.5",
"joi": "17.6.0",
"jquery": "3.6.0",
"js-beautify": "1.14.0",
"libmime": "5.0.0",
"license-checker": "25.0.1",
"linkifyjs": "2.1.9",
"mailparser": "3.4.0",
"mailsplit": "5.3.1",
"minimist": "1.2.5",
"msgpack5": "5.3.2",
"nanoid": "3.2.0",
"node-fetch": "2.6.7",
"node-vault": "0.9.22",
"nodemailer": "6.7.2",
"pino": "7.6.5",
"prom-client": "14.0.1",
"psl": "1.8.0",
"pubface": "1.0.2",
"punycode": "2.1.1",
"smtp-server": "3.9.0",
"socks": "2.6.2",
"uuid": "8.3.2",
"wild-config": "1.5.1",
"xml2js": "0.4.23"
},
"devDependencies": {
"eslint": "8.8.0",
"eslint-config-nodemailer": "1.2.0",
"eslint-config-prettier": "8.3.0",
"grunt": "1.4.1",
"grunt-cli": "1.4.3",
"grunt-eslint": "24.0.0",
"pino-pretty": "7.5.1",
"pkg": "5.5.2"
},
"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"
}
}