forked from wfgilman/plaid-elixir
-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
61 lines (54 loc) · 1.45 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
defmodule Plaid.Mixfile do
use Mix.Project
@description """
An Elixir Library for Plaid's V2 API
"""
def project do
[
app: :plaid,
version: "1.9.0",
description: @description,
elixir: "~> 1.5",
elixirc_paths: elixirc_paths(Mix.env()),
package: package(),
deps: deps(),
docs: docs(),
source_url: "https://github.com/wfgilman/plaid-elixir",
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test, "coveralls.detail": :test]
]
end
def application do
[extra_applications: [:logger]]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:httpoison, "~> 1.4"},
{:hackney, "~> 1.15.2", override: true},
{:poison, "~> 3.0"},
{:jason, "~> 1.1"},
{:bypass, "~> 0.8", only: [:test]},
{:credo, "~> 0.5", only: [:dev], runtime: false},
{:excoveralls, "~> 0.6", only: [:test]},
{:ex_doc, "~> 0.21", only: [:dev], runtime: false},
{:dialyxir, "~> 1.0.0-rc.6", only: [:dev, :test], runtime: false}
]
end
defp package do
[
name: :plaid_elixir,
files: ["lib", "mix.exs", "README*", "LICENSE*"],
licenses: ["MIT"],
maintainers: ["Will Gilman"],
links: %{"Github" => "https://github.com/wfgilman/plaid-elixir"}
]
end
defp docs do
[
extras: ["parameters.md"],
logo: "plaid-logo.png"
]
end
end