forked from purescript/purescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.yaml
More file actions
156 lines (151 loc) · 3.62 KB
/
package.yaml
File metadata and controls
156 lines (151 loc) · 3.62 KB
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
name: purescript
version: '0.11.5'
synopsis: PureScript Programming Language Compiler
description: A small strongly, statically typed programming language with expressive
types, inspired by Haskell and compiling to JavaScript.
category: Language
author: >
Phil Freeman <[email protected]>,
Gary Burgess <[email protected]>,
Hardy Jones <[email protected]>,
Harry Garrood <[email protected]>,
Christoph Hegemann <[email protected]>
maintainer: Phil Freeman <[email protected]>
copyright: (c) 2013-17 Phil Freeman, (c) 2014-17 Gary Burgess
license: BSD3
github: purescript/purescript
homepage: http://www.purescript.org/
extra-source-files:
- examples/**/*.js
- examples/**/*.purs
- examples/**/*.json
- app/static/*
- tests/support/*.json
- tests/support/setup-win.cmd
- tests/support/psci/*.purs
- tests/support/pscide/src/*.purs
- tests/support/pscide/src/*.js
- tests/support/pscide/src/*.fail
- stack.yaml
- README.md
- INSTALL.md
- CONTRIBUTORS.md
- CONTRIBUTING.md
dependencies:
- aeson >=1.0 && <1.1
- aeson-better-errors >=0.8
- ansi-terminal >=0.6.2 && <0.7
- base >=4.8 && <5
- base-compat >=0.6.0
- blaze-html >=0.8.1 && <0.9
- bower-json >=1.0.0.1 && <1.1
- boxes >=0.1.4 && <0.2.0
- bytestring
- cheapskate >=0.1 && <0.2
- clock
- containers
- data-ordlist >=0.4.7.0
- deepseq
- directory >=1.2.3
- dlist
- edit-distance
- filepath
- fsnotify >=0.2.1
- Glob >=0.7 && <0.8
- haskeline >=0.7.0.0
- http-client >=0.4.30 && <0.6.0
- http-types
- language-javascript >=0.6.0.9 && <0.7
- lens ==4.*
- lifted-base >=0.2.3 && <0.2.4
- monad-control >=1.0.0.0 && <1.1
- monad-logger >=0.3 && <0.4
- mtl >=2.1.0 && <2.3.0
- parallel >=3.2 && <3.3
- parsec >=3.1.10
- pattern-arrows >=0.0.2 && <0.1
- pipes >=4.0.0 && <4.4.0
- pipes-http
- process >=1.2.0 && <1.5
- protolude >=0.1.6
- regex-tdfa
- safe >=0.3.9 && <0.4
- scientific >=0.3.4.9 && <0.4
- semigroups >=0.16.2 && <0.19
- sourcemap >=0.1.6
- spdx ==0.2.*
- split
- stm >=0.2.4.0
- stringsearch
- syb
- text
- time
- transformers >=0.3.0 && <0.6
- transformers-base >=0.4.0 && <0.5
- transformers-compat >=0.3.0
- unordered-containers
- utf8-string >=1 && <2
- vector
library:
source-dirs: src
ghc-options: -Wall -O2
other-modules: Paths_purescript
default-extensions:
- ConstraintKinds
- DataKinds
- DeriveFunctor
- EmptyDataDecls
- FlexibleContexts
- KindSignatures
- LambdaCase
- MultiParamTypeClasses
- NoImplicitPrelude
- PatternGuards
- PatternSynonyms
- RankNTypes
- RecordWildCards
- OverloadedStrings
- ScopedTypeVariables
- TupleSections
- ViewPatterns
executables:
purs:
main: Main.hs
source-dirs: app
ghc-options: -Wall -O2 -fno-warn-unused-do-bind -threaded -rtsopts -with-rtsopts=-N
dependencies:
- ansi-wl-pprint
- file-embed
- network
- optparse-applicative >=0.13.0
- purescript
- wai ==3.*
- wai-websockets ==3.*
- warp ==3.*
- websockets >=0.9 && <0.11
when:
- condition: flag(release)
then:
cpp-options: -DRELEASE
else:
dependencies:
- gitrev >=1.2.0 && <1.3
tests:
tests:
main: Main.hs
source-dirs: tests
ghc-options: -Wall
dependencies:
- purescript
- hspec
- hspec-discover
- HUnit
- silently
flags:
release:
description: >
Mark this build as a release build: prevents inclusion of extra
info e.g. commit SHA in --version output)
manual: false
default: false
stability: experimental