-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.36 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
{
"author": {
"email": "[email protected]",
"name": "Michael Schnerring",
"url": "https://schnerring.net"
},
"bugs": {
"url": "https://github.com/schnerring/hugo-mod-json-resume/issues"
},
"comments": {
"dependencies": {
"simple-icons": "project"
},
"devDependencies": {
"husky": "project",
"lint-staged": "project",
"markdownlint-cli": "project",
"prettier": "project",
"prettier-plugin-go-template": "project"
}
},
"dependencies": {
"simple-icons": "^13.16.0"
},
"description": "Hugo shortcodes to add structured JSON Resume data to your Hugo site.",
"devDependencies": {
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"markdownlint-cli": "^0.42.0",
"prettier": "^3.3.3",
"prettier-plugin-go-template": "^0.0.15"
},
"homepage": "https://github.com/schnerring/hugo-mod-json-resume#readme",
"keywords": [
"hugo",
"json-resume"
],
"license": "MIT",
"lint-staged": {
"*.md": "markdownlint --fix"
},
"name": "hugo-mod-json-resume",
"repository": {
"type": "git",
"url": "git+https://github.com/schnerring/hugo-mod-json-resume.git"
},
"scripts": {
"lint": "npm run lint:css && npm run lint:js && npm run lint:md",
"lint:md": "markdownlint --fix **/*.md",
"prepare": "husky"
},
"version": "1.0.0"
}