-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.06 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
{
"name": "resume",
"version": "1.0.0",
"description": "Scott Weaver's Resume / CV and Resume Generator",
"scripts": {
"build": "gulp build",
"start": "gulp watcher",
"watch": "gulp watcher",
"clean": "gulp clean"
},
"keywords": [
"generator",
"gulp",
"markdown",
"mustache",
"resume",
"resume generator"
],
"author": "Scott Weaver <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-html2pdf": "^0.1.3",
"gulp-mustache": "^5.0.0",
"gulp-rename": "^2.0.0",
"gulp-template": "^5.0.0"
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": true,
"singleQuote": true,
"trailingComma": "all",
"overrides": [
{
"files": "src/templates/*.html.mustache",
"options": {
"parser": "html"
}
},
{
"files": "src/templates/*.md.mustache",
"options": {
"parser": "markdown"
}
}
]
},
"private": true
}