-
Notifications
You must be signed in to change notification settings - Fork 594
/
package.json
49 lines (49 loc) · 963 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
43
44
45
46
47
48
49
{
"name": "node-red-node-email",
"version": "3.0.2",
"description": "Node-RED nodes to send and receive simple emails.",
"dependencies": {
"imap": "^0.8.19",
"node-pop3": "^0.9.0",
"mailparser": "^3.7.1",
"nodemailer": "^6.9.14",
"smtp-server": "^3.13.4"
},
"bundledDependencies": [
"imap",
"node-pop3",
"mailparser",
"nodemailer",
"smtp-server"
],
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/social/email"
},
"license": "Apache-2.0",
"keywords": [
"node-red",
"email",
"gmail",
"imap",
"pop",
"smtp",
"smtp-server",
"mta"
],
"node-red": {
"version": ">=2.0.0",
"nodes": {
"email": "61-email.js"
}
},
"author": {
"name": "Dave Conway-Jones",
"email": "dceejay@gmail.com",
"url": "http://nodered.org"
},
"engines": {
"node": ">=18.0.0"
}
}