forked from hadolint/language-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
82 lines (78 loc) · 2.01 KB
/
package.yaml
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
name: language-docker
version: '10.3.0'
synopsis: Dockerfile parser, pretty-printer and embedded DSL
description: 'All functions for parsing and pretty-printing Dockerfiles are
exported through @Language.Docker@. For more fine-grained operations look for
specific modules that implement a certain functionality.
See the <https://github.com/hadolint/language-docker GitHub project> for
the source-code and examples.'
category: Development
author:
- Lukas Martinelli
- Pedro Tacla Yamada
- José Lorenzo Rodríguez
maintainer:
copyright:
- Lukas Martinelli, Copyright (c) 2016
- Pedro Tacla Yamada, Copyright (c) 2016
- José Lorenzo Rodríguez, Copyright (c) 2017
license: GPL-3
github: hadolint/language-docker
extra-source-files:
- README.md
- test/fixtures/1.Dockerfile
- test/fixtures/2.Dockerfile
- test/fixtures/3.Dockerfile
- test/fixtures/4.Dockerfile
- test/fixtures/5.Dockerfile
- test/fixtures/6.Dockerfile
- test/fixtures/7.Dockerfile
- test/fixtures/8.Dockerfile
- test/fixtures/Dockerfile.bom.utf32be
- test/fixtures/Dockerfile.bom.utf32le
- test/fixtures/Dockerfile.bom.utf16be
- test/fixtures/Dockerfile.bom.utf16le
- test/fixtures/Dockerfile.bom.utf8
default-extensions:
- OverloadedStrings
- ImplicitParams
- Rank2Types
dependencies:
- base >=4.8 && <5
- bytestring >=0.10
- megaparsec >=8.0
- prettyprinter
- split >=0.2
- text
- time
- containers
- data-default-class
library:
source-dirs: src
ghc-options:
- -Wall
- -Wcompat
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wredundant-constraints
- -fno-warn-unused-do-bind
- -fno-warn-orphans
exposed-modules:
- Language.Docker
- Language.Docker.Parser
- Language.Docker.PrettyPrint
- Language.Docker.Syntax
tests:
hspec:
main: Spec.hs
source-dirs: test
default-extensions:
- OverloadedLists
dependencies:
- hspec
- hspec-megaparsec
- QuickCheck
- language-docker
- HUnit >=1.2
- megaparsec >=8.0