Packages
Steam OpenID Strategy for Überauth.
Retired package: Release invalid - poison ~> 6.0 conflicts with decimal 3 (ecto_sql 3.14+); use 0.2.1
Current section
Files
Jump to
Current section
Files
ueberauth_steam_strategy
mix.exs
mix.exs
defmodule UeberauthSteam.Mixfile do
use Mix.Project
def project do
[
app: :ueberauth_steam_strategy,
description: "Steam OpenID Strategy for Überauth.",
version: "0.2.0",
elixir: "~> 1.12",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
package: package(),
# Testing
test_coverage: [tool: ExCoveralls],
dialyzer: [ignore_warnings: "dialyzer.ignore-warnings"],
# Docs
name: "Überauth Steam",
source_url: "https://github.com/appsinacup/ueberauth_steam",
homepage_url: "https://github.com/appsinacup/ueberauth_steam",
docs: [
main: "readme",
extras: ["README.md", "CHANGELOG.md"],
],
]
end
def cli do
[
preferred_envs: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
]
end
def package do
[
name: :ueberauth_steam_strategy,
maintainers: ["Ian Luites", "Dragos Daian"],
licenses: ["MIT"],
files: [
"lib/ueberauth", "lib/ueberauth_steam.ex", "mix.exs", "README*", "LICENSE*", "CHANGELOG*", # Elixir
],
links: %{
"GitHub" => "https://github.com/appsinacup/ueberauth_steam",
"Changelog" => "https://github.com/appsinacup/ueberauth_steam/blob/master/CHANGELOG.md",
"Upstream" => "https://github.com/shinyscorpion/ueberauth_steam",
},
]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[
# Dependencies
{:httpoison, "~> 3.0"},
{:poison, "~> 6.0"},
{:ueberauth, "~> 0.4"},
# Testing
{:meck, "~> 1.2", only: :test},
# Code Maintenance
{:credo, "~> 1.7", only: [:dev, :test]},
{:dialyxir, "~> 1.4", only: [:dev], runtime: false},
{:ex_doc, "~> 0.15", only: :dev},
{:excoveralls, "~> 0.18", only: :test},
{:inch_ex, "~> 2.0", only: [:dev, :test]},
]
end
end