-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmix.exs
86 lines (75 loc) · 1.88 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
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
defmodule JS2E.MixProject do
use Mix.Project
@version "2.9.1"
@elixir_version "~> 1.14"
def project do
[
app: :js2e,
version: @version,
elixir: @elixir_version,
aliases: aliases(),
deps: deps(),
description: description(),
dialyzer: dialyzer(),
docs: docs(),
escript: escript(),
preferred_cli_env: preferred_cli_env(),
test_coverage: test_coverage(),
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod
]
end
def application do
[extra_applications: [:logger, :eex]]
end
defp aliases do
[
build: ["deps.get", "compile", "escript.build"],
check: ["credo --strict --ignore=RedundantBlankLines"]
]
end
defp deps do
[
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.2", only: [:dev], runtime: false},
{:ex_doc, "~> 0.29", only: :dev, runtime: false},
{:excoveralls, "~> 0.16", only: :test, runtime: false},
{:gradient, github: "esl/gradient", only: [:dev], runtime: false},
# {:json_schema, path: "../json_schema/"},
{:json_schema, "~> 0.5"},
{:typed_struct, "~> 0.3"}
]
end
defp description do
"""
Generates Elm types, JSON decoders, JSON encoders and fuzz tests from JSON
schema specifications.
"""
end
defp dialyzer do
[plt_add_deps: :apps_direct]
end
defp docs do
[
name: "JSON Schema to Elm",
formatter_opts: [gfm: true],
source_ref: @version,
source_url: "https://github.com/dragonwasrobot/json-schema-to-elm",
extras: []
]
end
defp escript do
[main_module: JS2E, name: "js2e"]
end
defp preferred_cli_env do
[
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
end
defp test_coverage do
[tool: ExCoveralls]
end
end