Created
February 7, 2021 16:28
-
-
Save karlosmid/6aa9ac77237819a5c12ce2f37ad0ed02 to your computer and use it in GitHub Desktop.
exkeycdn mix project file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule ExKeyCDN.MixProject do | |
use Mix.Project | |
def project do | |
[ | |
app: :exkeycdn, | |
version: "0.0.2", | |
elixir: "~> 1.11", | |
start_permanent: Mix.env() == :prod, | |
deps: deps(), | |
description: description(), | |
package: package(), | |
test_coverage: [tool: ExCoveralls], | |
preferred_cli_env: [ | |
coveralls: :test, | |
"coveralls.detail": :test, | |
"coveralls.post": :test, | |
"coveralls.html": :test | |
] | |
] | |
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 | |
[ | |
{:hackney, "~> 1.17.0"}, | |
{:telemetry, "~> 0.4.2"}, | |
{:jason, "~> 1.2.2"}, | |
{:ex_doc, "~> 0.23", only: [:dev], runtime: false}, | |
{:inch_ex, "~> 2.0.0", only: [:dev, :test], runtime: false}, | |
{:credo, "~> 1.5.4", only: [:dev, :test], runtime: false}, | |
{:dialyxir, "~> 1.0.0", only: [:dev, :test], runtime: false}, | |
{:bypass, "~> 2.1.0", only: :test}, | |
{:mox, "~> 1.0.0", only: :test}, | |
{:excoveralls, "~> 0.13.4", only: :test} | |
] | |
end | |
defp description() do | |
""" | |
Library for ExKeyCDN API | |
""" | |
end | |
defp package do | |
[ | |
files: ["lib", "mix.exs", "README*", "LICENSE*"], | |
maintainers: ["Karlo Šmid"], | |
licenses: ["MIT"], | |
links: %{"GitHub" => "https://github.com/karlosmid/exkeycdn"} | |
] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment