-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 1.06 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
{
"name": "mqtt-payload-processor",
"version": "3.1.2",
"description": "Custom Home Assistant component that converts MQTT message payloads to events and callback functions for consumption in automations. Can be used to assign schedule-based actions to remote controls or button wall panels.",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"release": "standard-version -a"
},
"repository": {
"type": "git",
"url": "https://github.com/danobot/mqtt_payload_processor"
},
"author": "Daniel Mason",
"license": "GNU General Public License v3.0",
"devDependencies": {
"replace-in-file": "^3.4.3",
"semantic-release": "^15.13.3",
"standard-version": "^4.4.0",
"update-json-file": "^1.1.1"
},
"standard-version": {
"scripts": {
"precommit": "node postbump.js; git add custom_components/processor/__init__.py; git add custom_components/processor/manifest.json; git add package.json; git add custom_components/processor/mqtt_code.py; git add custom_components/processor/yaml_scheduler.py"
}
}
}