This repository has been archived by the owner on May 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
90 lines (90 loc) · 2.19 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
83
84
85
86
87
88
89
90
{
"name": "sentence-collector",
"version": "2.20.4",
"description": "A web console for collecting and validating sentences",
"repository": {
"type": "git",
"url": "https://github.com/Common-Voice/sentence-collector.git"
},
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"install:all": "cd server && npm ci && cd ../web && npm ci",
"release": "semantic-release",
"prepare": "husky install",
"pull-cv-translations": "./scripts/pull-common-voice-translations-local.sh",
"cleanup-cv-files": "git checkout locales && git clean -fxd web/locales && git checkout web/locales"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"husky": "^7.0.4",
"semantic-release": "^19.0.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0,
"always"
],
"footer-max-line-length": [
0,
"always"
],
"footer-leading-blank": [
0,
"always"
]
}
},
"release": {
"ci": false,
"branches": [
"main"
],
"repositoryUrl": "[email protected]:Common-Voice/sentence-collector.git",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json"
],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"failComment": false,
"failTitle": false,
"releasedLabels": false
}
]
]
}
}