-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
62 lines (62 loc) · 1.53 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "logux-docs",
"private": true,
"scripts": {
"test:lint": "remark --no-stdout --frail --quiet *.md */*.md guide/*/*.md",
"test:order": "./scripts/check-order.js",
"test": "pnpm run /^test:/"
},
"devDependencies": {
"fast-glob": "^3.3.2",
"nano-staged": "^0.8.0",
"remark-cli": "^12.0.1",
"remark-lint-list-item-indent": "^4.0.0",
"remark-lint-no-dead-urls": "^1.1.0",
"remark-lint-no-empty-sections": "^4.0.0",
"remark-lint-no-shortcut-reference-link": "^4.0.0",
"remark-preset-lint-recommended": "^7.0.0",
"remark-validate-links": "^13.0.1",
"simple-git-hooks": "^2.11.1"
},
"repository": "logux/docs",
"homepage": "https://logux.org/",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=14.0.0"
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged --config package.json"
},
"nano-staged": {
"order.json": "node ./scripts/check-order.js",
"*.md": [
"remark --no-stdout --frail --quiet",
"node ./scripts/check-order.js"
]
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended",
[
"remark-lint-list-item-indent",
"one"
],
[
"remark-lint-no-shortcut-reference-link",
false
],
[
"remark-lint-no-dead-urls",
{
"skipOffline": true,
"skipUrlPatterns": [
"stackoverflow.com"
]
}
],
"remark-validate-links",
"remark-lint-no-empty-sections"
]
}
}