-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.2 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
{
"name": "@svengreb/tmpl-go",
"version": "0.12.0",
"description": "A template repository for Go projects",
"author": "Sven Greb <[email protected]> (https://www.svengreb.de)",
"homepage": "https://github.com/svengreb/tmpl-go",
"repository": {
"type": "git",
"url": "git+https://github.com/svengreb/tmpl-go.git"
},
"bugs": {
"url": "https://github.com/svengreb/tmpl-go/issues"
},
"license": "MIT",
"private": true,
"engines": {
"node": ">=15.13",
"npm": ">=7.7"
},
"workspaces": [
"web/apps",
"web/packages/@svengreb/*",
"web/www"
],
"scripts": {
"format": "run-s format:pretty",
"format:pretty": "prettier --write .",
"lint": "run-s lint:*",
"lint:ci": "run-s lint:md lint:ci:*",
"lint:ci:pretty": "prettier --loglevel silent --check .",
"lint:md": "remark --no-stdout . \".github/**/*.md\"",
"lint:pretty": "prettier --check .",
"prepare:husky": "husky install",
"prepare": "run-s prepare:*"
},
"devDependencies": {
"@arcticicestudio/remark-preset-lint": ">=0.4.0 <1.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"remark-cli": "^10.0.1"
}
}