ghpulls
Version:
Interact with the GitHub pull requests API
150 lines (149 loc) • 3.67 kB
JSON
{
"name": "ghpulls",
"version": "2.0.12",
"description": "Interact with the GitHub pull requests API",
"type": "module",
"exports": "./ghpulls.js",
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "standard",
"build": "true",
"test:unit": "node --test test.js",
"test": "npm run lint && npm run test:unit"
},
"repository": {
"type": "git",
"url": "https://github.com/rvagg/ghpulls.git"
},
"keywords": [
"github",
"pulls"
],
"author": "Rod Vagg <r@va.gg>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rvagg/ghpulls/pulls"
},
"homepage": "https://github.com/rvagg/ghpulls",
"dependencies": {
"ghutils": "^5.0.2"
},
"devDependencies": {
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^11.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"conventional-changelog-conventionalcommits": "^9.3.1",
"semantic-release": "^25.0.2",
"standard": "^17.1.2"
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"breaking": true,
"release": "major"
},
{
"revert": true,
"release": "patch"
},
{
"type": "feat",
"release": "minor"
},
{
"type": "fix",
"release": "patch"
},
{
"type": "chore",
"release": "patch"
},
{
"type": "docs",
"release": "patch"
},
{
"type": "test",
"release": "patch"
},
{
"scope": "no-release",
"release": false
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "refactor",
"section": "Code Refactoring"
},
{
"type": "test",
"section": "Tests"
},
{
"type": "build",
"section": "Trivial Changes"
},
{
"type": "ci",
"section": "Trivial Changes"
},
{
"type": "chore",
"section": "Trivial Changes"
},
{
"type": "docs",
"section": "Trivial Changes"
},
{
"type": "style",
"section": "Trivial Changes"
}
]
}
}
],
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
}
}