-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
64 lines (64 loc) · 1.66 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
{
"name": "terraform-change-pr-commenter",
"version": "1.7.1",
"description": "GitHub Action to read changes from Terraform plan JSON, summarize changes, and post them in a GitHub Pull Request Comment",
"main": "index.js",
"scripts": {
"build": "ncc build index.js --out dist --license licenses.txt",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/liatrio/terraform-change-pr-commenter.git"
},
"engines": {
"node": "20"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"yarn.lock",
"dist",
"CHANGELOG.md",
"README.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"keywords": [],
"author": "Liatrio",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/liatrio/terraform-change-pr-commenter/issues"
},
"homepage": "https://github.com/liatrio/terraform-change-pr-commenter#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@vercel/ncc": "^0.33.1",
"semantic-release": "^23.0.0"
},
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.0"
}
}