-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
.esdoc.json
33 lines (33 loc) · 862 Bytes
/
.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
{
"source": "./packages",
"includes": [".*\\/src\\/.+\\.js$"],
"destination": "./esdocs",
"package": "./package.json",
"index": "./README.md",
"plugins": [
{
"name": "esdoc-standard-plugin",
"option": {
"brand": {
"title": "jscu",
"description": "A Universal Cryptographic Library for JavaScript",
"repository": "https://github.com/junkurihara/jscu"
},
"lint": {"enable": true},
"coverage": {"enable": true},
"test": {
"source": "./packages",
"interfaces": ["describe", "it"],
"includes": [".*\\/test\\/.+\\.spec\\.js$"]
},
"manual": {
"index": "./docs/js-crypto-utils.md",
"globalIndex": false,
"files": [
"./docs/js-crypto-utils.md"
]
}
}
}
]
}