-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.22 KB
/
package.json
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "jsonresume-theme-pillar",
"version": "0.1.9",
"description": "Pillar theme for JSON Resume standard",
"main": "index.js",
"files": [
"index.js",
"src/**/*",
"public/prod/assets/**/*"
],
"scripts": {
"prebuild:dev": "make-dir public/dev",
"build:dev": "npm run scss:dev",
"prebuild:prod": "make-dir public/prod",
"build:prod": "npm run scss:prod",
"scss:dev": "sass --update src/styles:public/dev/assets/css",
"scss:prod": "sass --style compressed --no-charset --no-source-map src/styles:public/prod/assets/css",
"preexport:html": "make-dir public/${ENV}",
"export:html": "resume export -r resume.yaml -f html -t . public/${ENV}/index.html",
"preexport:pdf": "make-dir public/${ENV}/pdf",
"export:pdf": "resume export -r resume.yaml -f pdf -t . public/${ENV}/pdf/resume.pdf",
"export:dev": "ENV=dev npm run export",
"export:prod": "ENV=prod npm run export",
"export": "npm-run-all export:html export:pdf",
"sync": "browser-sync start --server public/dev --files 'public/dev/**/*'",
"watch": "npm-run-all --parallel watch:*",
"watch:i18n": "onchange 'src/i18n/**/*' -- npm run export:dev",
"watch:resume": "onchange 'resume.yaml' -- npm run export:dev",
"watch:scss": "onchange 'src/styles/**/*' -- npm-run-all scss:dev export:dev",
"watch:templates": "onchange 'src/views/**/*.hbs' -- npm run export:dev",
"dev": "npm run build:dev && npm run export:dev && npm-run-all --parallel watch sync",
"prod": "npm run build:prod && npm run export:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enawder/jsonresume-theme-pillar.git"
},
"keywords": [
"json",
"resume",
"json-resume",
"theme",
"cv",
"curriculum-vitae"
],
"author": "enawder",
"license": "ISC",
"bugs": {
"url": "https://github.com/enawder/jsonresume-theme-pillar/issues"
},
"homepage": "https://github.com/enawder/jsonresume-theme-pillar#readme",
"dependencies": {
"handlebars": "4.7.8",
"handlebars-helpers": "0.10.0"
},
"devDependencies": {
"browser-sync": "2.29.3",
"make-dir-cli": "3.1.0",
"npm-run-all": "4.1.5",
"onchange": "7.1.0",
"resume-cli": "3.0.8",
"sass": "1.65.1"
}
}