UNPKG

manual-git-changelog

Version:

A simple tool for appending to a changelog based on git commits and tags.

95 lines (94 loc) 2.35 kB
{ "name": "manual-git-changelog", "version": "1.0.2", "description": "A simple tool for appending to a changelog based on git commits and tags.", "keywords": [ "changelog", "git", "tags", "simple", "manual" ], "main": "index.js", "typings": "index", "repository": "git@github.com:rubensworks/manual-git-changelog.js.git", "author": "Ruben Taelman <rubensworks@gmail.com>", "bugs": { "url": "https://github.com/rubensworks/manual-git-changelog.js/issues" }, "homepage": "https://github.com/rubensworks/manual-git-changelog.js#readme", "license": "MIT", "bin": { "manual-git-changelog": "./bin/cli.js" }, "files": [ "lib/**/*.d.ts", "lib/**/*.js", "bin/**/*.d.ts", "bin/**/*.js", "lib/**/*.js.map", "index.d.ts", "index.js.map", "index.js" ], "pre-commit": [ "build", "lint", "test" ], "devDependencies": { "@types/jest": "^26.0.0", "@types/minimist": "^1.2.0", "@types/node": "^13.1.0", "coveralls": "^3.0.0", "jest": "^26.0.0", "pre-commit": "^1.2.2", "stryker": "^0.35.0", "stryker-api": "^0.24.0", "stryker-jest-runner": "^1.2.1", "stryker-typescript": "^0.18.0", "ts-jest": "^26.0.0", "tslint": "^6.0.0", "tslint-eslint-rules": "^5.3.1", "typescript": "^4.0.0" }, "jest": { "globals": { "ts-jest": { "tsConfig": "test/tsconfig.json" } }, "transform": { "^.+\\.ts$": "ts-jest" }, "transformIgnorePatterns": [ "[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$" ], "testRegex": "(/test/.*|(\\.|/)(test|spec))\\.ts$", "moduleFileExtensions": [ "ts", "js", "json" ], "collectCoverage": true, "testEnvironment": "node" }, "scripts": { "test": "jest ${1}", "test-mutation": "stryker run", "test-watch": "jest ${1} --watch", "coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls", "lint": "tslint index.ts lib/**/*.ts test/**/*.ts --exclude '**/*.d.ts'", "build": "tsc", "validate": "npm ls", "prepare": "npm run build", "version": "./bin/cli.js onversion" }, "dependencies": { "arrayify-stream": "^1.0.0", "get-pkg-repo": "^4.0.0", "git-raw-commits": "^2.0.0", "git-semver-tags": "^4.0.0", "minimist": "^1.2.0" } }