forked from JaidenAshmore/java-dynamic-sqs-listener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 834 Bytes
/
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
{
"devDependencies": {
"@prettier/plugin-xml": "0.12.0",
"husky": "4.3.0",
"lint-staged": "10.4.2",
"markdown-link-check": "3.8.3",
"prettier": "2.1.2",
"prettier-plugin-java": "0.8.3"
},
"scripts": {
"md-links-check": "find . -name \\*.md -not -path \"*/target/*\" -not -path \"*/build/*\" -not -path \"*/node_modules/*\" | tr '\\n' '\\0' | xargs -0 -n1 sh -c 'npx markdown-link-check -c \".markdownlinkcheck.json\" $0 || exit 255'",
"format": "npx prettier --write \"**/*\"",
"test": "npm run md-links-check && npx prettier --check \"**/*\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"prettier --write",
"git add"
]
}
}