-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.26 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
{
"name": "schwifty-markdown",
"description": "Convert Markdown documents to HTML on the fly, including yUML and PlantUML diagrams and graph charts rendering.",
"version": "2.0.0",
"keywords": [
"markdown",
"toc",
"table of content",
"plantuml"
],
"author": {
"email": "duhamelantoine1995@gmail.com",
"name": "Antoine du HAMEL",
"url": "https://aduh95.github.io"
},
"license": "MIT",
"main": "index.mjs",
"repository": {
"type": "git",
"url": "git+https://github.com/aduh95/schwifty-markdown.git"
},
"bugs": {
"url": "https://github.com/aduh95/schwifty-markdown/issues"
},
"bin": {
"schwifty": "bin/schwifty.js"
},
"dependencies": {
"exitzero": "^1.0.1",
"express": "^4.16.3",
"js-yaml": "^4.0.0",
"jsdom": "^16.2.1",
"marked": "^1.0.0",
"node-plantuml": "^0.9.0",
"open": "^7.0.0",
"papaparse": "^5.1.1",
"ws": "^7.0.0",
"yargs": "^16.2.0",
"yuml2svg": "^5.0.0"
},
"scripts": {
"start": "node bin/schwifty.js",
"test": "node tests/bootstrap.js",
"preversion": "yarn test",
"postversion": "git push && git push --tags"
},
"type": "module",
"engines": {
"node": "^12.17.0 || >=13.2.0"
},
"devDependencies": {
"cypress": "^6.3.0"
}
}