forked from purescript/spago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspago.cabal
219 lines (213 loc) · 4.64 KB
/
spago.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
cabal-version: 2.4
name: spago
version: 0.20.3
description: Please see the README on GitHub at <https://github.com/purescript/spago#readme>
homepage: https://github.com/purescript/spago#readme
bug-reports: https://github.com/purescript/spago/issues
author: Justin Woo, Fabrizio Ferrai
maintainer: @jusrin00, @fabferrai
copyright: 2018-2020 Justin Woo, Fabrizio Ferrai
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
templates/bower.json
templates/docs-search-app-0.0.10.js
templates/docs-search-app-0.0.11.js
templates/gitignore
templates/packages.dhall
templates/purescript-docs-search-0.0.10
templates/purescript-docs-search-0.0.11
templates/purs-repl
templates/spago.dhall
templates/srcMain.purs
templates/testMain.purs
source-repository head
type: git
location: https://github.com/purescript/spago
common defaults
default-language: Haskell2010
default-extensions:
ApplicativeDo
BangPatterns
BinaryLiterals
ConstraintKinds
DataKinds
DefaultSignatures
DeriveDataTypeable
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveTraversable
DerivingStrategies
DoAndIfThenElse
DuplicateRecordFields
EmptyDataDecls
ExistentialQuantification
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GADTs
GeneralizedNewtypeDeriving
InstanceSigs
KindSignatures
LambdaCase
LiberalTypeSynonyms
MultiParamTypeClasses
MultiWayIf
NamedFieldPuns
NoImplicitPrelude
NoMonomorphismRestriction
OverloadedStrings
PartialTypeSignatures
PatternGuards
PolyKinds
QuantifiedConstraints
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeApplications
TypeFamilies
TypeSynonymInstances
UndecidableInstances
ViewPatterns
library
import: defaults
hs-source-dirs: src
exposed-modules:
Spago.Async
Spago.Bower
Spago.Build
Spago.CLI
Spago.Command.Init
Spago.Command.Ls
Spago.Command.Path
Spago.Command.Verify
Spago.Config
Spago.Dhall
Spago.DryRun
Spago.Env
Spago.FetchPackage
Spago.Git
Spago.GitHub
Spago.GlobalCache
Spago.Messages
Spago.Packages
Spago.PackageSet
Spago.Prelude
Spago.PscPackage
Spago.Purs
Spago.RunEnv
Spago.Templates
Spago.TH
Spago.Types
Spago.Version
Spago.Watch
other-modules:
Paths_spago
autogen-modules:
Paths_spago
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wredundant-constraints
build-depends:
Glob
, aeson
, aeson-pretty
, ansi-terminal
, async-pool
, base >=4.7 && <5
, bower-json
, bytestring
, containers
, cryptonite
, dhall >=1.38.0
, directory >=1.3.4.0
, either
, file-embed
, filepath
, foldl
, fsnotify
, generic-lens
, http-client
, http-conduit
, http-types
, lens-family-core
, megaparsec
, mtl
, network-uri
, open-browser
, optparse-applicative
, prettyprinter
, process
, retry
, rio >=0.1.16.0
, rio-orphans
, safe
, semver-range
, stm
, stringsearch
, tar
, template-haskell
, temporary
, text <1.3
, time
, transformers
, turtle
, unliftio
, unordered-containers
, utf8-string
, versions
, with-utf8
, zlib
executable spago
import: defaults
main-is: Spago.hs
other-modules:
Paths_spago
autogen-modules:
Paths_spago
hs-source-dirs: app
build-depends:
ansi-terminal
, base >=4.7 && <5
, spago
, text <1.3
, turtle
, with-utf8
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N -main-is Spago -optP-Wno-nonportable-include-path
test-suite spec
import: defaults
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules:
BumpVersionSpec
Spago.PursSpec
SpagoSpec
Spec
UnitSpec
Utils
Paths_spago
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N -main-is Main
build-depends:
QuickCheck
, base >=4.7 && <5
, containers
, directory
, extra
, hspec ==2.*
, hspec-megaparsec
, megaparsec
, process
, spago
, temporary
, text <1.3
, turtle
, versions
build-tool-depends:
hspec-discover:hspec-discover == 2.*
-- we need the the executable available for the end to end tests
, spago:spago -any