forked from milo526/homebridge-tuya-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.76 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
{
"displayName": "TuyaWebPlatform",
"name": "@milo526/homebridge-tuya-web",
"version": "1.1.2",
"description": "Homebridge plugin for use with Tuya devices (uses Home Assistant Tuya Web API)",
"main": "dist/index.js",
"scripts": {
"build": "rimraf ./dist && tsc",
"lint": "eslint **/src/**/*.ts",
"prepublishOnly": "npm run lint && npm run build",
"prettier": "prettier --check .",
"release": "np",
"test": "ts-mocha test/**/*.spec.ts",
"watch": "npm run build && npm link && nodemon",
"clear-cache": "rimraf ~/.homebridge/accessories/cachedAccessories && rimraf ~/.homebridge/persist/*"
},
"keywords": [
"homebridge",
"homebridge-plugin",
"tuya",
"smartlife"
],
"author": "Milo Cesar <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12.22.7",
"homebridge": ">=1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/milo526/homebridge-tuya-web"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/milo526"
},
"bugs": {
"url": "https://github.com/milo526/homebridge-tuya-web/issues"
},
"dependencies": {
"axios": "^0.24.0",
"lodash.debounce": "^4.0.8"
},
"devDependencies": {
"@types/mocha": "^8.2.3",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"chai": "^4.3.4",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"homebridge": "^1.3.8",
"mocha": "^10.0.0",
"nodemon": "^2.0.15",
"np": "^7.6.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-mocha": "^8.0.0",
"ts-node": "^10.4.0",
"ts-xor": "^1.0.8",
"typescript": "^4.5.3"
}
}