-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
30 lines (30 loc) · 803 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
{
"name": "readconf",
"authors": [
"Alexander Zhirov <[email protected]>"
],
"homepage": "https://git.zhirov.kz/dlang/readconf.git",
"license": "GPL-2.0",
"copyright": "© Alexander Zhirov, 2023",
"description": "Singleton for simple reading of the configuration file",
"configurations": [
{
"name": "library",
"targetType": "library",
"targetPath": "lib"
},
{
"name": "unittest",
"targetPath": "bin",
"dependencies": {
"silly": "~>1.2.0-dev.2"
},
"importPaths": ["source","tests"],
"sourcePaths": ["tests"]
}
],
"targetName": "readconf",
"dependencies": {
"singlog": "~>0.5.0"
}
}