-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 1.98 KB
/
package.json
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
{
"name": "catalog-be",
"version": "0.2.3",
"description": "only used for versioning",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "release-it"
},
"keywords": [],
"author": "",
"license": "MIT",
"release-it": {
"git": {
"commitMessage": "chore: release v${version}",
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "🔥 Features"
},
{
"type": "fix",
"section": "🪲 Bug Fixes"
},
{
"type": "docs",
"section": "📝 Documentation"
},
{
"type": "refactor",
"section": "📝 Refactors"
},
{
"type": "perf",
"section": "⚡ Performance Improvements"
},
{
"type": "test",
"section": "🧪 Tests"
},
{
"type": "build",
"section": "🛠️ Build System"
},
{
"type": "ci",
"section": "🏃 Continuous Integration"
}
]
},
"infile": "CHANGELOG.md",
"header": "# Changelog\n\nAll notable changes to this project will be documented in this file. See [Conventional Commits](https://www.conventionalcommits.org) for commit guidelines."
}
}
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@release-it/conventional-changelog": "^8.0.1",
"husky": "^9.0.11",
"release-it": "^17.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/comimafun/catalog-api"
}
}