forked from edahlseng/terraform-provider-shopify
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
27 lines (27 loc) · 1.19 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
{
"name": "terraform-provider-shopify",
"version": "0.2.1",
"description": "Shopify Terraform Provider",
"scripts": {
"lint:commit": "commitlint",
"lint-report:commit": "mkdir -p ./linting-results/commitlint && commitlint --format commitlint-format-junit > ./linting-results/commitlint/report.xml",
"lint:json": "prettier --config .prettierrc.js --list-different '**/*.json'",
"lint-report:json": "mkdir -p ./linting-results/prettier-json && prettier-junit --config .prettierrc.js '**/*.json' > ./linting-results/prettier-json/report.xml",
"lint:tf": "terraform fmt -check=true",
"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",
"release": "standard-version",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Eric Dahlseng",
"license": "MIT",
"devDependencies": {
"@eric.dahlseng/configuration-lint": "^0.4.2",
"@eric.dahlseng/standard-version": "^1.1.0"
},
"standard-version": {
"skip": {
"tag": true
}
}
}