-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 828 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"private": true,
"devDependencies": {
"commonform-cli": "^0.31.0",
"husky": "^1.3.1",
"npm-run-all": "^4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "run-p build:*:markdown && git add terms.md"
}
},
"scripts": {
"test": "commonform lint terms.cform",
"build": "run-p build:*:*",
"build:terms:markdown": "commonform render -f markdown --title 'Issue Sponsorship Terms' --blanks blanks.json terms.cform > terms.md",
"build:terms:html": "commonform render -f html5 --title 'Issue Sponsorship Terms' --ordered-lists --blanks blanks.json terms.cform > terms.html",
"build:terms:docx": "commonform render -f docx --title 'Issue Sponsorship Terms' --number outline --left-align-title --indent-margins --styles styles.json --blanks blanks.json terms.cform > terms.docx"
}
}