add version/engine support metadata

This commit is contained in:
Dave Conway-Jones 2022-07-27 14:08:02 +01:00
parent a7b9380f25
commit 5bb8b4d968
No known key found for this signature in database
GPG Key ID: 88BA2B8A411BE9FF
2 changed files with 11 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name" : "node-red-node-cbor", "name" : "node-red-node-cbor",
"version" : "1.0.0", "version" : "1.0.1",
"description" : "A Node-RED node to pack and unpack objects to cbor format", "description" : "A Node-RED node to pack and unpack objects to cbor format",
"dependencies" : { "dependencies" : {
"cbor-x" : "^1.3.2" "cbor-x" : "^1.3.2"
@ -16,6 +16,7 @@
"license": "Apache-2.0", "license": "Apache-2.0",
"keywords": [ "node-red", "cbor" ], "keywords": [ "node-red", "cbor" ],
"node-red" : { "node-red" : {
"version": ">=1.0.0",
"nodes" : { "nodes" : {
"cbor": "70-cbor.js" "cbor": "70-cbor.js"
} }
@ -24,5 +25,8 @@
"name": "Dave Conway-Jones", "name": "Dave Conway-Jones",
"email": "dceejay@gmail.com", "email": "dceejay@gmail.com",
"url": "http://nodered.org" "url": "http://nodered.org"
},
"engines": {
"node": ">=14"
} }
} }

View File

@ -1,9 +1,9 @@
{ {
"name": "node-red-node-markdown", "name": "node-red-node-markdown",
"version": "0.3.0", "version": "0.4.0",
"description": "A Node-RED node to convert a markdown string to html.", "description": "A Node-RED node to convert a markdown string to html.",
"dependencies": { "dependencies": {
"markdown-it": "^12.3.2" "markdown-it": "^13.0.1"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@ -16,6 +16,7 @@
"markdown" "markdown"
], ],
"node-red": { "node-red": {
"version": ">=1.0.0",
"nodes": { "nodes": {
"markdown": "70-markdown.js" "markdown": "70-markdown.js"
} }
@ -24,5 +25,8 @@
"name": "Dave Conway-Jones", "name": "Dave Conway-Jones",
"email": "ceejay@vnet.ibm.com", "email": "ceejay@vnet.ibm.com",
"url": "http://nodered.org" "url": "http://nodered.org"
},
"engines": {
"node": ">=14"
} }
} }