-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 981 Bytes
/
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
{
"name": "go-basics-training",
"version": "0.0.9",
"description": "Go Basics Training",
"repository": {
"type": "git",
"url": "git+https://github.com/acend/go-basics-training.git"
},
"author": "acend gmbh",
"scripts": {
"start": "bash -c \"docker run --rm --interactive --publish 8080:8080 -v $(pwd):/src:Z klakegg/hugo:$(grep \"FROM klakegg/hugo\" Dockerfile | sed 's/FROM klakegg\\/hugo://g' | sed 's/ AS builder//g') server -p 8080 --bind 0.0.0.0\"",
"mdlint": "markdownlint --config .markdownlint.json content *.md",
"mdlint-fix": "npm run mdlint -- --fix",
"prepare": "husky install"
},
"bugs": {
"url": "https://github.com/acend/go-basics-training/issues"
},
"homepage": "https://github.com/acend/go-basics-training#readme",
"devDependencies": {
"husky": "9.1.7",
"lint-staged": "15.2.11",
"markdownlint-cli": "0.38.0"
},
"lint-staged": {
"*.md": "markdownlint --config .markdownlint.json --fix"
}
}