2022-11-06 13:04:30 +01:00
|
|
|
{
|
2022-11-06 13:50:39 +01:00
|
|
|
"private": true,
|
|
|
|
"name": "homebridge-prometheus-exporter",
|
2022-11-08 14:43:41 +01:00
|
|
|
"version": "0.0.1",
|
2022-11-06 13:50:39 +01:00
|
|
|
"description": "Prometheus exporter for homebridge accessories.",
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/lstrojny/homebridge-prometheus-exporter.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/lstrojny/homebridge-prometheus-exporter/issues"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=14.18.1",
|
|
|
|
"homebridge": ">=1.3.5"
|
|
|
|
},
|
2022-11-08 19:13:34 +01:00
|
|
|
"main": "dist/src/index.js",
|
2022-11-06 13:50:39 +01:00
|
|
|
"scripts": {
|
|
|
|
"lint": "npm run format && eslint --ignore-path=.gitignore '**/**.{ts,js,json}'",
|
|
|
|
"watch": "npm run build && npm run link && nodemon",
|
|
|
|
"watch-tests": "jest --watch",
|
|
|
|
"tests": "jest",
|
|
|
|
"link": "npm install --no-save file:///$PWD/",
|
|
|
|
"build": "rimraf ./dist && tsc",
|
|
|
|
"format": "prettier --ignore-path=.gitignore --write '**/**.{ts,js,json}'",
|
|
|
|
"prepublishOnly": "npm run lint && npm run build"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"homebridge-plugin"
|
|
|
|
],
|
|
|
|
"devDependencies": {
|
2022-11-08 19:36:50 +01:00
|
|
|
"@jest/globals": "^29.3.0",
|
2022-11-06 13:50:39 +01:00
|
|
|
"@types/node": "^16.10.9",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.42.0",
|
|
|
|
"@typescript-eslint/parser": "^5.42.0",
|
|
|
|
"eslint": "^8.0.1",
|
2022-11-08 19:36:50 +01:00
|
|
|
"eslint-import-resolver-typescript": "^3.5.2",
|
|
|
|
"eslint-plugin-import": "^2.26.0",
|
2022-11-06 13:50:39 +01:00
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
|
|
"homebridge": "^1.3.5",
|
|
|
|
"homebridge-cmdswitch2": "^0.2.10",
|
|
|
|
"nodemon": "^2.0.13",
|
|
|
|
"prettier": "^2.7.1",
|
|
|
|
"rimraf": "^3.0.2",
|
|
|
|
"ts-jest": "^29.0.3",
|
|
|
|
"ts-node": "^10.3.0",
|
|
|
|
"typescript": "^4.4.4"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"fastify": "^4.9.2",
|
|
|
|
"hap-node-client": "git+https://github.com/NorthernMan54/Hap-Node-Client.git#fe200ba",
|
2022-11-08 19:36:50 +01:00
|
|
|
"hap-nodejs": "^0.10.4",
|
2022-11-08 19:13:34 +01:00
|
|
|
"json-schema-to-zod": "^0.2.0",
|
|
|
|
"zod": "^3.19.1"
|
|
|
|
},
|
|
|
|
"overrides": {
|
|
|
|
"jest-mock": "29.2"
|
2022-11-06 13:50:39 +01:00
|
|
|
}
|
2022-11-06 13:04:30 +01:00
|
|
|
}
|