-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 860 Bytes
/
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
{
"dependencies": {
"@types/node": "^20.14.2",
"@types/yargs": "^17.0.32",
"js-yaml": "^4.1.0",
"pug": "^3.0.3",
"pug-lint": "^2.7.0",
"puppeteer": "^22.10.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"tslint": "^6.1.3",
"typescript": "^5.4.5",
"yargs": "^17.7.2"
},
"name": "resume-generator",
"description": "Simple resume generator",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"lint": "pug-lint templates/*.pug && tslint -c tslint.json 'src/**/*.ts'",
"clean": "rm -rf dist/resume.html dist/resume.pdf",
"run": "npx ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "github.com/nccurry/resume-generator"
},
"author": "Nicholas Curry",
"license": "MIT",
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/pug": "^2.0.10"
}
}