-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.27 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.27 KB
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
{
"name": "@node-core/remark-lint",
"type": "module",
"version": "1.3.0",
"exports": {
".": "./src/index.mjs",
"./api": "./src/api.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/nodejs/nodejs.org",
"directory": "packages/remark-lint"
},
"scripts": {
"lint": "node --run lint:js",
"lint:fix": "node --run lint:js:fix",
"lint:js": "eslint \"**/*.mjs\"",
"lint:js:fix": "node --run lint:js -- --fix",
"test": "node --run test:unit",
"test:unit": "cross-env NODE_NO_WARNINGS=1 node --experimental-test-coverage --test \"**/*.test.mjs\""
},
"dependencies": {
"@node-core/doc-kit": "^1.0.2",
"remark-gfm": "^4.0.1",
"remark-lint-blockquote-indentation": "^4.0.1",
"remark-lint-checkbox-character-style": "^5.0.1",
"remark-lint-checkbox-content-indent": "^5.0.1",
"remark-lint-code-block-style": "^4.0.1",
"remark-lint-definition-spacing": "^4.0.1",
"remark-lint-fenced-code-flag": "^4.2.0",
"remark-lint-fenced-code-marker": "^4.0.1",
"remark-lint-final-definition": "^4.0.2",
"remark-lint-heading-style": "^4.0.1",
"remark-lint-maximum-line-length": "^4.1.1",
"remark-lint-no-consecutive-blank-lines": "^5.0.1",
"remark-lint-no-file-name-consecutive-dashes": "^3.0.1",
"remark-lint-no-file-name-outer-dashes": "^3.0.1",
"remark-lint-no-heading-indent": "^5.0.1",
"remark-lint-no-literal-urls": "^4.0.1",
"remark-lint-no-multiple-toplevel-headings": "^4.0.1",
"remark-lint-no-shell-dollars": "^4.0.1",
"remark-lint-no-table-indentation": "^5.0.1",
"remark-lint-no-tabs": "^4.0.1",
"remark-lint-no-trailing-spaces": "^4.0.3",
"remark-lint-no-unused-definitions": "^4.0.2",
"remark-lint-prohibited-strings": "^4.0.0",
"remark-lint-rule-style": "^4.0.1",
"remark-lint-strong-marker": "^4.0.1",
"remark-lint-table-cell-padding": "^5.1.1",
"remark-lint-table-pipes": "^5.0.1",
"remark-lint-unordered-list-marker-style": "^4.0.1",
"remark-preset-lint-recommended": "^7.0.1",
"semver": "^7.7.3",
"unified-lint-rule": "^3.0.1",
"unist-util-visit": "^5.1.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"cross-env": "catalog:",
"dedent": "^1.7.1",
"remark-parse": "^11.0.0",
"unified": "^11.0.5"
}
}