Skip to content

Commit a14fbbe

Browse files
committed
rockspec
1 parent 7adf5b3 commit a14fbbe

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
rockspec_format = "3.0"
2+
3+
package = "DumbLuaParser"
4+
version = "2.3.0-1"
5+
source = {url="git-ssh://[email protected]:ReFreezed/DumbLuaParser.git", branch="master", tag="2.3.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://refreezed.com/luaparser/",
17+
issues_url = "https://github.com/ReFreezed/DumbLuaParser/issues",
18+
19+
labels = {
20+
"ast",
21+
"minification",
22+
"optimization",
23+
"parsing",
24+
"purelua",
25+
"serialization",
26+
},
27+
}
28+
dependencies = {
29+
"lua >= 5.1, < 5.5",
30+
}
31+
build = {
32+
type = "builtin",
33+
modules = {
34+
dumbParser = "dumbParser.lua",
35+
},
36+
}

0 commit comments

Comments
 (0)