Skip to main content
Module

x/changelog/package.json

Node & Deno package to parse and generate changelogs
Go to Latest
File
{ "name": "keep-a-changelog", "description": "Node package to parse and generate changelogs following the [keepachangelog](http://keepachangelog.com/en/1.0.0/) format.", "homepage": "https://github.com/oscarotero/keep-a-changelog#readme", "version": "0.6.1", "main": "src/index.js", "bin": { "changelog": "bin.js" }, "directories": { "test": "test" }, "repository": { "type": "git", "url": "git+https://github.com/oscarotero/keep-a-changelog.git" }, "keywords": [ "changelog", "keepachangelog", "parser" ], "author": "Oscar Otero <oom@oscarotero.com>", "license": "MIT", "bugs": { "url": "https://github.com/oscarotero/keep-a-changelog/issues" }, "dependencies": { "gitconfiglocal": "^2.0.1", "semver": "^5.5.0", "yargs-parser": "^10.1.0" }, "devDependencies": { "mocha": "^5.2.0", "prettier": "^1.13.7" }, "scripts": { "prettier": "prettier src/*.js test/*.js bin.js --single-quote --tab-width 4 --write", "test": "mocha test", "changelog": "node example.js" }}