Update dub.json

Rename package.json to dub.json and update the package name, so it can
be registered on code.dlang.org.
This commit is contained in:
ZombineDev 2016-11-15 16:32:05 +02:00
parent 918965cb8c
commit 388a8e9c94

18
dub.json Normal file
View file

@ -0,0 +1,18 @@
{
"name": "dyaml-dlang-tour",
"description": "YAML parser and emitter",
"authors": [ "Ferdinand Majerech" ],
"libs": [],
"importPaths": ["source"],
"license": "Boost 1.0",
"dependencies": { "tinyendian" : { "version" : "~>0.1.0" } },
"homepage": "https://github.com/kiith-sa/D-YAML",
"copyright": "Copyright © 2011-2014, Ferdinand Majerech",
"buildTypes":
{
"debug": { "buildOptions": ["debugMode", "debugInfoC"] },
"release": { "buildOptions": ["releaseMode", "optimize", "inline", "noBoundsCheck"] },
"profile": { "buildOptions": ["releaseMode", "optimize", "noBoundsCheck", "debugInfoC"] },
},
}