-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
44 lines (44 loc) · 956 Bytes
/
dub.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
{
"authors": ["SHOO"],
"copyright": "Copyright © 2019, SHOO",
"description": "Document generator using Ddoc D language standard feature for dub package.",
"license": "BSL-1.0",
"name": "gendoc",
"dependencies": {
"dub": "~>1.30.0",
"mustache-d": "~>0.1.5"
},
"subConfigurations": {
"dub": "library"
},
"configurations": [
{
"name": "default",
"targetPath": "build",
"targetType": "executable",
"versions": ["gendoc_app"],
"mainSourceFile": "source/app.d",
"copyFiles": ["source_docs", "ddoc", "README.md", "LICENSE"]
},
{
"name": "init",
"targetType": "none",
"copyFiles": ["source_docs", "ddoc"]
},
{
"name": "library",
"excludedSourceFiles": ["source/app.d"],
"targetType": "library"
},
{
"name": "unittest",
"targetType": "executable",
"targetPath": "build",
"versions": ["gendoc_app"],
"mainSourceFile": "source/app.d"
}
],
"subPackages": [
"candydoc"
]
}