filtered-commit-analyzer
Version:
A semantic-release commit analyzer plugin that filters out commits according to your configuration.
101 lines (100 loc) • 2.4 kB
JSON
{
"name": "filtered-commit-analyzer",
"description": "A semantic-release commit analyzer plugin that filters out commits according to your configuration.",
"version": "0.0.1",
"author": "Matt Preucil",
"ava": {
"files": [
"test/**/*.test.js"
]
},
"bugs": {
"url": "https://github.com/randymarsh77/commit-analyzer/issues"
},
"contributors": [
"Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
"Gregor Martynus (https://twitter.com/gr2m)",
"Matt Preucil (https://github.com/randymarsh77)"
],
"dependencies": {
"conventional-changelog-angular": "^5.0.0",
"conventional-commits-filter": "^2.0.0",
"conventional-commits-parser": "^3.0.7",
"debug": "^4.0.0",
"import-from": "^3.0.0",
"lodash": "^4.17.4",
"micromatch": "^4.0.2"
},
"devDependencies": {
"ava": "^3.1.0",
"codecov": "^3.0.0",
"conventional-changelog-atom": "^2.0.0",
"conventional-changelog-conventionalcommits": "^4.1.0",
"conventional-changelog-ember": "^2.0.0",
"conventional-changelog-eslint": "^3.0.0",
"conventional-changelog-express": "^2.0.0",
"conventional-changelog-jshint": "^2.0.0",
"nyc": "^15.0.0",
"semantic-release": "^17.0.0",
"sinon": "^8.0.0",
"xo": "^0.26.0"
},
"engines": {
"node": ">=10.18"
},
"files": [
"lib",
"index.js"
],
"homepage": "https://github.com/randymarsh77/commit-analyzer#readme",
"keywords": [
"changelog",
"filter",
"commit-analyzer",
"conventional-changelog",
"conventional-commits",
"github",
"publish",
"release",
"semantic-release"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"include": [
"lib/**/*.js",
"index.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"peerDependencies": {
"semantic-release": ">=16.0.0 <18.0.0"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/randymarsh/commit-analyzer.git"
},
"scripts": {
"codecov": "codecov -f coverage/coverage-final.json",
"lint": "xo",
"pretest": "npm run lint",
"semantic-release": "semantic-release",
"test": "nyc ava -v"
},
"xo": {
"prettier": true,
"space": true
}
}