aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-04-29 12:27:43 -0700
committerFuwn <[email protected]>2021-04-29 12:27:43 -0700
commitc3af12c0969d5e488a116e44ced4cbf8857a4299 (patch)
treea2f589f7a7f72d7a76d4c430ea8cd8342112393c /package.json
parentfmt: Increase verbosity of database migrations (diff)
downloadwhirl-c3af12c0969d5e488a116e44ced4cbf8857a4299.tar.xz
whirl-c3af12c0969d5e488a116e44ced4cbf8857a4299.zip
chore(devops): setup commit-linting, commit-helper, and quality-of-life scripts
Diffstat (limited to 'package.json')
-rw-r--r--package.json25
1 files changed, 24 insertions, 1 deletions
diff --git a/package.json b/package.json
index 8f0cff4..6b3a5bd 100644
--- a/package.json
+++ b/package.json
@@ -1 +1,24 @@
-{"devDependencies":{"husky":"6.0.0"},"scripts":{"prepare":"husky install"}}
+{
+ "name": "whirl",
+ "version": "0.1.0",
+ "description": "The Open-Source WorldServer",
+ "private": true,
+ "scripts": {
+ "prepare": "husky install",
+ "commit": "cz",
+ "commit:signed": "cz -S"
+ },
+ "devDependencies": {
+ "@commitlint/cli": "^12.1.1",
+ "@commitlint/config-conventional": "^12.1.1",
+ "commitizen": "^4.2.3",
+ "cz-conventional-changelog": "^3.3.0",
+ "husky": "6.0.0"
+ },
+ "config": {
+ "commitizen": {
+ "path": "./node_modules/cz-conventional-changelog",
+ "defaultScope": "global"
+ }
+ }
+}