-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 2.17 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
{
"name": "homebridge-kiwi",
"version": "2.1.3",
"description": "Kiwi locks plugin for Homebridge.",
"main": "dist/index.js",
"keywords": [
"homebridge-plugin",
"homebridge",
"homebridge-kiwi",
"kiwi",
"smart home"
],
"engines": {
"homebridge": ">=1.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/dimonnwc3/homebridge-kiwi.git"
},
"bugs": {
"url": "https://github.com/dimonnwc3/homebridge-kiwi/issues"
},
"author": "Dmitrii Solovev <[email protected]>",
"license": "MIT",
"scripts": {
"start": "homebridge -D -U ./homebridge -P ./",
"build": "tsc",
"lint": "eslint \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.{ts,json}\"",
"prepublish": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint"
]
},
"prettier": {
"semi": false,
"trailingComma": "all"
},
"eslintConfig": {
"root": true,
"extends": [
"plugin:@typescript-eslint/recommended",
"standard",
"prettier"
],
"rules": {
"@typescript-eslint/no-explicit-any": [
"off"
],
"@typescript-eslint/no-use-before-define": [
"error",
{
"functions": false,
"classes": false
}
]
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"globals": {
"NodeJS": "readonly"
},
"env": {
"node": true
}
},
"devDependencies": {
"@types/humps": "^2.0.0",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"homebridge": "^1.3.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
},
"dependencies": {
"got": "^11.8.2",
"humps": "^2.0.1"
}
}