-
Notifications
You must be signed in to change notification settings - Fork 16
/
katt.app.src
25 lines (24 loc) · 1.11 KB
/
katt.app.src
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
%%-*- mode: erlang -*-
{application, katt, [ {description, "KATT (Klarna API Testing Tool) is an HTTP-based API testing tool for Erlang."}
, {vsn, git}
, {modules, [ katt
, katt_blueprint
, katt_blueprint_parse
, katt_util
]}
, {registered, []}
, {applications, [ kernel
, stdlib
, crypto
, asn1
, public_key
, ssl
, jsx
, hackney
, tdiff
]}
, {licenses, [ "Apache 2.0"
]}
, {links, [ {"Github", "https://github.com/for-GET/katt"}
]}
]}.