-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.86 KB
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
49
50
{
"name": "dclint-github-action",
"version": "0.0.0",
"private": true,
"description": "A GitHub Action for validating and enforcing best practices in Docker Compose files with DCLint.",
"keywords": [
"dclint",
"github-action",
"reviewdog"
],
"homepage": "https://github.com/docker-compose-linter/dclint-github-action",
"bugs": {
"url": "https://github.com/docker-compose-linter/dclint-github-action/issues"
},
"repository": {
"url": "https://github.com/docker-compose-linter/dclint-github-action.git"
},
"funding": "https://github.com/zavoloklom#how-to-support",
"license": "MIT",
"author": "Sergey Kupletsky <s.kupletsky@gmail.com> (https://github.com/zavoloklom)",
"type": "module",
"scripts": {
"changelog:fix": "prettier --write \"CHANGELOG.md\" && markdownlint-cli2 --fix \"CHANGELOG.md\" && prettier --write \"CHANGELOG.md\"",
"commitlint": "commitlint --from=origin/main",
"docs:fix": "npm run prettier && npm run markdownlint:fix",
"markdownlint": "markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#**/node_modules\"",
"markdownlint:fix": "markdownlint-cli2 --fix \"**/*.md\" \"#node_modules\" \"#**/node_modules\"",
"prepare": "husky",
"prettier": "prettier --write \"**/*.md\""
},
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.6",
"@semantic-release/release-notes-generator": "14.1.0",
"conventional-changelog-conventionalcommits": "9.1.0",
"husky": "9.1.7",
"markdownlint-cli2": "0.18.1",
"prettier": "3.5.3",
"semantic-release": "24.2.8"
},
"engines": {
"node": ">=18.20.0",
"npm": ">=10.0.0"
}
}