-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
executable file
·95 lines (95 loc) · 2.28 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "homebridge-homematic",
"version": "0.2.226",
"description": "Homematic plugin for homebridge: https://github.com/nfarina/homebridge",
"license": "ISC",
"keywords": [
"homebridge-plugin"
],
"repository": {
"type": "git",
"url": "git://github.com/thkl/homebridge-homematic.git"
},
"engines": {
"node": ">=4.5.0",
"homebridge": ">=0.2.0"
},
"dependencies": {
"binrpc": "latest",
"homematic-xmlrpc": ">=1.0.1",
"debug": "^4.0.0",
"semver": "7.1.2",
"moment": "^2.18.1",
"ip": "^1.1.3",
"google-auth-library": "5.9.2",
"googleapis": "47.0.0",
"fakegato-history": "0.5.6",
"sprintf-js": "^1.0.3"
},
"devDependencies": {
"assert": "1.5.0",
"chalk": "latest",
"mocha": "^7.0.1",
"release-it": "^12.4.3",
"standard": "^12.0.1"
},
"scripts": {
"test": "mocha",
"release": "release-it"
},
"mocha": {
"bail": true,
"reporter": "spec",
"recursive": true
},
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
],
"ignore": [
"google_drive.js",
"characteristic-mock.js",
"user-mock.js"
]
},
"files": [
"ChannelServices/",
"README.md",
"CHANGELOG.md",
"HomeMaticServiceClassLoader.js",
"HomeMaticRegaRequest.js",
"HomeMaticRegaRequestTestDriver.js",
"HomeMaticRPC.js",
"HomeMaticRPCTestDriver.js",
"HomeMaticCacheManager.js",
"index.js",
"internalconfig.json",
"package.json",
"config.schema.json"
],
"auto-changelog": {
"startingCommit": "0a659bf6f555eba6efa1b7a3f5cb32c45e210a2b",
"template": "changelog-template.hbs",
"ignoreCommitPattern": "worked|no message",
"unreleased": true,
"issuePattern": "[Ff]ixed ([A-Z]+-\\d+)"
},
"release-it": {
"hooks": {
"before:release": "npx auto-changelog --commit-limit false https://raw.githubusercontent.com/thkl/homebridge-homematic/master/changelog-template.hbs"
},
"git": {
"changelog": "npx auto-changelog --stdout --commit-limit false --unreleased --template https://raw.githubusercontent.com/thkl/homebridge-homematic/master/changelog-template.hbs"
},
"npm": {
"publish": true
}
}
}