109 lines
2.2 KiB
JSON
109 lines
2.2 KiB
JSON
{
|
|
"name": "issue-parser",
|
|
"description": "Parser for Github, GitLab and Bitbucket issues actions, references and mentions",
|
|
"version": "7.0.1",
|
|
"author": "Pierre Vanduynslager (https://github.com/pvdlg)",
|
|
"ava": {
|
|
"files": [
|
|
"test/**/*.test.js"
|
|
]
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/semantic-release/issue-parser/issues"
|
|
},
|
|
"dependencies": {
|
|
"lodash.capitalize": "^4.2.1",
|
|
"lodash.escaperegexp": "^4.1.2",
|
|
"lodash.isplainobject": "^4.0.6",
|
|
"lodash.isstring": "^4.0.1",
|
|
"lodash.uniqby": "^4.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "6.1.3",
|
|
"codecov": "3.8.3",
|
|
"lockfile-lint": "4.13.2",
|
|
"ls-engines": "0.9.1",
|
|
"npm-run-all2": "6.2.0",
|
|
"nyc": "15.1.0",
|
|
"publint": "0.2.8",
|
|
"xo": "0.28.3"
|
|
},
|
|
"engines": {
|
|
"node": "^18.17 || >=20.6.1"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"index.js"
|
|
],
|
|
"homepage": "https://github.com/semantic-release/issue-parser#readme",
|
|
"keywords": [
|
|
"bitbucket",
|
|
"close",
|
|
"duplicate",
|
|
"fix",
|
|
"github",
|
|
"gitlab",
|
|
"issues",
|
|
"mentions",
|
|
"parser",
|
|
"pr",
|
|
"pull-request",
|
|
"references",
|
|
"resolve"
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"nyc": {
|
|
"include": [
|
|
"lib/**/*.js",
|
|
"index.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"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/semantic-release/issue-parser.git"
|
|
},
|
|
"scripts": {
|
|
"codecov": "codecov -f coverage/coverage-final.json",
|
|
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
|
|
"test:unit": "nyc ava -v",
|
|
"lint:js": "xo",
|
|
"lint:lockfile": "lockfile-lint",
|
|
"lint:engines": "ls-engines",
|
|
"lint:publish": "publint --strict"
|
|
},
|
|
"renovate": {
|
|
"extends": [
|
|
"github>semantic-release/.github:renovate-config"
|
|
]
|
|
},
|
|
"xo": {
|
|
"prettier": true,
|
|
"space": true,
|
|
"rules": {
|
|
"unicorn/string-content": "off"
|
|
}
|
|
}
|
|
}
|