forked from yuga/jsonschema-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsonschema-gen.cabal
58 lines (51 loc) · 1.95 KB
/
jsonschema-gen.cabal
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
53
54
55
56
57
name: jsonschema-gen
version: 0.4.1.0
synopsis: JSON Schema generator from Algebraic data type
description: This library contains a JSON Schema generator.
homepage: https://github.com/yuga/jsonschema-gen
license: BSD3
license-file: LICENSE
author: Shohei Murayama
maintainer: shohei.murayama@gmail.com
copyright: (c) 2015 Shohei Murayama <shohei.murayama@gmail.com>
category: Text, Data, JSON
build-type: Simple
cabal-version: >=1.10
extra-source-files: changelog.md
library
exposed-modules: Data.JSON.Schema.Generator
Data.JSON.Schema.Generator.Class
Data.JSON.Schema.Generator.Convert
Data.JSON.Schema.Generator.Generic
Data.JSON.Schema.Generator.Types
build-depends: base >=4.6 && <5
, aeson >= 2 && <3
, bytestring >=0.10
, containers >=0.5
, scientific >=0.2
, tagged >=0.7
, text >=0.11
, time >=1.4
, unordered-containers >=0.2
, vector >=0.10
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
source-repository head
type: git
location: git://github.com/yuga/jsonschema-gen
test-suite test
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: Types
Values
build-depends: base >=4.6
, aeson >=0.7
, bytestring >=0.10
, containers >=0.5
, jsonschema-gen
, process >=1.1
, tagged >=0.7
, text >=0.11
hs-source-dirs: tests
default-language: Haskell2010