-
Notifications
You must be signed in to change notification settings - Fork 12
/
dub.json
98 lines (98 loc) · 3.27 KB
/
dub.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "poodinis",
"description": "A dependency injection framework with support for autowiring.",
"authors": ["Mike Bierlee"],
"copyright": "Copyright 2014-2024 Mike Bierlee",
"license": "MIT",
"-ddoxTool": "scod",
"-ddoxFilterArgs": [],
"configurations": [
{
"name": "library",
"targetType": "library"
},
{
"name": "unittest",
"targetType": "executable",
"sourcePaths": ["test"],
"mainSourceFile": "test/poodinis/testmain.d"
},
{
"name": "unittestVerbose",
"targetType": "executable",
"debugVersions": ["poodinisVerbose"],
"sourcePaths": ["test"],
"mainSourceFile": "test/poodinis/testmain.d"
},
{
"name": "quickstartExample",
"targetType": "executable",
"targetName": "quickstartExample",
"sourcePaths": ["example/quickstart"],
"importPaths": ["source"]
},
{
"name": "qualifiersExample",
"targetType": "executable",
"targetName": "qualifiersExample",
"sourcePaths": ["example/qualifiers"],
"importPaths": ["source"]
},
{
"name": "arrayCompletionExample",
"targetType": "executable",
"targetName": "arrayCompletionExample",
"sourcePaths": ["example/arraycompletion"],
"importPaths": ["source"]
},
{
"name": "annotationsExample",
"targetType": "executable",
"targetName": "annotationsExample",
"sourcePaths": ["example/annotations"],
"importPaths": ["source"]
},
{
"name": "applicationContextExample",
"targetType": "executable",
"targetName": "applicationContextExample",
"sourcePaths": ["example/applicationcontext"],
"importPaths": ["source"]
},
{
"name": "registerOnResolveExample",
"targetType": "executable",
"targetName": "registerOnResolveExample",
"sourcePaths": ["example/registeronresolve"],
"importPaths": ["source"]
},
{
"name": "constructorInjectionExample",
"targetType": "executable",
"targetName": "constructorInjectionExample",
"sourcePaths": ["example/constructorinjection"],
"importPaths": ["source"]
},
{
"name": "valueInjectionExample",
"targetType": "executable",
"targetName": "valueInjectionExample",
"sourcePaths": ["example/valueinjection"],
"importPaths": ["source"]
},
{
"name": "postConPreDestExample",
"targetType": "executable",
"targetName": "postConPreDestExample",
"sourcePaths": ["example/postconpredest"],
"importPaths": ["source"]
},
{
"name": "injectionInitializerExample",
"targetType": "executable",
"targetName": "injectionInitializerExample",
"sourcePaths": ["example/injectioninitializer"],
"importPaths": ["source"]
}
]
}