{
  "name": "changelog-light",
  "version": "4.0.0",
  "description": "Generate a changelog from commits.",
  "author": "cdcabrera",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cdcabrera/changelog-light.git"
  },
  "bugs": {
    "url": "https://github.com/cdcabrera/changelog-light/issues"
  },
  "keywords": [
    "change log",
    "changelog",
    "cli",
    "commit messages",
    "commits",
    "conventional",
    "history"
  ],
  "engines": {
    "node": ">=22.0.0"
  },
  "files": [
    "src/*.js"
  ],
  "bin": {
    "changelog": "bin/cli.js"
  },
  "scripts": {
    "build:docs": "npm run test:docs && npm run docs:md",
    "docs:md": "node ./scripts/readme.docs.js",
    "release": "npm run release:commit",
    "release:commit": "node ./bin/cli.js",
    "start": "./bin/cli.js",
    "test": "npm run test:lint && npm run test:spell && npm run test:spell-docs && npm run test:ci",
    "test:ci": "export CI=true; jest --collectCoverage --coverageReporters=\"lcov\" --coverageReporters=\"json-summary\"",
    "test:clearCache": "jest --clearCache",
    "test:coverage": "npm run test:ci && npm run test:coverageSummary",
    "test:coverageSummary": "node ./scripts/coverage.build.js",
    "test:dev": "eslint ./src ./bin; npm run test:spell && npm run test:local",
    "test:docs": "npm run test:spell && npm run test:lint",
    "test:integration": "jest --roots=./tests",
    "test:integration-dev": "jest --roots=./tests --watchAll",
    "test:lint": "eslint ./src ./bin eslint.config.mjs",
    "test:local": "jest --watch",
    "test:spell-docs": "cspell ./README.md ./CONTRIBUTING.md --config ./cspell.config.json",
    "test:spell": "cspell './src/**/*.js' './tests/**/*.js' --config ./cspell.config.json"
  },
  "jest": {
    "roots": [
      "src"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 60,
        "functions": 80,
        "lines": 80,
        "statements": 80
      }
    },
    "collectCoverageFrom": [
      "src/**/*.js",
      "!src/**/.*/**",
      "!src/logger/*"
    ],
    "setupFilesAfterEnv": [
      "<rootDir>jest.setupTests.js"
    ]
  },
  "dependencies": {
    "conventional-commit-types": "3.0.0",
    "semver": "7.8.5",
    "yargs": "17.7.2"
  },
  "devDependencies": {
    "@cdcabrera/eslint-config-toolkit": "^1.1.0",
    "cspell": "^10.0.1",
    "eslint": "^10.7.0",
    "jest": "^30.4.2",
    "jsdoc-to-markdown": "^9.1.3"
  }
}
