forked from BewhiskeredBard/homebridge-alexa-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.75 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
{
"name": "homebridge-alexa-player",
"version": "0.5.2",
"description": "A Homebridge plugin that enables basic smart speaker HomeKit integration for Alexa devices (Echo, FireTV, etc.).",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"config.schema.json"
],
"scripts": {
"test": "jest",
"lint": "eslint . --ext .ts",
"precompile": "rm -rf lib/*",
"compile": "tsc",
"generateConfigSchema": "ts-node ./scripts/generateConfigSchema.ts",
"prepare": "run-s lint compile generateConfigSchema test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BewhiskeredBard/homebridge-alexa-player.git"
},
"keywords": [
"homebridge-plugin",
"homebridge",
"homekit",
"alexa",
"echo"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/BewhiskeredBard/homebridge-alexa-player/issues"
},
"homepage": "https://github.com/BewhiskeredBard/homebridge-alexa-player#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/BewhiskeredBard"
}
],
"engines": {
"homebridge": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/node": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.0.0",
"homebridge": "^1.3.1",
"jest": "^27.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"ts-jest": "^27.0.0",
"ts-node": "^10.2.0",
"typescript": "^4.0.5",
"typescript-json-schema": "^0.51.0"
},
"dependencies": {
"ajv": "^8.0.5",
"alexa-remote2": "^3.3.1"
}
}