-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
31 lines (28 loc) · 941 Bytes
/
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
{
"name": "quack",
"description": "A compile-time duck typing library for D",
"copyright": "Copyright © 2014, Colden Cullen",
"authors": [ "Colden Cullen" ],
"license": "MIT",
"targetType": "library",
"dependencies": {
"tested": { "version": "~>0.9", "optional": true }
},
"buildTypes": {
"debug": {
"buildOptions": [ "debugMode", "debugInfo" ],
"buildRequirements": [ "allowWarnings" ],
"debugVersions": [ "quack" ]
},
"unittest": {
"buildOptions": [ "debugMode", "debugInfo", "unittests" ],
"buildRequirements": [ "allowWarnings" ],
"debugVersions": [ "quack" ]
},
"unittest-cov": {
"buildOptions": [ "debugMode", "debugInfo", "unittests", "coverage" ],
"buildRequirements": [ "allowWarnings" ],
"debugVersions": [ "quack" ]
}
}
}