forked from homebridge/homebridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.9 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
{
"name": "homebridge",
"description": "HomeKit support for the impatient",
"version": "1.7.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "Apache-2.0",
"author": "Nick Farina",
"maintainers": [
"oznu <dev@oz.nu>",
"Andreas Bauer <mail@anderl-bauer.de>"
],
"scripts": {
"check": "npm install && npm outdated",
"dev": "DEBUG=* ./bin/homebridge -D -P example-plugins/ || true",
"lint": "eslint 'src/**/*.{js,ts,json}'",
"build": "npm run clean && tsc",
"test": "jest --forceExit --detectOpenHandles",
"test-coverage": "jest --coverage --forceExit --detectOpenHandles",
"clean": "rimraf lib/",
"watch": "nodemon",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"docs": "typedoc src/index.ts"
},
"repository": {
"type": "git",
"url": "git://github.com/homebridge/homebridge.git"
},
"bugs": {
"url": "https://github.com/homebridge/homebridge/issues"
},
"bin": {
"homebridge": "bin/homebridge"
},
"engines": {
"node": "^18.15.0 || ^20.7.0"
},
"files": [
"README.md",
"config-sample.json",
"LICENSE",
"lib",
"bin"
],
"preferGlobal": true,
"dependencies": {
"chalk": "^4.1.2",
"commander": "^7.2.0",
"fs-extra": "^10.1.0",
"hap-nodejs": "~0.11.1",
"qrcode-terminal": "^0.12.0",
"semver": "^7.5.4",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@types/debug": "^4.1.10",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.5.7",
"@types/node": "^18.18.8",
"@types/semver": "^7.5.4",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"eslint-plugin-jest": "^27.6.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typescript": "^5.2.2"
}
}