forked from v0d1ch/plaid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaid.cabal
164 lines (157 loc) · 4.05 KB
/
plaid.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
cabal-version: 1.12
name: plaid
version: 0.1.0.4
synopsis: Plaid.com api integration library
description: @Plaid@ is a library for interacting with https://plaid.com
.
Plaid.com connects the users to their bank accounts via the app and this library provides programmatic
access to all these features.
.
Please take a look at examples folder to easily get started.
.
Haskell examples in the plaid [documentation] (https://plaid.com/docs) come from this library.
.
category: Data, Web, Network, Plaid
homepage: https://github.com/v0d1ch/plaid#readme
bug-reports: https://github.com/v0d1ch/plaid/issues
author: Sasha Bogicevic
maintainer: Sasha Bogicevic <sasa.bogicevic@pm.me>
copyright: 2019 Sasa Bogicevic
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/v0d1ch/plaid
library
exposed-modules:
Data.Plaid
other-modules:
Data.Api.Helper
Data.Api.InternalPure
Data.Api.Link
Data.Api.Transactions
Data.Api.Identity
Data.Api.Income
Data.Api.Plaid
Data.Api.Accounts
Data.Api.Auth
Data.Api.Types
Data.Proof.TransactionsGetBody
Data.Proof.IdentityGetBody
Data.Proof.IncomeGetBody
Data.Proof.AuthGetBody
Data.Proof.BalanceGetBody
Data.Proof.Named
Data.Proof.Proof
Data.Proof.PublicTokenCreate
Data.Common
Data.Api.TestByteStrings
ghc-options: -Wall
build-depends:
aeson
, base >= 4.6 && < 5
, bytestring
, mtl
, text
, network
, http-conduit
, http-client-tls
, safe-exceptions
, containers
, casing
, raw-strings-qq
, time
, microlens
, microlens-th
, pretty-simple
default-language: Haskell2010
default-extensions: OverloadedStrings
RecordWildCards
FlexibleContexts
ScopedTypeVariables
DataKinds
DeriveAnyClass
DeriveGeneric
DerivingStrategies
FlexibleContexts
FlexibleInstances
GADTs
GeneralizedNewtypeDeriving
InstanceSigs
MultiParamTypeClasses
TemplateHaskell
TypeFamilies
UndecidableInstances
StrictData
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_plaid
Plaid.PlaidSpec
hs-source-dirs:
test
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends:
aeson
, base >= 4.6 && < 5
, containers
, bytestring
, text
, hspec
, hspec-wai
, http-types
, QuickCheck
, wai
, plaid
, errors
, time
, pretty-simple
, microlens
, microlens-th
default-language: Haskell2010
default-extensions: OverloadedStrings
RecordWildCards
FlexibleContexts
TemplateHaskell
TypeFamilies
ScopedTypeVariables
StrictData
GADTs
executable plaid
main-is: Main.hs
hs-source-dirs:
examples
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends:
aeson
, base >= 4.6 && < 5
, bytestring
, mtl
, text
, transformers
, conduit
, conduit-extra
, network
, http-client
, http-client-tls
, either
, safe-exceptions
, plaid
, time
, pretty-simple
, microlens
, microlens-th
default-extensions: OverloadedStrings
RecordWildCards
FlexibleContexts
ScopedTypeVariables
TemplateHaskell
TypeFamilies
GADTs
StrictData