forked from rtfpessoa/codacy-remark-lint
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
246 lines (246 loc) · 9.91 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
{
"name": "codacy-remark-lint",
"version": "1.0.0",
"description": "Codacy wrapper to support remark-lint analysis of Markdown files",
"author": {
"name": "Rodrigo Fernandes",
"email": "[email protected]"
},
"bin": {
"codacy-remark-lint": "build/main/index.js",
"codacy-docs": "build/main/codacy-docs.js"
},
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/codacy/codacy-remark-lint",
"license": "MIT",
"keywords": [],
"scripts": {
"info": "npm-scripts-info",
"docs:gen": "node build/main/codacy-docs.js",
"docker:build": "docker build --no-cache --tag codacy/codacy-remark-lint:dev .",
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"fix:markdown": "remark --rc-path .remarkrc.js . -o",
"test": "run-s build test:*",
"test:tslint": "tslint --project .",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"test:markdown": "remark --rc-path .remarkrc.js .",
"test:lint": "run-s test:tslint && run-s test:prettier && run-s test:markdown",
"test:unit": "nyc ava",
"watch": "run-s clean build:main && run-p \"build:main -- -w\" \"test:unit -- --watch\"",
"cov": "run-s build test:unit cov:html && opn coverage/index.html",
"cov:html": "nyc report --reporter=html",
"cov:send": "nyc report --reporter=lcov && cat coverage/lcov.info | codacy-coverage",
"cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
"doc": "run-s doc:html && opn build/docs/index.html",
"doc:html": "typedoc src/ --target ES6 --mode file --out build/docs",
"doc:json": "typedoc src/ --target ES6 --mode file --json build/docs/typedoc.json",
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
"version": "standard-version",
"reset": "git clean -dfx && git reset --hard && npm i",
"clean": "trash build test",
"all": "run-s reset test cov:check doc:html",
"prepare-release": "run-s all version doc:publish",
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('codacy-remark-lint must be installed with Yarn: https://yarnpkg.com/')\""
},
"scripts-info": {
"info": "Display information about the package scripts",
"build": "Clean and rebuild the project",
"fix": "Try to automatically fix any linting problems",
"test": "Lint and unit test the project",
"watch": "Watch and rebuild the project on save, then rerun relevant tests",
"cov": "Rebuild, run tests, then create and open the coverage report",
"doc": "Generate HTML API documentation and open it in a browser",
"doc:json": "Generate API documentation in typedoc JSON format",
"version": "Bump package.json version, update CHANGELOG.md, tag release",
"reset": "Delete all untracked files and reset the repo to the last commit",
"prepare-release": "One-step: clean, build, test, publish docs, and prep a release"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@types/tmp": "^0.2.1",
"dictionary-en": "^3.1.0",
"fs-extra": "^10.0.0",
"markdown-extensions": "^1.1.1",
"remark": "^13.0.0",
"remark-cli": "^5.0.0",
"remark-frontmatter": "^3.0.0",
"remark-gfm": "^3.0.1",
"remark-lint": "^9.1.2",
"remark-lint-alphabetize-lists": "^3.0.0",
"remark-lint-appropriate-heading": "^2.0.4",
"remark-lint-are-links-valid": "^1.0.3",
"remark-lint-blank-lines-1-0-2": "^3.0.0",
"remark-lint-blockquote-indentation": "^2.0.1",
"remark-lint-books-links": "2.1.0",
"remark-lint-checkbox-character-style": "^3.0.0",
"remark-lint-checkbox-content-indent": "^3.0.0",
"remark-lint-code": "^2.0.0",
"remark-lint-code-block-style": "^2.0.1",
"remark-lint-code-eslint": "^2.0.0",
"remark-lint-definition-case": "^2.0.1",
"remark-lint-definition-spacing": "^2.0.1",
"remark-lint-emoji-limit": "^1.0.1",
"remark-lint-emphasis-marker": "^2.0.1",
"remark-lint-fenced-code-flag": "^2.0.1",
"remark-lint-fenced-code-flag-case": "^1.0.4",
"remark-lint-fenced-code-marker": "^2.0.1",
"remark-lint-file-extension": "^1.0.5",
"remark-lint-final-definition": "^2.1.0",
"remark-lint-final-newline": "^1.0.5",
"remark-lint-first-heading-level": "^2.0.1",
"remark-lint-frontmatter-schema": "^3.15.2",
"remark-lint-hard-break-spaces": "^2.0.1",
"remark-lint-heading-increment": "^2.0.1",
"remark-lint-heading-length": "^1.0.0",
"remark-lint-heading-style": "^2.0.1",
"remark-lint-heading-whitespace": "^1.0.0",
"remark-lint-heading-word-length": "^1.0.3",
"remark-lint-linebreak-style": "^2.0.1",
"remark-lint-link-title-style": "^2.0.1",
"remark-lint-list-item-bullet-indent": "^3.0.0",
"remark-lint-list-item-content-indent": "^2.0.1",
"remark-lint-list-item-indent": "^2.0.1",
"remark-lint-list-item-spacing": "^3.0.0",
"remark-lint-list-item-style": "^1.1.3",
"remark-lint-match-punctuation": "^0.2.1",
"remark-lint-maximum-heading-length": "^2.0.1",
"remark-lint-maximum-line-length": "^2.0.3",
"remark-lint-mdash-style": "^1.1.1",
"remark-lint-no-blockquote-without-marker": "^4.0.0",
"remark-lint-no-chinese-punctuation-in-number": "^0.1.2",
"remark-lint-no-consecutive-blank-lines": "^3.0.0",
"remark-lint-no-dead-urls": "^1.1.0",
"remark-lint-no-duplicate-defined-urls": "^1.0.1",
"remark-lint-no-duplicate-definitions": "^2.0.1",
"remark-lint-no-duplicate-headings": "^2.0.1",
"remark-lint-no-duplicate-headings-in-section": "^2.0.2",
"remark-lint-no-emphasis-as-heading": "^2.0.1",
"remark-lint-no-empty-sections": "^4.0.0",
"remark-lint-no-empty-url": "^2.0.1",
"remark-lint-no-file-name-articles": "^1.0.5",
"remark-lint-no-file-name-consecutive-dashes": "^1.0.5",
"remark-lint-no-file-name-irregular-characters": "^1.0.5",
"remark-lint-no-file-name-mixed-case": "^1.0.5",
"remark-lint-no-file-name-outer-dashes": "^1.0.6",
"remark-lint-no-heading-content-indent": "^3.0.0",
"remark-lint-no-heading-indent": "^3.0.0",
"remark-lint-no-heading-like-paragraph": "^2.0.1",
"remark-lint-no-heading-punctuation": "^2.0.1",
"remark-lint-no-html": "^2.0.1",
"remark-lint-no-inline-padding": "^3.0.0",
"remark-lint-no-literal-urls": "^2.0.1",
"remark-lint-no-long-code": "0.1.3",
"remark-lint-no-missing-blank-lines": "^2.0.1",
"remark-lint-no-multiple-toplevel-headings": "^2.0.1",
"remark-lint-no-paragraph-content-indent": "^3.0.0",
"remark-lint-no-reference-like-url": "^2.0.1",
"remark-lint-no-repeat-punctuation": "0.1.4",
"remark-lint-no-shell-dollars": "^2.0.2",
"remark-lint-no-shortcut-reference-image": "^2.0.1",
"remark-lint-no-shortcut-reference-link": "^2.0.1",
"remark-lint-no-table-indentation": "^3.0.0",
"remark-lint-no-tabs": "^2.0.1",
"remark-lint-no-undefined-references": "^3.0.0",
"remark-lint-no-unneeded-full-reference-image": "^2.0.1",
"remark-lint-no-unneeded-full-reference-link": "^2.0.1",
"remark-lint-no-unused-definitions": "^2.0.1",
"remark-lint-no-url-trailing-slash": "3.0.1",
"remark-lint-ordered-list-marker-style": "^2.0.1",
"remark-lint-ordered-list-marker-value": "^2.0.1",
"remark-lint-rule-style": "^2.0.1",
"remark-lint-spaces-around-number": "^0.1.2",
"remark-lint-spaces-around-word": "^0.1.2",
"remark-lint-strong-marker": "^2.0.1",
"remark-lint-table-cell-padding": "^3.0.0",
"remark-lint-table-pipe-alignment": "^2.0.1",
"remark-lint-table-pipes": "^3.0.0",
"remark-lint-unordered-list-marker-style": "^2.0.1",
"remark-lint-write-good": "^1.2.0",
"remark-parse": "^9.0.0",
"remark-preset-lint-consistent": "^4.0.0",
"remark-preset-lint-markdown-style-guide": "^4.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"remark-retext": "^4.0.0",
"remark-slug": "^6.1.0",
"remark-stringify": "^9.0.1",
"remark-validate-links": "^10.0.4",
"retext": "^8.0.0",
"retext-contractions": "^4.0.0",
"retext-diacritics": "^3.0.0",
"retext-english": "^3.0.4",
"retext-equality": "^5.7.0",
"retext-indefinite-article": "^2.0.3",
"retext-overuse": "^1.1.1",
"retext-passive": "^3.0.0",
"retext-profanities": "^6.1.0",
"retext-quotes": "^4.0.0",
"retext-readability": "^6.0.0",
"retext-redundant-acronyms": "^3.0.0",
"retext-repeated-words": "^3.0.0",
"retext-sentence-spacing": "^4.0.0",
"retext-spell": "^4.0.1",
"retext-syntax-urls": "^2.0.0",
"retext-usage": "^0.5.0",
"tmp": "^0.2.1",
"unified": "^9.2.1",
"unified-engine": "^8.2.0",
"vfile": "^4.2.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.12",
"@types/node": "^16.3.2",
"@types/trim": "^0.1.1",
"@types/vfile": "^4.0.0",
"ava": "3.15.0",
"codacy-coverage": "^3.0.0",
"cz-conventional-changelog": "^3.3.0",
"dox": "^0.9.0",
"gh-pages": "^3.2.3",
"npm-run-all": "^4.1.3",
"npm-scripts-info": "^0.3.9",
"nyc": "^15.1.0",
"opn-cli": "^5.0.0",
"prettier": "^2.3.2",
"standard-version": "^9.3.1",
"strip-indent": "^4.0.0",
"trash-cli": "^4.0.0",
"trim": "^1.0.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.13.0",
"tslint-config-semistandard": "^8.0.1",
"tslint-immutable": "^6.0.1",
"typedoc": "^0.20.37",
"typescript": "^3.9.10",
"vfile-location": "^4.0.1",
"vfile-message": "^2.0.4",
"vfile-reporter": "^7.0.1"
},
"ava": {
"failFast": true,
"files": [
"build/main/**/*.spec.js"
],
"ignoredByWatcher": [
"!build/main/**/*.js"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nyc": {
"exclude": [
"**/*.spec.js"
]
}
}