changelord.js/package.json

48 lines
1.1 KiB
JSON
Raw Normal View History

2023-05-05 14:56:30 +00:00
{
"name": "changelord",
2023-05-18 20:09:50 +00:00
"version": "0.2.0",
2023-05-05 14:56:30 +00:00
"description": "cli-based changelog manager",
2023-05-10 14:28:23 +00:00
"type": "module",
2023-05-16 15:36:13 +00:00
"main": "src/changelord.js",
2023-05-10 14:28:23 +00:00
"bin": {
"changelord": "./src/changelord.js"
},
2023-05-16 15:36:13 +00:00
"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",
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-18 18:48:47 +00:00
"@sindresorhus/slugify": "^2.2.1",
2023-05-10 19:30:51 +00:00
"@yanick/updeep-remeda": "^2.2.0",
2023-05-18 18:04:51 +00:00
"ajv": "^8.12.0",
2023-05-10 14:28:23 +00:00
"consola": "^3.1.0",
2023-05-18 18:48:47 +00:00
"filenamify": "^6.0.0",
2023-05-10 14:28:23 +00:00
"fs-extra": "^11.1.1",
"globby": "^13.1.4",
2023-05-10 18:36:56 +00:00
"markdown-utils": "^1.0.0",
2023-05-18 18:48:47 +00:00
"nanoid": "^4.0.2",
2023-05-10 18:36:56 +00:00
"remeda": "^1.14.0",
2023-05-10 20:46:53 +00:00
"semver": "^7.5.0",
"simple-git": "^3.18.0",
2023-05-10 14:28:23 +00:00
"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": {
2023-05-10 18:36:56 +00:00
"prettier": "^2.8.8",
"typescript": "^5.0.4",
2023-05-10 18:36:56 +00:00
"vitest": "^0.31.0"
2023-05-05 14:56:30 +00:00
}
}