forked from wfgilman/plaid-elixir
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
52 lines (47 loc) · 1.07 KB
/
mix.exs
File metadata and controls
52 lines (47 loc) · 1.07 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
defmodule Plaid.Mixfile do
use Mix.Project
@description """
An Elixir Library for Plaid
"""
def project do
[app: :plaid,
version: "0.3.0",
description: @description,
package: package(),
elixir: "~> 1.3",
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
"coveralls": :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
vcr: :test,
"vcr.delete": :test,
"vcr.check": :test,
"vcr.show": :test
],
deps: deps()
]
end
def application do
[applications: [:httpoison]]
end
defp deps do
[
{:httpoison, "~> 0.9.0"},
{:poison, "~> 2.0"},
{:exvcr, "~> 0.7", only: :test},
{:ex_doc, "~> 0.13", only: :dev},
{:excoveralls, "~> 0.5", only: :test}
]
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
end