1
0
mirror of https://github.com/node-red/node-red-nodes.git synced 2023-10-10 13:36:58 +02:00
node-red-nodes/social/email/package.json
Christopher Hiller 360d71f84b upgrade nodemailer; closes #439 (#440)
* upgrade nodemailer
- update documentation(s)
- add/update `package-lock.json`(s)
- add `engines` field(s)
* remove Node.js v4 from build matrix
* bump major version of node-red-node-email to v1.0.0
2018-05-01 21:31:22 +01:00

36 lines
711 B
JSON

{
"name": "node-red-node-email",
"version": "1.0.0",
"description": "Node-RED nodes to send and receive simple emails",
"dependencies": {
"imap": "^0.8.19",
"mailparser": "^0.6.2",
"nodemailer": "^4.6.4",
"poplib": "^0.1.7"
},
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes/tree/master/social/email"
},
"license": "Apache-2.0",
"keywords": [
"node-red",
"email",
"gmail",
"imap"
],
"node-red": {
"nodes": {
"email": "61-email.js"
}
},
"author": {
"name": "Dave Conway-Jones",
"email": "ceejay@vnet.ibm.com",
"url": "http://nodered.org"
},
"engines": {
"node": ">=6.0.0"
}
}