Skip to content

Commit 4b6ab83

Browse files
committed
LuaRocks stuff.
1 parent 201017b commit 4b6ab83

File tree

2 files changed

+70
-0
lines changed

2 files changed

+70
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
rockspec_format = "3.0"
2+
3+
package = "DumbLuaParser"
4+
version = "2.1.0-1"
5+
source = {url="git-ssh://[email protected]:ReFreezed/DumbLuaParser.git", branch="master", tag="2.1.0"}
6+
7+
description = {
8+
summary = "Lua parsing library capable of optimizing and minifying code.",
9+
detailed = [[
10+
Dumb Lua Parser is a library for tokenizing Lua code or creating ASTs
11+
(Abstract Syntax Trees) and converting the data back to Lua. It can
12+
also optimize and minify code.
13+
]],
14+
15+
license = "MIT",
16+
homepage = "http://luaparser.refreezed.com/",
17+
issues_url = "https://github.com/ReFreezed/DumbLuaParser/issues",
18+
19+
labels = {
20+
"ast",
21+
"minification",
22+
"optimization",
23+
"parsing",
24+
"serialization",
25+
},
26+
}
27+
dependencies = {
28+
"lua >= 5.1, < 5.5",
29+
}
30+
build = {
31+
type = "builtin",
32+
modules = {
33+
dumbParser = "dumbParser.lua",
34+
},
35+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
rockspec_format = "3.0"
2+
3+
package = "DumbLuaParser"
4+
version = "scm-1"
5+
source = {url="git-ssh://[email protected]:ReFreezed/DumbLuaParser.git", branch="master"}
6+
7+
description = {
8+
summary = "Lua parsing library capable of optimizing and minifying code.",
9+
detailed = [[
10+
Dumb Lua Parser is a library for tokenizing Lua code or creating ASTs
11+
(Abstract Syntax Trees) and converting the data back to Lua. It can
12+
also optimize and minify code.
13+
]],
14+
15+
license = "MIT",
16+
homepage = "http://luaparser.refreezed.com/",
17+
issues_url = "https://github.com/ReFreezed/DumbLuaParser/issues",
18+
19+
labels = {
20+
"ast",
21+
"minification",
22+
"optimization",
23+
"parsing",
24+
"serialization",
25+
},
26+
}
27+
dependencies = {
28+
"lua >= 5.1, < 5.5",
29+
}
30+
build = {
31+
type = "builtin",
32+
modules = {
33+
dumbParser = "dumbParser.lua",
34+
},
35+
}

0 commit comments

Comments
 (0)