forked from giann/croissant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
croissant-0.0.1-6.rockspec
42 lines (37 loc) · 1 KB
/
croissant-0.0.1-6.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
39
40
41
42
package = "croissant"
version = "0.0.1-6"
rockspec_format = "3.0"
source = {
url = "git://github.com/giann/croissant",
}
description = {
summary = "A Lua REPL implemented in Lua",
homepage = "https://github.com/giann/croissant",
license = "MIT/X11",
}
build = {
modules = {
["croissant.repl"] = "croissant/repl.lua",
["croissant.conf"] = "croissant/conf.lua",
["croissant.debugger"] = "croissant/debugger.lua",
["croissant.do"] = "croissant/do.lua",
["croissant.help"] = "croissant/help.lua",
["croissant.lexer"] = "croissant/lexer.lua",
["croissant.luaprompt"] = "croissant/luaprompt.lua",
["croissant.builtins"] = "croissant/builtins.lua",
},
type = "builtin",
install = {
bin = {
"bin/croissant"
}
}
}
dependencies = {
"lua >= 5.1",
"sirocco >= 0.0.1-5",
"hump >= 0.4-2",
"lpeg >= 1.0.1-1",
"argparse >= 0.6.0-1",
"compat53 >= 0.7-1",
}