-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 931 Bytes
/
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
{
"name": "mdv",
"version": "1.3.4",
"description": "Markdown Validator",
"main": "index.js",
"scripts": {
"test": "node testRunner -f test/fail test/pass",
"lint": "npx eslint *.js",
"lint:fix": "npx eslint *.js --fix"
},
"bin": {
"mdv": "./mdv.js"
},
"keywords": [
"markdown",
"validator",
"validation",
"link",
"links",
"image",
"images",
"a11y",
"accessibility"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Mermade/mdv.git"
},
"author": "Mike Ralphson <[email protected]>",
"license": "BSD-3-Clause",
"dependencies": {
"abnf": "0.0.5",
"cheerio": "^1.0.0-rc.12",
"glob": "^7.1.6",
"jgexml": "^0.4.2",
"markdown-it": "^13.0.2",
"open": "^8.2.1",
"rich-text-diff": "^0.2.3",
"yaml": "^2.3.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"node-readfiles": "^0.2.0"
}
}