This repository has been archived by the owner on Jan 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·58 lines (58 loc) · 1.54 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
{
"name": "homebridge-selve",
"version": "2.2.4",
"description": "Selve Remote Shutter Support for Homebridge: https://github.com/homebridge/homebridge",
"license": "MIT",
"keywords": [
"homebridge-plugin",
"selve",
"shutter",
"rollershutter",
"homebridge"
],
"author": "Thorben Fohlmeister <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/tfohlmeister/homebridge-selve.git"
},
"bugs": {
"url": "http://github.com/tfohlmeister/homebridge-selve/issues"
},
"engines": {
"node": ">=14.18.1",
"homebridge": ">=1.3.5"
},
"main": "dist/selve-platform.js",
"files": [
"LICENSE",
"dist",
"config.schema.json"
],
"dependencies": {
"fast-xml-parser": "^3.17.4",
"seq-queue": "0.0.5",
"serialport": "^9.2.4",
"xmldoc": "^1.1.2"
},
"devDependencies": {
"@types/node": "^16.10.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@types/serialport": "^8.0.2",
"eslint": "^8.0.1",
"homebridge": "^1.3.5",
"generate-changelog": "^1.8.0",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"typescript": "^4.4.4",
"ts-node": "^10.3.0"
},
"scripts": {
"clean": "rimraf ./dist",
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build",
"version": "npm run clean && npm run build && generate-changelog && git add CHANGELOG.md"
}
}