-
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) · 2.07 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.07 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": "Results-driven product leader with 10+ years of experience delivering impactful products across SaaS and fintech industries. Proven expertise in defining product strategy, nurturing talent, and driving adoption. Adept at aligning product vision with organizational goals to deliver measurable growth. Intuition led, data backed. DoY's Young Entrepreneur Award winner as a founder.",
"main": "index.html",
"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",
"pdf"
],
"author": "mcclowes",
"license": "ISC",
"dependencies": {
"lodash": "^4.17.23",
"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",
"copyfiles": "^2.4.1",
"cspell": "^8.13.3",
"eslint": "^9.0.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.0.0",
"merge-md": "^1.0.3",
"prettier": "^3.0.3",
"pretty-quick": "^4.0.0",
"chokidar-cli": "^3.0.0"
}
}