forked from dgreif/homebridge-mylink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
{
"name": "homebridge-mylink",
"version": "1.3.0",
"description": "Somfy myLink plugin for Homebridge.",
"license": "MIT",
"keywords": [
"homebridge-plugin",
"somfy",
"mylink"
],
"homepage": "https://github.com/yungsters/homebridge-mylink",
"bugs": {
"url": "http://github.com/yungsters/homebridge-mylink/issues"
},
"author": "Timothy Yung <[email protected]>",
"main": "lib/index.js",
"repository": "yungsters/homebridge-mylink",
"scripts": {
"test": "eslint '**/*.ts'",
"lint": "eslint '**/*.ts' --fix",
"prettier": "prettier **/*.ts --write",
"build": "rm -rf lib && tsc",
"test-homebridge": "npm run build && homebridge -P . -U ./.homebridge",
"push-with-tags": "git push --follow-tags",
"deploy": "standard-version && npm publish && npm run push-with-tags",
"deploy-beta": "standard-version --prerelease beta && npm publish --tag alpha && npm run push-with-tags"
},
"engines": {
"homebridge": ">=1",
"node": ">=12"
},
"devDependencies": {
"@types/node": "14.14.19",
"@typescript-eslint/eslint-plugin": "4.11.1",
"@typescript-eslint/parser": "4.11.1",
"conventional-github-releaser": "3.1.5",
"dotenv": "8.2.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-prettier": "3.3.0",
"homebridge": "1.1.7",
"homebridge-config-ui-x": "4.36.0",
"prettier": "^2.2.1",
"standard-version": "9.1.0",
"typescript": "4.1.3"
},
"dependencies": {
"somfy-synergy": "^1.4.0"
},
"files": [
"CHANGELOG.md",
"config.schema.json",
"lib"
]
}