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
13 changed files with 171 additions and 129 deletions

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"
}
]
}