readconf/dub.json

39 lines
1.0 KiB
JSON
Raw 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": {
"singlog": "~>0.1.0"
2023-03-25 22:45:41 +00:00
},
"version": "0.1.4"
2023-03-23 23:26:02 +00:00
}