-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "homebridge-logic-switch",
"version": "1.0.0",
"description": "Logic-based switches for homebridge",
"main": "dist/src/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint ./src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grelca/homebridge-logic-switch.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/grelca/homebridge-logic-switch/issues"
},
"homepage": "https://github.com/grelca/homebridge-logic-switch#readme",
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/lodash": "^4.14.202",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"eslint": "^8.55.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"homebridge": "^1.4.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"dependencies": {
"lodash": "^4.17.21",
"node-persist": "^2.1.0"
},
"keywords": [
"homebridge-plugin"
],
"engines": {
"homebridge": "^1.4.0"
}
}