-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.69 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
52
53
54
55
56
57
58
59
60
{
"name": "cv",
"version": "2.0.0",
"description": "Product Manager with diverse software engineering and design background, and experience as a founder of a client-facing business. Have been delivering websites and apps for 10+ years. Duke of York Young Entrepreneur Award winner 2017.",
"main": "index.html",
"scripts": {
"build": "babel-node ./src/createCV.js",
"watch": "watch 'npm run build' ./src --wait=1",
"format": "prettier --write src/",
"format:staged": "pretty-quick --staged --pattern ./src/**",
"test": "jest",
"test:watch": "jest --watch --runInBand --bail",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcclowes/CV.git"
},
"keywords": [
"cv",
"pdf"
],
"author": "mcclowes",
"license": "ISC",
"bugs": {
"url": "https://github.com/mcclowes/CV/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run format:staged && echo 'Did you remember to build the CV?'"
}
},
"jest": {
"transform": {
"^.+\\.js?$": "babel-jest",
"^.+\\.md?$": "markdown-loader-jest"
}
},
"homepage": "https://github.com/mcclowes/CV#readme",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.12.13",
"@babel/node": "^7.12.13",
"@babel/preset-env": "^7.22.9",
"babel-jest": "^26.6.3",
"copyfiles": "^2.4.1",
"fs": "0.0.1-security",
"html-pdf-chrome": "^0.8.4",
"husky": "^8.0.0",
"jest": "^26.6.3",
"lodash": "^4.17.21",
"markdown-loader-jest": "^0.1.1",
"marked": "^9.0.3",
"merge-md": "^1.0.3",
"path": "^0.12.7",
"prettier": "^3.0.3",
"pretty-quick": "^3.1.3",
"watch": "^1.0.2"
}
}