Skip to content

Commit 4e590c4

Browse files
committed
Merge pull request #15 from pgexperts/master
Add META.json file for upload to PGXN.
2 parents a0db07b + 8ce09df commit 4e590c4

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

META.json

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"name": "JsQuery",
3+
"abstract": "JSON Query Language with GIN indexing support",
4+
"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.",
5+
"version": "1.0.0",
6+
"maintainer": [
7+
"Teodor Sigaev <[email protected]>",
8+
"Alexander Korotkov <[email protected]>",
9+
"Oleg Bartunov <[email protected]>"
10+
],
11+
"license": {
12+
"PostgreSQL": "http://www.postgresql.org/about/licence"
13+
},
14+
"prereqs": {
15+
"runtime": {
16+
"requires": {
17+
"PostgreSQL": "9.4.0"
18+
},
19+
"recommends": {
20+
"PostgreSQL": "9.4.0"
21+
}
22+
}
23+
},
24+
"provides": {
25+
"jsquery": {
26+
"file": "sql/jsquery.sql",
27+
"docfile": "README.md",
28+
"version": "1.0.0",
29+
"abstract": "JSON query language with GIN indexing support"
30+
}
31+
},
32+
"resources": {
33+
"homepage": "https://github.com/postgrespro/jsquery",
34+
"bugtracker": {
35+
"web": "https://github.com/postgrespro/jsquery/issues"
36+
},
37+
"repository": {
38+
"url": "https://github.com/postgrespro/jsquery.git",
39+
"web": "https://github.com/postgrespro/jsquery",
40+
"type": "git"
41+
}
42+
},
43+
"generated_by": "Josh Berkus",
44+
"meta-spec": {
45+
"version": "1.0.0",
46+
"url": "http://pgxn.org/meta/spec.txt"
47+
},
48+
"tags": [
49+
"JSON",
50+
"index",
51+
"search"
52+
]
53+
}

0 commit comments

Comments
 (0)