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
27 lines
616 B
JSON
27 lines
616 B
JSON
{
|
|
"name": "node-red-node-annotate-image",
|
|
"version": "0.1.2",
|
|
"description": "A Node-RED node that can annotate an image",
|
|
"dependencies": {
|
|
"pureimage": "^0.2.7"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/node-red/node-red-nodes.git",
|
|
"directory": "tree/master/utility/image-annotate"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"keywords": [
|
|
"node-red"
|
|
],
|
|
"node-red": {
|
|
"nodes": {
|
|
"annotate": "annotate.js"
|
|
}
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Nick O'Leary"
|
|
}
|
|
]
|
|
} |