98 lines
2.0 KiB
JSON
98 lines
2.0 KiB
JSON
{
|
|
"name": "@semantic-release/changelog",
|
|
"description": "semantic-release plugin to create or update a changelog file",
|
|
"version": "6.0.1",
|
|
"author": "Pierre Vanduynslager (https://github.com/pvdlg)",
|
|
"ava": {
|
|
"files": [
|
|
"test/**/*.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": "^3.0.0",
|
|
"aggregate-error": "^3.0.0",
|
|
"fs-extra": "^9.0.0",
|
|
"lodash": "^4.17.4"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "3.15.0",
|
|
"clear-module": "4.1.1",
|
|
"codecov": "3.8.3",
|
|
"nyc": "15.1.0",
|
|
"semantic-release": "18.0.0",
|
|
"sinon": "11.1.2",
|
|
"tempy": "1.0.1",
|
|
"xo": "0.28.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.17"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"index.js"
|
|
],
|
|
"homepage": "https://github.com/semantic-release/changelog#readme",
|
|
"keywords": [
|
|
"changelog",
|
|
"conventional-changelog",
|
|
"release",
|
|
"semantic-release",
|
|
"version"
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"nyc": {
|
|
"include": [
|
|
"lib/**/*.js",
|
|
"index.js"
|
|
],
|
|
"reporter": [
|
|
"json",
|
|
"text",
|
|
"html"
|
|
],
|
|
"all": true
|
|
},
|
|
"peerDependencies": {
|
|
"semantic-release": ">=18.0.0"
|
|
},
|
|
"prettier": {
|
|
"printWidth": 120,
|
|
"trailingComma": "es5"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/semantic-release/changelog.git"
|
|
},
|
|
"scripts": {
|
|
"codecov": "codecov -f coverage/coverage-final.json",
|
|
"lint": "xo",
|
|
"pretest": "npm run lint",
|
|
"semantic-release": "semantic-release",
|
|
"test": "nyc ava -v",
|
|
"test:ci": "nyc ava -v"
|
|
},
|
|
"xo": {
|
|
"prettier": true,
|
|
"space": true,
|
|
"rules": {
|
|
"unicorn/string-content": "off"
|
|
}
|
|
},
|
|
"renovate": {
|
|
"extends": [
|
|
"github>semantic-release/.github"
|
|
]
|
|
}
|
|
}
|