changelord.js/package.json

28 lines
586 B
JSON
Raw Normal View History

2023-05-05 14:56:30 +00:00
{
"name": "changelord",
"version": "0.0.1",
"description": "cli-based changelog manager",
2023-05-10 14:28:23 +00:00
"type": "module",
"main": "src/index.js",
"bin": {
"changelord": "./src/changelord.js"
},
2023-05-05 14:56:30 +00:00
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"changelog"
],
"author": "Yanick Champoux <yanick@babyl.ca> (http://techblog.babyl.ca/)",
"license": "ISC",
"dependencies": {
2023-05-10 14:28:23 +00:00
"consola": "^3.1.0",
"fs-extra": "^11.1.1",
"yaml": "^2.2.2",
2023-05-05 14:56:30 +00:00
"yargs": "^17.7.2"
2023-05-10 14:28:23 +00:00
},
"devDependencies": {
"prettier": "^2.8.8"
2023-05-05 14:56:30 +00:00
}
}