-
Notifications
You must be signed in to change notification settings - Fork 21
/
elm.json
44 lines (44 loc) · 1.37 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"type": "package",
"name": "cmditch/elm-ethereum",
"summary": "feed the tree some ether.",
"license": "MIT",
"version": "5.0.0",
"exposed-modules": [
"Eth",
"Eth.Decode",
"Eth.Encode",
"Eth.Defaults",
"Eth.Net",
"Eth.RPC",
"Eth.Sentry.Tx",
"Eth.Sentry.Event",
"Eth.Sentry.Wallet",
"Eth.Types",
"Eth.Units",
"Eth.Utils",
"Eth.Abi.Decode",
"Eth.Abi.Encode",
"Shh"
],
"elm-version": "0.19.0 <= v < 0.20.0",
"dependencies": {
"Chadtech/elm-bool-extra": "2.4.0 <= v < 3.0.0",
"NoRedInk/elm-json-decode-pipeline": "1.0.0 <= v < 2.0.0",
"cmditch/elm-bigint": "2.0.1 <= v < 3.0.0",
"elm/core": "1.0.2 <= v < 2.0.0",
"elm/http": "2.0.0 <= v < 3.0.0",
"elm/json": "1.1.3 <= v < 2.0.0",
"elm/regex": "1.0.0 <= v < 2.0.0",
"elm/time": "1.0.0 <= v < 2.0.0",
"elm-community/maybe-extra": "5.0.0 <= v < 6.0.0",
"elm-community/result-extra": "2.2.1 <= v < 3.0.0",
"elm-community/string-extra": "4.0.0 <= v < 5.0.0",
"prozacchiwawa/elm-keccak": "2.0.0 <= v < 3.0.0",
"rtfeldman/elm-hex": "1.0.0 <= v < 2.0.0",
"zwilias/elm-utf-tools": "2.0.1 <= v < 3.0.0"
},
"test-dependencies": {
"elm-explorations/test": "1.2.1 <= v < 2.0.0"
}
}