-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 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
{
"name": "@betaorbust/github-loppers",
"version": "2.0.0",
"description": "List or delete local squash-merged git branches. Cleans up that Github mess!",
"type": "module",
"bin": {
"github-loppers": "node --experimental-strip-types ./src/index.ts"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=22.6.0"
},
"scripts": {
"run": "node --experimental-strip-types ./src/index.ts",
"check": "eslint ./src --ext .ts && tsc",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/betaorbust/github-loppers.git"
},
"keywords": [
"github",
"squashed",
"branch",
"clean"
],
"author": "Jacques Favreau (@betaorbust)",
"license": "Hippocratic-3.0",
"bugs": {
"url": "https://github.com/betaorbust/github-loppers/issues"
},
"homepage": "https://github.com/betaorbust/github-loppers#readme",
"dependencies": {
"@clack/prompts": "^1.0.0",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^24.0.10",
"chalk": "^5.6.2",
"simple-git": "^3.30.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^9.30.1",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
}
}