-
Notifications
You must be signed in to change notification settings - Fork 0
/
tomba-1.0.0-2.rockspec
33 lines (33 loc) · 1.55 KB
/
tomba-1.0.0-2.rockspec
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
26
27
28
29
30
31
32
33
rockspec_format = "3.0"
package = "tomba"
version = "1.0.0-2"
source = {
url = "git://github.com/tomba-io/lua.git"
}
description = {
summary = "Official Lua library for Tomba Email Finder",
detailed = [[
Tomba: Tomba.io is an Email Finder for B2B sales and email marketing
This is the Lua client library for the [Email Finder](https://tomba.io) API.
It allows you to lookup the following details :
- [Domain Search](https://tomba.io/domain-search) (Search emails are based on the website You give one domain name and it returns all the email addresses found on the internet.)
- [Email Finder](https://tomba.io/email-finder) (This API endpoint generates or retrieves the most likely email address from a domain name, a first name and a last name..)
- [Email Verifier](https://tomba.io/email-verifier) (checks the deliverability of a given email address, verifies if it has been found in our database, and returns their sources.)
- [Email Sources](https://developer.tomba.io/#email-sources) (Find email address source somewhere on the web .)
- [Company Domain autocomplete](https://developer.tomba.io/#autocomplete) (Company Autocomplete is an API that lets you auto-complete company names and retrieve logo and domain information.)
]],
homepage = "https://tomba.io/",
issues_url = "https://github.com/tomba-io/lua/issues",
license = "Apache-2.0",
maintainer = "[email protected]"
}
dependencies = {
"lua >= 5.1",
"lua-requests",
}
build = {
type = "builtin",
modules = {
["tomba"] = "tomba/tomba.lua"
}
}