From edfaf81b14c60eff23a6d786eb5df66d9e53bb59 Mon Sep 17 00:00:00 2001 From: Yanick Champoux Date: Tue, 16 May 2023 11:36:13 -0400 Subject: [PATCH] add project info to package.json --- package.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index ab0dd1d..05b5638 100644 --- a/package.json +++ b/package.json @@ -3,10 +3,18 @@ "version": "0.0.1", "description": "cli-based changelog manager", "type": "module", - "main": "src/index.js", + "main": "src/changelord.js", "bin": { "changelord": "./src/changelord.js" }, + "repository": { + "type": "git", + "url": "https://git.babyl.ca/yanick/changelord.js.git" + }, + "bugs": { + "url": "https://git.babyl.ca/yanick/changelord.js/issues" + }, + "homepage": "https://git.babyl.ca/yanick/changelord.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" },