-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 906 Bytes
/
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
{
"name": "cas-registration",
"version": "1.13.0",
"main": "index.js",
"repository": "https://github.com/bcgov/cas-registration.git",
"author": "[email protected]",
"license": "Apache-2.0",
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"release-it": "^17.3.0"
},
"release-it": {
"npm": {
"publish": false
},
"git": {
"commitMessage": "chore: release v${version}"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
},
"hooks": {
"before:bump": "RELEASE_VERSION=$(echo ${version} | tr '.' '_'); cd bc_obps && poetry run python manage.py create_empty_migrations $RELEASE_VERSION && git add **/migrations/*.py",
"before:git:beforeRelease": "./.bin/pre-commit-format.sh CHANGELOG.md"
}
},
"packageManager": "[email protected]"
}