We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39d5ff9 commit 0a88f81Copy full SHA for 0a88f81
1 file changed
mix.exs
@@ -7,6 +7,8 @@ defmodule GitHubWebhook.MixProject do
7
version: "0.1.0",
8
elixir: "~> 1.12",
9
start_permanent: Mix.env() == :prod,
10
+ description: "Github webhook plug",
11
+ package: package(),
12
deps: deps()
13
]
14
end
@@ -23,4 +25,12 @@ defmodule GitHubWebhook.MixProject do
23
25
{:plug, "~> 1.4"}
24
26
27
28
+
29
+ defp package do
30
+ [
31
+ files: ["lib", "mix.exs", "README.md"],
32
+ licenses: ["MIT"],
33
+ links: %{"GitHub" => "https://github.com/puretype/github_webhook"}
34
+ ]
35
+ end
36
0 commit comments