Skip to content

Commit 9943f82

Browse files
author
Alexandr Sorokin
committed
Release v1.1.4
1 parent 5804d41 commit 9943f82

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

jsonpath-pico.1.1.4.rockspec

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
Lua JsonPath is compatible with David Chester's Javascript implementation (https://github.com/dchester/jsonpath).
13+
14+
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).
15+
]],
16+
homepage = 'https://github.com/tarantool/lua-jsonpath',
17+
license = 'MIT'
18+
}
19+
dependencies = {
20+
'lua >= 5.1',
21+
'lulpeg ~> pico.0.1.3-1'
22+
}
23+
build = {
24+
type = 'builtin',
25+
modules = {
26+
jsonpath = 'jsonpath.lua'
27+
}
28+
}

0 commit comments

Comments
 (0)