UNPKG

keep-a-changelog

Version:

Parse and generate changelogs following the [keepachangelog](https://keepachangelog.com/) format.

75 lines 1.95 kB
{ "name": "keep-a-changelog", "version": "3.0.4", "description": "Parse and generate changelogs following the [keepachangelog](https://keepachangelog.com/) format.", "type": "module", "repository": { "type": "git", "url": "git+https://github.com/oscarotero/keep-a-changelog.git" }, "keywords": [ "changelog", "keepachangelog", "parser" ], "author": "Oscar Otero <oom@oscarotero.com>", "homepage": "https://github.com/oscarotero/keep-a-changelog#readme", "license": "MIT", "bugs": { "url": "https://github.com/oscarotero/keep-a-changelog/issues" }, "bin": { "changelog": "./bin.js" }, "dependencies": { "ini": "6.0.0", "semver": "7.7.4" }, "exports": { ".": { "types": "./types/mod.d.ts", "import": "./mod.js", "default": "./mod.js" }, "./bin.js": { "types": "./types/bin.d.ts", "import": "./bin.js", "default": "./bin.js" }, "./mod.js": { "types": "./types/mod.d.ts", "import": "./mod.js", "default": "./mod.js" }, "./src/Change.js": { "types": "./types/src/Change.d.ts", "import": "./src/Change.js", "default": "./src/Change.js" }, "./src/Changelog.js": { "types": "./types/src/Changelog.d.ts", "import": "./src/Changelog.js", "default": "./src/Changelog.js" }, "./src/deps.js": { "types": "./types/src/deps.d.ts", "import": "./src/deps.js", "default": "./src/deps.js" }, "./src/parser.js": { "types": "./types/src/parser.d.ts", "import": "./src/parser.js", "default": "./src/parser.js" }, "./src/Release.js": { "types": "./types/src/Release.d.ts", "import": "./src/Release.js", "default": "./src/Release.js" }, "./src/settings.js": { "types": "./types/src/settings.d.ts", "import": "./src/settings.js", "default": "./src/settings.js" } } }