-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.42 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
{
"name": "@343dev/markdown-lint",
"version": "3.0.1",
"description": "Markdown code style linter",
"keywords": [
"markdown",
"linter"
],
"license": "MIT",
"author": "Andrey Warkentin (https://github.com/343dev)",
"repository": {
"type": "git",
"url": "git+https://github.com/343dev/markdown-lint.git"
},
"type": "module",
"exports": "./index.js",
"bin": {
"markdown-lint": "cli.js"
},
"files": [
"lib/",
".markdownlintrc.cjs",
"cli.js",
"index.js"
],
"scripts": {
"lint-js": "eslint .",
"lint-md": "./cli.js .",
"lint": "npm run lint-js && npm run lint-md",
"test": "echo \"Error: no test specified\" && exit 1",
"update-git-hooks": "npx simple-git-hooks"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"commander": "^12.0.0",
"eyo-kernel": "^2.5.6",
"fdir": "^6.2.0",
"prettier": "^3.3.3",
"remark": "^15.0.1",
"remark-preset-lint-markdown-style-guide": "^5.1.3",
"remark-textr": "^6.1.0",
"typograf": "^7.4.1",
"vfile-reporter": "^8.1.1"
},
"devDependencies": {
"@343dev/eslint-config": "^1.0.0",
"eslint": "^8.57.0",
"lint-staged": "^15.2.8",
"simple-git-hooks": "^2.11.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.md": "./cli.js --fix --typograph"
},
"eslintConfig": {
"extends": "@343dev"
}
}