-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
{
"name": "rahul-resume",
"version": "1.0.0",
"description": "Rahul Agarwal's Resume",
"scripts": {
"prepare": "husky",
"release": "standard-version --no-verify --commit-all",
"release:first": "standard-version --first-release --no-verify --commit-all",
"release:minor": "standard-version --release-as minor --no-verify --commit-all",
"release:patch": "standard-version --release-as patch --no-verify --commit-all",
"release:major": "standard-version --release-as major --no-verify --commit-all",
"commit:lint": "commitlint --edit",
"build": "node scripts/build.js",
"lint": "run-s latex:lint python:lint",
"format": "run-s python:format",
"latex:lint": "node scripts/lint.js",
"python:lint": "cd vitagen && make lint-check",
"python:format": "cd vitagen && make format-check"
},
"repository": {
"type": "git",
"url": "https://github.com/ragarwalll/resumate.git"
},
"keywords": [
"latex",
"resume",
"vitae",
"cv",
"resume-template"
],
"author": "ragarwalll <agarwal.rahul324@gmail.com>",
"license": "Apache-2.0",
"packageManager": "^bun@1.1.0",
"engineStrict": true,
"engines": {
"npm": ">=10.0.0",
"node": ">=20.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"husky": "^9.1.6",
"replace": "^1.2.2",
"npm-run-all": "^4.1.5",
"standard-version": "^9.5.0"
},
"standard-version": {
"scripts": {
"postchangelog": "cp CHANGELOG.md docs/docs/getting-started/changelog.md && git add docs/docs/getting-started/changelog.md"
}
},
"dependencies": {
"glob": "^11.0.0"
}
}