forked from homebridge/homebridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.05 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
{
"name": "homebridge",
"description": "HomeKit support for the impatient",
"version": "1.8.1",
"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": {
"build": "npm run clean && tsc",
"check": "npm install && npm outdated",
"clean": "rimraf lib/",
"dev": "DEBUG=* ./bin/homebridge -D -P example-plugins/ || true",
"docs": "typedoc",
"lint": "eslint 'src/**/*.{js,ts,json}'",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "jest --forceExit --detectOpenHandles",
"test-coverage": "jest --coverage --forceExit --detectOpenHandles",
"watch": "nodemon"
},
"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": "12.0.0",
"fs-extra": "11.2.0",
"hap-nodejs": "0.12.0",
"qrcode-terminal": "0.12.0",
"semver": "7.6.0",
"source-map-support": "0.5.21"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/semver": "^7.5.8",
"@types/source-map-support": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-jest": "^28.3.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
}
}