-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "@mstroppel/remark-local-plantuml",
"version": "0.0.1",
"description": "`remark-local-plantuml` is a simple plugin for [remarkjs](https://github.com/remarkjs/remark) that converts PlantUML code written in Markdown to inline image.",
"type": "module",
"exports": "./index.js",
"scripts": {
"test": "mocha --timeout 5000",
"coverage": "nyc npm run test",
"lint": "eslint ./index.js",
"lint-fix": "eslint --fix ./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mstroppel/remark-local-plantuml.git"
},
"author": "mstroppel",
"license": "MIT",
"bugs": {
"url": "https://github.com/mstroppel/remark-local-plantuml/issues"
},
"homepage": "https://github.com/mstroppel/remark-local-plantuml#readme",
"keywords": [
"remark",
"plantuml"
],
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^10.2.0",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"remark": "^11.0.2"
},
"dependencies": {
"node-plantuml": "^0.9.0",
"unist-util-visit": "^2.0.2"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
}
}