UNPKG

@semantic-release/changelog

Version:

semantic-release plugin to create or update a changelog file

107 lines (106 loc) • 2.72 kB
{ "name": "@semantic-release/changelog", "description": "semantic-release plugin to create or update a changelog file", "version": "7.0.0", "type": "module", "author": "Pierre Vanduynslager (https://github.com/pvdlg)", "ava": { "files": [ "test/**/*.test.js", "!test/integration.test.js" ] }, "bugs": { "url": "https://github.com/semantic-release/changelog/issues" }, "contributors": [ "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)", "Gregor Martynus (https://twitter.com/gr2m)" ], "dependencies": { "@semantic-release/error": "^4.0.0", "aggregate-error": "^5.0.0", "lodash-es": "^4.17.21" }, "devDependencies": { "ava": "6.2.0", "c8": "10.1.3", "lockfile-lint": "^5.0.0", "ls-engines": "^0.9.4", "npm-run-all": "^4.1.5", "prettier": "3.5.3", "publint": "^0.3.18", "semantic-release": "25.0.3", "sinon": "19.0.2", "tempy": "3.1.0" }, "engines": { "node": "^22.22.2 || >=24.15" }, "exports": "./index.js", "files": [ "lib", "index.js" ], "homepage": "https://github.com/semantic-release/changelog#readme", "keywords": [ "changelog", "conventional-changelog", "release", "semantic-release", "version" ], "license": "MIT", "peerDependencies": { "semantic-release": ">=20.1.0" }, "prettier": { "printWidth": 120, "trailingComma": "es5" }, "publishConfig": { "access": "public", "provenance": true }, "repository": { "type": "git", "url": "https://github.com/semantic-release/changelog.git" }, "scripts": { "lint": "prettier --check \"{lib,test}/**/*.{js,json,ts}\" \"*.{md,json,js}\" \".github/**/*.yml\"", "lint:prettier": "prettier --check \"{lib,test}/**/*.{js,json,ts}\" \"*.{md,json,js}\" \".github/**/*.yml\"", "lint:prettier:fix": "prettier --write \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"{bin,lib,test}/**/*.js\"", "lint:lockfile": "lockfile-lint", "lint:engines": "ls-engines", "lint:publish": "publint --strict", "semantic-release": "semantic-release", "test": "npm-run-all --print-label --parallel lint:* --parallel test:*", "test:unit": "c8 ava --verbose", "test:integration": "ava --verbose test/integration.test.js" }, "c8": { "include": [ "lib/**/*.js", "index.js" ], "reporter": [ "json", "text", "html" ], "all": true }, "lockfile-lint": { "path": "package-lock.json", "type": "npm", "validate-https": true, "allowed-hosts": [ "npm" ] }, "renovate": { "extends": [ "github>semantic-release/.github:renovate-config" ] } }