aboutsummaryrefslogtreecommitdiffhomepage
path: root/dub.json
blob: d6dcbe5569285088c9aaf1f159541422b589da92 (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
  "authors": [
                               "Ralph Amissah"
  ],
  "copyright":                 "Copyright © 2015 - 2020 Ralph Amissah",
  "name":                      "spine",
  "version":                   "0.11.2",
  "description":               "a sisu like document parser",
  "homepage":                  "http://sisudoc.org",
  "license":                   "AGPL-3.0+",
  "targetPath":                "./bin",
  "sourcePaths":               [ "./src/doc_reform" ],
  "stringImportPaths":         [ "./views" ],
  "buildRequirements":         [ "allowWarnings" ],
  "targetType":                "executable",
  "platforms":                 [ "posix" ],
  "buildTypes": {
    "dmd": {
      "dflags":                [ "-J=views", "-I=src/doc_reform" ],
      "buildOptions":          [ "verbose", "inline" ],
      "buildRequirements":     [ "allowWarnings" ]
    },
    "ldc": {
      "dflags":                [ "-O2", "-J=views", "-I=src/doc_reform" ],
      "buildOptions":          [ "verbose", "optimize", "inline" ],
      "buildRequirements":     [ "allowWarnings" ]
    }
  },
  "dependencies": {
    "d2sqlite3":               "~>0.19.1",
    "imageformats":            "~>7.0.2",
    "dyaml":                   "~>0.8.0",
    "tinyendian":              "~>0.2.0"
  },
  "configurations": [
    {
      "name":                  "default",
      "targetName":            "spine"
    },
    {
      "name":                  "ldc",
      "targetName":            "spine-ldc"
    },
    {
      "name":                  "dmd",
      "targetName":            "spine-dmd"
    }
  ],
  "subConfigurations": {
    "d2sqlite3":               "with-lib"
  }
}