add project info to package.json

main
Yanick Champoux 2023-05-16 11:36:13 -04:00
parent c8fb899d0d
commit edfaf81b14
1 changed files with 9 additions and 1 deletions

View File

@ -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"
},