-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathauth0.cabal
92 lines (89 loc) · 3.5 KB
/
auth0.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
name: auth0
version: 0.2.0.0
synopsis: Auth0 API
description: An interface to https://auth0.com
homepage: https://github.com/alasconnect/auth0
license: Apache-2.0
license-file: LICENSE
author: Brian Jones
maintainer: [email protected]
copyright: 2017 AlasConnect LLC
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
exposed-modules: Auth0
, Auth0.Types
, Auth0.Authentication
, Auth0.Authentication.Login
, Auth0.Authentication.Logout
, Auth0.Authentication.Passwordless
, Auth0.Authentication.Signup
, Auth0.Authentication.ChangePassword
, Auth0.Authentication.UserProfile
, Auth0.Authentication.SAML
, Auth0.Authentication.WS
, Auth0.Authentication.AccountLinking
, Auth0.Authentication.Impersonation
, Auth0.Authentication.AuthorizeClient
, Auth0.Authentication.GetToken
, Auth0.Authentication.RevokeRefreshToken
, Auth0.Management
, Auth0.Management.ClientGrants
, Auth0.Management.Clients
, Auth0.Management.Connections
, Auth0.Management.DeviceCredentials
, Auth0.Management.Grants
, Auth0.Management.Logs
, Auth0.Management.ResourceServers
, Auth0.Management.Rules
, Auth0.Management.RulesConfigs
, Auth0.Management.UserBlocks
, Auth0.Management.Users
, Auth0.Management.UsersByEmail
, Auth0.Management.Blacklists
, Auth0.Management.Emails
, Auth0.Management.Guardian
, Auth0.Management.Jobs
, Auth0.Management.Stats
, Auth0.Management.Tenants
, Auth0.Management.Tickets
build-depends: aeson
, base
, bytestring
, containers
, http-client
, http-client-tls
, servant
, servant-client
, tagged
, text
hs-source-dirs: src
ghc-options: -Wall -j
default-language: Haskell2010
default-extensions: DataKinds
, DeriveGeneric
, DuplicateRecordFields
, OverloadedStrings
, TypeOperators
, TypeSynonymInstances
test-suite auth0-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: auth0
, base
, aeson
, bytestring
, hspec
, random
, servant-client
, tagged
, text
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
default-language: Haskell2010
default-extensions: OverloadedStrings
source-repository head
type: git
location: [email protected]:alasconnect/auth0.git