forked from homebridge/homebridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.56 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",
"description": "HomeKit support for the impatient",
"version": "1.1.1",
"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"
},
"author": {
"name": "Nick Farina"
},
"repository": {
"type": "git",
"url": "git://github.com/homebridge/homebridge.git"
},
"bugs": {
"url": "http://github.com/homebridge/homebridge/issues"
},
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"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.7.4",
"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/ip": "^1.1.0",
"@types/jest": "^26.0.0",
"@types/node": "10.17.18",
"@types/semver": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.2.0",
"eslint-plugin-jest": "^23.13.2",
"jest": "^26.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}