Current section
Files
Jump to
Current section
Files
graphql_relay
mix.exs
mix.exs
defmodule GraphQL.Relay.Mixfile do
use Mix.Project
@version "0.0.1"
@description "Elixir implementation of Relay for GraphQL"
@repo_url "https://github.com/seanabrahams/graphql-relay-elixir"
def project do
[app: :graphql_relay,
version: @version,
elixir: "~> 1.2",
description: @description,
package: package,
source_url: @repo_url,
homepage_url: @repo_url,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps,
name: "GraphQL.Relay",
docs: [main: "README", extras: ["README.md"]]]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:graphql, git: "https://github.com/seanabrahams/graphql-elixir.git", branch: "input-object-type"}
]
end
defp package do
[maintainers: ["Sean Abrahams"],
licenses: ["MIT"],
links: %{"GitHub" => @repo_url},
files: ~w(lib mix.exs *.md LICENSE)]
end
end