-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
53 lines (53 loc) · 1.22 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
{
"name": "github-issue-parser",
"private": true,
"version": "3.2.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "ncc build",
"test": "jest ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/stefanbuck/github-issue-parser.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stefanbuck/github-issue-parser/issues"
},
"homepage": "https://github.com/stefanbuck/github-issue-parser#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"js-yaml": "^4.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"jest": "^29.7.0"
},
"release": {
"branches": [
"+([0-9]).x",
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm",
"semantic-release-plugin-github-breaking-version-tag",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"dist/*"
],
"message": "build(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}