-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 841 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 841 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
26
27
28
29
30
31
{
"name": "cv",
"version": "1.0.0",
"description": "This repo generates my CV into HTML and PDF.",
"main": "index.js",
"scripts": {
"build": "node src/build.js",
"build:pdf": "npm run build && node src/build-pdf.js",
"serve": "npm run build && light-server --serve dist --open --delay 100 --watchexp \"src/** # npm run build # reload\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/margani/cv.git"
},
"keywords": [
"cv",
"generator"
],
"author": "Hossein Margani <hossein@margani.dev>",
"license": "ISC",
"bugs": {
"url": "https://github.com/margani/cv/issues"
},
"homepage": "https://github.com/margani/cv#readme",
"devDependencies": {
"light-server": "^2.9.1",
"nunjucks": "^3.2.4",
"nunjucks-date": "^1.5.0",
"puppeteer": "^25.3.0"
}
}