generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
107 lines (107 loc) · 2.85 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"displayName": "Homebridge Carrier Infinity",
"name": "homebridge-carrier-infinity",
"version": "1.6.13",
"description": "Standalone homebridge plugin for Carrier Infinity / Bryant Evolution / ICP Brands Ion thermostats.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/grivkees/homebridge-carrier-infinity.git"
},
"bugs": {
"url": "https://github.com/grivkees/homebridge-carrier-infinity/issues"
},
"engines": {
"node": ">=12.13.0",
"homebridge": ">=1.2"
},
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"lint": "eslint src/**.ts --max-warnings=0",
"relink": "sudo rsync -rl --chown homebridge:homebridge ../homebridge-carrier-infinity /var/lib/homebridge/node_modules/ && sudo hb-service restart",
"watch": "npm run build && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build",
"test": "jest",
"xml2ts": "find testdata/*.xml -exec sh -c 'node scripts/xml2ts.ts {} src/api/interface_$(basename {} .xml).ts' \\;"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "tsc && npm run relink",
"delay": 5000,
"env": {
"NODE_OPTIONS": "--trace-warnings"
}
},
"keywords": [
"homebridge-plugin",
"homebridge",
"homekit",
"thermostat",
"carrier-infinity",
"bryant-evolution",
"infinity",
"infinitude",
"infinitive"
],
"dependencies": {
"async-mutex": "^0.4.1",
"axios": "^1.7.9",
"oauth-signature": "^1.5.0",
"object-hash": "^3.0.0",
"typescript-memoize": "^1.1.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@commitlint/cz-commitlint": "^18.6.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.11",
"@types/object-hash": "^3.0.6",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"commitizen": "^4.3.1",
"eslint": "^8.57.1",
"eslint-plugin-spellcheck": "^0.0.20",
"homebridge": "^1.8.5",
"jest": "^29.7.0",
"json-to-ts": "^1.7.0",
"nodemon": "^3.1.9",
"rimraf": "^5.0.10",
"semantic-release": "^24.2.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"config": {
"commitizen": {
"path": "./node_modules/@commitlint/cz-commitlint"
}
},
"release": {
"branches": [
{
"name": "master",
"channel": "next"
},
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
}
}