-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 875 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 875 Bytes
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
{
"name": "@coveritlabs/git-hooks",
"version": "1.0.0",
"description": "Shared Git hook scripts for CoveritLabs repositories",
"type": "module",
"bin": {
"coverit-validate-branch": "./packages/git-hooks/scripts/validate-branch.mjs",
"coverit-validate-commit-msg": "./packages/git-hooks/scripts/validate-commit-msg.mjs",
"coverit-add-license-header": "./packages/git-hooks/scripts/add-license-header.mjs"
},
"files": [
"packages/git-hooks/scripts/"
],
"repository": {
"type": "git",
"url": "https://github.com/CoveritLabs/.github.git"
},
"dependencies": {
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@commitlint/cz-commitlint": "^20.4.3",
"commitizen": "^4.3.1"
},
"license": "UNLICENSED",
"private": true
}