-
Notifications
You must be signed in to change notification settings - Fork 0
/
elm.json
28 lines (28 loc) · 931 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
{
"type": "package",
"name": "choonkeat/elm-totp",
"summary": "Library for Elm to generate TOTP url keys and code",
"license": "BSD-3-Clause",
"version": "1.1.1",
"exposed-modules": [
"TOTP",
"TOTP.Algorithm",
"TOTP.Key"
],
"elm-version": "0.19.0 <= v < 0.20.0",
"dependencies": {
"TSFoster/elm-bytes-extra": "1.3.0 <= v < 2.0.0",
"elm/bytes": "1.0.8 <= v < 2.0.0",
"elm/core": "1.0.0 <= v < 2.0.0",
"elm/time": "1.0.0 <= v < 2.0.0",
"elm/url": "1.0.0 <= v < 2.0.0",
"elm-community/string-extra": "4.0.1 <= v < 5.0.0",
"ktonon/elm-crypto": "1.1.2 <= v < 2.0.0",
"rlopzc/elm-hmac-sha1": "1.0.0 <= v < 2.0.0",
"rtfeldman/elm-hex": "1.0.0 <= v < 2.0.0",
"waratuman/elm-coder": "3.0.1 <= v < 4.0.0"
},
"test-dependencies": {
"elm-explorations/test": "1.2.2 <= v < 2.0.0"
}
}