UNPKG

@halsystems/red-bacnet

Version:
95 lines (94 loc) 2.94 kB
{ "name": "@plus4nodered/ts-node-bacnet", "version": "1.0.0-beta.2", "description": "A BACnet® protocol stack written in pure TypeScript.", "exports": "./dist/index.js", "types": "./dist/index.d.ts", "dependencies": { "debug": "^4.3.4", "iconv-lite": "^0.6.3" }, "scripts": { "changelog": "commitlint --from=origin/master", "build": "tsc", "lint": "eslint source/**/*.*", "lint:fix": "eslint --fix \"source/**/*\"", "test": "yarn test:types && yarn test:ts", "test:ts": "npx jest -c jest.config.ts --coverageDirectory reports/coverage-test source/test/unit/*.spec.ts", "coverage": "npx jest -c jest.config.coverage.ts --coverage --detectOpenHandles --forceExit --bail --logHeapUsage --debug", "test:types": "npx jest -c jest.config.tsd.js", "integration": "jest --coverageDirectory reports/coverage-integration source/test/integration/*.spec.ts", "compliance": "jest --coverageDirectory reports/coverage-compliance source/test/compliance/*.spec.ts", "docs": "typedoc --out docs --entryPoint '\"client\"' --excludeExternals --excludeNotExported --excludePrivate source/lib/client.ts", "dev-link": "yarn && yarn build && yarn link", "dev-unlink": "yarn unlink @plus4nodered/ts-bacstack -g", "code:check": "standard --fix" }, "repository": { "type": "git", "url": "git+https://github.com/HILA-TECH/ts-node-bacstack.git" }, "keywords": [ "plus4nodered", "bacnet", "bacstack", "building", "automation" ], "author": { "name": "PLUS for Node-RED", "email": "developers@plus4nodered.com", "url": "http://plus4nodered.com" }, "contributors": [ { "name": "Fabio Huser", "email": "fabio@fh1.ch" }, { "name": "Klaus Landsdorf", "email": "klaus@bianco-royal.de" } ], "engines": { "node": ">= 16" }, "files": [ "dist/**/*.js", "dist/**/*.d.ts", "!dist/test/**/*" ], "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "homepage": "https://hila-tech.github.io/ts-node-bacstack/", "license": "MIT", "bugs": { "url": "https://github.com/HILA-TECH/ts-node-bacstack/issues" }, "devDependencies": { "@babel/core": "^7.20.12", "@babel/preset-env": "^7.20.2", "@babel/preset-typescript": "^7.18.6", "@commitlint/cli": "^17.4.0", "@commitlint/config-conventional": "^17.4.0", "@jest/globals": "^29.3.1", "@tsd/typescript": "^4.9.4", "@types/debug": "^4.1.7", "@types/jest": "^29.2.5", "@types/node": "^16.18.11", "@typescript-eslint/eslint-plugin": "^5.48.0", "@typescript-eslint/parser": "^5.48.0", "babel-jest": "^29.3.1", "eslint": "^8.31.0", "eslint-config-google": "^0.14.0", "jest": "^29.3.1", "jest-runner-eslint": "^1.1.0", "jest-runner-tsd": "^4.0.0", "ts-jest": "^29.0.3", "tsd": "^0.25.0", "typescript": "^4.9.4" } }