├── .gitignore ├── LICENSE ├── README.md ├── elm.json ├── src ├── Elm │ └── Kernel │ │ └── Json.js └── Json │ ├── Decode.elm │ └── Encode.elm └── tests └── Json.elm /.gitignore: -------------------------------------------------------------------------------- 1 | elm-stuff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/json/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/json/HEAD/README.md -------------------------------------------------------------------------------- /elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/json/HEAD/elm.json -------------------------------------------------------------------------------- /src/Elm/Kernel/Json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/json/HEAD/src/Elm/Kernel/Json.js -------------------------------------------------------------------------------- /src/Json/Decode.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/json/HEAD/src/Json/Decode.elm -------------------------------------------------------------------------------- /src/Json/Encode.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/json/HEAD/src/Json/Encode.elm -------------------------------------------------------------------------------- /tests/Json.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/json/HEAD/tests/Json.elm --------------------------------------------------------------------------------