-
Notifications
You must be signed in to change notification settings - Fork 0
/
elm.json
111 lines (111 loc) · 4.65 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
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
{
"type": "package",
"name": "ryan-senn/stellar-elm-sdk",
"summary": "Elm SDK for the Stellar Cryptocurrency",
"license": "BSD-3-Clause",
"version": "2.0.0",
"exposed-modules": [
"Stellar.AssetType",
"Stellar.Balance",
"Stellar.Endpoint",
"Stellar.Error",
"Stellar.Flags",
"Stellar.Link",
"Stellar.PublicKey",
"Stellar.RationalNumber",
"Stellar.Signer",
"Stellar.Sorting",
"Stellar.Thresholds",
"Stellar.Endpoints.AccountDetails",
"Stellar.Endpoints.AllAssets",
"Stellar.Endpoints.AllEffects",
"Stellar.Endpoints.AllLedgers",
"Stellar.Endpoints.AllOperations",
"Stellar.Endpoints.AllPayments",
"Stellar.Endpoints.AllTransactions",
"Stellar.Endpoints.DataForAccount",
"Stellar.Endpoints.EffectsForAccount",
"Stellar.Endpoints.EffectsForLedger",
"Stellar.Endpoints.EffectsForOperation",
"Stellar.Endpoints.EffectsForTransaction",
"Stellar.Endpoints.FindPaymentPaths",
"Stellar.Endpoints.LedgerDetails",
"Stellar.Endpoints.OffersForAccount",
"Stellar.Endpoints.OperationDetails",
"Stellar.Endpoints.OperationsForAccount",
"Stellar.Endpoints.OperationsForLedger",
"Stellar.Endpoints.OperationsForTransaction",
"Stellar.Endpoints.OrderbookDetails",
"Stellar.Endpoints.PaymentsForAccount",
"Stellar.Endpoints.PaymentsForLedger",
"Stellar.Endpoints.PaymentsForTransaction",
"Stellar.Endpoints.PostTransaction",
"Stellar.Endpoints.TransactionDetails",
"Stellar.Endpoints.TransactionsForAccount",
"Stellar.Endpoints.TransactionsForLedger",
"Stellar.Resources.Account",
"Stellar.Resources.Asset",
"Stellar.Resources.Data",
"Stellar.Resources.Effect",
"Stellar.Resources.Ledger",
"Stellar.Resources.Offer",
"Stellar.Resources.Operation",
"Stellar.Resources.Orderbook",
"Stellar.Resources.Page",
"Stellar.Resources.Payment",
"Stellar.Resources.PaymentPath",
"Stellar.Resources.Trade",
"Stellar.Resources.TradeAggregation",
"Stellar.Resources.Transaction",
"Stellar.Resources.Effects.AccountCreated",
"Stellar.Resources.Effects.AccountCredited",
"Stellar.Resources.Effects.AccountDebited",
"Stellar.Resources.Effects.AccountFlagsUpdated",
"Stellar.Resources.Effects.AccountHomeDomainUpdated",
"Stellar.Resources.Effects.AccountInflationDestinationUpdated",
"Stellar.Resources.Effects.AccountRemoved",
"Stellar.Resources.Effects.AccountThresholdsUpdated",
"Stellar.Resources.Effects.DataCreated",
"Stellar.Resources.Effects.DataRemoved",
"Stellar.Resources.Effects.DataUpdated",
"Stellar.Resources.Effects.Links",
"Stellar.Resources.Effects.OfferCreated",
"Stellar.Resources.Effects.OfferRemoved",
"Stellar.Resources.Effects.OfferUpdated",
"Stellar.Resources.Effects.SignerCreated",
"Stellar.Resources.Effects.SignerRemoved",
"Stellar.Resources.Effects.SignerUpdated",
"Stellar.Resources.Effects.Trade",
"Stellar.Resources.Effects.TrustlineAuthorised",
"Stellar.Resources.Effects.TrustlineCreated",
"Stellar.Resources.Effects.TrustlineDeauthorised",
"Stellar.Resources.Effects.TrustlineRemoved",
"Stellar.Resources.Effects.TrustlineUpdated",
"Stellar.Resources.Operations.AccountMerge",
"Stellar.Resources.Operations.AllowTrust",
"Stellar.Resources.Operations.ChangeTrust",
"Stellar.Resources.Operations.CreateAccount",
"Stellar.Resources.Operations.CreatePassiveOffer",
"Stellar.Resources.Operations.Inflation",
"Stellar.Resources.Operations.Links",
"Stellar.Resources.Operations.ManageData",
"Stellar.Resources.Operations.ManageOffer",
"Stellar.Resources.Operations.PathPayment",
"Stellar.Resources.Operations.Payment",
"Stellar.Resources.Operations.SetOptions"
],
"elm-version": "0.19.0 <= v < 0.20.0",
"dependencies": {
"NoRedInk/elm-json-decode-pipeline": "1.0.0 <= v < 2.0.0",
"elm/core": "1.0.0 <= v < 2.0.0",
"elm/http": "1.0.0 <= v < 2.0.0",
"elm/json": "1.0.0 <= v < 2.0.0",
"elm/time": "1.0.0 <= v < 2.0.0",
"elm-community/json-extra": "4.0.0 <= v < 5.0.0",
"elm-community/string-extra": "3.0.0 <= v < 4.0.0",
"lukewestby/elm-http-builder": "6.0.0 <= v < 7.0.0"
},
"test-dependencies": {
"elm-explorations/test": "1.0.0 <= v < 2.0.0"
}
}