-
Notifications
You must be signed in to change notification settings - Fork 6
/
.esdoc.json
64 lines (64 loc) · 1.57 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
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
{
"source": "packages",
"destination": "./docs",
"excludes": [
"/node_modules/",
"/lib/",
"/test/"
],
"package": "./.esdoc.json",
"plugins": [{
"name": "esdoc-standard-plugin",
"option": {
"lint": {
"enable": true
},
"accessor": {
"access": ["public", "protected"],
"autoPrivate": true
},
"brand": {
"title": "RemoteLib",
"description": "Run remote JavaScript code as if it's your own local library.",
"repository": "https://github.com/remotelib/remote-lib",
"site": "http://wwww.remotelib.com"
},
"manual": {
"index": "./README.md",
"globalIndex": true,
"asset": "./manual/asset",
"files": [
"./manual/remote-lib.md",
"./manual/remote-context.md",
"./manual/remote-environment.md",
"./manual/remote-instance.md",
"./manual/remote-protocol.md",
"./manual/reference-context.md"
]
}
}
}, {
"name": "esdoc-importpath-plugin",
"option": {
"replaces": [{
"from": "/src/",
"to": "/lib/"
}, {
"from": "^./packages/",
"to": ""
}, {
"from": "reference-context/lib/reference-context.js$",
"to": "reference-context"
}, {
"from": "remote-instance/lib/parser.js$",
"to": "remote-instance"
}, {
"from": "remote-context/lib/index.js$",
"to": "remote-context"
}, {
"from": "remote-lib/lib/index.js$",
"to": "remote-lib"
}]
}
}]
}