-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 945 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 945 Bytes
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
{
"name": "markdown-serve",
"version": "0.9.0",
"description": "Simple Markdown files server for use as an Express middleware or standalone",
"main": "index.js",
"scripts": {
"test": "mocha test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lyphtec/markdown-serve.git"
},
"keywords": [
"express",
"markdown",
"middleware",
"markdown-serve",
"express middleware"
],
"author": "Nguyen Ly <lyphtec@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lyphtec/markdown-serve/issues"
},
"homepage": "http://lyphtec.github.io/markdown-serve",
"dependencies": {
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"marked": "^15.0.2",
"mkdirp": "^3.0.1"
},
"devDependencies": {
"chai": "^4.3.10",
"express": "~4.21.1",
"mocha": "^10.8.2",
"pug": "^3.0.3",
"rimraf": "^2.6.3",
"supertest": "^7.0.0"
}
}