-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
30 lines (30 loc) · 1.12 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
{
"name": "entity-controller",
"version": "9.7.6",
"description": "Entity Controller (EC) is an implementation of 'When This, Then That' using a finite state machine that ensures basic automations do not interfere with the rest of your home automation setup. This component encapsulates common automation scenarios into a neat package that can be configured easily and reused throughout your home.",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "pytest ./tests/test_lightingsm.py",
"release": "standard-version -a"
},
"repository": {
"type": "git",
"url": "https://github.com/danobot/entity-controller"
},
"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/entity_controller/__init__.py; git add custom_components/entity_controller/manifest.json; git add package.json "
}
}
}