-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 1015 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
32
33
{
"name": "ggircs-app",
"version": "1.18.1",
"description": "GGIRCS: Greenhouse Gas Industrial Reporting and Control System. Data schema for the data extracted from the SWRS, and a small app to access the raw data and attachments from the SWRS extracts.",
"repository": "https://github.com/bcgov/cas-ggircs",
"author": "[email protected]",
"license": "Apache-2.0",
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"release-it": "^17.1.1"
},
"release-it": {
"npm": {
"publish": false
},
"git": {
"commitMessage": "chore: release v${version}"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
},
"hooks": {
"before:bump": [
"npm --prefix ggircs-app/app version v${version}",
"sqitch tag ${version} -m 'release v${version}'",
"sqitch --chdir ggircs-app/schema tag ${version} -m 'release v${version}'"
]
}
}
}