-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.26 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
{
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/release-notes-generator": "^9.0.0",
"dot-prop": ">=4.2.1",
"husky": "^4.2.1",
"semantic-release": "^16.0.0"
},
"scripts": {
"check": "terraform fmt -check -recursive -diff",
"format": "terraform fmt -recursive -diff",
"docs": "terraform-docs markdown ."
},
"husky": {
"skipCI": true,
"hooks": {
"pre-commit": "terraform fmt -check -recursive -diff",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/changelog",
"@semantic-release/commit-analyzer",
"@semantic-release/git",
"@semantic-release/release-notes-generator",
[
"@semantic-release/exec",
{
"successCmd": "git push --mirror [email protected]:Adaptavist/terraform-module-aws-cloudfront-edge-lambda.git"
}
]
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}