-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 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
{
"name": "commit-message-formatter",
"version": "1.0.4",
"type": "module",
"main": "src/script.ts",
"types": "src/script.ts",
"keywords": [
"commit",
"message",
"formatter",
"git",
"conventional",
"commits"
],
"author": "Gleb Fomin <gleb.fom28@gmail.com>",
"license": "ISC",
"description": "A tool to format commit messages based on specified patterns.",
"repository": {
"type": "git",
"url": "git+https://github.com/glebfomin28/commit-message-formatter.git"
},
"bugs": {
"url": "https://github.com/glebfomin28/commit-message-formatter/issues"
},
"homepage": "https://github.com/glebfomin28/commit-message-formatter#readme",
"scripts": {
"formatter": "esno src/script.ts",
"test": "jest"
},
"bin": {
"commit-message-formatter": "src/script.ts"
},
"dependencies": {
"cosmiconfig": "^9.0.0",
"esno": "^4.8.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"jest": "^29.7.0",
"jest-mock-process": "^2.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}