forked from marcelkordek/homebridge-harman-kardon-avr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.86 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
{
"name": "homebridge-harman-kardon-avr",
"version": "2.2.5",
"description": "control harman kardon avr for homebridge: https://github.com/nfarina/homebridge",
"main": "index.js",
"engines": {
"homebridge": "^1.1.0",
"node": "^14.15.0"
},
"dependencies": {
"tcp-ping": "^0.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcelkordek/homebridge-harman-kardon-avr.git"
},
"keywords": [
"homebridge",
"plugin",
"homebridge-plugin",
"harman kardon",
"avr"
],
"author": "Marcel Kordek",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcelkordek/homebridge-harman-kardon-avr/issues"
},
"homepage": "https://github.com/marcelkordek/homebridge-harman-kardon-avr#readme",
"devDependencies": {
"auto-changelog": "^1.16.4",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^1.19.1"
},
"scripts": {
"push": "git push",
"push:version": "npm version patch && git push",
"publish:patch": "npm version patch && git push && npm publish",
"publish:minor": "npm version minor && git push && npm publish",
"publish:major": "npm version major && git push && npm publish",
"prepublish": "npm run lint",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ignore-path .gitignore .",
"prettier": "prettier --single-quote --trailing-comma es5 --print-width 80 --write --no-bracket-spacing **/*.js",
"version": "auto-changelog -p -u --template keepachangelog --commit-limit false && git add CHANGELOG.md",
"prepush": "auto-changelog -p -u --template keepachangelog --commit-limit false && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'"
}
}