-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
109 lines (109 loc) · 2.98 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "md-fileserver",
"version": "1.10.2",
"description": "Locally view markdown files in a browser",
"keywords": [
"fileserver",
"markdown",
"server"
],
"homepage": "https://github.com/commenthol/md-fileserver",
"bugs": {
"url": "http://github.com/commenthol/md-fileserver/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/md-fileserver.git"
},
"license": "MIT",
"author": "commenthol",
"main": "lib/index.js",
"bin": {
"mdstart": "bin/mdstart.js"
},
"man": "./man/mdstart.1",
"files": [
"bin",
"lib",
"man",
"assets",
"config.js",
"test/cheatsheet.md",
"test/cnfl.md",
"test/path_to"
],
"scripts": {
"all": "npm-run-all clean lint build test",
"ci": "npm run all",
"build": "webpack --mode production",
"clean": "rimraf assets/* coverage *.tgz",
"coverage": "c8 -r html -r text npm test",
"dev": "webpack -w",
"lint": "eslint",
"man": "marked-man man/mdstart.md > man/mdstart.1 && man man/mdstart.1 > man/mdstart.txt",
"prepublishOnly": "npm run all",
"readme": "markedpp --githubid -i README.md -o README.md",
"test": "mocha",
"test:md": "bin/mdstart.js test/cheatsheet.md",
"test:cnfl": "bin/mdstart.js test/cnfl.md"
},
"mocha": {
"exit": true
},
"dependencies": {
"@commenthol/markdown-it-katex": "^2.0.8",
"asyncc": "^2.0.7",
"body-parser": "^1.20.3",
"confluencer": "^1.5.2",
"cookie": "^1.0.2",
"express": "^4.21.2",
"highlight.js": "^11.11.1",
"lodash": "^4.17.21",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-admon": "^1.0.1",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "~4.2.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-highlightjs": "^4.2.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-multimd-table": "^4.2.3",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-task-lists": "^2.1.1",
"markedpp": "^1.4.0",
"serve-index": "^1.9.1",
"serve-static": "^1.16.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"katex": "^0.16.19",
"mini-css-extract-plugin": "^2.9.2",
"mocha": "^11.0.1",
"normalize.css": "^8.0.1",
"npm-run-all2": "^7.0.2",
"rimraf": "^6.0.1",
"style-loader": "^4.0.0",
"supertest": "^7.0.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"engine": {
"node": ">=10.0.0"
}
}