-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 910 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 910 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
{
"name": "egm0121-resume-repo",
"version": "1.0.0",
"description": "personal resume generator with template",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "resume serve --theme . -d docs",
"build-web": "resume export ./docs/index.html --theme . ",
"build-pdf": "resume export ./docs/cv.pdf --theme . --format pdf",
"build-all": "resume serve --theme . & P1=$! npm run make-pdf & P2=$! wait $P1 $P2",
"build-pdf-legacy": "wkhtmltopdf -s A4 --zoom 2.5 --disable-smart-shrinking http://localhost:4000 cv_resume_export.pdf"
},
"dependencies": {
"resume-cli": "3.1.2",
"handlebars": "4.7.7"
},
"repository": {
"type": "git",
"url": "git+ssh://git@bitbucket.org/edellorbo/egm0121-resume.git"
},
"author": "",
"license": "ISC",
"homepage": "https://bitbucket.org/edellorbo/egm0121-resume#readme"
}