-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmix.exs
More file actions
42 lines (38 loc) · 957 Bytes
/
mix.exs
File metadata and controls
42 lines (38 loc) · 957 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
34
35
36
37
38
39
40
41
42
defmodule JSONDiff.MixProject do
use Mix.Project
def project do
[
app: :json_diff,
description: "An Elixir implementation of the diffing element of JSON Patch (RFC 6902)",
version: "0.1.3",
elixir: "~> 1.6",
package: package(),
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
defp package do
[
files: ["lib", "mix.exs", "README.md"],
maintainers: ["Eddy Lane <naedin@gmail.com>"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/EddyLane/elixir_json_diff",
"Docs" => "https://hexdocs.pm/json_diff"
}
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.20.1", only: :dev},
{:json_patch, "~> 0.8.0", only: :test}
]
end
end