-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlua-complete-scm-0.rockspec
39 lines (34 loc) · 1.13 KB
/
lua-complete-scm-0.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
34
35
36
37
38
package = "lua-complete"
version = "scm-0"
source = {
url = "git://github.com/FourierTransformer/lua-complete.git"
}
description = {
summary = "lua-complete is an auto-completion engine for the Lua language",
detailed = [[
lua-complete can provide auto-complete suggestions for a text editor or IDE.
The file contents, cursor location, and [optionally] include directory get passed in,
and lua-complete will suggest elements in the table and/or function arguments (for Lua functions).
]],
homepage = "http://github.com/FourierTransformer/lua-complete",
license = "MIT"
}
dependencies = {
"lua >= 5.1, < 5.4",
"luacheck >= 0.21, < 0.22",
"lua-cjson",
"luafilesystem"
}
build = {
type = "builtin",
modules = {
["lua-complete.server"] = "lua-complete/server.lua",
["lua-complete.client"] = "lua-complete/client.lua",
["lua-complete.argparse"] = "lua-complete/argparse.lua",
["lua-complete.analyze"] = "lua-complete/analyze.lua",
},
install = {
bin = { "bin/lua-complete" }
},
}