-
Notifications
You must be signed in to change notification settings - Fork 8
/
dub.json
38 lines (37 loc) · 1.16 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
{
"name": "redub",
"description": "Dub Based Build System, with parallelization per packages and easier to contribute",
"authors": ["Hipreme"],
"targetPath": "build",
"stringImportPaths": [
"source"
],
"configurations": [
{
"name": "cli",
"targetType": "executable"
},
{
"name": "cli-dev",
"versions": ["Developer"],
"targetType": "executable"
},
{
"name": "library",
"targetType": "staticLibrary",
"versions": ["AsLibrary"],
"excludedSourceFiles": ["source/app.d"]
}
],
"license": "MIT",
"dependencies": {
"semver": {"path": "semver", "version": "*"},
"colorize": {"path": "colorize", "version": "*"},
"adv_diff": {"path": "adv_diff", "version": "*"},
"hipjson": {"path": "hipjson", "version": "*"},
"d_dependencies": {"path": "d_dependencies", "version": "*"},
"dub_sdl_to_json": {"path": "dub_sdl_to_json", "version": "*"},
"package_suppliers": {"path": "package_suppliers", "version": "*"},
"xxhash3": "~>0.0.5"
}
}