BREAKING CHANGE: the new preset format is a breaking change when compared to the previous preset format. updating to support the new format means that the old preset format is no longer supported. update your preset to the latest version to maintain compatibility
143 lines
3.5 KiB
JSON
143 lines
3.5 KiB
JSON
{
|
|
"name": "semantic-release",
|
|
"description": "Automated semver compliant package publishing",
|
|
"version": "0.0.0-development",
|
|
"type": "module",
|
|
"author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
|
|
"ava": {
|
|
"files": [
|
|
"test/**/*.test.js"
|
|
],
|
|
"nodeArguments": [
|
|
"--loader=testdouble",
|
|
"--no-warnings"
|
|
],
|
|
"timeout": "2m"
|
|
},
|
|
"bin": {
|
|
"semantic-release": "bin/semantic-release.js"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/semantic-release/semantic-release/issues"
|
|
},
|
|
"contributors": [
|
|
"Gregor Martynus (https://twitter.com/gr2m)",
|
|
"Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
|
|
"Matt Travi <npm@travi.org> (https://matt.travi.org/)"
|
|
],
|
|
"dependencies": {
|
|
"@semantic-release/commit-analyzer": "^11.0.0-beta.1",
|
|
"@semantic-release/error": "^4.0.0",
|
|
"@semantic-release/github": "^9.0.0",
|
|
"@semantic-release/npm": "^10.0.2",
|
|
"@semantic-release/release-notes-generator": "^12.0.0-beta.1",
|
|
"aggregate-error": "^4.0.1",
|
|
"cosmiconfig": "^8.0.0",
|
|
"debug": "^4.0.0",
|
|
"env-ci": "^9.0.0",
|
|
"execa": "^8.0.0",
|
|
"figures": "^5.0.0",
|
|
"find-versions": "^5.1.0",
|
|
"get-stream": "^6.0.0",
|
|
"git-log-parser": "^1.2.0",
|
|
"hook-std": "^3.0.0",
|
|
"hosted-git-info": "^7.0.0",
|
|
"lodash-es": "^4.17.21",
|
|
"marked": "^5.0.0",
|
|
"marked-terminal": "^5.1.1",
|
|
"micromatch": "^4.0.2",
|
|
"p-each-series": "^3.0.0",
|
|
"p-reduce": "^3.0.0",
|
|
"read-pkg-up": "^10.0.0",
|
|
"resolve-from": "^5.0.0",
|
|
"semver": "^7.3.2",
|
|
"semver-diff": "^4.0.0",
|
|
"signale": "^1.2.1",
|
|
"yargs": "^17.5.1"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "5.3.1",
|
|
"c8": "8.0.1",
|
|
"clear-module": "4.1.2",
|
|
"codecov": "3.8.3",
|
|
"dockerode": "3.3.5",
|
|
"file-url": "4.0.0",
|
|
"fs-extra": "11.1.1",
|
|
"got": "13.0.0",
|
|
"js-yaml": "4.1.0",
|
|
"mockserver-client": "5.15.0",
|
|
"nock": "13.3.3",
|
|
"p-retry": "6.0.0",
|
|
"prettier": "3.0.3",
|
|
"sinon": "15.2.0",
|
|
"stream-buffers": "3.0.2",
|
|
"tempy": "3.1.0",
|
|
"testdouble": "3.18.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"docs",
|
|
"lib",
|
|
"index.d.ts",
|
|
"index.js",
|
|
"cli.js"
|
|
],
|
|
"homepage": "https://github.com/semantic-release/semantic-release#readme",
|
|
"keywords": [
|
|
"author",
|
|
"automation",
|
|
"changelog",
|
|
"module",
|
|
"package",
|
|
"publish",
|
|
"release",
|
|
"semver",
|
|
"version"
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"c8": {
|
|
"include": [
|
|
"lib/**/*.js",
|
|
"index.js",
|
|
"cli.js"
|
|
],
|
|
"reporter": [
|
|
"json",
|
|
"text",
|
|
"html"
|
|
],
|
|
"all": true
|
|
},
|
|
"prettier": {
|
|
"printWidth": 120,
|
|
"trailingComma": "es5"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"provenance": true
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/semantic-release/semantic-release.git"
|
|
},
|
|
"scripts": {
|
|
"codecov": "codecov -f coverage/coverage-final.json",
|
|
"lint": "prettier --check \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"docs/**/*.md\" \"{bin,lib,test}/**/*.js\"",
|
|
"lint:fix": "prettier --write \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"docs/**/*.md\" \"{bin,lib,test}/**/*.js\"",
|
|
"pretest": "npm run lint",
|
|
"semantic-release": "./bin/semantic-release.js",
|
|
"test": "c8 ava --verbose",
|
|
"test:ci": "c8 ava --verbose"
|
|
},
|
|
"renovate": {
|
|
"extends": [
|
|
"github>semantic-release/.github"
|
|
]
|
|
}
|
|
}
|