This repository was archived by the owner on Jan 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.8 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.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
{
"name": "@5minds/node-red-contrib-processcube-tools",
"version": "1.3.0",
"license": "MIT",
"description": "Node-RED tools nodes for ProcessCube",
"scripts": {
"build": "npm-run-all build:*",
"build:ts": "tsc",
"build:html": "cpx \"./src/**/*.html\" ./dist",
"lint": "prettier --write --config ./.prettierrc.json \"**/*.{html,ts}\"",
"test": "mocha --require ts-node/register 'src/test/**/*.test.ts'",
"test:unit": "mocha --require ts-node/register 'src/test/unit/**/*.test.ts'",
"test:integration": "mocha --require ts-node/register 'src/test/integration/**/*.test.ts'"
},
"authors": [
{
"name": "Martin Moellenbeck",
"email": "Martin.Moellenbeck@5Minds.de"
},
{
"name": "Robin Lenz",
"email": "Robin.Lenz@5Minds.de"
},
{
"name": "Diana Stefan",
"email": "Diana.Stefan@5Minds.de"
}
],
"repository": {
"type": "git",
"url": "https://github.com/5minds/node-red-contrib-processcube-tools"
},
"bugs": {
"url": "https://github.com/5minds/node-red-contrib-processcube-tools/issues",
"email": "processcube@5minds.de"
},
"engines": {
"node": ">=14",
"npm": ">=8.0.0"
},
"node-red": {
"version": "^4.1.0",
"nodes": {
"ImapConfig": "dist/imap-config/imap-config.js",
"SmtpConfig": "dist/smtp-config/smtp-config.js",
"EmailReceiver": "dist/email-receiver/email-receiver.js",
"EmailSender": "dist/email-sender/email-sender.js",
"HtmlToText": "dist/html-to-text/html-to-text.js"
},
"examples": "examples"
},
"dependencies": {
"html-to-text": "^9.0.5",
"mailparser": "^3.7.4",
"node-imap": "^0.9.6",
"nodemailer": "^7.0.6",
"utf7": "^1.0.2"
},
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/mailparser": "^3.4.6",
"@types/mocha": "^10.0.10",
"@types/node": "^24.5.2",
"@types/node-imap": "^0.9.3",
"@types/node-red": "^1.3.5",
"@types/node-red-node-test-helper": "^0.3.4",
"@types/nodemailer": "^7.0.1",
"chai": "^4.3.4",
"cpx2": "^8.0.0",
"mocha": "^11.7.2",
"node-red": "^4.0.9",
"node-red-node-test-helper": "^0.3.5",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"overrides": {
"semver": ">=7.5.2",
"axios": ">=1.12.0",
"html-to-text": "^9.0.5",
"node-imap": "^0.9.6",
"nodemailer": "^7.0.6",
"utf7": "^1.0.2"
},
"keywords": [
"node-red",
"processcube",
"tools",
"low-code"
]
}