Skip to content

Commit 5c333db

Browse files
author
Dave Conway-Jones
committed
run snyk checks and lint packages, bump notify.
1 parent 328aa1f commit 5c333db

File tree

13 files changed

+171
-129
lines changed

13 files changed

+171
-129
lines changed

function/datagenerator/package.json

+14-10
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
11
{
2-
"name" : "node-red-node-data-generator",
3-
"version" : "1.0.0",
4-
"description" : "A Node-RED node to create a string of dummy data values from a template. Useful for test-cases.",
5-
"dependencies" : {
2+
"name": "node-red-node-data-generator",
3+
"version": "1.0.0",
4+
"description": "A Node-RED node to create a string of dummy data values from a template. Useful for test-cases.",
5+
"dependencies": {
66
"dummy-json": "^3.0.4"
77
},
8-
"repository" : {
9-
"type":"git",
10-
"url":"https://github.com/node-red/node-red-nodes.git",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/node-red/node-red-nodes.git",
1111
"directory": "tree/master/function/data-generator"
1212
},
1313
"license": "Apache-2.0",
14-
"keywords": [ "node-red", "data-generator", "dummy-json" ],
15-
"node-red" : {
16-
"nodes" : {
14+
"keywords": [
15+
"node-red",
16+
"data-generator",
17+
"dummy-json"
18+
],
19+
"node-red": {
20+
"nodes": {
1721
"data-generator": "datagenerator.js"
1822
}
1923
},

hardware/Arduino/package.json

+18-12
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,29 @@
11
{
2-
"name" : "node-red-node-arduino",
3-
"version" : "0.3.1",
4-
"description" : "A Node-RED node to talk to an Arduino running firmata",
5-
"dependencies" : {
6-
"firmata" : "^2.3.0"
2+
"name": "node-red-node-arduino",
3+
"version": "0.3.1",
4+
"description": "A Node-RED node to talk to an Arduino running firmata",
5+
"dependencies": {
6+
"firmata": "^2.3.0"
77
},
8-
"repository" : {
9-
"type":"git",
10-
"url":"https://github.com/node-red/node-red-nodes.git",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/node-red/node-red-nodes.git",
1111
"directory": "tree/master/hardware/Arduino"
1212
},
1313
"license": "Apache-2.0",
14-
"keywords": [ "node-red", "arduino", "firmata" ],
15-
"node-red" : {
16-
"nodes" : {
14+
"keywords": [
15+
"node-red",
16+
"arduino",
17+
"firmata"
18+
],
19+
"node-red": {
20+
"nodes": {
1721
"arduino": "35-arduino.js"
1822
}
1923
},
20-
"engines" : { "node" : ">=8" },
24+
"engines": {
25+
"node": ">=8"
26+
},
2127
"author": {
2228
"name": "Dave Conway-Jones",
2329
"email": "[email protected]",

hardware/blinkstick/package.json

+14-11
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11
{
2-
"name" : "node-red-node-blinkstick",
3-
"version" : "0.1.7",
4-
"description" : "A Node-RED node to control a Blinkstick",
5-
"dependencies" : {
6-
"blinkstick" : "1.2.0"
2+
"name": "node-red-node-blinkstick",
3+
"version": "0.1.7",
4+
"description": "A Node-RED node to control a Blinkstick",
5+
"dependencies": {
6+
"blinkstick": "1.2.0"
77
},
8-
"repository" : {
9-
"type":"git",
10-
"url":"https://github.com/node-red/node-red-nodes.git",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/node-red/node-red-nodes.git",
1111
"directory": "tree/master/hardware/blinkstick"
1212
},
1313
"license": "Apache-2.0",
14-
"keywords": [ "node-red", "blinkstick" ],
15-
"node-red" : {
16-
"nodes" : {
14+
"keywords": [
15+
"node-red",
16+
"blinkstick"
17+
],
18+
"node-red": {
19+
"nodes": {
1720
"blinkstick": "76-blinkstick.js"
1821
}
1922
},

hardware/mcp3008/package.json

+16-10
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
11
{
2-
"name" : "node-red-node-pi-mcp3008",
3-
"version" : "0.5.2",
4-
"description" : "A Node-RED node to read from the MCP3008 Analogue to Digital Converter",
5-
"dependencies" : {
2+
"name": "node-red-node-pi-mcp3008",
3+
"version": "0.5.2",
4+
"description": "A Node-RED node to read from the MCP3008 Analogue to Digital Converter",
5+
"dependencies": {
66
"mcp-spi-adc": "^3.2.0"
77
},
8-
"repository" : {
9-
"type":"git",
10-
"url":"https://github.com/node-red/node-red-nodes.git",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/node-red/node-red-nodes.git",
1111
"directory": "tree/master/hardware/mcp3008"
1212
},
1313
"license": "Apache-2.0",
14-
"keywords": [ "node-red", "pi", "adc", "mcp", "a/d converter" ],
15-
"node-red" : {
16-
"nodes" : {
14+
"keywords": [
15+
"node-red",
16+
"pi",
17+
"adc",
18+
"mcp",
19+
"a/d converter"
20+
],
21+
"node-red": {
22+
"nodes": {
1723
"pimcp3008": "pimcp3008.js"
1824
}
1925
},

io/wol/package.json

+16-12
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
11
{
2-
"name" : "node-red-node-wol",
3-
"version" : "0.2.0",
4-
"description" : "A Node-RED node to send Wake-On-LAN (WOL) magic packets",
5-
"dependencies" : {
6-
"wake_on_lan" : "1.0.0"
2+
"name": "node-red-node-wol",
3+
"version": "0.2.0",
4+
"description": "A Node-RED node to send Wake-On-LAN (WOL) magic packets",
5+
"dependencies": {
6+
"wake_on_lan": "^1.0.0"
77
},
8-
"repository" : {
9-
"type":"git",
10-
"url":"https://github.com/node-red/node-red-nodes.git",
11-
"directory" : "tree/master/io/wol"
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/node-red/node-red-nodes.git",
11+
"directory": "tree/master/io/wol"
1212
},
1313
"license": "Apache-2.0",
14-
"keywords": [ "node-red", "wol", "wake_on_lan" ],
15-
"node-red" : {
16-
"nodes" : {
14+
"keywords": [
15+
"node-red",
16+
"wol",
17+
"wake_on_lan"
18+
],
19+
"node-red": {
20+
"nodes": {
1721
"wol": "39-wol.js"
1822
}
1923
},

parsers/markdown/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "node-red-node-markdown",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "A Node-RED node to convert a markdown string to html.",
55
"dependencies": {
6-
"markdown-it": "^11.0.0"
6+
"markdown-it": "^12.3.2"
77
},
88
"repository": {
99
"type": "git",

parsers/what3words/package.json

+14-11
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11
{
2-
"name" : "node-red-node-what3words",
3-
"version" : "0.1.11",
4-
"description" : "A Node-RED node to convert locations to/from what3words",
5-
"dependencies" : {
6-
"geo.what3words" : "^2.0.0"
2+
"name": "node-red-node-what3words",
3+
"version": "0.1.11",
4+
"description": "A Node-RED node to convert locations to/from what3words",
5+
"dependencies": {
6+
"geo.what3words": "^2.0.0"
77
},
8-
"repository" : {
9-
"type":"git",
10-
"url":"https://github.com/node-red/node-red-nodes.git",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/node-red/node-red-nodes.git",
1111
"directory": "tree/master/parsers/what3words"
1212
},
1313
"license": "Apache-2.0",
14-
"keywords": [ "node-red", "what3words" ],
15-
"node-red" : {
16-
"nodes" : {
14+
"keywords": [
15+
"node-red",
16+
"what3words"
17+
],
18+
"node-red": {
19+
"nodes": {
1720
"what3words": "what3words.js"
1821
}
1922
},

social/irc/package.json

+14-11
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11
{
2-
"name" : "node-red-node-irc",
3-
"version" : "0.1.0",
4-
"description" : "A Node-RED node to talk to an IRC server",
5-
"dependencies" : {
6-
"irc" : "^0.5.2"
2+
"name": "node-red-node-irc",
3+
"version": "0.1.0",
4+
"description": "A Node-RED node to talk to an IRC server",
5+
"dependencies": {
6+
"irc": "^0.5.2"
77
},
8-
"repository" : {
9-
"type":"git",
10-
"url":"https://github.com/node-red/node-red-nodes.git",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/node-red/node-red-nodes.git",
1111
"directory": "tree/master/social/irc"
1212
},
1313
"license": "Apache-2.0",
14-
"keywords": [ "node-red", "irc" ],
15-
"node-red" : {
16-
"nodes" : {
14+
"keywords": [
15+
"node-red",
16+
"irc"
17+
],
18+
"node-red": {
19+
"nodes": {
1720
"irc": "91-irc.js"
1821
}
1922
},

social/notify/package.json

+16-12
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
11
{
2-
"name" : "node-red-node-notify",
3-
"version" : "0.1.1",
4-
"description" : "A Node-RED node to send local popup Notify alerts",
5-
"dependencies" : {
6-
"node-notifier" : "5.2.1"
2+
"name": "node-red-node-notify",
3+
"version": "0.2.0",
4+
"description": "A Node-RED node to send local popup Notify alerts",
5+
"dependencies": {
6+
"node-notifier": "^5.4.5"
77
},
8-
"repository" : {
9-
"type":"git",
10-
"url":"https://github.com/node-red/node-red-nodes.git",
11-
"directory":"/tree/master/social/notify"
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/node-red/node-red-nodes.git",
11+
"directory": "/tree/master/social/notify"
1212
},
1313
"license": "Apache-2.0",
14-
"keywords": [ "node-red", "notify", "growl"],
15-
"node-red" : {
16-
"nodes" : {
14+
"keywords": [
15+
"node-red",
16+
"notify",
17+
"growl"
18+
],
19+
"node-red": {
20+
"nodes": {
1721
"notify": "57-notify.js"
1822
}
1923
},

social/prowl/package.json

+14-11
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11
{
2-
"name" : "node-red-node-prowl",
3-
"version" : "0.0.10",
4-
"description" : "A Node-RED node to send alerts via Prowl",
5-
"dependencies" : {
6-
"node-prowl" : "0.1.8"
2+
"name": "node-red-node-prowl",
3+
"version": "0.0.10",
4+
"description": "A Node-RED node to send alerts via Prowl",
5+
"dependencies": {
6+
"node-prowl": "0.1.8"
77
},
8-
"repository" : {
9-
"type":"git",
10-
"url":"https://github.com/node-red/node-red-nodes.git",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/node-red/node-red-nodes.git",
1111
"directory": "tree/master/social/prowl"
1212
},
1313
"license": "Apache-2.0",
14-
"keywords": [ "node-red", "prowl"],
15-
"node-red" : {
16-
"nodes" : {
14+
"keywords": [
15+
"node-red",
16+
"prowl"
17+
],
18+
"node-red": {
19+
"nodes": {
1720
"prowl": "57-prowl.js"
1821
}
1922
},

social/pusher/package.json

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
{
2-
"name" : "node-red-node-pusher",
3-
"version" : "0.1.0",
4-
"description" : "A Node-RED node to send and receive messages using Pusher.com",
5-
"dependencies" : {
2+
"name": "node-red-node-pusher",
3+
"version": "0.1.0",
4+
"description": "A Node-RED node to send and receive messages using Pusher.com",
5+
"dependencies": {
66
"pusher": "^1.5.1",
77
"pusher-client": "^1.1.0"
88
},
9-
"repository" : {
10-
"type":"git",
11-
"url":"https://github.com/node-red/node-red-nodes.git",
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/node-red/node-red-nodes.git",
1212
"directory": "tree/master/social/pusher"
1313
},
1414
"license": "Apache-2.0",
15-
"keywords": [ "node-red", "pusher" ],
16-
"node-red" : {
17-
"nodes" : {
15+
"keywords": [
16+
"node-red",
17+
"pusher"
18+
],
19+
"node-red": {
20+
"nodes": {
1821
"pusher": "pusher.js"
1922
}
2023
},

social/pushover/package.json

+14-11
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11
{
2-
"name" : "node-red-node-pushover",
3-
"version" : "0.1.1",
4-
"description" : "A Node-RED node to send alerts via Pushover",
5-
"dependencies" : {
6-
"pushover-notifications" : "^1.2.2"
2+
"name": "node-red-node-pushover",
3+
"version": "0.1.1",
4+
"description": "A Node-RED node to send alerts via Pushover",
5+
"dependencies": {
6+
"pushover-notifications": "^1.2.2"
77
},
8-
"repository" : {
9-
"type":"git",
10-
"url":"https://github.com/node-red/node-red-nodes.git",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/node-red/node-red-nodes.git",
1111
"directory": "tree/master/social/pushover"
1212
},
1313
"license": "Apache-2.0",
14-
"keywords": [ "node-red", "pushover" ],
15-
"node-red" : {
16-
"nodes" : {
14+
"keywords": [
15+
"node-red",
16+
"pushover"
17+
],
18+
"node-red": {
19+
"nodes": {
1720
"pushover": "57-pushover.js"
1821
}
1922
},

0 commit comments

Comments
 (0)