-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·82 lines (82 loc) · 2.03 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
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
82
{
"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": "airly-model_b-en-US/airly-model_b-en-US.bin",
"label": "airly-model_b-en-US.bin"
},
{
"path": "airly-model_m-en-US/airly-model_m-en-US.bin",
"label": "airly-model_m-en-US.bin"
},
{
"path": "airly-model_b-ru-RU/airly-model_b-ru-RU.bin",
"label": "airly-model_b-ru-RU.bin"
},
{
"path": "airly-model_m-ru-RU/airly-model_m-ru-RU.bin",
"label": "airly-model_m-ru-RU.bin"
},
{
"path": "airly-model_b-uk-UA/airly-model_b-uk-UA.bin",
"label": "airly-model_b-uk-UA.bin"
},
{
"path": "airly-model_m-uk-UA/airly-model_m-uk-UA.bin",
"label": "airly-model_m-uk-UA.bin"
}
]
}
]
],
"branches": [
"master",
"next",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
},
"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"
}
}