125 lines
2.7 KiB
JSON
125 lines
2.7 KiB
JSON
{
|
|
"name": "@semantic-release/github",
|
|
"description": "semantic-release plugin to publish a GitHub release and comment on released Pull Requests/Issues",
|
|
"version": "8.0.5",
|
|
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
|
|
"ava": {
|
|
"files": [
|
|
"test/**/*.test.js"
|
|
]
|
|
},
|
|
"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)"
|
|
],
|
|
"dependencies": {
|
|
"@octokit/rest": "^19.0.0",
|
|
"@semantic-release/error": "^2.2.0",
|
|
"aggregate-error": "^3.0.0",
|
|
"bottleneck": "^2.18.1",
|
|
"debug": "^4.0.0",
|
|
"dir-glob": "^3.0.0",
|
|
"fs-extra": "^10.0.0",
|
|
"globby": "^11.0.0",
|
|
"http-proxy-agent": "^5.0.0",
|
|
"https-proxy-agent": "^5.0.0",
|
|
"issue-parser": "^6.0.0",
|
|
"lodash": "^4.17.4",
|
|
"mime": "^3.0.0",
|
|
"p-filter": "^2.0.0",
|
|
"p-retry": "^4.0.0",
|
|
"url-join": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "4.3.0",
|
|
"clear-module": "4.1.2",
|
|
"codecov": "3.8.3",
|
|
"nock": "13.2.8",
|
|
"nyc": "15.1.0",
|
|
"proxy": "1.0.2",
|
|
"proxyquire": "2.1.3",
|
|
"semantic-release": "19.0.3",
|
|
"server-destroy": "1.0.1",
|
|
"sinon": "14.0.0",
|
|
"tempy": "1.0.1",
|
|
"xo": "0.36.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.17"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"index.js"
|
|
],
|
|
"homepage": "https://github.com/semantic-release/github#readme",
|
|
"keywords": [
|
|
"git",
|
|
"github",
|
|
"issue",
|
|
"notifications",
|
|
"publish",
|
|
"pull-request",
|
|
"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-beta.1"
|
|
},
|
|
"prettier": {
|
|
"printWidth": 120,
|
|
"trailingComma": "es5"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/semantic-release/github.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": {
|
|
"camelcase": [
|
|
"error",
|
|
{
|
|
"properties": "never"
|
|
}
|
|
],
|
|
"unicorn/string-content": "off",
|
|
"unicorn/no-reduce": "off"
|
|
}
|
|
},
|
|
"renovate": {
|
|
"extends": [
|
|
"github>semantic-release/.github"
|
|
]
|
|
}
|
|
}
|