bayernfahrplan/dub.json

29 lines
727 B
JSON
Raw Permalink Normal View History

2016-12-02 12:46:39 +01:00
{
"name": "bayernfahrplan",
"authors": [
"Johannes Loher",
"Oliver Rümpelein"
],
"dependencies": {
"requests": "~>0.5.0",
2016-12-02 12:46:39 +01:00
"kxml": "~>1.0.1"
},
"description": "A minimal D application.",
"copyright": "Copyright © 2017, Johannes Loher",
2017-08-04 02:21:59 +02:00
"license": "MIT",
"targetType": "executable",
"configurations": [
{ "name": "executable" },
{
"name": "unittest",
"targetType": "executable",
"preBuildCommands": ["dub run unit-threaded -c gen_ut_main -- -f gen/ut.d"],
"mainSourceFile": "gen/ut.d",
"excludedSourceFiles": ["source/app.d"],
"dependencies": {
"unit-threaded": "~>0.7.28"
}
}
]
2016-12-02 12:46:39 +01:00
}