forked from toddmohney/json-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson-api.cabal
103 lines (98 loc) · 3.06 KB
/
json-api.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.3.
--
-- see: https://github.com/sol/hpack
--
-- hash: 6aa624502a73291732e0bbd403b6d9691e79387c2c37978d21327402feb9da01
name: json-api
version: 0.1.4.0
synopsis: Utilities for generating JSON-API payloads
description: Provides utilities for deriving JSON payloads conformant to the json-api specification
category: Network
stability: experimental
homepage: https://github.com/toddmohney/json-api.git#readme
bug-reports: https://github.com/toddmohney/json-api.git/issues
author: Todd Mohney
maintainer: Todd Mohney <[email protected]>
copyright: 2016 Todd Mohney
license: MIT
license-file: LICENSE
tested-with:
ghc ==7.10.3
build-type: Simple
extra-source-files:
README.md
LICENSE
circle.yml
stack.yaml
example/LICENSE
example/README.md
example/example.cabal
example/Setup.hs
example/stack.yaml
source-repository head
type: git
location: https://github.com/toddmohney/json-api.git
library
exposed-modules:
Network.JSONApi
Network.JSONApi.Error
Network.JSONApi.Document
Network.JSONApi.Identifier
Network.JSONApi.Meta
Network.JSONApi.Link
Network.JSONApi.Resource
Network.JSONApi.Pagination
Network.JSONApi.Source
other-modules:
Paths_json_api
hs-source-dirs:
src
default-extensions: DeriveGeneric GeneralizedNewtypeDeriving OverloadedStrings RecordWildCards TemplateHaskell
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -fhide-source-paths -fno-warn-warnings-deprecations -freverse-errors -fwarn-unused-binds -fwarn-unused-imports -fwarn-unused-matches -fwarn-unused-imports
build-depends:
aeson
, base >=4.7 && <5.0
, containers
, data-default
, deepseq
, lens
, lens-aeson
, text
, unordered-containers
, url
default-language: Haskell2010
test-suite json-api-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Network.JSONApi.DocumentSpec
Network.JSONApi.ErrorSpec
Network.JSONApi.IdentifierSpec
Network.JSONApi.MetaSpec
Network.JSONApi.PaginationSpec
Network.JSONApi.ResourceSpec
Network.JSONApi.SourceSpec
TestHelpers
Paths_json_api
hs-source-dirs:
test
default-extensions: DeriveGeneric GeneralizedNewtypeDeriving OverloadedStrings RecordWildCards
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -fhide-source-paths -fno-warn-warnings-deprecations -freverse-errors -fwarn-unused-binds -fwarn-unused-imports -fwarn-unused-matches
build-depends:
aeson
, aeson-pretty
, base >=4.7 && <5.0
, bytestring
, containers
, data-default
, deepseq
, hspec
, json-api
, lens
, lens-aeson
, text
, unordered-containers
, url
default-language: Haskell2010
build-tool-depends: hspec-discover:hspec-discover