-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·53 lines (53 loc) · 1.12 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"private": true,
"scripts": {
"postinstall": "is-ci || husky install",
"prepare": "is-ci || husky install"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.md": "markdownlint",
"*.{h,cc,cpp}": "clang-format --dry-run -Werror"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
{
"path": "Mhz19.zip",
"label": "Mhz19.zip"
}
]
}
]
],
"branches": [
"master"
]
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"clang-format": "^1.6.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.0",
"is-ci": "^3.0.1",
"lint-staged": "^12.1.2",
"markdownlint-cli": "^0.30.0",
"semantic-release": "^18.0.1"
}
}