UNPKG

@semantic-release/github

Version:

semantic-release plugin to publish a GitHub release and comment on released Pull Requests/Issues

132 lines (131 loc) 3.4 kB
{ "name": "@semantic-release/github", "description": "semantic-release plugin to publish a GitHub release and comment on released Pull Requests/Issues", "version": "11.0.3", "type": "module", "author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)", "ava": { "files": [ "test/**/*.test.js", "!test/integration.test.js" ], "nodeArguments": [ "--no-warnings" ] }, "bugs": { "url": "https://github.com/semantic-release/github/issues" }, "contributors": [ "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)", "Gregor Martynus (https://twitter.com/gr2m)", "Matt Travi <npm@travi.org> (https://matt.travi.org/)" ], "dependencies": { "@octokit/core": "^7.0.0", "@octokit/plugin-paginate-rest": "^13.0.0", "@octokit/plugin-retry": "^8.0.0", "@octokit/plugin-throttling": "^11.0.0", "@semantic-release/error": "^4.0.0", "aggregate-error": "^5.0.0", "debug": "^4.3.4", "dir-glob": "^3.0.1", "globby": "^14.0.0", "http-proxy-agent": "^7.0.0", "https-proxy-agent": "^7.0.0", "issue-parser": "^7.0.0", "lodash-es": "^4.17.21", "mime": "^4.0.0", "p-filter": "^4.0.0", "url-join": "^5.0.0" }, "devDependencies": { "ava": "6.3.0", "c8": "10.1.3", "cpy": "11.1.0", "cz-conventional-changelog": "3.3.0", "fetch-mock": "npm:@gr2m/fetch-mock@9.11.0-pull-request-644.1", "lockfile-lint": "4.14.1", "ls-engines": "0.9.3", "npm-run-all2": "8.0.3", "prettier": "3.5.3", "publint": "0.3.12", "semantic-release": "24.2.5", "sinon": "20.0.0", "tempy": "3.1.0" }, "engines": { "node": ">=20.8.1" }, "files": [ "lib", "index.js" ], "homepage": "https://github.com/semantic-release/github", "keywords": [ "git", "github", "issue", "notifications", "publish", "pull-request", "release", "semantic-release", "version" ], "license": "MIT", "exports": "./index.js", "c8": { "include": [ "lib/**/*.js", "index.js" ], "reporter": [ "json", "text", "html" ], "all": true }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "lockfile-lint": { "path": "package-lock.json", "type": "npm", "validate-https": true, "allowed-hosts": [ "npm" ] }, "peerDependencies": { "semantic-release": ">=24.1.0" }, "publishConfig": { "access": "public", "provenance": true }, "repository": { "type": "git", "url": "https://github.com/semantic-release/github.git" }, "scripts": { "codecov": "codecov -f coverage/coverage-final.json", "lint:prettier": "prettier --check \"{lib,test}/**/*.{js,json,ts}\" \"*.{js,md,json}\" \".github/**/*.yml\"", "lint:prettier:fix": "prettier --write \"{lib,test}/**/*.{js,json,ts}\" \"*.{js,md,json}\" \".github/**/*.yml\"", "lint:lockfile": "lockfile-lint", "lint:engines": "ls-engines", "lint:publish": "publint --strict", "test": "npm-run-all --print-label --parallel lint:* --parallel test:*", "test:unit": "c8 ava --verbose", "test:integration": "ava --verbose test/integration.test.js" }, "renovate": { "extends": [ "github>semantic-release/.github:renovate-config" ] }, "packageManager": "npm@11.4.0" }