-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
76 lines (76 loc) · 2.29 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
{
"name": "homebridge-alexa",
"version": "0.8.2",
"description": "Control your Homebridge devices with Amazon Alexa.",
"main": "src/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",
"lint": "eslint --max-warnings=10 .",
"lint:fix": "eslint --fix --max-warnings=0 ."
},
"nodemonConfig": {
"watch": [],
"ext": "js",
"ignore": [],
"exec": "~/npm/bin/homebridge -U ./test/hbConfig -T -D -P .",
"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": {
"@homebridge/hap-client": "^2.0.0",
"@types/node": "^22.10.2",
"@types/jest": "^29.5.14",
"@eslint/js": "^9.14.0",
"eslint": "^8.57.1",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-jest": "^28.8.3",
"babel-jest": "^29.7.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"mqtt-connection": "^4.1.0",
"nodemon": "^3.1.9",
"rimraf": "^6.0.1",
"semver": "^7.6.3"
},
"dependencies": {
"axios": "^1.7.9",
"bottleneck": "2.19.5",
"debug": "4.4.0",
"hap-node-client": "^0.2.9",
"is-my-json-valid": "2.20.6",
"mqtt": "5.10.3"
},
"author": "NorthernMan54",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/NorthernMan54/homebridge-alexa/issues"
},
"homepage": "https://github.com/NorthernMan54/homebridge-alexa#readme",
"jest": {
"testEnvironment": "node",
"modulePathIgnorePatterns": [],
"coverageReporters": [
"lcov"
],
"collectCoverageFrom": [
"src/**"
]
}
}