-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.5 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
{
"name": "@binden/commitlint-config",
"version": "3.0.0",
"description": "Shareable commitlint config (based on commitlint/config-conventional)",
"main": "commitlint.config.mjs",
"type": "module",
"types": "index.d.ts",
"engines": {
"node": ">=24.14.1",
"npm": ">=11.11.0"
},
"scripts": {
"commitlint": "commitlint --verbose --from=$( git rev-list --max-parents=0 $( git rev-parse --abbrev-ref HEAD ) )",
"install:clean": "npm install",
"preinstall:clean": "rm -rf node_modules package-lock.json",
"prepare": "husky",
"prettier": "prettier -c .",
"prettier:write": "npm run prettier -- --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binden-js/commitlint-config.git"
},
"keywords": [
"commitlint",
"commitlintconfig",
"binden"
],
"author": "Sergey Bakulin <sergey.bakulin.github@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/binden-js/commitlint-config/issues"
},
"homepage": "https://github.com/binden-js/commitlint-config#readme",
"peerDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0"
},
"devDependencies": {
"@binden/semantic-release-config": "^3.0.4",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"prettier": "^3.8.4"
},
"publishConfig": {
"access": "public"
},
"funding": {
"type": "Coinbase Commerce",
"url": "https://commerce.coinbase.com/checkout/eddfb0f7-20e7-4e0d-8e04-232bbdf0b397"
}
}