UNPKG

iobroker.bshb

Version:

Connects Bosch Smart Home Interface-Processes to ioBroker

122 lines (121 loc) 3.39 kB
{ "name": "iobroker.bshb", "version": "0.6.3", "description": "Connects Bosch Smart Home Interface-Processes to ioBroker", "author": { "name": "Christopher Holomek", "email": "holomekc.github@gmail.com" }, "homepage": "https://github.com/holomekc/ioBroker.bshb", "license": "MIT", "keywords": [ "ioBroker", "Bosch", "Smart Home" ], "repository": { "type": "git", "url": "https://github.com/holomekc/ioBroker.bshb" }, "bugs": { "url": "https://github.com/holomekc/bosch-smart-home-bridge/issues" }, "engines": { "node": ">= 22" }, "scripts": { "prepack": "pinst --disable", "postpack": "pinst --enable", "prebuild": "rimraf ./build", "build:ts": "tsc -p tsconfig.build.json", "build": "npm run build:ts", "watch:ts": "tsc -p tsconfig.build.json --watch", "watch": "npm run watch:ts", "test:package": "mocha test/package --exit", "test:unit": "mocha test/unit --exit", "test:integration": "mocha test/integration --exit", "test": "npm run test:package && npm run test:unit && npm run test:integration", "check": "tsc --noEmit", "coverage": "c8 npm run test:ts", "lint": "eslint", "lint:fix": "eslint --max-warnings 0 --fix .", "prettier": "prettier --write .", "translate": "translate-adapter", "release": "release-script", "pack": "npm run build && npm pack" }, "dependencies": { "@iobroker/adapter-core": "^3.3.2", "bosch-smart-home-bridge": "1.8.1", "rxjs": "7.8.1" }, "devDependencies": { "@alcalzone/release-script": "^5.2.0", "@alcalzone/release-script-plugin-iobroker": "^5.2.0", "@alcalzone/release-script-plugin-license": "^5.2.0", "@alcalzone/release-script-plugin-manual-review": "^5.2.0", "@commitlint/cli": "21.0.1", "@commitlint/config-conventional": "21.0.1", "@eslint/eslintrc": "3.3.5", "@eslint/js": "10.0.1", "@iobroker/adapter-dev": "^1.5.0", "@iobroker/testing": "^5.2.2", "@iobroker/types": "7.1.2", "@tsconfig/node22": "22.0.5", "@types/chai": "5.2.3", "@types/mocha": "10.0.10", "@types/node": "24.12.4", "@types/proxyquire": "1.3.31", "@typescript-eslint/eslint-plugin": "8.59.3", "@typescript-eslint/parser": "8.59.3", "c8": "11.0.0", "chai": "6.2.2", "eslint": "10.4.0", "eslint-config-prettier": "10.1.8", "eslint-plugin-prefer-arrow": "1.2.3", "eslint-plugin-prettier": "5.5.5", "eslint-plugin-unused-imports": "4.4.1", "express": "5.2.1", "globals": "17.6.0", "husky": "9.1.7", "mocha": "11.7.5", "pinst": "3.0.0", "prettier": "3.8.3", "prettier-eslint": "16.4.2", "proxyquire": "2.1.3", "rimraf": "6.1.3", "source-map-support": "0.5.21", "ts-node": "10.9.2", "typescript": "5.9.3" }, "main": "build/main.js", "files": [ "admin{,/!(src)/**}/!(tsconfig|tsconfig.*|.eslintrc).json", "admin{,/!(src)/**}/*.{html,css,png,svg,jpg,js}", "build/", "www/", "io-package.json", "LICENSE" ], "nyc": { "include": [ "src/**/*.ts" ], "exclude": [ "src/**/*.test.ts" ], "extension": [ ".ts" ], "require": [ "ts-node/register" ], "reporter": [ "text-summary", "html" ], "sourceMap": true, "instrument": true }, "readmeFilename": "README.md" }