-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
103 lines (103 loc) · 2.95 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "hallmark",
"version": "5.0.1",
"description": "Markdown Style Guide, with linter and automatic fixer",
"author": "Vincent Weevers",
"license": "GPL-3.0",
"bin": "cli-dist.js",
"type": "module",
"exports": "./index.js",
"scripts": {
"test": "standard && depcheck --ignores subarg && node cli-dist.js && tape test/*.js",
"hallmark": "node cli-dist.js fix",
"pack": "rollup -c"
},
"files": [
"CHANGELOG.md",
"cli-dist.js",
"index.js",
"lint.js",
"USAGE"
],
"dependencies": {
"catering": "^2.1.0",
"deglob": "^4.0.0",
"find-file-up": "^2.0.1",
"find-githost": "^1.0.0",
"remark": "^14.0.1",
"remark-autolink-references": "^2.0.0",
"remark-common-changelog": "^2.3.2",
"remark-gfm": "^3.0.1",
"remark-github": "^11.2.2",
"remark-lint": "^9.1.0",
"remark-lint-blockquote-indentation": "^3.1.0",
"remark-lint-checkbox-character-style": "^4.1.0",
"remark-lint-checkbox-content-indent": "^4.1.0",
"remark-lint-code-block-style": "^3.1.0",
"remark-lint-definition-case": "^3.1.0",
"remark-lint-emphasis-marker": "^3.1.0",
"remark-lint-fenced-code-marker": "^3.1.0",
"remark-lint-final-newline": "^2.1.0",
"remark-lint-hard-break-spaces": "^3.1.0",
"remark-lint-list-item-bullet-indent": "^4.1.0",
"remark-lint-list-item-indent": "^3.1.0",
"remark-lint-no-auto-link-without-protocol": "^3.1.0",
"remark-lint-no-blockquote-without-marker": "^5.1.0",
"remark-lint-no-duplicate-definitions": "^3.1.0",
"remark-lint-no-heading-content-indent": "^4.1.0",
"remark-lint-no-inline-padding": "^4.1.0",
"remark-lint-no-literal-urls": "^3.1.0",
"remark-lint-no-undefined-references": "^4.1.0",
"remark-lint-no-unused-definitions": "^3.1.0",
"remark-lint-rule-style": "^3.1.0",
"remark-lint-strong-marker": "^3.1.0",
"remark-lint-table-cell-padding": "^4.1.1",
"remark-lint-table-pipes": "^4.1.0",
"remark-lint-unordered-list-marker-style": "^3.1.0",
"remark-validate-links": "^12.1.0",
"subarg": "^1.0.0",
"supports-color": "^9.0.2",
"unified-engine": "^10.0.1",
"vfile-reporter-shiny": "^1.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"depcheck": "^1.4.2",
"git-pull-or-clone": "^2.0.2",
"rollup": "^4.14.0",
"standard": "^17.0.0",
"tape": "^5.5.3",
"tempy": "^3.0.0"
},
"standard": {
"ignore": [
"cli-dist.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/vweevers/hallmark.git"
},
"homepage": "https://github.com/vweevers/hallmark",
"keywords": [
"markdown",
"documentation",
"docs",
"readme",
"changelog",
"check",
"fixer",
"linter",
"lint",
"quality",
"hallmark",
"remark",
"unified"
],
"engines": {
"node": ">=16"
}
}