-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"author": {
"name": "Xhin Liang",
"email": "<xhinliang@gmail.com>",
"url": "xhinliang.com"
},
"name": "markdown-it-plantuml-ex",
"version": "1.0.0",
"description": "Plugin to create block-level uml diagrams for markdown-it markdown parser using offline plantuml.jar",
"repository": "xhinliang/markdown-it-plantuml-ex",
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "mocha test/*.js",
"test:report": "npm test -- --reporter mocha-junit-reporter",
"coverage": "nyc npm test",
"coverage:report": "npm run coverage && nyc report --reporter=lcovonly",
"verify": "npm run format:check && npm run lint && npm test"
},
"keywords": [
"markdown-it-plugin",
"markdown-it",
"markdown",
"uml",
"plantuml"
],
"dependencies": {
"cheerio": "^1.1.2"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"markdown-it": "^14.1.0",
"markdown-it-testgen": "^0.1.5",
"mocha": "^11.7.2",
"mocha-junit-reporter": "^2.2.1",
"nyc": "^17.1.0",
"prettier": "^3.6.2"
},
"nyc": {
"exclude": [
"lib",
"test"
]
}
}