calendar-webapp/dub.json

40 lines
863 B
JSON
Raw Permalink Normal View History

2017-08-02 01:56:36 +02:00
{
"name": "calendar-webapp",
"authors": [
"Johannes Loher"
],
"dependencies": {
"dauth": "~>0.6.3",
2017-10-30 02:31:48 +01:00
"mysql-native": "~>1.1.2",
2017-09-27 14:53:50 +02:00
"vibe-d": "~>0.8.1",
"poodinis": "~>8.0.1"
2017-08-02 01:56:36 +02:00
},
"description": "A simple webapplication to edit and view calendar entries",
2017-08-02 01:56:36 +02:00
"copyright": "Copyright © 2017, Johannes Loher",
"license": "MIT",
2017-09-17 17:52:41 +02:00
"targetType": "executable",
2017-10-09 21:20:20 +02:00
"targetPath": "generated",
"configurations": [
2017-09-17 17:52:41 +02:00
{
"name": "executable"
2017-09-17 17:52:41 +02:00
},
2017-10-09 21:20:20 +02:00
{
"name": "unittest",
"targetType": "executable",
"preBuildCommands": ["dub run unit-threaded -c gen_ut_main -- -f generated/ut.d test"],
2017-09-17 17:52:41 +02:00
"mainSourceFile": "generated/ut.d",
"excludedSourceFiles": ["source/calendarwebapp/app.d"],
2017-09-17 17:52:41 +02:00
"sourcePaths": ["test"],
2017-10-09 21:20:20 +02:00
"dependencies": {
"unit-threaded": "~>0.7.31"
2017-09-27 14:53:50 +02:00
}
2017-10-09 21:20:20 +02:00
}
],
2017-08-02 01:56:36 +02:00
"versions": [
"VibeUseOpenSSL11"
],
"lflags": [
"-fuse-ld=gold"
2017-08-02 01:56:36 +02:00
]
2017-09-27 14:53:50 +02:00
}