-
-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathjsdoc.json
More file actions
42 lines (42 loc) · 1.08 KB
/
jsdoc.json
File metadata and controls
42 lines (42 loc) · 1.08 KB
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
{
"source": {
"include": ["src", "index.js"],
"includePattern": ".+\\.js(doc|x)?$",
"excludePattern": "(^|/)node_modules(/|$)"
},
"opts": {
"destination": "./docs/api",
"recurse": true,
"readme": "./README.md",
"template": "./node_modules/better-docs"
},
"plugins": ["plugins/markdown", "node_modules/better-docs/category"],
"tags": {
"allowUnknownTags": ["category"]
},
"templates": {
"cleverLinks": false,
"monospaceLinks": false,
"default": {
"outputSourceFiles": true,
"useLongNameInNav": true
},
"better-docs": {
"name": "Convert CSV to JSON",
"logo": "https://raw.githubusercontent.com/iuccio/CSVtoJSON/master/CSVtoJSON.png",
"css": "./node_modules/better-docs/css/better-docs.css",
"hideGenerator": false,
"trackingCode": "",
"navLinks": [
{
"label": "GitHub",
"href": "https://github.com/iuccio/CSVtoJSON"
},
{
"label": "NPM",
"href": "https://www.npmjs.com/package/convert-csv-to-json"
}
]
}
}
}