-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
53 lines (49 loc) · 1.31 KB
/
mix.exs
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
defmodule Json5.MixProject do
use Mix.Project
def project do
[
app: :json5,
version: "0.3.2",
elixir: "~> 1.10",
description: "Json5 in Elixir",
start_permanent: Mix.env() == :prod,
deps: deps(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
],
compilers: [:yecc, :leex] ++ Mix.compilers(),
package: package(),
source_url: "https://github.com/thomas9911/json5"
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, "~> 0.24", only: :dev, runtime: false},
{:credo, "~> 1.5", only: :dev, runtime: false},
{:dialyxir, "~> 1.1", only: :dev, runtime: false},
{:benchee, ">= 0.0.0", only: :dev, runtime: false},
{:jason, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:eflame, "~> 1.0", only: :dev, runtime: false},
{:excoveralls, "~> 0.10", only: :test},
{:combine, "~> 0.10"},
{:unicode, "~> 1.19"},
{:unicode_set, "~> 1.4"},
{:decimal, "~> 2.0.0"}
]
end
defp package do
[
licenses: ["MIT"],
links: %{"Github" => "https://github.com/thomas9911/json5"}
]
end
end