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