-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMETA.json
47 lines (47 loc) · 1.2 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
{
"name": "pair",
"abstract": "A key/value pair data type",
"description": "This library contains a single PostgreSQL extension, a key/value pair data type called “pair”, along with a convenience function for constructing key/value pairs.",
"version": "0.1.8",
"maintainer": [
"David E. Wheeler <[email protected]>"
],
"license": "postgresql",
"provides": {
"pair": {
"abstract": "A key/value pair data type",
"file": "sql/pair.sql",
"docfile": "doc/pair.md",
"version": "0.1.2"
}
},
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "9.1.0"
}
}
},
"resources": {
"bugtracker": {
"web": "https://github.com/theory/kv-pair/issues/"
},
"repository": {
"url": "git://github.com/theory/kv-pair.git",
"web": "https://github.com/theory/kv-pair/",
"type": "git"
}
},
"generated_by": "David E. Wheeler",
"meta-spec": {
"version": "1.0.0",
"url": "https://pgxn.org/meta/spec.txt"
},
"tags": [
"variadic function",
"ordered pair",
"pair",
"key value",
"key value pair"
]
}