-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.16 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
{
"name": "commitlint-presets",
"version": "2.2.0",
"description": "Commitlint presets.",
"scripts": {
"prepare": "is-ci || husky"
},
"files": [
"index.js"
],
"keywords": [
"commitlint-presets"
],
"homepage": "https://github.com/JonasSchubert/commitlint-presets",
"bugs": {
"url": "https://github.com/JonasSchubert/commitlint-presets/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/JonasSchubert/commitlint-presets.git"
},
"author": {
"name": "Jonas Schubert",
"email": "[email protected]",
"url": "https://github.com/JonasSchubert"
},
"contributors": [],
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.8.1 || ^20.0.0",
"@commitlint/config-conventional": "^19.8.1 || ^20.0.0",
"commitlint-presets": "file:./index.js",
"husky": "^9.1.7",
"is-ci": "^4.1.0"
},
"engines": {
"node": "^22.14.0 || ^23.10.0 || ^24.6.0",
"npm": "^10.9.2 || ^11.2.0",
"vscode": "^1.98.2"
},
"commitlint": {
"extends": [
"./index.js"
]
},
"release": {
"extends": "semantic-release-presets/presets/github/.releaserc.full.json"
}
}