-
Notifications
You must be signed in to change notification settings - Fork 3
/
cabal-parser.cabal
105 lines (88 loc) · 2.75 KB
/
cabal-parser.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
name: cabal-parser
version: 0.1.1.0
synopsis: Tiny Web Service for Parsing Cabal Files
description:
Helper service for bibliothecary to parse cabal files from various sources.
Provides a fiat JSON represenation for a given cabal file posted to this HTTP API.
homepage: https://github.com/alunduil/librariesio-cabal-parser
bug-reports: https://github.com/alunduil/librariesio-cabal-parser/issues
license: GPL-3
license-file: LICENSE
author: Alex Brandt
maintainer: [email protected]
copyright: (c) 2018 Alex Brandt
category: Development
build-type: Simple
cabal-version: >= 1.10
tested-with: GHC == 8.4.*
extra-source-files:
ChangeLog.md
, LICENSE
, README.md
, Setup.hs
, test/examples/*.cabal
source-repository head
type: git
location: https://github.com/alunduil/librariesio-cabal-parser
branch: develop
executable cabal-parser
default-language: Haskell2010
main-is: Main.hs
ghc-options: -Wall -fwarn-tabs -fwarn-monomorphism-restriction
-fwarn-unused-do-bind
hs-source-dirs:
src
other-modules:
API
, Dependencies
, Dependency
, Distribution.Types.GenericPackageDescription.MimeUnrender
, Distribution.Types.PackageName.JSON
, Distribution.Version.JSON
, Environment
build-depends:
aeson >= 1.1 && < 1.5
, base >= 4.9 && < 4.13
, bytestring == 0.10.*
, Cabal >= 2.0 && < 2.5
, envy >= 1.3 && < 1.6
, pretty == 1.1.*
, servant-server >= 0.11 && < 0.16
, text == 1.2.*
, utf8-string == 1.0.*
, wai-extra == 3.0.*
, warp == 3.2.*
other-extensions:
DataKinds
, FlexibleInstances
, MultiParamTypeClasses
, OverloadedStrings
, RecordWildCards
, TypeOperators
test-suite cabal-parser-tests
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Spec.hs
ghc-options: -Wall -fwarn-tabs -fwarn-monomorphism-restriction
-fwarn-unused-do-bind
hs-source-dirs:
src
, test
other-modules:
Dependencies
, DependenciesSpec
, Dependency
, Distribution.Types.PackageName.JSON
, Distribution.Version.JSON
, Distribution.Version.JSONSpec
build-tool-depends:
hspec-discover:hspec-discover >= 2.4 && < 2.8
build-depends:
aeson >= 1.1 && < 1.5
, base >= 4.9 && < 4.13
, bytestring == 0.10.*
, Cabal >= 2.0 && < 2.5
, hspec >= 2.4 && < 2.8
, pretty == 1.1.*
, text == 1.2.*
other-extensions: