forked from sinedied/hads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 1.9 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
{
"name": "hads",
"version": "1.6.1",
"description": "Fast web server allowing to browse, search and edit project documentation written in Markdown",
"repository": {
"type": "git",
"url": "https://github.com/sinedied/hads.git"
},
"keywords": [
"markdown",
"gfm",
"server",
"local",
"offline",
"search",
"edit",
"doc",
"documentation",
"knowledgebase",
"wiki",
"search",
"mermaid",
"nodejs"
],
"author": "Yohan Lasorsa",
"license": "MIT",
"homepage": "https://github.com/sinedied/hads",
"bugs": {
"url": "https://github.com/sinedied/hads/issues"
},
"main": "hads.js",
"scripts": {
"start": "node hads.js ./test -o",
"test": "eslint eslint *.js lib/*.js",
"postpublish": "git tag -a $npm_package_version -m \"$npm_package_version\" && git push --tags"
},
"bin": {
"hads": "./bin/hads"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"ace-builds": "^1.3.1",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"dropzone": "^5.3.0",
"elasticlunr": "^0.9.5",
"express": "^4.16.2",
"font-awesome": "^4.7.0",
"highlight.js": "^9.12.0",
"lodash": "^4.17.5",
"marked": "^0.3.15",
"mermaid": "^7.1.2",
"mkdirp": "^0.5.1",
"moment": "^2.20.1",
"multer": "^1.3.0",
"octicons": "^4.4.0",
"open": "^0.0.5",
"optimist": "^0.6.1",
"pug": "^2.0.0-rc.4",
"recursive-readdir": "^2.2.1",
"remove-markdown": "^0.2.2",
"shortid": "^2.2.8",
"string-humanize": "^1.0.0"
},
"devDependencies": {
"eslint": "^4.18.0",
"eslint-config-xo-space": "^0.18.0"
},
"eslintConfig": {
"extends": "xo-space/esnext",
"rules": {
"no-multi-spaces": [
"error",
{
"ignoreEOLComments": true
}
],
"one-var": [
"error",
{
"initialized": "never"
}
]
}
}
}