forked from homebridge/homebridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.61 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
{
"name": "homebridge",
"description": "HomeKit support for the impatient",
"version": "1.2.5",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "Apache-2.0",
"author": "Nick Farina",
"maintainers": [
"oznu <[email protected]>",
"Andreas Bauer <[email protected]>"
],
"scripts": {
"dev": "DEBUG=* ./bin/homebridge -D -P example-plugins/ || true",
"lint": "eslint 'src/**/*.{js,ts,json}'",
"build": "npm run clean && tsc",
"test": "jest",
"clean": "rimraf lib/",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean"
},
"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.0",
"commander": "5.1.0",
"hap-nodejs": "~0.8.5",
"node-persist": "^0.0.11",
"qrcode-terminal": "^0.12.0",
"semver": "^7.3.2",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.13",
"@types/node": "10.17.32",
"@types/semver": "^7.3.3",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-plugin-jest": "^24.0.1",
"jest": "^26.4.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}