forked from homebridge/homebridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.85 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
{
"name": "homebridge",
"description": "HomeKit support for the impatient",
"version": "1.6.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": {
"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": "http://github.com/homebridge/homebridge/issues"
},
"bin": {
"homebridge": "bin/homebridge"
},
"engines": {
"node": ">=10.17.0"
},
"files": [
"README.md",
"config-sample.json",
"LICENSE",
"lib",
"bin"
],
"preferGlobal": true,
"dependencies": {
"chalk": "^4.1.2",
"commander": "5.1.0",
"fs-extra": "^10.1.0",
"hap-nodejs": "~0.11.0",
"qrcode-terminal": "^0.12.0",
"semver": "^7.3.7",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/node": "10.17.60",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-plugin-jest": "^25.7.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typedoc": "^0.22.15",
"typescript": "4.6.3"
}
}