generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.78 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
{
"displayName": "Homebridge Rise Garden",
"name": "homebridge-rise-garden",
"version": "0.0.0-development",
"description": "A Homebridge plugin to control the lights on your Rise Garden from HomeKit.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/viamin/homebridge-rise-garden.git"
},
"bugs": {
"url": "https://github.com/viamin/homebridge-rise-garden/issues"
},
"engines": {
"node": ">=14.18.1",
"homebridge": ">=1.3.5"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build",
"test": "jest --passWithNoTests",
"semantic-release": "semantic-release"
},
"keywords": [
"homebridge-plugin"
],
"dependencies": {
"axios": "^1.2.1",
"homebridge-http-base": "^2.1.12"
},
"devDependencies": {
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.0.3",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@types/jest": "^29.0.0",
"@types/node": "^22.1.0",
"@types/rewire": "^2.5.28",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"class-transformer": "^0.5.1",
"eslint": "^9.8.0",
"homebridge": "^1.3.5",
"husky": "^9.0.11",
"jest": "^29.0.0",
"nodemon": "^3.0.1",
"rewire": "^7.0.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.3.0",
"typescript": "^5.0.0"
}
}