Update package.jsons for mono-repo (#851)

Update the package.json for each node to point to the directory within the repo that hosts the code for the package in question.  as per https://docs.npmjs.com/cli/v7/configuring-npm/package-json#repository
This commit is contained in:
Sam Machin
2021-11-02 15:22:30 +00:00
committed by GitHub
parent 5db644bd57
commit 2d28a2304f
73 changed files with 147 additions and 73 deletions

View File

@@ -7,7 +7,8 @@
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/Arduino"
"url":"https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/Arduino"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "arduino", "firmata" ],

View File

@@ -7,7 +7,8 @@
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/BBB"
"url":"https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/BBB"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "beagleboneblack", "beaglebone", "bbb", "octalbonescript" ],

View File

@@ -6,7 +6,8 @@
},
"repository" : {
"type":"tgz",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/HummingboardGPIO"
"url":"https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/HummingboardGPIO"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "hummingboard", "gpio" ],

View File

@@ -6,7 +6,8 @@
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/ledborg"
"url":"https://github.com/node-red/node-red-nodes.git",
"directory" : "tree/master/hardware/ledborg"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "ledborg" ],

View File

@@ -6,7 +6,8 @@
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/PiFace"
"url":"https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/PiFace"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "piface" ],

View File

@@ -9,7 +9,8 @@
},
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes/tree/master/hardware/PiGpio"
"url": "https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/PiGpio"
},
"keywords": [
"node-red", "Pi", "GPIO", "PiGpio"

View File

@@ -6,7 +6,8 @@
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/PiLcd"
"url":"https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/PiLcd"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "lcd", "HD44780" ],

View File

@@ -6,7 +6,8 @@
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/PiLiter"
"url":"https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/PiLiter"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "piliter" ],

View File

@@ -6,7 +6,8 @@
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/PiSrf"
"url":"https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/PiSrf"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "SRF04", "SRF05", "ultrasonic", "range", "HC-SR04", "SR04" ],

View File

@@ -6,7 +6,8 @@
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/Pibrella"
"url":"https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/Pibrella"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "pibrella" ],

View File

@@ -7,7 +7,8 @@
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/blink1"
"url":"https://github.com/node-red/node-red-nodes.git",
"directory" : "tree/master/hardware/blink1"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "blink1" ],

View File

@@ -7,7 +7,8 @@
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/blinkstick"
"url":"https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/blinkstick"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "blinkstick" ],

View File

@@ -8,7 +8,8 @@
"homepage": "http://www.hardill.me.uk/wordpress/2013/02/06/budget-blink1/",
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/digiRGB"
"url":"https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/digiRGB"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "digiRGB" ],

View File

@@ -7,7 +7,8 @@
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/io/heatmiser"
"url":"https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/io/heatmiser"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "heatmiser"],

View File

@@ -6,7 +6,8 @@
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/intel"
"url":"https://github.com/node-red/node-red-nodes.git",
"directory" : "tree/master/hardware/intel"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "intel", "galileo", "edison" ],

View File

@@ -7,7 +7,8 @@
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/makey"
"url":"https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/makey"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "makeymakey" ],

View File

@@ -7,7 +7,8 @@
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/mcp3008"
"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" ],

View File

@@ -6,7 +6,8 @@
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/neopixel"
"url":"https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/neopixel"
},
"license": "Apache-2.0",
"keywords": [

View File

@@ -20,7 +20,8 @@
},
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes/tree/master/hardware/physical-web"
"url": "https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/physical-web"
},
"author": {
"name": "Ben Hardill",

View File

@@ -10,7 +10,8 @@
},
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes/tree/master/hardware/pigpiod"
"url": "https://github.com/node-red/node-red-nodes.git",
"directory" : "tree/master/hardware/pigpiod"
},
"keywords": [
"node-red", "Pi", "GPIO", "PiGPIOd"

View File

@@ -4,7 +4,8 @@
"description" : "A Node-RED node to interact with a Raspberry Pi Sense HAT",
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/sensehat"
"url":"https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/sensehat"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "sensehat", "astropi" ],

View File

@@ -4,7 +4,8 @@
"description": "A Node-RED node to simulate a Raspberry Pi Sense HAT",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes/tree/master/hardware/sensehatsim"
"url": "https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/sensehatsim"
},
"dependencies": {
"ws": "~6.2.1"

View File

@@ -17,7 +17,8 @@
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes/tree/master/hardware/sensorTag"
"url": "https://github.com/node-red/node-red-nodes.git",
"directory" : "tree/master/hardware/sensorTag"
},
"node-red": {
"nodes": {

View File

@@ -7,7 +7,8 @@
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/unicorn"
"url":"https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/unicorn"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "unicorn", "pimorini" ],

View File

@@ -2,7 +2,11 @@
"name": "node-red-node-wemo",
"version": "0.2.1",
"description": "Input and Output nodes for Belkin WeMo devices",
"repository": "https://github.com/node-red/node-red-nodes/tree/master/hardware",
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes.git",
"directory": "tree/master/hardware/wemo"
},
"main": "WeMoNG.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"