-
Notifications
You must be signed in to change notification settings - Fork 2
/
elm.json
30 lines (30 loc) · 905 Bytes
/
elm.json
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
{
"type": "package",
"name": "mpizenberg/elm-pubgrub",
"summary": "PubGrub implementation in Elm",
"license": "BSD-3-Clause",
"version": "1.0.0",
"exposed-modules": [
"PubGrub",
"PubGrub.Cache",
"PubGrub.Internal.Assignment",
"PubGrub.Internal.Core",
"PubGrub.Internal.Incompatibility",
"PubGrub.Internal.Memory",
"PubGrub.Internal.PartialSolution",
"PubGrub.Internal.Report",
"PubGrub.Internal.Term",
"PubGrub.Range",
"PubGrub.Version"
],
"elm-version": "0.19.1 <= v < 0.20.0",
"dependencies": {
"elm/core": "1.0.5 <= v < 2.0.0",
"elm/json": "1.1.3 <= v < 2.0.0",
"pzp1997/assoc-list": "1.0.0 <= v < 2.0.0",
"yotamDvir/elm-pivot": "3.1.0 <= v < 4.0.0"
},
"test-dependencies": {
"elm-explorations/test": "1.2.2 <= v < 2.0.0"
}
}