UNPKG

node-red-contrib-dnp

Version:

The DNP/DNP3 toolbox package for Node-RED.

114 lines (113 loc) 3.08 kB
{ "name": "node-red-contrib-dnp", "version": "0.0.11", "private": false, "description": "The DNP/DNP3 toolbox package for Node-RED.", "repository": { "type": "git", "url": "git+https://github.com/BiancoRoyal/node-red-contrib-dnp.git" }, "dependencies": { "debug": "~4.3.4", "dnp3": "~0.0.1", "dnp3-crc": "~1.0.0", "underscore": "~1.13.4" }, "keywords": [ "dnp", "fieldbus", "automation", "biancoroyal" ], "author": "Klaus Landsdorf <klaus.landsdorf@bianco-royal.de>", "license": "BSD-3-Clause", "bugs": { "url": "https://github.com/BiancoRoyal/node-red-contrib-dnp/issues" }, "node-red": { "version": ">=2", "nodes": { "DNP-Client": "dnp/dnp-client.js", "DNP-Server": "dnp/dnp-server.js", "DNP-Read": "dnp/dnp-read.js", "DNP-Write": "dnp/dnp-write.js" } }, "engines": { "node": ">=14" }, "homepage": "https://noderedplus.de/", "scripts": { "test": "standard --fix && mocha test/* --reporter dot", "build": "standard --fix && gulp publish", "prepublishOnly": "standard --fix && npm run build && npm run rewrite-changelog && npm test && mocha test --recursive --timeout 5000 --reporter dot && istanbul cover _mocha -- --recursive --timeout 5000", "ci-publish": "ci-publish", "release": "standard-version -a", "release:beta": "standard-version --prerelease beta", "release:alpha": "standard-version --prerelease alpha", "rewrite-changelog": "gulp changelog", "postinstall": "node ./supporter.js", "clean": "gulp clean", "dev-link": "npm i && npm run build && npm link", "dev-unlink": "npm unlink node-red-contrib-dnp -g" }, "files": [ "docs", "examples", "dnp", "supporter.js" ], "devDependencies": { "@babel/cli": "^7.18.9", "@babel/core": "^7.18.9", "@babel/preset-env": "^7.18.9", "@node-red/nodes": "^3.0.1", "chai": "^4.3.6", "codacy-coverage": "^3.4.0", "conventional-changelog-cli": "^2.2.2", "coveralls": "^3.1.1", "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-uglify": "^3.0.2", "istanbul": "^0.4.5", "jasmine-node": "^3.0.0", "js-beautify": "^1.14.4", "mocha": "^10.0.0", "nock": "^13.2.9", "node-red": "^3.0.1", "node-red-node-test-helper": "^0.3.0", "nyc": "^15.1.0", "pump": "^3.0.0", "should": "^13.2.3", "sinon": "^14.0.0", "standard": "^17.0.0", "standard-version": "^9.5.0", "supertest": "^6.2.4", "uglify-js": "^3.16.3", "uglify-js-harmony": "^2.7.7", "when": "^3.7.8" }, "directories": { "example": "examples", "test": "test" }, "standard": { "ignore": [ "code/", "node_modules/", "examples/", "dnp/", "docs", "test", "extras" ] }, "main": "index.js" }