-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "homebridge-http-base",
"version": "2.1.14",
"description": "Base and utils for homebridge-http devices",
"license": "ISC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Supereg/homebridge-http-switch"
},
"bugs": {
"url": "https://github.com/Supereg/homebridge-http-switch/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "./node_modules/rimraf/bin.js dist",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "jest"
},
"engines": {
"node": ">=10.17.0"
},
"dependencies": {
"request": "^2.88.2",
"async": "^3.2.4",
"mqtt": "^4.3.7"
},
"devDependencies": {
"@types/async": "^3.2.15",
"@types/jest": "^27.5.2",
"@types/node": "^10.17.60",
"@types/request": "^2.48.8",
"@types/ws": "^8.5.3",
"chalk": "^4.1.2",
"hap-nodejs": "^0.10.4",
"jest": "^27.5.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}