Current section

Files

Jump to
sqlitex mix.exs
Raw

mix.exs

defmodule Sqlitex.Mixfile do
use Mix.Project
def project do
[
app: :sqlitex,
version: "1.5.0",
elixir: "~> 1.4",
deps: deps(),
package: package(),
source_url: "https://github.com/Sqlite-Ecto/sqlitex",
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.circle": :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
],
description: """
A thin Elixir wrapper around esqlite
""",
dialyzer: [plt_add_deps: :transitive]
]
end
# Configuration for the OTP application
def application do
[extra_applications: [:logger]]
end
# Type `mix help deps` for more examples and options
defp deps do
[
{:esqlite, "~> 0.2.5"},
{:decimal, "~> 1.5"},
{:credo, "~> 0.10", only: :dev},
{:dialyxir, "~> 1.0.0-rc.3", only: :dev, runtime: false},
{:excoveralls, "~> 0.10", only: :test},
{:ex_doc, "~> 0.19", only: :docs, runtime: false},
{:excheck, "~> 0.6", only: :test},
{:triq, "~> 1.2", only: :test}
]
end
defp package do
[
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/Sqlite-Ecto/sqlitex",
"docs" => "http://hexdocs.pm/sqlitex"
}
]
end
end