-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 1.78 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
{
"name": "homebridge-mylink",
"version": "2.0.5",
"description": "Somfy myLink plugin for Homebridge.",
"license": "MIT",
"keywords": [
"homebridge-plugin",
"somfy",
"mylink"
],
"homepage": "https://github.com/dgreif/homebridge-mylink",
"bugs": {
"url": "https://github.com/dgreif/homebridge-mylink/issues"
},
"author": "dgreif <[email protected]>",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/dgreif/homebridge-mylink.git"
},
"scripts": {
"test": "eslint '**/*.ts'",
"lint": "eslint '**/*.ts' --fix",
"prettier": "prettier **/*.ts --write",
"build": "rm -rf lib && tsc",
"hb": "npm run build && homebridge -P . -U ./.homebridge",
"push-with-tags": "git push --follow-tags && node ./build/github-releaser.js",
"deploy": "standard-version && npm publish && npm run push-with-tags",
"deploy-beta": "standard-version --prerelease beta && npm publish --tag beta && npm run push-with-tags"
},
"standard-version": {
"scripts": {
"prerelease": "npm run build && npm test"
}
},
"engines": {
"homebridge": ">=1",
"node": ">=12"
},
"devDependencies": {
"@types/node": "16.9.2",
"@typescript-eslint/eslint-plugin": "4.31.1",
"@typescript-eslint/parser": "4.31.1",
"conventional-github-releaser": "3.1.5",
"dotenv": "10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"homebridge": "1.3.4",
"prettier": "^2.4.1",
"standard-version": "^9.3.1",
"typescript": "4.4.3"
},
"dependencies": {},
"files": [
"CHANGELOG.md",
"config.schema.json",
"lib"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/dgreif"
}
]
}