8000 Add META.json file for upload to PGXN by jberkus · Pull Request #15 · postgrespro/jsquery · GitHub
[go: up one dir, main page]

Skip to content

Add META.json file for upload to PGXN #15

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 30, 2015
Merged
Changes from 1 commit
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
Next Next commit
Added META.json file so that it can be uploaded to PGXN.
  • Loading branch information
jberkus committed Jun 27, 2015
commit 898bb4512f2a1c0046c858fff25ba9a3e56a0b44
53 changes: 53 additions & 0 deletions META.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,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.0.0",
"maintainer": [
"Teodor Sigaev <teodor@sigaev.ru>",
"Alexander Korotkov <aekorotkov@gmail.com>",
"Oleg Bartunov <oleg@sai.msu.su>"
],
"license": {
"PostgreSQL": "http://www.postgresql.org/about/licence"
},
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "9.4.0"
},
"recommends": {
"PostgreSQL": "9.4.0"
}
}
},
"provides": {
"jsquery": {
"file": "sql/jsquery.sql",
"docfile": "README.md",
"version": "1.0",
"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.0.0",
"url": "http://pgxn.org/meta/spec.txt"
},
"tags": [
"JSON",
"index",
"search"
]
}
0