docs(changelog test): i test how to automate ChangeLog

This commit is contained in:
Mert Gör
2024-01-31 23:37:33 +03:00
parent 6dfce49cac
commit 57619fa0c1
4206 changed files with 206871 additions and 0 deletions

50
node_modules/cz-conventional-changelog/package.json generated vendored Normal file
View File

@@ -0,0 +1,50 @@
{
"name": "cz-conventional-changelog",
"version": "3.3.0",
"description": "Commitizen adapter following the conventional-changelog format.",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"test": "mocha *.test.js",
"format": "prettier --write *.js",
"semantic-release": "semantic-release"
},
"homepage": "https://github.com/commitizen/cz-conventional-changelog",
"repository": {
"type": "git",
"url": "https://github.com/commitizen/cz-conventional-changelog.git"
},
"engineStrict": true,
"engines": {
"node": ">= 10"
},
"author": "Jim Cummins <jimthedev@gmail.com>",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.1",
"commitizen": "^4.0.3",
"conventional-commit-types": "^3.0.0",
"lodash.map": "^4.5.1",
"longest": "^2.0.1",
"word-wrap": "^1.0.3"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"cosmiconfig": "^5.2.1",
"mocha": "^6.2.0",
"mock-require": "^3.0.3",
"prettier": "^1.15.3",
"semantic-release": "^15.13.3",
"semver": "^6.2.0"
},
"optionalDependencies": {
"@commitlint/load": ">6.1.1"
},
"config": {
"commitizen": {
"path": "./index.js"
}
}
}