forked from postgrespro/jsquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
META.json
53 lines (53 loc) · 1.57 KB
/
META.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "JsQuery",
"abstract": "JSON Query Language with GIN indexing support",
"description": "JsQuery provides additional functionality for JSONB, such as a simple and effective way to search in nested objects and arrays, and more comparison operators with index support. It does this by implementing a specialized search syntax, the @@ operator, and the jsquery type for search strings.",
"version": "1.1.1",
"maintainer": [
"Teodor Sigaev <[email protected]>",
"Alexander Korotkov <[email protected]>",
"Oleg Bartunov <[email protected]>"
],
"license": {
"PostgreSQL": "http://www.postgresql.org/about/licence"
},
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "9.4"
},
"recommends": {
"PostgreSQL": "10.0"
}
}
},
"provides": {
"jsquery": {
"file": "sql/jsquery.sql",
"docfile": "README.md",
"version": "1.1.1",
"abstract": "JSON query language with GIN indexing support"
}
},
"resources": {
"homepage": "https://github.com/postgrespro/jsquery",
"bugtracker": {
"web": "https://github.com/postgrespro/jsquery/issues"
},
"repository": {
"url": "https://github.com/postgrespro/jsquery.git",
"web": "https://github.com/postgrespro/jsquery",
"type": "git"
}
},
"generated_by": "Josh Berkus",
"meta-spec": {
"version": "1.1.1",
"url": "http://pgxn.org/meta/spec.txt"
},
"tags": [
"JSON",
"index",
"search"
]
}