forked from mj3b/governance-frameworks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 807 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 807 Bytes
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
{
"name": "foundation-docs",
"private": true,
"description": "Governance documentation for the Catholic Digital Commons Foundation",
"scripts": {
"lint:md": "markdownlint-cli2 \"**/*.md\" \"#**/node_modules\" \"#.yarn\"",
"lint:md:fix": "markdownlint-cli2 --fix \"**/*.md\" \"#**/node_modules\" \"#.yarn\"",
"format:md": "prettier --write \"**/*.md\" \"!**/node_modules/**\"",
"build:html": "bash scripts/build-standalone-html.sh",
"build:pdf": "bash scripts/build-combined-pdf.sh",
"prepare": "husky"
},
"lint-staged": {
"*.md": [
"prettier --write",
"markdownlint-cli2"
]
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"markdownlint-cli2": "^0.17.2",
"pagedjs-cli": "^0.4.3",
"prettier": "^3.5.3"
}
}