File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments