-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.41 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.41 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
{
"name": "laravel-blog-api",
"version": "1.0.0",
"description": "Laravel Blog API with semantic commits and automated releases",
"private": true,
"scripts": {
"commit": "cz",
"prepare": "husky",
"lint:commit": "commitlint --from HEAD~1 --to HEAD --verbose",
"release": "release-please --debug"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.0.1",
"husky": "^9.1.7",
"release-please": "^17.1.3"
},
"overrides": {
"tmp": "^0.2.4",
"external-editor": "^3.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"feat",
"fix",
"docs",
"style",
"refactor",
"test",
"chore",
"perf",
"ci",
"build",
"revert"
]
],
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case",
"upper-case"
]
],
"subject-max-length": [
2,
"always",
72
],
"body-max-line-length": [
2,
"always",
100
]
}
}
}