-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.35 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "git-merged-branches",
"type": "module",
"version": "0.5.1",
"description": "CLI tool to list all Git branches merged into a base branch with issue link formatting",
"author": {
"name": "VChet",
"url": "https://github.com/VChet"
},
"packageManager": "pnpm@11.22.0",
"license": "MIT",
"homepage": "https://github.com/VChet/git-merged-branches#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/VChet/git-merged-branches.git"
},
"bugs": {
"url": "https://github.com/VChet/git-merged-branches/issues"
},
"keywords": [
"git",
"cli",
"branch",
"issue-tracker"
],
"bin": {
"git-merged-branches": "dist/index.mjs",
"gmb": "dist/index.mjs"
},
"files": [
"LICENSE.md",
"README.md",
"dist/"
],
"engines": {
"node": ">=22.18.0"
},
"scripts": {
"build": "tsdown",
"test": "vitest --run",
"lint:ts": "tsc",
"lint:js": "eslint .",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:all": "npm run lint:ts && npm run lint:js",
"release": "commit-and-tag-version"
},
"devDependencies": {
"@types/node": "^26.2.0",
"commit-and-tag-version": "^13.1.2",
"eslint": "^10.8.1",
"neostandard": "0.14.0-next.1",
"publint": "^0.3.23",
"tsdown": "^0.22.14",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
}
}