Skip to content

Commit c6b7661

Browse files
author
Alexandr Sorokin
committed
Release v1.1.4
1 parent 5b8c7f7 commit c6b7661

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

jsonpath-pico.1.1.4.rockspec

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package = 'jsonpath'
2+
version = 'pico.1.1.4-1'
3+
source = {
4+
url = 'git+https://github.com/picodata/lua-jsonpath',
5+
tag = '1.1.4'
6+
}
7+
description = {
8+
summary = 'Query Lua data structures with JsonPath expressions. Robust and safe JsonPath engine for Lua.',
9+
detailed = [[
10+
This library implements Stefan Goessner's JsonPath syntax (http://goessner.net/articles/JsonPath/) in Lua.
11+
12+
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).
13+
]],
14+
homepage = 'https://github.com/tarantool/lua-jsonpath',
15+
license = 'MIT'
16+
}
17+
dependencies = {
18+
'lua >= 5.1',
19+
'lulpeg ~> pico.0.1.3-1'
20+
}
21+
build = {
22+
type = 'builtin',
23+
modules = {
24+
jsonpath = 'jsonpath.lua'
25+
}
26+
}

0 commit comments

Comments
 (0)