-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.08 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.08 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
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
110
111
112
113
{
"name": "md-fileserver",
"version": "1.10.3",
"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",
"test:exf": "bin/mdstart.js test/exfiltrate.md"
},
"mocha": {
"exit": true
},
"dependencies": {
"@commenthol/markdown-it-katex": "^2.0.8",
"asyncc": "^2.0.9",
"body-parser": "^2.2.0",
"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": "^2.0.3",
"serve-index": "^1.9.1",
"serve-static": "^2.2.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@babel/preset-env": "^7.28.5",
"@babel/register": "^7.28.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.2",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"katex": "^0.16.25",
"mini-css-extract-plugin": "^2.9.4",
"mocha": "^11.7.5",
"normalize.css": "^8.0.1",
"npm-run-all2": "^8.0.4",
"rimraf": "^6.1.0",
"style-loader": "^4.0.0",
"supertest": "^7.1.4",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"engine": {
"node": ">=10.0.0"
},
"c4uIgnore": {
"markdown-it-attrs": "4.2.0"
}
}