-
Notifications
You must be signed in to change notification settings - Fork 1
/
ServerlessValidator.cabal
63 lines (59 loc) · 2.17 KB
/
ServerlessValidator.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
name: ServerlessValidator
version: 0.1.0.1
synopsis: Validator for serverless.yml files
description: Please see README.md
homepage: https://github.com/futtetennista/ServerlessValidator#readme
license: MIT
license-file: LICENSE
author: Futtetennista
maintainer: [email protected]
copyright: 2017 Futtetennista
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: ServerlessValidator
build-depends: base >= 4.7 && < 5
, protolude >= 0.1.10 && < 0.1.11
, text >= 1.2.2.1 && < 1.2.3
, aeson == 1.1.2.*
, yaml == 0.8.*
, unordered-containers == 0.2.8.*
, case-insensitive >= 1.2.0.7 && < 1.2.1.0
, regex-compat >= 0.95.1 && < 0.96
ghc-options: -Wall
default-language: Haskell2010
default-extensions: OverloadedStrings
, NoImplicitPrelude
executable serverless-validator
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall
build-depends: base
, ServerlessValidator
, protolude >= 0.1.10 && < 0.1.11
default-language: Haskell2010
default-extensions: OverloadedStrings
, NoImplicitPrelude
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, ServerlessValidator
, protolude >= 0.1.10 && < 0.1.11
, hspec == 2.4.*
, aeson
, QuickCheck
ghc-options: -threaded
-rtsopts
-with-rtsopts=-N
-Wall
default-language: Haskell2010
default-extensions: OverloadedStrings
, NoImplicitPrelude
source-repository head
type: git
location: https://github.com/futtetennista/ServerlessValidator