forked from cblage/elixir-json
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
33 lines (27 loc) · 758 Bytes
/
mix.exs
File metadata and controls
33 lines (27 loc) · 758 Bytes
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
defmodule JSON.Mixfile do
use Mix.Project
def project do
[ app: :json,
version: "1.0.0",
elixir: "~> 1.3",
deps: deps(Mix.env),
description: "Native Elixir library for JSON encoding and decoding",
package: package(),
source_url: "https://github.com/cblage/elixir-json",
homepage_url: "https://hex.pm/packages/json" ]
end
def application, do: []
def deps(:prod), do: []
def deps(:docs) do
deps(:prod) ++ [
{ :ex_doc, github: "elixir-lang/ex_doc" },
{ :earmark, ">= 0.0.0"}
]
end
def deps(_), do: deps(:prod)
def package do
[ maintainers: ["cblage"],
licenses: ["BSD 3-Clause"],
links: %{"GitHub" => "https://github.com/cblage/elixir-json" } ]
end
end