-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.18 KB
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
{
"name": "divstack",
"version": "1.0.0",
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@redocly/cli": "^2.31.5",
"cspell": "^10.0.1",
"husky": "^9.1.7",
"markdownlint-cli2": "^0.22.1",
"textlint": "^15.7.1",
"textlint-filter-rule-comments": "^1.3.0",
"textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet": "^1.0.1",
"textlint-rule-period-in-list-item": "^1.0.1",
"textlint-rule-preset-ja-spacing": "^3.0.0",
"textlint-rule-preset-ja-technical-writing": "^12.0.2",
"textlint-rule-prh": "^6.1.0"
},
"scripts": {
"textlint": "textlint --config .textlintrc.jsonc **/*.md",
"markdownlint": "markdownlint-cli2",
"cspell": "cspell lint **/*.md",
"api:lint": "redocly lint docs/api/references/divstack.v1.yaml",
"api:bundle": "redocly bundle docs/api/references/divstack.v1.yaml -o docs/dist/api/divstack.v1.yaml",
"api:docs": "redocly build-docs docs/api/references/divstack.v1.yaml -o docs/dist/api/api-docs.html",
"lint:all": "npm run textlint && npm run markdownlint && npm run cspell && npm run api:lint",
"build:all": "npm run api:bundle && npm run api:docs"
}
}