UNPKG

@biancoroyal/bacstack

Version:

A BACnet protocol stack written in pure JavaScript.

68 lines (67 loc) 1.96 kB
{ "name": "@biancoroyal/bacstack", "version": "0.0.1-beta.22", "description": "A BACnet protocol stack written in pure JavaScript.", "main": "index.js", "scripts": { "changelog": "commitlint --from=master", "lint": "jshint lib/ test/ index.js && jscs lib/ test/ index.js", "test": "nyc --reporter=lcov --reporter=text-summary --report-dir reports/coverage-test mocha test/unit/*.spec.js", "integration": "nyc --reporter=lcov --reporter=text-summary --report-dir reports/coverage-integration mocha test/integration/*.spec.js --timeout 5000", "compliance": "nyc --reporter=lcov --reporter=text-summary --report-dir reports/coverage-compliance mocha test/compliance/*.spec.js --timeout 5000", "docs": "jsdoc -d ./docs -t node_modules/docdash ./lib ./index.js ./README.md" }, "repository": { "type": "git", "url": "git+https://github.com/biancode/node-bacstack.git" }, "keywords": [ "bacnet", "bacstack", "building", "automation" ], "author": { "name": "Fabio Huser", "email": "fabio@fh1.ch" }, "engines": { "node": ">= 8.0.0" }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "license": "MIT", "bugs": { "url": "https://github.com/fh1ch/node-bacstack/issues" }, "homepage": "https://github.com/NateZimmer/node-bacstack#readme", "dependencies": { "debug": "^4.1.1", "iconv-lite": "^0.5.0" }, "devDependencies": { "@commitlint/cli": "^7.5.1", "@commitlint/config-conventional": "^7.5.0", "@commitlint/travis-cli": "^7.5.1", "chai": "^4.2.0", "docdash": "^1.1.1", "jscs": "^3.0.7", "jsdoc": "^3.6.3", "jshint": "^2.10.2", "mocha": "^6.2.0", "nyc": "^14.1.1" }, "files": [ "docs", "examples", "lib", "index.js" ], "directories": { "example": "examples", "test": "test" } }