-
Notifications
You must be signed in to change notification settings - Fork 80
/
dub.json
41 lines (41 loc) · 1.22 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
{
"name": "tsv-utils",
"description": "eBay's TSV utilities. Command line tools for large, tabular data files. Filtering, statistics, sampling, joins and more.",
"homepage": "https://github.com/eBay/tsv-utils",
"authors": ["Jon Degenhardt"],
"copyright": "Copyright (c) 2015-2021, eBay Inc.",
"license": "BSL-1.0",
"targetType": "executable",
"#": "NOTE: Add new apps to dub_build.d also.",
"subPackages": [
"./common/",
"./csv2tsv/",
"./keep-header/",
"./number-lines/",
"./tsv-append/",
"./tsv-filter/",
"./tsv-join/",
"./tsv-pretty/",
"./tsv-sample/",
"./tsv-select/",
"./tsv-split/",
"./tsv-summarize/",
"./tsv-uniq/"
],
"configurations": [
{
"name" : "executable",
"targetName": "dub_build",
"mainSourceFile": "dub_build.d"
},
{
"name": "unittest",
"targetType": "none"
}
],
"buildTypes": {
"debug": { "buildOptions": ["debugMode", "optimize"] },
"release": { "buildOptions": ["releaseMode", "optimize", "inline"],
"dflags": ["-boundscheck=off"] }
}
}