-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.49 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.49 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "git-merged-branches",
"type": "module",
"version": "0.4.0",
"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"
},
"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.13.0"
},
"scripts": {
"build": "tsdown",
"test": "vitest --run",
"lint:ts": "tsc --noEmit",
"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": "^25.2.3",
"commit-and-tag-version": "^12.6.1",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"neostandard": "^0.12.2",
"publint": "^0.3.17",
"tsdown": "^0.20.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"pnpm": {
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@^1",
"array.prototype.findlast": "npm:@nolyfill/array.prototype.findlast@^1",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@^1",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@^1",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@^1",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@^1",
"hasown": "npm:@nolyfill/hasown@^1",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"isarray": "npm:@nolyfill/isarray@^1",
"object-keys": "npm:@nolyfill/object-keys@^1",
"object.assign": "npm:@nolyfill/object.assign@^1",
"object.entries": "npm:@nolyfill/object.entries@^1",
"object.fromentries": "npm:@nolyfill/object.fromentries@^1",
"object.values": "npm:@nolyfill/object.values@^1",
"safe-buffer": "npm:@nolyfill/safe-buffer@^1",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1",
"string.prototype.repeat": "npm:@nolyfill/string.prototype.repeat@^1",
"typedarray": "npm:@nolyfill/typedarray@^1"
}
}
}