-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.34 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
{
"name": "harvest-time-tracker",
"version": "1.0.0",
"description": "Home Assistant integration for interacting with Harvest Time Tracker",
"main": "index.js",
"scripts": {
"build": "tsc ./.build/*.ts --noEmit",
"commit": "cz",
"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-HarvestTimeTracker.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BottlecapDave/HomeAssistant-HarvestTimeTracker/issues"
},
"homepage": "https://github.com/BottlecapDave/HomeAssistant-HarvestTimeTracker#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": "^4.0.0",
"cz-customizable": "^7.0.0",
"husky": "^4.3.8",
"semantic-release": "^21.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}