-
Notifications
You must be signed in to change notification settings - Fork 15
/
mix.exs
50 lines (40 loc) · 1.11 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
defmodule Quark.Mixfile do
use Mix.Project
def project do
[
app: :quark,
name: "Quark",
description: "Common combinators for Elixir",
version: "2.3.2",
elixir: "~> 1.11",
package: [
maintainers: ["Brooklyn Zelenka"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/expede/quark"}
],
source_url: "https://github.com/expede/quark",
homepage_url: "https://github.com/expede/quark",
aliases: [
quality: [
"test",
"credo --strict"
]
],
preferred_cli_env: [
quality: :test
],
deps: [
{:credo, "~> 1.5", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.1", only: :dev, runtime: false},
{:earmark, "~> 1.4", only: :dev, runtime: false},
{:ex_doc, "~> 0.23", only: :dev, runtime: false},
{:inch_ex, "~> 2.0", only: [:dev, :docs, :test], runtime: false}
],
docs: [
extras: ["README.md"],
logo: "./brand/logo.png",
main: "readme"
]
]
end
end