Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions jsonpath-pico.1.1.4.rockspec
Original file line number Diff line number Diff line change
@@ -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'
}
}