-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.esdoc.json
56 lines (56 loc) · 2.17 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
{
"source": "./src",
"destination": "./docs",
"plugins": [
{ "name": "esdoc-ecmascript-proposal-plugin", "option": { "all": true } },
{ "name": "esdoc-external-nodejs-plugin" },
{ "name": "esdoc-external-nodejs-plugin", "option": { "enable": true } },
{
"name": "esdoc-importpath-plugin",
"option": {
"stripPackageName": false,
"replaces": [{ "from": "^src/(.*)\\.js$", "to": "lib/$1" }]
}
},
{
"name": "esdoc-standard-plugin",
"option": {
"lint": { "enable": true },
"coverage": { "enable": false },
"accessor": { "access": ["public"], "autoPrivate": true },
"undocumentIdentifier": { "enable": false },
"unexportedIdentifier": { "enable": false },
"brand": {
"logo": null,
"title": "Autonym",
"description": "A KISS JSON REST API framework that can be mounted to your Express application.",
"repository": "https://github.com/mmiller42/autonym",
"site": "https://autonym.io/",
"author": "https://mmiller.me/",
"image": null
}
}
},
{
"name": "esdoc-inject-assets-plugin",
"option": {
"assets": [
"https://unpkg.com/codemirror@5/lib/codemirror.css",
"docsAssets/styles.css",
{ "path": "https://unpkg.com/es5-shim@4", "type": "script" },
{ "path": "https://unpkg.com/promise-polyfill@6", "type": "script" },
{ "path": "https://unpkg.com/whatwg-fetch@2", "type": "script" },
{ "path": "https://embed.runkit.com", "type": "script" },
"https://unpkg.com/react@15/dist/react.js",
"https://unpkg.com/react-dom@15/dist/react-dom.js",
"https://unpkg.com/babel-standalone@6/babel.min.js",
{ "path": "https://unpkg.com/codemirror@5", "type": "script" },
"https://unpkg.com/codemirror@5/mode/javascript/javascript.js",
"https://unpkg.com/codemirror@5/addon/edit/matchbrackets.js",
"https://unpkg.com/codemirror@5/addon/edit/closebrackets.js",
{ "path": "docsAssets/repl.jsx", "type": "script", "attrs": { "type": "text/babel" } }
]
}
}
]
}