forked from joeyhage/homebridge-alexa-smarthome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.07 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
{
"displayName": "Homebridge Alexa Smart Home",
"name": "homebridge-alexa-smarthome",
"version": "2.0.3",
"description": "Homebridge plugin that can control smart home devices connected to Alexa.",
"license": "MIT",
"author": "Joey Hage <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com:joeyhage/homebridge-alexa-smarthome.git"
},
"bugs": {
"url": "https://github.com/joeyhage/homebridge-alexa-smarthome/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/joeyhage"
},
"engines": {
"node": ">=14.18.1",
"homebridge": ">=1.3.5"
},
"main": "dist/index.js",
"scripts": {
"build": "rimraf ./dist && tsc -p tsconfig.prod.json",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"lint": "eslint src/**.ts --max-warnings=0",
"pre-commit": "lint-staged",
"prepare": "husky install",
"prepublishOnly": "npm run lint && npm run build",
"watch": "npm run build && npm link && nodemon",
"test": "jest --verbose --silent=false --runInBand",
"test-ci": "jest --verbose --silent=true --runInBand --testPathPattern='test.ts'",
"upgrade": "npm-check-updates --target minor --upgrade"
},
"keywords": [
"homebridge-plugin",
"homebridge",
"homekit",
"alexa",
"echo",
"smarthome"
],
"dependencies": {
"alexa-remote2": "^6.1.2",
"async-mutex": "^0.4.0",
"fp-ts": "^2.16.1",
"ts-pattern": "^4.3.0"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^18.17.14",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"dotenv": "^16.3.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"homebridge": "^1.6.1",
"husky": "^8.0.3",
"jest": "^29.6.4",
"lint-staged": "^13.3.0",
"nodemon": "^2.0.22",
"npm-check-updates": "^16.13.2",
"prettier": "^2.8.8",
"rimraf": "^4.4.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}