generated from vidluther/markdown-resume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
20 lines (20 loc) · 817 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "markdown-resume",
"version": "1.0.0",
"author": "Jason Toups <me@jasontoups.com>",
"scripts": {
"pandoc": "pandoc",
"html": "pandoc resume.md -f markdown -t html -c resume-stylesheet.css -s -o jason-toups-resume.html",
"pdf": "pandoc resume.md -f markdown -t pdf --pdf-engine=wkhtmltopdf -c resume-stylesheet.css -s -o jason-toups-resume.pdf",
"word": "pandoc resume.md -f markdown -t docx --pdf-engine=wkhtmltopdf -c resume-stylesheet.css -s -o jason-toups-resume.docx",
"all": "npm run html && npm run pdf && npm run word",
"deploy": "npm run all",
"html:pdf": "npm wkhtmltopdf --enable-local-file-access jason-toups-resume.html jason-toups-resume.pdf"
},
"dependencies": {
"node-pandoc": "^0.3.0"
},
"devDependencies": {
"wkhtmltopdf": "^0.4.0"
}
}