diff --git a/jsonpath-pico.1.1.4.rockspec b/jsonpath-pico.1.1.4.rockspec new file mode 100755 index 0000000..bc8bbd8 --- /dev/null +++ b/jsonpath-pico.1.1.4.rockspec @@ -0,0 +1,26 @@ +package = 'jsonpath' +version = 'pico.1.1.4-1' +source = { + url = 'git+https://github.com/picodata/lua-jsonpath', + tag = '1.1.4' +} +description = { + summary = 'Query Lua data structures with JsonPath expressions. Robust and safe JsonPath engine for Lua.', + detailed = [[ +This library implements Stefan Goessner's JsonPath syntax (http://goessner.net/articles/JsonPath/) in Lua. + +The Lua JsonPath library was written from scratch by Frank Edelhaeuser. It's a pure Lua implementation based on a PEG grammer handled by LulPeg pattern-matching library (https://github.com/pygy/LuLPeg.git). + ]], + homepage = 'https://github.com/tarantool/lua-jsonpath', + license = 'MIT' +} +dependencies = { + 'lua >= 5.1', + 'lulpeg ~> pico.0.1.3-1' +} +build = { + type = 'builtin', + modules = { + jsonpath = 'jsonpath.lua' + } +}