poodinis/dub.json

60 lines
1.2 KiB
JSON
Raw Normal View History

2015-03-09 00:07:40 +01:00
{
"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": "library",
2015-03-09 00:07:40 +01:00
"targetType": "library"
},
{
"name": "unittest",
"targetType": "executable",
"sourcePaths": [
"test"
],
"dflags": [
"-main"
]
},
{
"name": "unittestVerbose",
"targetType": "executable",
"debugVersions": ["poodinisVerbose"],
"sourcePaths": [
"test"
],
"dflags-dmd": [
"-main"
]
},
{
"name" : "quickstartExample",
"description" : "Quickstart example from the Poodinis readme.",
"targetType": "executable",
"targetName": "quickstartExample",
"sourcePaths": [
"example/quickstart"
],
"importPaths": [
"source"
]
},
{
"name" : "qualifiersExample",
"description" : "Quickstart example where qualifiers are used.",
"targetType": "executable",
"targetName": "qualifiersExample",
"sourcePaths": [
"example/qualifiers"
],
"importPaths": [
"source"
]
}
]
}