-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "@svengreb/tmpl-go",
"version": "0.7.0",
"description": "A template repository for Go projects",
"author": {
"name": "Sven Greb",
"email": "development@svengreb.de",
"url": "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": {
"yarn": "^1.19.0"
},
"workspaces": [
"web/apps",
"web/packages/@svengreb/*",
"web/www"
],
"scripts": {
"format": "run-s format:pretty",
"format:pretty": "prettier --write .",
"lint": "run-s lint:*",
"lint:md": "remark --no-stdout . \".github/**/*.md\"",
"lint:pretty": "prettier --check ."
},
"devDependencies": {
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"remark-cli": "^8.0.1",
"remark-preset-lint-arcticicestudio": ">=0.3.0 <1.0.0"
}
}