-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.53 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
{
"name": "@sellalong/terraform-aws-lambda-cd",
"version": "1.2.3",
"private": true,
"description": "Terraform module to remote build lambdas and deploy within the context of a terraform plan/apply",
"homepage": "https://github.com/sellalong/terraform-aws-lambda-cd",
"bugs": "https://github.com/sellalong/terraform-aws-lambda-cd/issues",
"repository": "https://github.com/sellalong/terraform-aws-lambda-cd",
"license": "MIT",
"author": {
"name": "Sellalong Engineers",
"email": "[email protected]",
"url": "https://sellalong.com"
},
"workspaces": [
"./modules/lambda-worker/sources/*"
],
"scripts": {
"docs": "terraform-docs markdown table --output-file README.md .; npx --yes prettier@2 --write README.md",
"prepare": "npx --yes husky@6 install",
"format": "npx --yes prettier@2 --write . && npm run format:terraform -- -recursive",
"format:terraform": "terraform_fmt () { for a in $*; do terraform fmt $a; done }; terraform_fmt",
"check:format": "npx --yes prettier@2 --check ."
},
"lint-staged": {
"**/*": "npx --yes prettier@2 --write --ignore-unknown",
"*.tf": "npm run format:terraform --",
"package.json": "npx --yes sort-package-json@1"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
}
}