-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.85 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.85 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
{
"name": "hafnium",
"version": "2.14.0",
"license": "BSD-3-Clause",
"type": "module",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"release": "commit-and-tag-version"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"commit-and-tag-version": "^12.6.0",
"conventional-changelog-conventionalcommits": "^9.1.0"
},
"commit-and-tag-version": {
"header": "# Change Log & Release Notes\n\nThis document contains a summary of the new features, changes, fixes and known\nissues in each release of Hafnium.\n",
"infile": "docs/change-log.md",
"skip": {
"commit": true,
"tag": true
},
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "refactor",
"section": "Code Refactoring"
},
{
"type": "test",
"section": "Tests & Framework"
},
{
"type": "build",
"section": "Build & CI"
},
{
"type": "ci",
"section": "Build & CI"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "chore",
"section": "Maintenance & Chores"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "style",
"section": "Code Style"
}
],
"commitUrlFormat": "https://review.trustedfirmware.org/plugins/gitiles/hafnium/hafnium/+/{{hash}}",
"compareUrlFormat": "https://review.trustedfirmware.org/plugins/gitiles/hafnium/hafnium/+/refs/tags/{{previousTag}}..refs/tags/{{currentTag}}",
"userUrlFormat": "https://github.com/{{user}}"
}
}