-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1001 Bytes
/
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
{
"name": "divera-smtp-alert-nodejs",
"version": "0.1.0",
"description": "Fetch alerts from IMAP-Server and deliver them to Divera",
"main": "public/index.ts",
"engines" : {
"npm" : ">=9.5.1",
"node" : ">=18.16.1"
},
"scripts": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/marfrelen/divera-imap-alert-ts"
},
"keywords": [
"Divera"
],
"author": "Markus Lenz",
"license": "MIT",
"bugs": {
"url": "https://github.com/marfrelen/divera-imap-alert-ts/issues"
},
"homepage": "https://github.com/marfrelen/divera-imap-alert-ts#readme",
"dependencies": {
"@types/node-fetch": "^2.6.2",
"dotenv": "^16.0.3",
"imap-simple": "^6",
"lodash": "4.17.*",
"mailparser": "^3.5.0",
"node-cron": "^3.0.2",
"node-fetch": "^2.*",
"nodemailer": "^6.8.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^18.18.12"
}
}