This repository has been archived by the owner on Aug 12, 2022. It is now read-only.
generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
93 lines (93 loc) · 2.45 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
{
"displayName": "SmartRent",
"name": "homebridge-smartrent",
"version": "1.0.3",
"description": "Homebridge plugin for SmartRent installations",
"keywords": [
"homebridge",
"homebridge-plugin",
"hap",
"homekit",
"smartrent"
],
"license": "Apache-2.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"author": "Grant Burry <grant@burry.me> (https://grantburry.com)",
"repository": {
"type": "git",
"url": "https://github.com/Burry/homebridge-smartrent.git"
},
"bugs": {
"url": "https://github.com/Burry/homebridge-smartrent/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/Burry"
},
{
"type": "paypal",
"url": "https://paypal.me/grantburry"
}
],
"engines": {
"node": ">=12",
"homebridge": ">=1.3.5"
},
"main": "dist/index.js",
"files": [
"src",
"homebridge-ui",
"dist",
"config.example.json",
"config.schema.json",
"CHANGELOG.md",
"screenshot.png"
],
"scripts": {
"prepare": "husky install",
"typecheck": "tsc --noEmit",
"prettier": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint src/**.ts",
"lint:fix": "eslint src/**.ts --fix",
"clean": "rimraf ./dist",
"compile": "tsc",
"build": "npm-run-all clean compile",
"watch": "npm run build && npm link && nodemon",
"prepublishOnly": "npm-run-all prettier lint build",
"semantic-release": "cross-env HUSKY=0 semantic-release"
},
"dependencies": {
"@homebridge/plugin-ui-utils": "^0.0.19",
"axios": "^0.25.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/node": "^18.7.1",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"cross-env": "^7.0.3",
"eslint": "^8.7.0",
"homebridge": "^1.4.0",
"husky": "^7.0.4",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}