-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 1.01 KB
/
package.json
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
{
"_comment": "this project is not a node.js one, package.json is just used to define some metadata",
"scripts": {
"cm": "git cz",
"secrets": "gitleaks --verbose -c .gitleaks.toml -p .",
"release": "npx semantic-release --no-ci",
"release-debug": "npx semantic-release --dry-run --no-ci --debug"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "16.0.1",
"@commitlint/config-conventional": "16.0.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/gitlab": "7.0.4",
"@semantic-release/release-notes-generator": "10.0.3",
"commitizen": "4.2.4",
"semantic-release": "18.0.1"
}
}