git-watchtower 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "git-watchtower",
3
+ "version": "1.0.0",
4
+ "description": "Terminal-based Git branch monitor with activity sparklines and optional dev server with live reload",
5
+ "main": "bin/git-watchtower.js",
6
+ "bin": {
7
+ "git-watchtower": "bin/git-watchtower.js"
8
+ },
9
+ "scripts": {
10
+ "start": "node bin/git-watchtower.js",
11
+ "test": "node --test tests/unit/**/*.test.js tests/integration/**/*.test.js",
12
+ "test:unit": "node --test tests/unit/**/*.test.js",
13
+ "test:integration": "node --test tests/integration/**/*.test.js",
14
+ "test:watch": "node --test --watch tests/unit/**/*.test.js",
15
+ "test:coverage": "c8 --reporter=text --reporter=html --reporter=lcov node --test tests/unit/**/*.test.js tests/integration/**/*.test.js",
16
+ "test:coverage:text": "c8 --reporter=text node --test tests/unit/**/*.test.js tests/integration/**/*.test.js",
17
+ "test:coverage:html": "c8 --reporter=html node --test tests/unit/**/*.test.js tests/integration/**/*.test.js && echo 'Coverage report: coverage/index.html'",
18
+ "typecheck": "tsc --noEmit"
19
+ },
20
+ "devDependencies": {
21
+ "@types/node": "^22.0.0",
22
+ "c8": "^10.1.2",
23
+ "typescript": "^5.7.0"
24
+ },
25
+ "keywords": [
26
+ "git",
27
+ "branch",
28
+ "monitor",
29
+ "tui",
30
+ "terminal",
31
+ "dev-server",
32
+ "live-reload",
33
+ "cli",
34
+ "dashboard",
35
+ "sparklines"
36
+ ],
37
+ "author": "",
38
+ "license": "MIT",
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "https://github.com/drummel/git-watchtower"
42
+ },
43
+ "bugs": {
44
+ "url": "https://github.com/drummel/git-watchtower/issues"
45
+ },
46
+ "homepage": "https://github.com/drummel/git-watchtower#readme",
47
+ "engines": {
48
+ "node": ">=18.0.0"
49
+ },
50
+ "files": [
51
+ "bin/git-watchtower.js",
52
+ "README.md",
53
+ "LICENSE"
54
+ ]
55
+ }