dgtl/dub.json

30 lines
760 B
JSON
Raw Normal View History

2023-07-16 15:47:04 +00:00
{
"authors": [
"Alexander Zhirov"
],
"copyright": "Copyright © 2023, Alexander Zhirov",
"homepage": "https://git.zhirov.kz/dlang/dgt.git",
"description": "D Google Translate",
"license": "GPL-2.0",
"name": "dgt",
"configurations": [
{
"name": "library",
"targetType": "library",
"targetPath": "lib",
"sourceFiles": ["source/dgt.d"]
},
{
"name": "unittest",
"targetPath": "bin",
"importPaths": ["source","tests"],
"sourcePaths": ["tests"],
"dependencies": {
"silly": "~>1.2.0-dev.2"
}
}
],
"dependencies": {
"singlog": "~>0.4.0"
}
}