iobroker.bshb
Version:
Connects Bosch Smart Home Interface-Processes to ioBroker
124 lines • 3.54 kB
JSON
{
"name": "iobroker.bshb",
"version": "0.5.2",
"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": ">= 20"
},
"scripts": {
"_postinstall": "husky && node disable-publish-semantic-release-github.cjs",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"prebuild": "rimraf ./build",
"build:ts": "tsc -p tsconfig.build.json",
"build": "yarn run build:ts",
"watch:ts": "tsc -p tsconfig.build.json --watch",
"watch": "yarn run watch:ts",
"test:package": "mocha test/package --exit",
"test:unit": "mocha test/unit --exit",
"test:integration": "mocha test/integration --exit",
"test": "yarn run test:package && yarn run test:unit && yarn run test:integration",
"check": "tsc --noEmit",
"coverage": "c8 yarn run test:ts",
"lint": "eslint",
"lint:fix": "eslint --max-warnings 0 --fix .",
"prettier": "prettier --write .",
"release": "semantic-release",
"pack": "yarn run build && yarn pack --out ./%s-%v.tgz"
},
"dependencies": {
"@iobroker/adapter-core": "^3.2.3",
"bosch-smart-home-bridge": "1.7.25",
"rxjs": "7.8.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.30.0",
"@iobroker/adapter-dev": "^1.4.0",
"@iobroker/testing": "^5.0.4",
"@iobroker/types": "7.0.7",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@tsconfig/node22": "22.0.2",
"@types/chai": "5.2.2",
"@types/mocha": "10.0.10",
"@types/node": "22.15.34",
"@types/proxyquire": "1.3.31",
"@typescript-eslint/eslint-plugin": "8.35.0",
"@typescript-eslint/parser": "8.35.0",
"c8": "10.1.3",
"chai": "5.2.0",
"conventional-changelog-conventionalcommits": "9.0.0",
"eslint": "9.30.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "5.5.1",
"eslint-plugin-unused-imports": "4.1.4",
"express": "5.1.0",
"globals": "16.2.0",
"husky": "9.1.7",
"mocha": "11.7.1",
"pinst": "3.0.0",
"prettier": "3.6.2",
"prettier-eslint": "16.4.2",
"proxyquire": "2.1.3",
"rimraf": "6.0.1",
"semantic-release": "24.2.5",
"semantic-release-yarn": "3.0.2",
"source-map-support": "0.5.21",
"ts-node": "10.9.2",
"typescript": "5.8.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",
"packageManager": "yarn@4.9.2"
}