forked from danobot/entity-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 870 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 870 Bytes
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": "entity-timer",
"version": "4.1.0",
"description": "This implementation of motion activated lighting implements a finite state machine to ensure that `MotionLight`s do not interfere with the rest of your home automation setup.",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "pytest ./tests/test_lightingsm.py",
"release": "standard-version -a"
},
"repository": {
"type": "git",
"url": "https://gitlab.danielha.tk/HA/appdaemon-motion-lights.git"
},
"author": "Daniel Mason",
"license": "MIT",
"devDependencies": {
"semantic-release": "^15.13.3",
"standard-version": "^4.4.0",
"replace-in-file": "^3.4.3"
},
"standard-version": {
"scripts": {
"precommit": "node postbump.js; git add tracker.json custom_components/entity_controller/__init__.py "
}
}
}