-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathmix.exs
More file actions
63 lines (58 loc) · 1.41 KB
/
mix.exs
File metadata and controls
63 lines (58 loc) · 1.41 KB
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
defmodule Jsonpatch.MixProject do
use Mix.Project
def project do
[
app: :jsonpatch,
name: "Jsonpatch",
description: "Implementation of RFC 6902 in pure Elixir",
version: "2.3.1",
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps(),
test_coverage: [tool: ExCoveralls],
package: package(),
source_url: "https://github.com/corka149/jsonpatch",
docs: [
main: "readme",
extras: ["README.md"]
]
]
end
def cli do
[
preferred_envs: [
coveralls: :test,
"coveralls.github": :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
docs: :dev
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:excoveralls, "~> 0.18", only: [:test]},
{:credo, "~> 1.7.16", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4", only: [:dev], runtime: false},
{:ex_doc, "~> 0.40", only: [:dev], runtime: false},
{:jason, "~> 1.4", only: [:dev, :test]},
{:benchee, "~> 1.4", only: [:dev]}
]
end
defp package() do
[
maintainers: ["Sebastian Ziemann"],
licenses: ["MIT"],
source_url: "https://github.com/corka149/jsonpatch",
links: %{
"GitHub" => "https://github.com/corka149/jsonpatch"
}
]
end
end