mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
2d28a2304f
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
31 lines
698 B
JSON
31 lines
698 B
JSON
{
|
|
"name": "node-red-node-pi-gpiod",
|
|
"version": "0.4.0",
|
|
"description": "A node-red node for PiGPIOd",
|
|
"dependencies" : {
|
|
"js-pigpio": "*"
|
|
},
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/node-red/node-red-nodes.git",
|
|
"directory" : "tree/master/hardware/pigpiod"
|
|
},
|
|
"keywords": [
|
|
"node-red", "Pi", "GPIO", "PiGPIOd"
|
|
],
|
|
"author": {
|
|
"name": "Dave Conway-Jones",
|
|
"email": "ceejay@vnet.ibm.com",
|
|
"url": "http://nodered.org"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"node-red" : {
|
|
"nodes": {
|
|
"pi-gpiod": "pi-gpiod.js"
|
|
}
|
|
}
|
|
}
|