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
37 lines
869 B
JSON
37 lines
869 B
JSON
{
|
|
"name": "node-red-node-physical-web",
|
|
"version": "0.0.16",
|
|
"description": "Node-RED nodes to interact with the Physical Web",
|
|
"main": "physical-web.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [
|
|
"node-red",
|
|
"physical-web",
|
|
"eddystone",
|
|
"beacon",
|
|
"ble"
|
|
],
|
|
"node-red": {
|
|
"nodes": {
|
|
"physical-web": "physical-web.js"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/node-red/node-red-nodes.git",
|
|
"directory": "tree/master/hardware/physical-web"
|
|
},
|
|
"author": {
|
|
"name": "Ben Hardill",
|
|
"email": "hardillb@gmail.com",
|
|
"url": "http://www.hardill.me.uk/wordpress"
|
|
},
|
|
"license": "APACHE-2.0",
|
|
"dependencies": {
|
|
"eddystone-beacon": "natcl/node-eddystone-beacon",
|
|
"@abandonware/eddystone-beacon-scanner": "3.0.1-2"
|
|
}
|
|
}
|