-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 3 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
63
64
65
66
67
68
69
70
71
72
{
"name": "markdown-tools",
"version": "0.1.4",
"description": "A simple tool-set for linting errors in markdown files",
"main": "",
"scripts": {
"stylefix": "prettier --write 'lint/**/*.md' && remark lint/ -f -o",
"postinstall": "npm run build && ./scripts/postinstall.sh",
"build": "tsc",
"stylecheck": "remark lint/ -f",
"spellcheck": "mdspell 'lint/**/*.md' '!**/node_modules/**/*.md' --dictionary all --report --ignore-numbers",
"prespellcheck": "./scripts/prespellcheck.sh",
"linkcheck": "find lint/ -name \\*.md -exec markdown-link-check {} \\;",
"lint": "npm run spellcheck && npm run stylecheck",
"stories2csv": "tsc && node dist/stories2csv",
"test": "jest",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags"
},
"bin": {
"markdown-tools": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/green-fox-academy/markdown-tools.git"
},
"author": "Tamas Kokeny <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/green-fox-academy/markdown-tools/issues"
},
"homepage": "https://github.com/green-fox-academy/markdown-tools#readme",
"dependencies": {
"@types/node": "^13.9.0",
"@types/unist": "2.0.3",
"markdown-link-check": "^3.8.0",
"markdown-spellcheck": "^1.3.1",
"prettier": "^1.18.2",
"remark-cli": "^7.0.1",
"remark-lint": "^6.0.5",
"remark-lint-checkbox-character-style": "^1.0.3",
"remark-lint-checkbox-content-indent": "^1.0.3",
"remark-lint-final-newline": "^1.0.3",
"remark-lint-list-item-bullet-indent": "^1.0.3",
"remark-lint-list-item-content-indent": "^1.0.3",
"remark-lint-list-item-indent": "^1.0.4",
"remark-lint-no-duplicate-headings-in-section": "^1.0.4",
"remark-lint-no-heading-content-indent": "^1.0.3",
"remark-lint-no-heading-indent": "^1.0.3",
"remark-lint-no-missing-blank-lines": "^1.0.3",
"remark-lint-no-paragraph-content-indent": "^1.0.6",
"remark-lint-no-reference-like-url": "^1.0.4",
"remark-lint-no-tabs": "^1.0.3",
"remark-parse": "^7.0.2",
"remark-preset-lint-markdown-style-guide": "^2.1.3",
"remark-stringify": "^7.0.4",
"unified": "^8.4.2",
"unist-util-find-after": "3.0.0",
"unist-util-find-all-after": "3.0.1",
"unist-util-find-all-between": "2.0.0",
"unist-util-select": "3.0.1",
"@types/jest": "^25.1.3",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3",
"@types/babel__traverse": "7.18.2"
},
"devDependencies": {
"generate-changelog": "^1.8.0"
}
}