run snyk checks and lint packages, bump notify.

This commit is contained in:
Dave Conway-Jones 2022-01-22 22:23:41 +00:00
parent 328aa1fb52
commit 5c333db0dd
No known key found for this signature in database
GPG Key ID: 88BA2B8A411BE9FF
13 changed files with 171 additions and 129 deletions

View File

@ -1,19 +1,23 @@
{
"name" : "node-red-node-data-generator",
"version" : "1.0.0",
"description" : "A Node-RED node to create a string of dummy data values from a template. Useful for test-cases.",
"dependencies" : {
"name": "node-red-node-data-generator",
"version": "1.0.0",
"description": "A Node-RED node to create a string of dummy data values from a template. Useful for test-cases.",
"dependencies": {
"dummy-json": "^3.0.4"
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes.git",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/function/data-generator"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "data-generator", "dummy-json" ],
"node-red" : {
"nodes" : {
"keywords": [
"node-red",
"data-generator",
"dummy-json"
],
"node-red": {
"nodes": {
"data-generator": "datagenerator.js"
}
},

View File

@ -1,23 +1,29 @@
{
"name" : "node-red-node-arduino",
"version" : "0.3.1",
"description" : "A Node-RED node to talk to an Arduino running firmata",
"dependencies" : {
"firmata" : "^2.3.0"
"name": "node-red-node-arduino",
"version": "0.3.1",
"description": "A Node-RED node to talk to an Arduino running firmata",
"dependencies": {
"firmata": "^2.3.0"
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes.git",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/Arduino"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "arduino", "firmata" ],
"node-red" : {
"nodes" : {
"keywords": [
"node-red",
"arduino",
"firmata"
],
"node-red": {
"nodes": {
"arduino": "35-arduino.js"
}
},
"engines" : { "node" : ">=8" },
"engines": {
"node": ">=8"
},
"author": {
"name": "Dave Conway-Jones",
"email": "ceejay@vnet.ibm.com",

View File

@ -1,19 +1,22 @@
{
"name" : "node-red-node-blinkstick",
"version" : "0.1.7",
"description" : "A Node-RED node to control a Blinkstick",
"dependencies" : {
"blinkstick" : "1.2.0"
"name": "node-red-node-blinkstick",
"version": "0.1.7",
"description": "A Node-RED node to control a Blinkstick",
"dependencies": {
"blinkstick": "1.2.0"
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes.git",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/blinkstick"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "blinkstick" ],
"node-red" : {
"nodes" : {
"keywords": [
"node-red",
"blinkstick"
],
"node-red": {
"nodes": {
"blinkstick": "76-blinkstick.js"
}
},

View File

@ -1,19 +1,25 @@
{
"name" : "node-red-node-pi-mcp3008",
"version" : "0.5.2",
"description" : "A Node-RED node to read from the MCP3008 Analogue to Digital Converter",
"dependencies" : {
"name": "node-red-node-pi-mcp3008",
"version": "0.5.2",
"description": "A Node-RED node to read from the MCP3008 Analogue to Digital Converter",
"dependencies": {
"mcp-spi-adc": "^3.2.0"
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes.git",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/mcp3008"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "pi", "adc", "mcp", "a/d converter" ],
"node-red" : {
"nodes" : {
"keywords": [
"node-red",
"pi",
"adc",
"mcp",
"a/d converter"
],
"node-red": {
"nodes": {
"pimcp3008": "pimcp3008.js"
}
},

View File

@ -1,19 +1,23 @@
{
"name" : "node-red-node-wol",
"version" : "0.2.0",
"description" : "A Node-RED node to send Wake-On-LAN (WOL) magic packets",
"dependencies" : {
"wake_on_lan" : "1.0.0"
"name": "node-red-node-wol",
"version": "0.2.0",
"description": "A Node-RED node to send Wake-On-LAN (WOL) magic packets",
"dependencies": {
"wake_on_lan": "^1.0.0"
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes.git",
"directory" : "tree/master/io/wol"
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/io/wol"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "wol", "wake_on_lan" ],
"node-red" : {
"nodes" : {
"keywords": [
"node-red",
"wol",
"wake_on_lan"
],
"node-red": {
"nodes": {
"wol": "39-wol.js"
}
},

View File

@ -1,9 +1,9 @@
{
"name": "node-red-node-markdown",
"version": "0.2.0",
"version": "0.3.0",
"description": "A Node-RED node to convert a markdown string to html.",
"dependencies": {
"markdown-it": "^11.0.0"
"markdown-it": "^12.3.2"
},
"repository": {
"type": "git",

View File

@ -1,19 +1,22 @@
{
"name" : "node-red-node-what3words",
"version" : "0.1.11",
"description" : "A Node-RED node to convert locations to/from what3words",
"dependencies" : {
"geo.what3words" : "^2.0.0"
"name": "node-red-node-what3words",
"version": "0.1.11",
"description": "A Node-RED node to convert locations to/from what3words",
"dependencies": {
"geo.what3words": "^2.0.0"
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes.git",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/parsers/what3words"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "what3words" ],
"node-red" : {
"nodes" : {
"keywords": [
"node-red",
"what3words"
],
"node-red": {
"nodes": {
"what3words": "what3words.js"
}
},

View File

@ -1,19 +1,22 @@
{
"name" : "node-red-node-irc",
"version" : "0.1.0",
"description" : "A Node-RED node to talk to an IRC server",
"dependencies" : {
"irc" : "^0.5.2"
"name": "node-red-node-irc",
"version": "0.1.0",
"description": "A Node-RED node to talk to an IRC server",
"dependencies": {
"irc": "^0.5.2"
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes.git",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/social/irc"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "irc" ],
"node-red" : {
"nodes" : {
"keywords": [
"node-red",
"irc"
],
"node-red": {
"nodes": {
"irc": "91-irc.js"
}
},

View File

@ -1,19 +1,23 @@
{
"name" : "node-red-node-notify",
"version" : "0.1.1",
"description" : "A Node-RED node to send local popup Notify alerts",
"dependencies" : {
"node-notifier" : "5.2.1"
"name": "node-red-node-notify",
"version": "0.2.0",
"description": "A Node-RED node to send local popup Notify alerts",
"dependencies": {
"node-notifier": "^5.4.5"
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes.git",
"directory":"/tree/master/social/notify"
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes.git",
"directory": "/tree/master/social/notify"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "notify", "growl"],
"node-red" : {
"nodes" : {
"keywords": [
"node-red",
"notify",
"growl"
],
"node-red": {
"nodes": {
"notify": "57-notify.js"
}
},

View File

@ -1,19 +1,22 @@
{
"name" : "node-red-node-prowl",
"version" : "0.0.10",
"description" : "A Node-RED node to send alerts via Prowl",
"dependencies" : {
"node-prowl" : "0.1.8"
"name": "node-red-node-prowl",
"version": "0.0.10",
"description": "A Node-RED node to send alerts via Prowl",
"dependencies": {
"node-prowl": "0.1.8"
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes.git",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/social/prowl"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "prowl"],
"node-red" : {
"nodes" : {
"keywords": [
"node-red",
"prowl"
],
"node-red": {
"nodes": {
"prowl": "57-prowl.js"
}
},

View File

@ -1,20 +1,23 @@
{
"name" : "node-red-node-pusher",
"version" : "0.1.0",
"description" : "A Node-RED node to send and receive messages using Pusher.com",
"dependencies" : {
"name": "node-red-node-pusher",
"version": "0.1.0",
"description": "A Node-RED node to send and receive messages using Pusher.com",
"dependencies": {
"pusher": "^1.5.1",
"pusher-client": "^1.1.0"
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes.git",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/social/pusher"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "pusher" ],
"node-red" : {
"nodes" : {
"keywords": [
"node-red",
"pusher"
],
"node-red": {
"nodes": {
"pusher": "pusher.js"
}
},

View File

@ -1,19 +1,22 @@
{
"name" : "node-red-node-pushover",
"version" : "0.1.1",
"description" : "A Node-RED node to send alerts via Pushover",
"dependencies" : {
"pushover-notifications" : "^1.2.2"
"name": "node-red-node-pushover",
"version": "0.1.1",
"description": "A Node-RED node to send alerts via Pushover",
"dependencies": {
"pushover-notifications": "^1.2.2"
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes.git",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/social/pushover"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "pushover" ],
"node-red" : {
"nodes" : {
"keywords": [
"node-red",
"pushover"
],
"node-red": {
"nodes": {
"pushover": "57-pushover.js"
}
},

View File

@ -22,11 +22,11 @@
}
},
"contributors": [
{
"name": "Nick O'Leary"
},
{
"name": "Dave Conway-Jones"
}
{
"name": "Nick O'Leary"
},
{
"name": "Dave Conway-Jones"
}
]
}