forked from SteffeyDev/homebridge-hyundai-bluelink
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.95 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
{
"private": false,
"displayName": "Homebridge Hyundai BlueLink",
"name": "homebridge-hyundai-bluelink",
"version": "1.4.100",
"description": "Integrates with remote functionality for Hyundai cars.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/constructorfleet/homebridge-hyundai-bluelink.git"
},
"bugs": {
"url": "https://github.com/constructorfleet/homebridge-hyundai-bluelink/issues"
},
"engines": {
"node": ">=10.17.0",
"homebridge": ">=1.0.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon 2>&1 | tee /tmp/homebridge.log",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"keywords": [
"homebridge-plugin"
],
"dependencies": {
"bluelinky": "^7.5.0"
},
"devDependencies": {
"@spotify/prettier-config": "^12.0.0",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"homebridge": "^1.3.4",
"husky": "^7.0.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.2.4"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"homepage": "https://github.com/constructorfleet/homebridge-hyundai-bluelink#readme",
"author": "Andrew Thal",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/athal7"
},
{
"type": "buymeacoffee",
"url": "https://buymeacoff.ee/athal7"
}
]
}