forked from erthalion/jsonbx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
META.json
50 lines (50 loc) · 1.39 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
{
"name": "jsonbx",
"abstract": "Backport of PostgreSQL 9.5 JSONB features for 9.4",
"description": "PostgreSQL 9.5 comes with a bunch of new functions and operators for JSONB, including ||, json_set and json_delete. This extension makes them available to users of PostgreSQL 9.4",
"version": "1.0.0",
"maintainer": [
"Dmitry Dolgov <[email protected]>",
"Andrew Dunstan <[email protected]>"
],
"license": {
"PostgreSQL": "http://www.postgresql.org/about/licence"
},
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": ">= 9.4.0, < 9.5.0"
}
}
},
"provides": {
"jsonbx": {
"file": "sql/jsonbx.sql",
"docfile": "README.md",
"version": "1.0.0",
"abstract": "Extra JSONB functions and operators for PostgreSQL 9.4"
}
},
"resources": {
"homepage": "https://github.com/erthalion/jsonbx",
"bugtracker": {
"web": "https://github.com/erthalion/jsonbx/issues"
},
"repository": {
"url": "https://github.com/erthalion/jsonbx.git",
"web": "https://github.com/erthalion/jsonbx",
"type": "git"
}
},
"generated_by": "Josh Berkus",
"meta-spec": {
"version": "1.0.0",
"url": "http://pgxn.org/meta/spec.txt"
},
"tags": [
"JSON",
"function",
"operator",
"backport"
]
}