-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 971 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
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "documentation",
"version": "1.0.0",
"description": "Collection of useful documentation.",
"homepage": "https://github.com/sebalaini/documentation#readme",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/sebalaini/documentation.git"
},
"author": "sebalaini",
"license": "MIT",
"bugs": {
"url": "https://github.com/sebalaini/documentation/issues"
},
"scripts": {
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint:docs": "vale --config .vale.ini ./docs",
"prepare": "husky || true"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.md": [
"prettier --write"
]
},
"packageManager": "yarn@3.8.1",
"engines": {
"node": "^20"
},
"devDependencies": {
"@spotify/prettier-config": "^15.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
}
}