-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
106 lines (106 loc) · 2.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "issue-parser",
"description": "Parser for Github, GitLab and Bitbucket issues actions, references and mentions",
"version": "0.0.0-development",
"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.2.0",
"lockfile-lint": "4.14.0",
"ls-engines": "0.9.3",
"npm-run-all2": "7.0.2",
"nyc": "17.1.0",
"publint": "0.2.12",
"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": {
"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"
}
}
}