-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.23 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.23 KB
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
{
"name": "targettimeframes",
"version": "0.1.0",
"description": "Home Assistant integration for interacting with Target Timeframes",
"main": "index.js",
"scripts": {
"prepare": "husky || true",
"build": "tsc ./.build/*.ts --noEmit",
"release": "semantic-release",
"test-unit": "python -m pytest tests/unit",
"test-integration": "python -m pytest tests/integration",
"docs-serve": "python -m mkdocs serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BottlecapDave/homeassistant-targettimeframes.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BottlecapDave/homeassistant-targettimeframes/issues"
},
"homepage": "https://github.com/BottlecapDave/homeassistant-targettimeframes#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"commitizen": "^4.3.0",
"conventional-changelog-eslint": "^6.0.0",
"cz-customizable": "^7.1.0",
"husky": "9.1.7",
"semantic-release": "^24.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}