-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdub.json
More file actions
30 lines (30 loc) · 768 Bytes
/
dub.json
File metadata and controls
30 lines (30 loc) · 768 Bytes
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
{
"name": "dcli",
"authors": [
"Ali Akhtarzada"
],
"dependencies": {
"dcli:program_options": "*",
"dcli:program_commands": "*"
},
"targetPath": "bin",
"description": "A library to help with building CLIs in D",
"copyright": "Copyright © 2018, Ali Akhtarzada",
"license": "MIT",
"subPackages": [
{
"name": "program_options",
"description": "Specify and parse command line options",
"sourcePaths": ["source/dcli/program_options"],
"dependencies": { "ddash": "*" },
"targetPath": "bin"
},
{
"name": "program_commands",
"description": "Specify and parse command line commands",
"sourcePaths": ["source/dcli/program_commands"],
"dependencies": { "ddash": "*", "dcli:program_options": "*" },
"targetPath": "bin"
}
]
}