homebridge-sleeptracker
Version:
Homebridge plugin for SleepTracker smart beds - Control your bed's position and features through HomeKit
94 lines (93 loc) • 2.32 kB
JSON
{
"name": "homebridge-sleeptracker",
"version": "1.1.0",
"displayName": "Homebridge SleepTracker",
"description": "Homebridge plugin for SleepTracker smart beds - Control your bed's position and features through HomeKit",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"watch": "npm run build && npm link && nodemon",
"test": "jest --config jest.config.js",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**.ts --fix",
"docs": "typedoc --out docs src/",
"prepare": "npm run build",
"preversion": "npm run lint && npm test",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"keywords": [
"homebridge-plugin",
"homebridge",
"homekit",
"smart-bed",
"sleeptracker",
"home-automation",
"iot",
"smart-home",
"bed-control",
"sleep-tech",
"hoobs",
"hoobs-plugin"
],
"author": {
"name": "Margaret",
"url": "https://github.com/Margarets00"
},
"license": "MIT",
"engines": {
"node": ">=16.0.0",
"homebridge": ">=1.3.5"
},
"dependencies": {
"axios": "^1.6.7"
},
"peerDependencies": {
"homebridge": ">=1.3.5"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"homebridge": "^1.3.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.0",
"simple-git-hooks": "^2.9.0",
"ts-jest": "^29.1.2",
"typedoc": "^0.25.0",
"typescript": "^4.9.5"
},
"files": [
"dist",
"config.schema.json",
"README.md",
"README.ko.md",
"LICENSE"
],
"homepage": "https://github.com/Margarets00/homebridge-sleeptracker#readme",
"repository": {
"type": "git",
"url": "git://github.com/Margarets00/homebridge-sleeptracker.git"
},
"bugs": {
"url": "https://github.com/Margarets00/homebridge-sleeptracker/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Margarets00"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"homebridge": {
"pluginType": "platform",
"category": "Comfort"
}
}