forked from edahlseng/terraform-provider-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.29 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
{
"name": "terraform-provider-repository-template",
"version": "0.2.0",
"description": "Repository Template Terraform Provider",
"scripts": {
"release": "standard-version",
"test": "echo \"Error: no test specified\" && exit 1",
"lint:json": "prettier --config .prettierrc.js --list-different '**/*.json'",
"lint": "npm run lint:commit -- --from master; npm run lint:json; npm run lint:yaml",
"lint-report:json": "mkdir -p ./linting-results/prettier-json && prettier-junit --config .prettierrc.js '**/*.json' > ./linting-results/prettier-json/report.xml",
"lint:commit": "commitlint",
"lint-report:commit": "mkdir -p ./linting-results/commitlint && commitlint --format commitlint-format-junit > ./linting-results/commitlint/report.xml",
"lint:yaml": "prettier --config .prettierrc.js --list-different '**/*.yaml' '**/*.yml'",
"lint-report:yaml": "mkdir -p ./linting-results/prettier-yaml && prettier-junit --config .prettierrc.js '**/*.yaml' '**/*.yml' > ./linting-results/prettier-yaml/report.xml"
},
"author": "Eric Dahlseng",
"license": "MIT",
"dependencies": {
"@eric.dahlseng/linter-configuration": "^0.3.0"
},
"devDependencies": {
"@eric.dahlseng/standard-version": "^1.0.3"
},
"standard-version": {
"skip": {
"tag": true
}
}
}