forked from ronniepettersson/homebridge-remootio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.85 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
68
{
"name": "homebridge-remootio",
"version": "1.3.10",
"description": "Homebridge plugin for Remootio devices",
"main": "dist/index.js",
"scripts": {
"build": "rimraf ./dist && tsc",
"clean": "rimraf ./dist",
"format": "prettier --write 'src/**/*.ts' ",
"lint": "eslint src/**.ts --quiet --fix",
"prepare": "npm run build",
"postpublish": "npm run clean",
"prepublishOnly": "npm run lint && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npm run build && npm link && nodemon"
},
"files": [
"LICENSE",
"dist",
"config.schema.json"
],
"keywords": [
"homebridge-plugin",
"homebridge-remootio",
"Remootio",
"Homebridge"
],
"engines": {
"homebridge": "^1.7.0",
"node": "^16.20.2 || ^18.20.4 || ^20.15.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ronniepettersson/homebridge-remootio.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Ronnie Pettersson",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ronniepettersson/homebridge-remootio/issues"
},
"homepage": "https://github.com/ronniepettersson/homebridge-remootio#readme",
"preferGlobal": true,
"dependencies": {
"@ronniepettersson/remootio-api-client": "^2.0.10"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"homebridge": "^1.7.0",
"prettier": "^2.8.3",
"rimraf": "^4.0.7",
"typescript": "^4.9.4"
},
"overrides": {
"optimist": {
".": "^0.6.1",
"minimist": "^1.2.6"
},
"put": "https://registry.npmjs.org/@ronniepettersson/put/-/put-1.1.0.tgz"
}
}