readconf/dub.json

38 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2023-03-23 15:10:56 +00:00
{
"name": "readconf",
"authors": [
"Alexander Zhirov <alexander@zhirov.kz>"
],
"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",
2023-03-23 23:26:02 +00:00
"configurations": [
{
"name": "library",
"targetType": "library",
"targetPath": "lib"
},
{
"name": "unittest",
"targetPath": "bin",
"dependencies": {
"silly": "~>1.1.1"
},
"importPaths": ["source","tests"],
"sourcePaths": ["tests"]
},
{
"name": "executable",
"targetType": "executable",
"targetPath": "bin",
"targetName": "app",
"importPaths": ["source","tests"],
"sourcePaths": ["tests"]
}
],
2023-03-23 15:10:56 +00:00
"targetName": "readconf",
"dependencies": {
2023-04-29 20:58:11 +00:00
"singlog": "~>0.3.0"
2023-03-26 08:36:45 +00:00
}
2023-03-23 23:26:02 +00:00
}