forked from koluku/sudden-death
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.59 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
{
"scripts": {
"lint": "npm run lint:markdown && npm run lint:text && npm run lint:python && npm run lint:python-type && npm run lint:secret",
"lint:markdown": "markdownlint -c .markdown-lint.yml -i node_modules .",
"lint:text": "textlint -c .textlintrc $(find . -name '*.md' | grep -v node_modules)",
"lint:python": "pipenv run pylint --rcfile .python-lint *.py",
"lint:python-type": "pipenv run mypy --config-file .mypy.ini --install-types --non-interactive *.py",
"lint:secret": "docker run --rm --platform=linux/amd64 -v $(pwd):/path -w /path zricethezav/gitleaks protect --verbose --redact"
},
"devDependencies": {
"@proofdict/textlint-rule-proofdict": "3.1.2",
"@textlint-ja/textlint-rule-no-insert-dropping-sa": "2.0.1",
"markdownlint-cli": "0.42.0",
"textlint": "14.3.0",
"textlint-filter-rule-comments": "1.2.2",
"textlint-rule-abbr-within-parentheses": "1.0.2",
"textlint-rule-footnote-order": "1.0.3",
"textlint-rule-general-novel-style-ja": "dev-hato/textlint-rule-general-novel-style-ja-markdown",
"textlint-rule-ja-hiragana-fukushi": "1.3.0",
"textlint-rule-ja-hiragana-hojodoushi": "1.1.0",
"textlint-rule-ja-hiragana-keishikimeishi": "1.1.0",
"textlint-rule-no-dead-link": "5.2.0",
"textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet": "1.0.1",
"textlint-rule-prefer-tari-tari": "1.0.3",
"textlint-rule-preset-ja-spacing": "2.4.3",
"textlint-rule-preset-ja-technical-writing": "10.0.1",
"textlint-rule-terminology": "5.2.12"
},
"engines": {
"node": ">=20",
"npm": "^10.8.2 || ^10.8.2 || ^8.19.2"
}
}