-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.92 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
{
"contributors": [
"Andrew Udvare <[email protected]>"
],
"devDependencies": {
"@prettier/plugin-xml": "^3.4.1",
"cspell": "^8.17.1",
"markdownlint-cli2": "^0.16.0",
"prettier": "^3.4.2",
"prettier-plugin-ini": "^1.3.0",
"prettier-plugin-sort-json": "^4.0.0",
"prettier-plugin-toml": "^2.0.1"
},
"license": "MIT",
"markdownlint-cli2": {
"config": {
"default": true,
"line-length": {
"code_blocks": false,
"line_length": 100
}
}
},
"name": "instagram-archiver",
"prettier": {
"endOfLine": "lf",
"iniSpaceAroundEquals": true,
"jsonRecursiveSort": true,
"plugins": [
"@prettier/plugin-xml",
"prettier-plugin-ini",
"prettier-plugin-sort-json",
"prettier-plugin-toml"
],
"printWidth": 100,
"singleQuote": true
},
"repository": "[email protected]:Tatsh/instagram-archiver.git",
"scripts": {
"check-formatting": "yarn prettier -c . && poetry run yapf -prd . && markdownlint-cli2 '**/*.md' '#node_modules'",
"check-spelling": "cspell --no-progress .",
"clean-dict": "r=(); while IFS=$\\n read -r w; do ! rg --no-config -qi. -g '!.vscode/dictionary.txt' -m 1 \"$w\" . && r+=(\"$w\"); done < .vscode/dictionary.txt; j=$(printf \"|%s\" \"${r[@]}\"); j=\"^(${j:1})$\"; grep -Ev \"${j}\" .vscode/dictionary.txt > new && mv new .vscode/dictionary.txt",
"format": "yarn prettier -w . && poetry run yapf -pri . && markdownlint-cli2 --fix '**/*.md' '#node_modules'",
"gen-docs": "sphinx-build -T -E -b html -d docs/_build/doctrees -D language=en docs docs/_build",
"gen-manpage": "sphinx-build -T -E -b man -d docs/_build/doctrees -D language=en docs man",
"mypy": "poetry run mypy .",
"qa": "yarn mypy && yarn ruff && yarn check-spelling && yarn check-formatting",
"ruff": "poetry run ruff .",
"ruff:fix": "poetry run ruff --fix .",
"test": "poetry run pytest"
},
"version": "0.0.1"
}