-
Notifications
You must be signed in to change notification settings - Fork 471
/
.esdoc.json
70 lines (70 loc) · 1.67 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
65
66
67
68
69
70
{
"source": ".",
"destination": "./docs",
"includes": [
"^lib(\\\\|\\/).*\\.js$"
],
"excludes": [
"tests(\\\\|\\/).*(spec|Spec|test|Test)\\.js$"
],
"plugins": [
{
"name": "esdoc-standard-plugin"
},
{
"name": "esdoc-flow-type-plugin",
"option": {
"enable": true
}
},
{
"name": "esdoc-lint-plugin",
"option": {
"enable": true
}
},
{
"name": "esdoc-integrate-manual-plugin",
"option": {
"index": "./manual/README.md",
"globalIndex": true,
"asset": "./manual/asset",
"files": [
"./CHANGELOG"
]
}
},
{
"name": "esdoc-brand-plugin",
"option": {
"description": "Office Open XML Generator using Node.js streams. Supporting Microsoft Office 2007 and later Word (docx), PowerPoint (pptx,ppsx) and Excel (xlsx). This module is for all frameworks and environments. No need for any commandline tool - this module is doing everything inside it.",
"repository": "https://github.com/Ziv-Barber/officegen",
"site": "https://github.com/Ziv-Barber/officegen",
"image": "./logo_office.png"
}
},
{
"name": "esdoc-ecmascript-proposal-plugin",
"option": {
"all": true
}
},
{
"name": "esdoc-integrate-test-plugin",
"option": {
"source": ".",
"interfaces": [
"describe",
"it",
"context",
"suite",
"test"
],
"includes": [
"^lib(\\\\|\\/).*(spec|Spec|test|Test)\\.js$",
"^tests(\\\\|\\/).*(spec|Spec|test|Test)\\.js$"
]
}
}
]
}