-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.23 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.23 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
{
"name": "@funboxteam/markdown-lint",
"version": "2.0.2",
"description": "Markdown code style linter",
"license": "MIT",
"author": "Andrey Ivanov (https://github.com/343dev)",
"repository": {
"type": "git",
"url": "https://github.com/funbox/markdown-lint"
},
"main": "index.js",
"bin": {
"markdown-lint": "./cli.js"
},
"files": [
"lib/",
".markdownlintrc.js",
"cli.js",
"index.js"
],
"scripts": {
"lint-js": "eslint .",
"lint": "npm run lint-js",
"prepublishOnly": "if [ -z \"$CI\" ]; then lawyer; fi",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@funboxteam/eslint-config": "7.3.0",
"eslint": "7.32.0",
"husky": "4.3.8",
"lint-staged": "10.5.2"
},
"dependencies": {
"commander": "6.2.0",
"eyo-kernel": "2.5.6",
"glob": "7.1.6",
"prettier": "2.2.1",
"remark": "13.0.0",
"remark-preset-lint-markdown-style-guide": "4.0.0",
"remark-textr": "4.0.0",
"typograf": "6.11.3",
"vfile-reporter": "6.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.md": [
"./cli.js --fix --typograph"
]
}
}