UNPKG

node-red-contrib-iiot-opcua

Version:

An Industrial IoT OPC UA toolbox contribution package for Node-RED based on node-opcua.

166 lines (165 loc) 6.2 kB
{ "name": "node-red-contrib-iiot-opcua", "version": "4.1.2", "description": "An Industrial IoT OPC UA toolbox contribution package for Node-RED based on node-opcua.", "repository": { "type": "git", "url": "https://github.com/BiancoRoyal/node-red-contrib-iiot-opcua" }, "dependencies": { "@xstate/fsm": "~2.0.0", "cron": "~2.1.0", "debug": "~4.3.4", "g": "~2.0.1", "node-opcua": "~2.81.0", "rimraf": "~3.0.2", "underscore": "~1.13.6", "vm2": "~3.9.13" }, "keywords": [ "node-red", "plus4nodered", "opcua", "automation", "biancoroyal" ], "author": "Klaus Landsdorf <developers@bianco-royal.de> (https://bianco-royal.space/)", "contributors": [ { "name": "PLUS for Node-RED <github@noderedplus.de> (https://noderedplus.de/)" }, { "name": "Iniationware GmbH <github@iniationware.com> (https://iniationware.com/)" }, { "name": "DATATRONiQ GmbH <github@datatroniq.com> (https://datatroniq.com/)" }, { "name": "Node-OPCUA (https://node-opcua.github.io/)" }, { "name": "Sterfive (https://www.sterfive.com/)" } ], "license": "BSD-3-Clause", "bugs": { "url": "https://github.com/BiancoRoyal/node-red-contrib-iiot-opcua/issues/new?assignees=&labels=bug&template=bugs.yaml" }, "homepage": "https://noderedplus.de/", "node-red": { "version": ">=2", "nodes": { "OPCUA-IIoT-Connector": "opcuaIIoT/opcua-iiot-connector.js", "OPCUA-IIoT-Flex-Connector": "opcuaIIoT/opcua-iiot-flex-connector.js", "OPCUA-IIoT-Inject": "opcuaIIoT/opcua-iiot-inject.js", "OPCUA-IIoT-Node": "opcuaIIoT/opcua-iiot-node.js", "OPCUA-IIoT-Event": "opcuaIIoT/opcua-iiot-event.js", "OPCUA-IIoT-Listener": "opcuaIIoT/opcua-iiot-listener.js", "OPCUA-IIoT-Read": "opcuaIIoT/opcua-iiot-read.js", "OPCUA-IIoT-Write": "opcuaIIoT/opcua-iiot-write.js", "OPCUA-IIoT-Response": "opcuaIIoT/opcua-iiot-response.js", "OPCUA-IIoT-Browser": "opcuaIIoT/opcua-iiot-browser.js", "OPCUA-IIoT-Crawler": "opcuaIIoT/opcua-iiot-crawler.js", "OPCUA-IIoT-Server": "opcuaIIoT/opcua-iiot-server.js", "OPCUA-IIoT-Flex-Server": "opcuaIIoT/opcua-iiot-flex-server.js", "OPCUA-IIoT-Server-ASO": "opcuaIIoT/opcua-iiot-server-aso.js", "OPCUA-IIoT-Server-Command": "opcuaIIoT/opcua-iiot-server-cmd.js", "OPCUA-IIoT-Result-Filter": "opcuaIIoT/opcua-iiot-result-filter.js", "OPCUA-IIoT-Method-Caller": "opcuaIIoT/opcua-iiot-method-caller.js", "OPCUA-IIoT-Discovery": "opcuaIIoT/opcua-iiot-discovery.js" } }, "engines": { "node": ">=14" }, "scripts": { "postinstall": "npm run certificates", "certificates": "node ./create_certificates.js demo --dev -s -r ./certificates", "certificates:renew": "rm -rf ./certificates && node ./create_certificates.js demo --dev -s -r ./certificates", "test:clearCache": "jest --clearCache", "test": "standard --fix && npx jest", "test:debug": "standard --fix && gulp clean && npx jest --bail --debug", "test:verbose": "standard --fix && npm run test -- --verbose", "test:watch": "standard --fix && npx jest --watch", "test:e2e": "standard --fix && npx jest --testPathIgnorePatterns='.*/(units|core)/opcua-iiot-.*'", "test:units": "standard --fix && npx jest --testPathIgnorePatterns='.*/(e2e|core)/opcua-iiot-.*'", "test:core": "standard --fix && npx jest --testPathIgnorePatterns='.*/(e2e|units)/opcua-iiot-.*'", "test:ci": "npm run test -- --ci --json --outputFile=scripts/out.json", "coverage": "gulp clean && rm -rf ./jcoverage && npm run test -- --coverage", "coverage:verbose": "gulp clean && rm -rf ./jcoverage && npm run coverage -- --verbose", "coverage:debug": "gulp clean && rm -rf ./jcoverage && npm run coverage -- --bail --debug", "coverage:ci": "npm run coverage -- --ci --json --outputFile=scripts/out.json", "coverage:upload": "cat ./jcoverage/lcov.info | codacy-coverage --token $CODACY_PROJECT_TOKEN_IIOT_OPCUA", "coverage:e2e": "npm run test:e2e -- --coverage", "coverage:units": "npm run test:units -- --coverage", "coverage:core": "npm run test:core -- --coverage", "test:summarize": "node scripts/JestOutputToSummary.js > summary.md", "summary": "npm run coverage:ci && npm run test:summarize && jest-coverage-badges input \"./jcoverage/coverage-summary.json\" output \"./badges\"", "build": "standard --fix && gulp publish", "prepublishOnly": "npm run test && npm run coverage && npm run build", "release": "standard-version -a", "inspect": "jsinspect ./src > .jsinspect-results.json", "rewrite-changelog": "gulp changelog", "dev-link": "npm i && npm run build && npm link", "dev-unlink": "npm unlink node-red-contrib-iiot-opcua -g", "code:check": "standard --fix" }, "files": [ "docs", "examples", "opcuaIIoT", "create_certificates.js" ], "devDependencies": { "@node-red/nodes": "^3.0.2", "@types/cron": "^2.0.0", "@types/debug": "^4.1.7", "@types/jest": "^29.0.2", "@types/node-red": "^1.2.1", "@types/semver": "^7.3.12", "chai": "^4.3.6", "gulp": "^4.0.2", "gulp-babel": "^8.0.0", "gulp-clean": "^0.4.0", "gulp-conventional-changelog": "^2.0.35", "gulp-htmlmin": "^5.0.1", "gulp-jsdoc3": "^3.0.0", "gulp-replace": "^1.1.3", "gulp-sequence": "^1.0.0", "gulp-sourcemaps": "^3.0.0", "gulp-typescript": "^6.0.0-alpha.1", "gulp-uglify": "^3.0.2", "jest": "^29.0.2", "jest-coverage-badges": "^1.1.2", "jsdoc": "^3.6.11", "nock": "^13.2.9", "node-red": "^3.0.2", "node-red-node-test-helper": "^0.3.0", "standard": "^17.0.0", "standard-version": "^9.5.0", "ts-jest": "^29.0.2", "typescript": "^4.8.3", "uglify-js": "^3.17.2", "when": "^3.7.8" }, "directories": { "doc": "docs", "example": "examples", "test": "test" }, "standard": { "env": [ "jest" ], "ignore": [ "code/", "node_modules/", "examples/", "opcuaIIoT/", "docs", "src/public/", "test" ] }, "main": "index.js" }