-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
108 lines (108 loc) · 2.29 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
{
"name": "hads",
"version": "3.0.3",
"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": {
"name": "Yohan Lasorsa",
"url": "https://twitter.com/sinedied"
},
"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",
"export": "node hads.js ./test -e export-test && npx http-server export-test",
"test": "eslint *.js lib/*.js",
"release:check": "semantic-release --dry-run"
},
"bin": {
"hads": "./bin/hads"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"ace-builds": "^1.4.11",
"dropzone": "^5.7.0",
"elasticlunr": "^0.9.5",
"express": "^4.17.1",
"font-awesome": "^4.7.0",
"fs-extra": "^10.0.0",
"globby": "^11.0.0",
"highlight.js": "^11.2.0",
"humanize-string": "^2.1.0",
"lodash": "^4.17.15",
"marked": "^4.0.15",
"mermaid": "^9.0.1",
"moment": "^2.24.0",
"multer": "^1.4.2",
"normalize-path": "^3.0.0",
"octicons": "^4.4.0",
"open": "^8.2.1",
"pug": "^3.0.0",
"recursive-readdir": "^2.2.2",
"remove-markdown": "^0.5.0",
"shortid": "^2.2.15",
"yargs": "^17.1.1"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-xo-space": "^0.24.0",
"semantic-release": "^19.0.2",
"semantic-release-npm-github": "^3.0.0"
},
"eslintConfig": {
"extends": "xo-space/esnext",
"parserOptions": {
"sourceType": "script"
},
"rules": {
"no-multi-spaces": [
"error",
{
"ignoreEOLComments": true
}
],
"one-var": [
"error",
{
"initialized": "never"
}
]
}
},
"release": {
"extends": "semantic-release-npm-github",
"branches": "main"
},
"files": [
"hads.js",
"bin",
"lib",
"public",
"views"
]
}