mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
bump some libs - email, annotate image, core
This commit is contained in:
parent
9cb6255b16
commit
5db644bd57
@ -7,7 +7,7 @@
|
|||||||
},
|
},
|
||||||
"repository" : {
|
"repository" : {
|
||||||
"type":"git",
|
"type":"git",
|
||||||
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware"
|
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/mcp3008"
|
||||||
},
|
},
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"keywords": [ "node-red", "pi", "adc", "mcp", "a/d converter" ],
|
"keywords": [ "node-red", "pi", "adc", "mcp", "a/d converter" ],
|
||||||
|
14
package.json
14
package.json
@ -33,29 +33,29 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"exif": "^0.6.0",
|
"exif": "^0.6.0",
|
||||||
"feedparser": "^2.2.10",
|
"feedparser": "^2.2.10",
|
||||||
"grunt": "^1.4.0",
|
"grunt": "^1.4.1",
|
||||||
"grunt-cli": "^1.4.2",
|
"grunt-cli": "^1.4.3",
|
||||||
"grunt-contrib-jshint": "^2.1.0",
|
"grunt-contrib-jshint": "^2.1.0",
|
||||||
"grunt-jscs": "^3.0.1",
|
"grunt-jscs": "^3.0.1",
|
||||||
"grunt-lint-inline": "^1.0.0",
|
"grunt-lint-inline": "^1.0.0",
|
||||||
"grunt-simple-mocha": "^0.4.1",
|
"grunt-simple-mocha": "^0.4.1",
|
||||||
"imap": "^0.8.19",
|
"imap": "^0.8.19",
|
||||||
"mailparser": "^3.2.0",
|
"mailparser": "^3.4.0",
|
||||||
"markdown-it": "^11.0.0",
|
"markdown-it": "^12.2.0",
|
||||||
"mocha": "~6.2.3",
|
"mocha": "~6.2.3",
|
||||||
"msgpack-lite": "^0.1.26",
|
"msgpack-lite": "^0.1.26",
|
||||||
"multilang-sentiment": "^1.2.0",
|
"multilang-sentiment": "^1.2.0",
|
||||||
"ngeohash": "^0.6.3",
|
"ngeohash": "^0.6.3",
|
||||||
"node-red": "^1.3.3",
|
"node-red": "^2.1.3",
|
||||||
"node-red-node-test-helper": "^0.2.7",
|
"node-red-node-test-helper": "^0.2.7",
|
||||||
"nodemailer": "^6.5.0",
|
"nodemailer": "^6.7.0",
|
||||||
"poplib": "^0.1.7",
|
"poplib": "^0.1.7",
|
||||||
"proxyquire": "^2.1.3",
|
"proxyquire": "^2.1.3",
|
||||||
"pushbullet": "^2.4.0",
|
"pushbullet": "^2.4.0",
|
||||||
"sentiment": "^2.1.0",
|
"sentiment": "^2.1.0",
|
||||||
"should": "^13.2.3",
|
"should": "^13.2.3",
|
||||||
"sinon": "~7.5.0",
|
"sinon": "~7.5.0",
|
||||||
"smtp-server": "~3.8.0",
|
"smtp-server": "~3.9.0",
|
||||||
"supertest": "^4.0.2",
|
"supertest": "^4.0.2",
|
||||||
"when": "^3.7.8"
|
"when": "^3.7.8"
|
||||||
},
|
},
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "node-red-node-email",
|
"name": "node-red-node-email",
|
||||||
"version": "1.12.4",
|
"version": "1.13.0",
|
||||||
"description": "Node-RED nodes to send and receive simple emails.",
|
"description": "Node-RED nodes to send and receive simple emails.",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"imap": "^0.8.19",
|
"imap": "^0.8.19",
|
||||||
"poplib": "^0.1.7",
|
"poplib": "^0.1.7",
|
||||||
"mailparser": "^3.2.0",
|
"mailparser": "^3.4.0",
|
||||||
"nodemailer": "~6.6.3",
|
"nodemailer": "^6.7.0",
|
||||||
"smtp-server": "^3.9.0"
|
"smtp-server": "^3.9.0"
|
||||||
},
|
},
|
||||||
"bundledDependencies": [
|
"bundledDependencies": [
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
{
|
{
|
||||||
"name": "node-red-node-annotate-image",
|
"name": "node-red-node-annotate-image",
|
||||||
"version": "0.1.1",
|
"version": "0.1.2",
|
||||||
"description": "A Node-RED node that can annotate an image",
|
"description": "A Node-RED node that can annotate an image",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"pureimage": "^0.2.5"
|
"pureimage": "^0.2.7"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/node-red/node-red-nodes/tree/master/utility/iamge-annotate"
|
"url": "https://github.com/node-red/node-red-nodes/tree/master/utility/image-annotate"
|
||||||
},
|
},
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user