-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 963 Bytes
/
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
{
"name": "markdown-webserver",
"version": "1.0.0",
"description": "This is a simple application which can turn a markdown directory structure to a webserver",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec",
"start": "node index.js"
},
"author": "dadikovi <dadikovi@gmail.com> (dadikovi.github.io)",
"license": "Apache-2.0",
"dependencies": {
"assert": "^1.4.1",
"express": "^4.16.2",
"json": "^9.0.6",
"marked": "^0.3.17",
"mocha": "^5.0.5",
"mustache": "^2.3.0",
"simple-git": "^1.92.0"
},
"engines": {
"node": ">=4.2.4"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/dadikovi/markdown-webserver.git"
},
"keywords": [
"markdown",
"webserver",
"git"
],
"bugs": {
"url": "https://github.com/dadikovi/markdown-webserver/issues"
},
"homepage": "https://github.com/dadikovi/markdown-webserver#readme"
}