UNPKG

node-red-contrib-bacnet

Version:

The BACnet toolbox package for Node-RED from the P4NR B2B Community.

130 lines (129 loc) 3.72 kB
{ "name": "node-red-contrib-bacnet", "version": "0.3.0", "private": false, "description": "The BACnet toolbox package for Node-RED from the P4NR B2B Community.", "repository": { "type": "git", "url": "git+https://github.com/BiancoRoyal/node-red-contrib-bacnet.git" }, "dependencies": { "debug": "~4.3.4", "node-bacnet": "~0.2.4", "underscore": "~1.13.6" }, "keywords": [ "node-red", "plusfornodered", "bacnet", "fieldbus", "biancoroyal" ], "author": "P4NR Support <support@plus4nodered.com> (https://plus4nodered.com/)", "contributors": [ { "name": "P4NR B2B Community <team@plus4nodered.com> (https://p4nr.com/)" }, { "name": "Iniationware GmbH <team@iniationware.com> (https://iniationware.com/)" }, { "name": "Ingo Fischer (Gameforge)" }, { "name": "Fabio Huser (node-bacstack)" } ], "license": "MIT", "bugs": { "url": "https://github.com/BiancoRoyal/node-red-contrib-bacnet/issues" }, "node-red": { "version": ">=2", "nodes": { "BACnet-Client": "bacnet/bacnet-client.js", "BACnet-Device": "bacnet/bacnet-device.js", "BACnet-Instance": "bacnet/bacnet-instance.js", "BACnet-Read": "bacnet/bacnet-read.js", "BACnet-Write": "bacnet/bacnet-write.js", "BACnet-Command": "bacnet/bacnet-command.js" } }, "engines": { "node": ">=14" }, "homepage": "https://p4nr.com/", "scripts": { "test": "standard --fix && mocha test --recursive --reporter dot --timeout 5000", "test-with-coverage": "istanbul cover _mocha --report lcovonly -- --recursive --timeout 5000 -R spec && cat ./coverage/lcov.info | codacy-coverage --token $CODACY_COVERAGE_TOKEN && rm -rf ./coverage", "coverage": "npm run build && npm test && istanbul cover _mocha -- --recursive --timeout 5000", "build": "standard --fix && gulp", "prepublishOnly": "npm run build && npm run rewrite-changelog && npm test", "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-bacnet -g" }, "files": [ "docs", "examples", "bacnet", "supporter.js" ], "devDependencies": { "@babel/cli": "^7.7.0", "@babel/core": "^7.7.2", "@babel/preset-env": "^7.7.1", "chai": "^4.2.0", "codacy-coverage": "^3.4.0", "conventional-changelog-cli": "^2.0.27", "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.0.0", "gulp-sequence": "^1.0.0", "gulp-sourcemaps": "^2.6.5", "gulp-uglify": "^3.0.2", "istanbul": "0.4.5", "jasmine-node": "^3.0.0", "js-beautify": "^1.10.2", "mocha": "^7.2.0", "nock": "^12.0.3", "node-red": "^1.0.6", "node-red-node-test-helper": "^0.2.4", "pump": "^3.0.0", "should": "^13.2.3", "sinon": "^9.0.2", "standard": "^14.3.1", "standard-version": "^8.0.0", "supertest": "^4.0.2", "uglify-js": "^3.6.9", "uglify-js-harmony": "^2.7.7", "when": "^3.7.8" }, "directories": { "doc": "docs", "example": "examples", "test": "test" }, "standard": { "ignore": [ "code/", "node_modules/", "examples/", "bacnet/", "docs", "src/public/", "test" ] }, "main": "index.js" }