-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
131 lines (131 loc) · 3.86 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "awesome-lint",
"version": "1.2.0",
"description": "Linter for Awesome lists",
"license": "MIT",
"repository": "sindresorhus/awesome-lint",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"bin": "./cli.js",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js",
"config.js",
"cli.js",
"lib",
"rules"
],
"keywords": [
"awesome",
"lint",
"linter",
"markdown",
"md",
"remark",
"remark-lint",
"cli-app",
"cli"
],
"dependencies": {
"arrify": "^3.0.0",
"case": "^1.6.3",
"emoji-regex": "^10.2.1",
"execa": "^9.1.0",
"github-slugger": "^2.0.0",
"github-url-to-object": "^4.0.6",
"globby": "^14.0.1",
"got": "^13.0.0",
"is-github-url": "^1.2.2",
"is-url-superb": "^6.1.0",
"mdast-util-to-string": "^4.0.0",
"meow": "^13.2.0",
"ora": "^8.0.1",
"parse-github-url": "^1.0.2",
"read-pkg": "^9.0.1",
"remark": "^15.0.1",
"remark-lint": "^10.0.0",
"remark-lint-blockquote-indentation": "^4.0.0",
"remark-lint-checkbox-character-style": "^5.0.0",
"remark-lint-checkbox-content-indent": "^5.0.0",
"remark-lint-code-block-style": "^4.0.0",
"remark-lint-definition-case": "^4.0.0",
"remark-lint-definition-spacing": "^4.0.0",
"remark-lint-double-link": "^0.2.0",
"remark-lint-emphasis-marker": "^4.0.0",
"remark-lint-fenced-code-marker": "^4.0.0",
"remark-lint-file-extension": "^3.0.0",
"remark-lint-final-newline": "^3.0.0",
"remark-lint-hard-break-spaces": "^4.0.0",
"remark-lint-heading-style": "^4.0.0",
"remark-lint-link-title-style": "^4.0.0",
"remark-lint-list-item-bullet-indent": "^5.0.0",
"remark-lint-list-item-content-indent": "^4.0.0",
"remark-lint-list-item-indent": "^4.0.0",
"remark-lint-match-punctuation": "^0.2.1",
"remark-lint-no-auto-link-without-protocol": "^3.1.2",
"remark-lint-no-blockquote-without-marker": "^6.0.0",
"remark-lint-no-emphasis-as-heading": "^4.0.0",
"remark-lint-no-empty-sections": "^4.0.0",
"remark-lint-no-file-name-articles": "^3.0.0",
"remark-lint-no-file-name-consecutive-dashes": "^3.0.0",
"remark-lint-no-file-name-irregular-characters": "^3.0.0",
"remark-lint-no-file-name-mixed-case": "^3.0.0",
"remark-lint-no-file-name-outer-dashes": "^3.0.0",
"remark-lint-no-heading-content-indent": "^5.0.0",
"remark-lint-no-heading-indent": "^5.0.0",
"remark-lint-no-heading-punctuation": "^4.0.0",
"remark-lint-no-inline-padding": "^4.1.2",
"remark-lint-no-multiple-toplevel-headings": "^4.0.0",
"remark-lint-no-repeat-punctuation": "^0.1.4",
"remark-lint-no-shell-dollars": "^4.0.0",
"remark-lint-no-table-indentation": "^5.0.0",
"remark-lint-no-undefined-references": "^5.0.0",
"remark-lint-no-unneeded-full-reference-image": "^4.0.0",
"remark-lint-no-unneeded-full-reference-link": "^4.0.0",
"remark-lint-no-unused-definitions": "^4.0.0",
"remark-lint-ordered-list-marker-style": "^4.0.0",
"remark-lint-ordered-list-marker-value": "^4.0.0",
"remark-lint-rule-style": "^4.0.0",
"remark-lint-strong-marker": "^4.0.0",
"remark-lint-table-cell-padding": "^5.0.0",
"remark-lint-table-pipe-alignment": "^4.0.0",
"remark-lint-table-pipes": "^5.0.0",
"remark-lint-unordered-list-marker-style": "^4.0.0",
"rmfr": "^2.0.0",
"tempy": "^3.1.0",
"to-vfile": "^8.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-find": "^3.0.0",
"unist-util-find-all-after": "^5.0.0",
"unist-util-find-all-before": "^5.0.0",
"unist-util-find-all-between": "^2.1.0",
"unist-util-visit": "^5.0.0",
"vfile-reporter-pretty": "^7.0.0"
},
"devDependencies": {
"ava": "^6.1.3",
"sinon": "^18.0.0",
"xo": "^0.58.0"
},
"xo": {
"rules": {
"ava/no-ignored-test-files": "off"
}
},
"ava": {
"files": [
"!test/integration.js"
]
}
}