-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
44 lines (44 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
{
"author": "Suan-Aik Yeo <yeosuanaik@gmail.com>",
"name": "instant-markdown-d",
"repository": {
"type": "git",
"url": "git+https://github.com/instant-markdown/instant-markdown-d.git"
},
"description": "Instantly-updating Markdown Server",
"version": "0.3.0",
"license": "Apache-2.0",
"homepage": "https://github.com/instant-markdown/instant-markdown-d",
"engines": {
"node": ">=12.0.0"
},
"main": "./src/cli.js",
"preferGlobal": "true",
"bin": {
"instant-markdown-d": "./src/cli.js"
},
"scripts": {
"start": "instant-markdown-d",
"test": "cat tests/test_math.md | instant-markdown-d --mathjax --debug",
"stop": "curl -X DELETE -s -w 'status: %{http_code}' -m 3 localhost:8090",
"prepare": "npx genversion ./src/version.js"
},
"dependencies": {
"highlight.js": "^11.8.0",
"markdown-it": "^13.0.1",
"markdown-it-mathjax": "^2.0.0",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-front-matter": "^0.2.3",
"markdown-it-textual-uml": "^0.1.3",
"mathjax": "^2.7.9",
"mathjax-node-page": "^1.4.1",
"mermaid": "~10.4.0",
"minimist": "^1.2.8",
"send": "~0.17.2",
"socket.io": "^4.7.2",
"markdown-it-anchor": "^8.6.7"
},
"devDependencies": {
"genversion": "^3.1.1"
}
}