25 lines
666 B
JSON
25 lines
666 B
JSON
{
|
|
"scripts": {
|
|
"_check:format": "npx prettier --check .",
|
|
"_check:format:any": "npx prettier --check --ignore-path ''",
|
|
"check": "make check",
|
|
"check:format": "npm run _check:format || (echo '[help] Run: npm run format'; exit 1)",
|
|
"fix": "make fix",
|
|
"fix:format": "npm run _check:format -- --write",
|
|
"test": "npm run check"
|
|
},
|
|
"devDependencies": {
|
|
"gulp": "^5.0.0",
|
|
"js-yaml": "^4.1.0",
|
|
"markdown-link-check": "3.11.2",
|
|
"markdown-toc": "^1.2.0",
|
|
"markdownlint": "0.36.1",
|
|
"markdownlint-cli": "0.42.0",
|
|
"prettier": "^3.0.0",
|
|
"through2": "^4.0.2"
|
|
},
|
|
"prettier": {
|
|
"proseWrap": "preserve"
|
|
}
|
|
}
|