semantic-release
Version:
Automated semver compliant package publishing
168 lines (167 loc) • 4.3 kB
JSON
{
"name": "semantic-release",
"description": "Automated semver compliant package publishing",
"version": "24.2.5",
"type": "module",
"author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
"ava": {
"files": [
"test/**/*.test.js",
"!test/integration.test.js",
"!test/e2e.test.js"
],
"nodeArguments": [
"--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": "^13.0.0-beta.1",
"@semantic-release/error": "^4.0.0",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.0-beta.1",
"aggregate-error": "^5.0.0",
"cosmiconfig": "^9.0.0",
"debug": "^4.0.0",
"env-ci": "^11.0.0",
"execa": "^9.0.0",
"figures": "^6.0.0",
"find-versions": "^6.0.0",
"get-stream": "^6.0.0",
"git-log-parser": "^1.2.0",
"hook-std": "^3.0.0",
"hosted-git-info": "^8.0.0",
"import-from-esm": "^2.0.0",
"lodash-es": "^4.17.21",
"marked": "^15.0.0",
"marked-terminal": "^7.3.0",
"micromatch": "^4.0.2",
"p-each-series": "^3.0.0",
"p-reduce": "^3.0.0",
"read-package-up": "^11.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": {
"@types/node": "22.15.21",
"@types/signale": "1.4.7",
"ava": "6.3.0",
"c8": "10.1.3",
"clear-module": "4.1.2",
"cz-conventional-changelog": "3.3.0",
"dockerode": "4.0.6",
"file-url": "4.0.0",
"fs-extra": "11.3.0",
"got": "14.4.7",
"js-yaml": "4.1.0",
"lockfile-lint": "4.14.1",
"ls-engines": "0.9.3",
"mockserver-client": "5.15.0",
"nock": "14.0.4",
"npm-run-all2": "8.0.3",
"p-retry": "6.2.1",
"prettier": "3.5.3",
"publint": "0.3.12",
"sinon": "20.0.0",
"stream-buffers": "3.0.3",
"tempy": "3.1.0",
"testdouble": "3.20.2"
},
"engines": {
"node": ">=20.8.1"
},
"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
},
"lockfile-lint": {
"path": "package-lock.json",
"type": "npm",
"validate-https": true,
"allowed-hosts": [
"npm"
]
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/semantic-release/semantic-release.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"lint:prettier": "prettier --check \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"docs/**/*.md\" \"{bin,lib,test}/**/*.js\"",
"lint:prettier:fix": "prettier --write \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"docs/**/*.md\" \"{bin,lib,test}/**/*.js\"",
"lint:lockfile": "lockfile-lint",
"lint:engines": "ls-engines",
"lint:publish": "publint --strict",
"semantic-release": "./bin/semantic-release.js",
"test": "npm-run-all --print-label --parallel lint:* --serial test:*",
"test:unit": "c8 ava --verbose",
"test:integration": "ava --verbose test/integration.test.js",
"test:e2e": "ava --verbose test/e2e.test.js"
},
"renovate": {
"extends": [
"github>semantic-release/.github:renovate-config"
]
},
"packageManager": "npm@11.4.1"
}