-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.69 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
{
"displayName": "Homebridge Flair",
"name": "homebridge-flair",
"version": "0.0.0-development",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"description": "Brings the flair smart vents into homekit",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/bassrock/homebridge-flair.git"
},
"bugs": {
"url": "https://github.com/bassrock/homebridge-flair/issues"
},
"engines": {
"node": ">=10.17.0",
"homebridge": ">0.4.53"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"lint:fix": "eslint --fix src/**",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"keywords": [
"homebridge-plugin",
"flair"
],
"dependencies": {
"class-transformer": "^0.5.1",
"flair-api-ts": "^1.0.28",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.2",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.7",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"eslint": "8.31.0",
"homebridge": "1.6.0",
"nodemon": "2.0.20",
"rimraf": "3.0.2",
"ts-node": "10.9.1",
"typescript": "4.9.4"
}
}