-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmix.exs
More file actions
35 lines (32 loc) · 826 Bytes
/
mix.exs
File metadata and controls
35 lines (32 loc) · 826 Bytes
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
defmodule Calque.MixProject do
use Mix.Project
def project do
[
app: :calque,
version: "1.6.0",
elixir: "~> 1.12",
description: "A simple snapshot testing library inspired by Birdie (Gleam) and Insta (Rust).",
package: package(),
deps: deps(),
source_url: "https://github.com/milaneuh/calque",
docs: [
main: "Calque",
source_url: "https://github.com/milaneuh/calque",
extras: ["README.md", "LICENSE"]
]
]
end
defp deps do
[
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp package do
[
maintainers: ["Milan Rougemont"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/milaneuh/calque"}
]
end
end