forked from gen1321/simple_graphql_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
63 lines (58 loc) · 1.43 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
defmodule SimpleGraphqlClient.MixProject do
use Mix.Project
@version "0.2.1"
@github_url "https://github.com/gen1321/simple_graphql_client"
def project do
[
app: :simple_graphql_client,
description: "Elixir graphql client",
start_permanent: Mix.env() == :prod,
version: @version,
elixir: "~> 1.3",
package: package(),
docs: docs(),
source_url: @github_url,
xref: [exclude: :crypto],
deps: deps()
]
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
[
{:httpoison, "~> 2.1"},
{:jason, "~> 1.4"},
{:websockex, github: "valiot/websockex"},
{:ring_logger, "~> 0.9"},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:mock, "~> 0.3.0", only: :test},
{:ex_doc, "~> 0.27", only: :dev, runtime: false}
]
end
defp package do
[
files: [
"lib",
"mix.exs",
"README.md",
"LICENSE"
],
links: %{"github" => @github_url},
maintainers: ["Boris Beginin <[email protected]>"],
licenses: ["MIT"]
]
end
defp docs do
[
source_ref: "v#{@version}",
main: "SimpleGraphqlClient",
extras: ["README.md", "CHANGELOG.md"]
]
end
end