-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
21 lines (21 loc) · 922 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": "metacity",
"displayName": "MetaCity Studio",
"private": true,
"version": "1.0.4",
"description": "",
"scripts": {
"version": "npm run version:changelog && npm run version:sync && git add -A",
"version:sync": "node scripts/sync-versions.js",
"version:changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s && code CHANGELOG.md --wait",
"release": "git switch release && git merge dev --ff-only && git push --follow-tags && git switch dev",
"release:patch": "git switch dev && git pull && npm version patch && git push && npm run release",
"release:minor": "git switch dev && git pull && npm version minor && git push && npm run release",
"release:major": "git switch dev && git pull && npm version major && git push && npm run release"
},
"devDependencies": {
"conventional-changelog-cli": "^5.0.0"
},
"author": "",
"license": "ISC"
}