-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdub.json
More file actions
46 lines (46 loc) · 1.5 KB
/
dub.json
File metadata and controls
46 lines (46 loc) · 1.5 KB
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
{
"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",
"platforms": ["windows", "linux"],
"versions": ["RedubCLI", "FSWForcePoll", "RedubWatcher"],
"dependencies": {
"fswatch": "~>0.6.1",
"arsd-official:terminal": "~>12.1"
}
},
{
"name": "cli-dev",
"versions": ["RedubCLI", "Developer", "RedubWatcher", "FSWForcePoll"],
"targetType": "executable",
"dependencies": {
"fswatch": "~>0.6.1",
"arsd-official:terminal": "~>12.1"
}
},
{
"name": "library",
"targetType": "staticLibrary",
"versions": ["AsLibrary"],
"excludedSourceFiles": ["source/app.d"]
}
],
"license": "MIT",
"dependencies": {
"semver": {"path": "semver"},
"colorize": {"path": "colorize"},
"adv_diff": {"path": "adv_diff"},
"hipjson": "~>1.1.1",
"d_dependencies": {"path": "d_dependencies"},
"dub_sdl_to_json": {"path": "dub_sdl_to_json"},
"package_suppliers": {"path": "package_suppliers"},
"d_downloader": {"path": "d_downloader"},
"xxhash3": "~>0.0.5"
}
}