-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.61 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
{
"name": "configuration-ci-general",
"private": true,
"version": "1.31.0",
"description": "General Continuous Integration Configuration ------------------------------------",
"main": "index.js",
"scripts": {
"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",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edahlseng/configuration-ci-general.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/edahlseng/configuration-ci-general/issues"
},
"homepage": "https://github.com/edahlseng/configuration-ci-general#readme",
"dependencies": {},
"devDependencies": {
"@eric.dahlseng/linter-configuration": "^0.3.0",
"standard-version": "^4.4.0"
},
"standard-version": {
"skip": {
"tag": true
}
}
}