forked from dlang-community/drepl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
27 lines (27 loc) · 727 Bytes
/
dub.json
File metadata and controls
27 lines (27 loc) · 727 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
{
"name": "drepl",
"description": "A D interpreter.",
"copyright": "Copyright © 2014-2016, DREPL team",
"license": "BSL-1.0",
"authors": ["Martin Nowak"],
"lflags-linux-dmd": ["-l:libphobos2.so", "-ldl"],
"configurations": [
{
"name": "console",
"mainSourceFile": "src/console.d",
"dependencies": {
"linenoise": "~master"
},
"targetType": "executable",
},
{
"name": "library",
"excludedSourceFiles": ["src/console.d"],
"targetType": "library",
},
],
"dependencies": {
"colorize": "~>1.0.5",
"libdparse": "~>0.7.0-alpha9"
},
}