-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
71 lines (64 loc) · 1.76 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
defmodule ExMultipass.MixProject do
use Mix.Project
def project do
[
app: :ex_multipass,
version: "0.3.0",
elixir: "~> 1.12",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
"coveralls.travis": :test
],
dialyzer: [
flags: [
:unmatched_returns,
:error_handling,
:race_conditions,
:no_opaque
]
],
# Docs
name: "ex_multipass",
source_url: "https://github.com/activeprospect/ex_multipass"
]
end
def application do
[
extra_applications: [:logger]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:jason, "~> 1.0"},
{:credo, "~> 1.0", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
{:excoveralls, "~> 0.14", only: :test},
{:stream_data, "~> 0.1", only: :test},
{:ex_doc, "~> 0.24", only: :dev, runtime: false}
]
end
defp description() do
"Ruby compatible multipass encryption and decryption"
end
defp package() do
[
# These are the default files included in the package
files: ["lib", "test", "config", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Frank Kumro"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/activeprospect/ex_multipass"}
]
end
end