-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.95 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.95 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
80
81
82
83
{
"name": "git-shrink",
"version": "1.2.1",
"description": "Semantic git history compressor — intelligently squashes bloated commit histories by grouping related commits across file proximity, message similarity, time windows, and branch origin.",
"main": "src/index.js",
"bin": {
"git-shrink": "./src/index.js"
},
"scripts": {
"start": "node src/index.js",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"lint": "eslint src/",
"test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"release:patch": "standard-version --release-as patch"
},
"jest": {
"transform": {},
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.js"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js"
],
"coverageReporters": [
"text",
"lcov"
],
"coverageThresholds": {
"global": {
"branches": 70,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"keywords": [
"git",
"rebase",
"squash",
"commit",
"history",
"cli",
"devtools"
],
"author": "santoshkumar-in",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^5.3.0",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"cosmiconfig": "^9.0.0",
"fastest-levenshtein": "^1.0.16",
"inquirer": "^9.2.12",
"ora": "^8.0.1",
"simple-git": "^3.21.0"
},
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@jest/globals": "^30.2.0",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"jest": "^30.2.0",
"standard-version": "^9.5.0"
},
"files": [
"index.js",
"src/",
"README.md"
]
}