-
Notifications
You must be signed in to change notification settings - Fork 1
/
.esdoc.json
41 lines (41 loc) · 1.09 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
{
"source": "./src",
"excludes": ["(spec)\\.js$"],
"destination": "./docs",
"plugins": [
{
"name": "esdoc-standard-plugin",
"option": {
"manual": {
"index": "./index.md",
"files": [
"./README.setup.md",
"./src/README.entry.md",
"./src/controllers/README.controllers.md",
"./src/dataservices/README.dataservices.md",
"./src/helpers/README.helpers.md",
"./README.logging.md",
"./scripts/README.scripts.md",
"./test/README.test.md"
]
},
"test": {
"source": "./",
"interfaces": ["describe", "it", "context", "suite", "test"],
"includes": ["(spec|Spec|test|Test)\\.js$"],
"excludes": ["\\.config\\.js$", "node_modules"]
},
"brand": {
"repository": "https://github.com/devlinjunker/template.hapi.rest"
}
}
},
{ "name": "esdoc-flow-plugin" },
{
"name": "esdoc-publish-html-plugin",
"option": {
"template": "docs/template"
}
}
]
}