-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.esdoc.json
34 lines (34 loc) · 1.14 KB
/
.esdoc.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
{
"source":"./lib",
"destination":"./docs",
"package": "./package.json",
"plugins": [
{"name": "esdoc-node"},
{"name": "esdoc-ecmascript-proposal-plugin", "option": {"all": true}},
{
"name": "esdoc-standard-plugin",
"options": {
"lint": {"enable": true},
"coverage": {"enable": false},
"accessor": {
"access": ["public", "protected"],
"autoPrivate": true
},
"undocumentIdentifier": {"enable": true},
"unexportedIdentifier": {"enable": false},
"typeInference": {"enable": true},
"brand": {
"title": "N2N-Overlay-Wrtc",
"description": "A WebRTC peer is able to mediate the connection establishment between its neighbors, i.e., it becomes a signaling server for its neighbors. It allows peers to organize their overlay network.",
"repository": "https://github.com/ran3d/n2n-overlay-wrtc",
"site": "https://github.com/ran3d/n2n-overlay-wrtc",
"author": "https://github.com/ran3d/"
},
"manual": {
"index": "./README.md",
"globalIndex": true
}
}
}
]
}