forked from NorthernMan54/homebridge-alexa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.36 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
{
"name": "homebridge-alexa",
"version": "0.7.1",
"description": "Control your Homebridge devices with Amazon Alexa.",
"main": "plugin.js",
"scripts": {
"test": "jest --forceExit --detectOpenHandles --verbose=true --silent ",
"api": "documentation build plugin.js lib/alexaActions.js lib/alexaLocal.js lib/alexaMessages.js lib/alexaTranslator.js -f md --config docs/documentation.yml > docs/API.md",
"document": "./gh-md-toc --hide-footer README.md ;./gh-md-toc --hide-footer Troubleshooting.md ;./gh-md-toc --hide-footer Installation.md; rm README.md.orig.* README.md.toc.* Troubleshooting.md.orig.* Troubleshooting.md.toc.* Installation.md.orig.* Installation.md.toc.*",
"watch": "nodemon"
},
"nodemonConfig": {
"watch": [],
"ext": "js",
"ignore": [],
"exec": "~/npm/bin/homebridge -D -R -P ~/Code",
"signal": "SIGTERM",
"env": {
"NODE_OPTIONS": "--trace-warnings"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/NorthernMan54/homebridge-alexa.git"
},
"engines": {
"homebridge": "^1.6.0 || ^2.0.0-beta.0",
"node": "^18 || ^20 || ^22"
},
"keywords": [
"alexa",
"homebridge-plugin"
],
"devDependencies": {
"@oznu/hap-client": "^1.9.0",
"@types/jest": "^29.5.10",
"@types/node": "^22.2.0",
"babel-jest": "^29.7.0",
"documentation": "^14.0.3",
"jest": "^29.7.0",
"mqtt-connection": "^4.1.0",
"nodemon": "^3.1.4",
"rimraf": "^6.0.1",
"semver": "^7.6.3",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.1",
"typescript": "^5.5.4",
"ws": "^8.14.2"
},
"dependencies": {
"bottleneck": "2.19.5",
"debug": "4.3.6",
"hap-node-client": "^0.2.8",
"is-my-json-valid": "2.20.6",
"mqtt": "5.9.1"
},
"author": "NorthernMan54",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/NorthernMan54/homebridge-alexa/issues"
},
"homepage": "https://github.com/NorthernMan54/homebridge-alexa#readme",
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "./",
"testEnvironment": "node",
"testRegex": ".test.ts$",
"testTimeout": 10000,
"transform": {
"^.+\\.(t)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.ts"
],
"coveragePathIgnorePatterns": [
"/ui/",
"/test/",
"/dist/",
"/scripts/"
]
}
}