-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.hugo.json
33 lines (33 loc) · 1.01 KB
/
package.hugo.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
{
"name": "schnerring.github.io",
"version": "1.0.0",
"description": "My personal website, schnerring.net.",
"license": "MIT",
"main": "index.js",
"homepage": "https://github.com/schnerring/schnerring.github.io#readme",
"author": {
"email": "[email protected]",
"name": "Michael Schnerring",
"url": "https://schnerring.net"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schnerring/schnerring.github.io.git"
},
"bugs": {
"url": "https://github.com/schnerring/schnerring.github.io/issues"
},
"keywords": ["Michael Schnerring", "website", "blog"],
"scripts": {
"lint": "npm run lint:css && npm run lint:js && npm run lint:md",
"lint:css": "stylelint --fix **/*.css",
"lint:js": "eslint --fix --ext js .",
"lint:md": "markdownlint --fix **/*.md",
"prepare": "husky"
},
"lint-staged": {
"*.css": "stylelint --fix --allow-empty-input",
"*.js": "eslint --cache --fix",
"*.md": "markdownlint --fix"
}
}