-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.82 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.82 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
77
78
79
80
81
{
"name": "@benhigham/commitlint-config",
"version": "1.0.0",
"description": "My personal commitlint configuration based on the Conventional Commits standard.",
"license": "MIT",
"homepage": "https://github.com/benhigham/commitlint-config#readme",
"bugs": {
"url": "https://github.com/benhigham/commitlint-config/issues/new"
},
"repository": {
"type": "git",
"url": "https://github.com/benhigham/commitlint-config.git"
},
"funding": "https://github.com/sponsors/benhigham",
"author": {
"name": "Ben Higham",
"url": "https://benhigham.com"
},
"type": "module",
"module": "./src/index.js",
"exports": "./src/index.js",
"sideEffects": false,
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.32.1",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"changeset": "changeset",
"changeset:status": "changeset status",
"version": "changeset version",
"release": "changeset publish"
},
"files": [
"src"
],
"keywords": [
"commitlint",
"changelog",
"check",
"checker",
"code",
"commit",
"config",
"consistency",
"convention",
"conventional-commits",
"enforce",
"format",
"git",
"lint",
"linter",
"message",
"quality",
"rules",
"semantic",
"standard",
"strict",
"style",
"styleguide",
"validate",
"verify",
"workflow"
],
"dependencies": {
"@commitlint/config-conventional": "^20.4.3",
"@commitlint/format": "^20.4.3"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.4.3",
"@commitlint/types": "^20.4.3",
"lefthook": "^2.1.3",
"prettier": "^3.8.1"
},
"peerDependencies": {
"@commitlint/cli": ">=20.0.0"
}
}