-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.76 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.76 KB
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
65
66
67
{
"name": "cv",
"version": "3.0.0",
"type": "module",
"description": "Markdown-driven CV generator that renders styled HTML and PDF outputs via Playwright.",
"main": "src/createCV.js",
"scripts": {
"build": "babel-node ./src/createCV.js",
"watch": "chokidar './src/**/*' -c 'npm run build' --initial",
"format": "prettier --write src/",
"format:staged": "pretty-quick --staged --pattern ./src/**",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"spellcheck": "cspell --no-progress --config ./cspell.config.json \"**/*.md\"",
"test": "jest",
"test:watch": "jest --watch --runInBand --bail",
"test:coverage": "jest --coverage",
"validate": "npm run lint && npm run test",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcclowes/CV.git"
},
"keywords": [
"cv",
"resume",
"pdf",
"markdown",
"playwright"
],
"author": "mcclowes",
"license": "ISC",
"dependencies": {
"marked": "^9.0.3",
"playwright": "^1.56.1"
},
"bugs": {
"url": "https://github.com/mcclowes/CV/issues"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"prettier --write"
],
"**/*.md": [
"cspell --no-progress --config ./cspell.config.json"
]
},
"homepage": "https://github.com/mcclowes/CV#readme",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.12.13",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.22.9",
"@eslint/js": "^9.0.0",
"babel-jest": "^29.7.0",
"chokidar-cli": "^3.0.0",
"cspell": "^8.13.3",
"eslint": "^9.0.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.3",
"pretty-quick": "^4.0.0"
}
}