forked from milo526/homebridge-tuya-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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
{
"displayName": "TuyaWebPlatform",
"name": "@milo526/homebridge-tuya-web",
"version": "0.4.8",
"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",
"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": ">=10.17.0",
"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.19.2",
"lodash.debounce": "^4.0.8"
},
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"chai": "^4.2.0",
"eslint": "^7.3.1",
"homebridge": "^1.1.2",
"mocha": "^6.2.3",
"nodemon": "^2.0.4",
"np": "*",
"rimraf": "^3.0.2",
"ts-mocha": "^7.0.0",
"ts-node": "^8.10.2",
"ts-xor": "^1.0.8",
"typescript": "^3.9.5"
}
}