forked from yamadapc/pyjamas
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdub.json
50 lines (50 loc) · 1.04 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
{
"name": "pijamas",
"description": "A BDD assertion library for D",
"copyright": "Copyright © 2020, Pedro Tacla Yamada",
"license": "MIT",
"authors": [
"Pedro Tacla Yamada",
"Luis Panadero Guardeño"
],
"targetType": "library",
"configurations": [
{
"name": "pijamas",
"targetType": "library"
},
{
"name": "nogc",
"targetType": "library",
"versions": ["MirNoGCException"],
"dependencies": {
"mir-algorithm": {"version": "~>3.10", "optional": true, "default": true}
},
"dflags": ["-preview=dip1008"]
},
{
"name": "trial",
"targetType": "library",
"importPaths": ["source", "tests/source"],
"sourcePaths": ["source", "tests/source"]
}
],
"buildTypes": {
"docs": {
"buildOptions": [
"syntaxOnly"
],
"dflags": [
"-c",
"-Dddocs"
],
"dflags-dmd": [
"-preview=markdown"
]
}
},
"toolchainRequirements": {
"dub": ">=1.14.0",
"frontend": ">=2.086"
}
}