-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
21 lines (21 loc) · 965 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "kuksa-android-companion",
"version": "0.1.0",
"main": "index.js",
"repository": "https://github.com/eclipse-kuksa/kuksa-android-companion.git",
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"husky": "^8.0.3",
"commit-and-tag-version": "^12.0.0"
},
"scripts": {
"postinstall": "husky install",
"tag-release": "npx commit-and-tag-version --packageFiles version.txt -t release/v --skip.commit=true --skip.changelog=true --skip.bump=true",
"commit-release": "npx commit-and-tag-version --packageFiles version.txt -t release/v --skip.tag=true",
"bump-release": "npx commit-and-tag-version --packageFiles version.txt -t release/v --skip.tag=true --skip.commit=true",
"generate-changelog": "npx commit-and-tag-version --packageFiles version.txt -t release/v --skip.bump=true --skip.commit=true --skip.tag=true"
}
}