-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
94 lines (94 loc) · 2.44 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "cookiecutter-wagtail-vix",
"version": "2024.07.19",
"description": "a minimal, batteries-included, reusable project skeleton to serve as a starting point for a Wagtail project",
"scripts": {
"test": "pytest",
"release": "commit-and-tag-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/engineervix/cookiecutter-wagtail-vix.git"
},
"keywords": [
"cookiecutter",
"wagtail",
"django",
"CMS"
],
"author": "Victor Miti",
"license": "MIT",
"bugs": {
"url": "https://github.com/engineervix/cookiecutter-wagtail-vix/issues"
},
"homepage": "https://github.com/engineervix/cookiecutter-wagtail-vix#readme",
"devDependencies": {
"commit-and-tag-version": "^12.4.1"
},
"commit-and-tag-version": {
"header": "# Changelog\n\nAll notable changes to this project will be documented here.\n\nThe format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project uses ~~[Semantic Versioning](https://semver.org/spec/v2.0.0.html)~~ [Calendar Versioning](https://calver.org/).\n",
"types": [
{
"type": "feat",
"section": "🚀 Features"
},
{
"type": "fix",
"section": "🐛 Bug Fixes"
},
{
"type": "docs",
"section": "📝 Docs",
"hidden": false
},
{
"type": "style",
"section": "💄 Styling",
"hidden": false
},
{
"type": "refactor",
"hidden": false,
"section": "♻️ Code Refactoring"
},
{
"type": "perf",
"section": "⚡️ Performance Improvements",
"hidden": false
},
{
"type": "test",
"section": "✅ Tests",
"hidden": false
},
{
"type": "build",
"section": "⚙️ Build System",
"hidden": false
},
{
"type": "ci",
"section": "👷 CI/CD",
"hidden": false
},
{
"type": "chore",
"section": "🚧 Others",
"hidden": true
},
{
"type": "revert",
"section": "⏪️ Reverts",
"hidden": true
}
],
"scripts": {
"prechangelog": "sed -e '1,6d' -i CHANGELOG.md",
"postchangelog": "sed -e 's/###\\ \\[/##\\ \\[v/g' -i CHANGELOG.md && sed -re 's/##\\ \\[([0-9])/##\\ \\[v\\1/g' -i CHANGELOG.md"
},
"engines": {
"node": ">= 22 <23",
"npm": ">= 10"
}
}
}