UNPKG

node-red-contrib-octocore

Version:

OctoCore implementation for node-red

62 lines (61 loc) 1.6 kB
{ "name": "node-red-contrib-octocore", "version": "0.0.17", "description": "OctoCore implementation for node-red", "repository": { "type": "git", "url": "https://git.octotronic.com/manufacturinghub/node-red-contrib-octocore.git" }, "homepage": "https://www.octotronic.com", "url": "https://git.octotronic.com/manufacturinghub/node-red-contrib-octocore", "main": "nodes/uns-server.js", "engines": { "node": ">=18.0.0" }, "license": "MIT", "scripts": { "test": "jest", "lint": "eslint .", "lint:fix": "eslint . --fix", "format": "prettier --write .", "build": "tsc", "build:watch": "tsc --watch", "type-check": "tsc --noEmit" }, "keywords": [ "node-red", "octocore", "uns", "unified-namespace", "nats", "iot", "manufacturing" ], "author": "Pascal Blansche", "dependencies": { "nats": "^2.28.0" }, "devDependencies": { "eslint": "^8.57.0", "eslint-config-standard": "^17.1.0", "eslint-plugin-import": "^2.29.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^6.1.0", "eslint-plugin-standard": "^5.0.0", "jest": "^29.7.0", "prettier": "^3.0.0", "typescript": "^5.0.0", "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0" }, "node-red": { "version": ">=3.0.0", "nodes": { "uns-publish": "nodes/uns-publish.js", "uns-subscribe": "nodes/uns-subscribe.js", "uns-request": "nodes/uns-request.js", "uns-server": "nodes/uns-server.js" } } }