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
30 lines
720 B
JSON
30 lines
720 B
JSON
{
|
|
"name": "node-red-node-pi-sense-hat-simulator",
|
|
"version": "0.1.0",
|
|
"description": "A Node-RED node to simulate a Raspberry Pi Sense HAT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/node-red/node-red-nodes.git",
|
|
"directory": "tree/master/hardware/sensehatsim"
|
|
},
|
|
"dependencies": {
|
|
"ws": "~6.2.1"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"keywords": [
|
|
"node-red",
|
|
"sensehat",
|
|
"astropi"
|
|
],
|
|
"node-red": {
|
|
"nodes": {
|
|
"sensehatsim": "sensehatsim.js"
|
|
}
|
|
},
|
|
"author": {
|
|
"name": "Nick O'Leary",
|
|
"email": "nick.oleary@gmail.com",
|
|
"url": "http://nodered.org"
|
|
}
|
|
}
|