-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.91 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
{
"name": "@jortfal/semantic-release-terraform-config",
"description": "semantic-release shareable config to create release of Terraform Modules",
"version": "1.1.0",
"author": "@jortfal José Manuel Ortega Falcón (https://github.com/jortfal)",
"bugs": {
"url": "https://github.com/jortfal/semantic-release-terraform-config/issues"
},
"contributors": [
"@jortfal José Manuel Ortega Falcón (https://github.com/jortfal)"
],
"dependencies": {
"@semantic-release/git": "10.0.1",
"@semantic-release/changelog": "6.0.3",
"@google/semantic-release-replace-plugin": "1.2.7"
},
"devDependencies": {
"semantic-release": "23.1.1",
"xo": "0.58.0"
},
"engines": {
"node": ">=20.14.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/jortfal/semantic-release-terraform-config#readme",
"keywords": [
"terraform",
"terraform-modules",
"conventional-changelog",
"release",
"semantic-release",
"semantic-release-config",
"version"
],
"license": "Apache",
"type": "module",
"exports": "./index.js",
"peerDependencies": {
"semantic-release": ">=17.4.2 <24.0.0"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/jortfal/semantic-release-terraform-config.git"
},
"scripts": {
"semantic-release": "semantic-release",
"test": "xo"
},
"xo": {
"prettier": true,
"space": true,
"rules": {
"unicorn/string-content": "off"
}
},
"renovate": {
"extends": [
"github>semantic-release/.github"
]
},
"release": {
"branches": ["main"]
}
}