poodinis/dub.json

35 lines
693 B
JSON
Raw Normal View History

{
"name" : "poodinis",
"description" : "A dependency injection framework with support for autowiring.",
"homepage": "http://lostmoment.com/open-source/poodinis",
"authors": ["Mike Bierlee"],
"copyright": "Copyright 2014 Mike Bierlee",
"license": "MIT",
"configurations": [
{
"name": "build",
"targetType": "library"
},
{
"name": "unittest",
"targetType": "executable",
"sourcePaths": [
"test"
],
"dflags-dmd": [
"-main"
]
},
{
"name": "unittestVerbose",
"targetType": "executable",
"debugVersions": ["poodinisVerbose"],
"sourcePaths": [
"test"
],
"dflags-dmd": [
"-main"
]
}
]
2014-05-06 01:32:22 +02:00
}