-
Notifications
You must be signed in to change notification settings - Fork 52
/
mix.exs
72 lines (65 loc) · 1.71 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
defmodule Plaid.Mixfile do
use Mix.Project
@source_url "https://github.com/wfgilman/plaid-elixir"
def project do
[
app: :plaid,
version: "3.3.0",
elixir: "~> 1.9",
elixirc_paths: elixirc_paths(Mix.env()),
package: package(),
deps: deps(),
docs: docs(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test, "coveralls.detail": :test],
dialyzer: [
plt_add_deps: :apps_direct
]
]
end
def application do
[extra_applications: [:logger]]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:tesla, "~> 1.5"},
{:hackney, "~> 1.18"},
{:poison, "~> 5.0"},
{:jason, "~> 1.4"},
{:bypass, "~> 2.1", only: [:test]},
{:credo, "~> 1.6", only: [:dev], runtime: false},
{:excoveralls, "~> 0.16", only: [:test]},
{:ex_doc, ">= 0.0.0", only: [:dev], runtime: false},
{:dialyxir, "~> 1.2", only: [:dev], runtime: false},
{:telemetry, "~> 1.2"},
{:mox, "~> 1.0", only: :test}
]
end
defp package do
[
description: "An Elixir Library for Plaid's V2 API",
name: :plaid_elixir,
files: ["lib", "mix.exs", "README*", "LICENSE*"],
licenses: ["MIT"],
maintainers: ["Will Gilman"],
links: %{"GitHub" => @source_url}
]
end
defp docs do
[
extras: [
"LICENSE.md": [title: "License"],
"README.md": [title: "Overview"],
"parameters.md": [],
"CHANGELOG.md": []
],
main: "readme",
logo: "assets/plaid-logo.png",
source_url: @source_url,
source_ref: "master",
formatters: ["html"]
]
end
end