-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.71 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
{
"name": "remark-lint-check-toc",
"version": "1.0.0",
"description": "Ensure that your Markdown TOC is correct",
"keywords": [
"remark",
"remark-plugin",
"lint",
"markdown",
"remark-lint"
],
"author": "Ilya Titov",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ilyatitovich/remark-lint-check-toc.git"
},
"sideEffects": false,
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"type": "module",
"scripts": {
"test": "pnpm run /^test:/",
"test:lint": "eslint .",
"test:coverage": "c8 pnpm bnt",
"test:size": "size-limit",
"test:plugin": "node ./test/test.js"
},
"devDependencies": {
"@logux/eslint-config": "^53.0.0",
"@size-limit/preset-small-lib": "^11.0.2",
"better-node-test": "^0.5.0",
"c8": "^9.1.0",
"clean-publish": "^4.3.0",
"eslint": "^8.57.0",
"remark": "^15.0.1",
"size-limit": "^11.0.2"
},
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"c8": {
"exclude": [
"**/*.test.*",
"test/*"
],
"lines": 100,
"check-coverage": true,
"reporter": [
"text",
"lcov"
],
"skip-full": true,
"clean": true
},
"size-limit": [
{
"import": "{ }",
"limit": "0 B"
}
],
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"clean-publish": {
"cleanDocs": true
},
"dependencies": {
"github-slugger": "^2.0.0",
"unified-lint-rule": "^2.1.2",
"unist-util-find": "^3.0.0",
"unist-util-visit": "^5.0.0",
"unist-util-visit-parents": "^6.0.1"
}
}