sql-typechecker 0.0.10 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/cli.js +6613 -430
- package/out/cli.js.map +3 -3
- package/out/typeparsers.js +27 -61
- package/out/typeparsers.js.map +1 -1
- package/package.json +8 -4
package/out/typeparsers.js
CHANGED
|
@@ -3881,41 +3881,26 @@ var require_pg_pool = __commonJS((exports2, module2) => {
|
|
|
3881
3881
|
// node_modules/pg/package.json
|
|
3882
3882
|
var require_package = __commonJS((exports2, module2) => {
|
|
3883
3883
|
module2.exports = {
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
|
|
3892
|
-
|
|
3893
|
-
|
|
3894
|
-
|
|
3895
|
-
_phantomChildren: {},
|
|
3896
|
-
_requested: {
|
|
3897
|
-
type: "version",
|
|
3898
|
-
registry: true,
|
|
3899
|
-
raw: "pg@8.7.3",
|
|
3900
|
-
name: "pg",
|
|
3901
|
-
escapedName: "pg",
|
|
3902
|
-
rawSpec: "8.7.3",
|
|
3903
|
-
saveSpec: null,
|
|
3904
|
-
fetchSpec: "8.7.3"
|
|
3905
|
-
},
|
|
3906
|
-
_requiredBy: [
|
|
3907
|
-
"/"
|
|
3884
|
+
name: "pg",
|
|
3885
|
+
version: "8.7.3",
|
|
3886
|
+
description: "PostgreSQL client - pure javascript & libpq with the same API",
|
|
3887
|
+
keywords: [
|
|
3888
|
+
"database",
|
|
3889
|
+
"libpq",
|
|
3890
|
+
"pg",
|
|
3891
|
+
"postgre",
|
|
3892
|
+
"postgres",
|
|
3893
|
+
"postgresql",
|
|
3894
|
+
"rdbms"
|
|
3908
3895
|
],
|
|
3909
|
-
|
|
3910
|
-
|
|
3911
|
-
|
|
3912
|
-
|
|
3913
|
-
|
|
3914
|
-
email: "brian.m.carlson@gmail.com"
|
|
3915
|
-
},
|
|
3916
|
-
bugs: {
|
|
3917
|
-
url: "https://github.com/brianc/node-postgres/issues"
|
|
3896
|
+
homepage: "https://github.com/brianc/node-postgres",
|
|
3897
|
+
repository: {
|
|
3898
|
+
type: "git",
|
|
3899
|
+
url: "git://github.com/brianc/node-postgres.git",
|
|
3900
|
+
directory: "packages/pg"
|
|
3918
3901
|
},
|
|
3902
|
+
author: "Brian Carlson <brian.m.carlson@gmail.com>",
|
|
3903
|
+
main: "./lib",
|
|
3919
3904
|
dependencies: {
|
|
3920
3905
|
"buffer-writer": "2.0.0",
|
|
3921
3906
|
"packet-reader": "1.0.0",
|
|
@@ -3925,34 +3910,12 @@ var require_package = __commonJS((exports2, module2) => {
|
|
|
3925
3910
|
"pg-types": "^2.1.0",
|
|
3926
3911
|
pgpass: "1.x"
|
|
3927
3912
|
},
|
|
3928
|
-
description: "PostgreSQL client - pure javascript & libpq with the same API",
|
|
3929
3913
|
devDependencies: {
|
|
3930
3914
|
async: "0.9.0",
|
|
3931
3915
|
bluebird: "3.5.2",
|
|
3932
3916
|
co: "4.6.0",
|
|
3933
3917
|
"pg-copy-streams": "0.3.0"
|
|
3934
3918
|
},
|
|
3935
|
-
engines: {
|
|
3936
|
-
node: ">= 8.0.0"
|
|
3937
|
-
},
|
|
3938
|
-
files: [
|
|
3939
|
-
"lib",
|
|
3940
|
-
"SPONSORS.md"
|
|
3941
|
-
],
|
|
3942
|
-
gitHead: "4fa7ee891a456168a75695ac026792136f16577f",
|
|
3943
|
-
homepage: "https://github.com/brianc/node-postgres",
|
|
3944
|
-
keywords: [
|
|
3945
|
-
"database",
|
|
3946
|
-
"libpq",
|
|
3947
|
-
"pg",
|
|
3948
|
-
"postgre",
|
|
3949
|
-
"postgres",
|
|
3950
|
-
"postgresql",
|
|
3951
|
-
"rdbms"
|
|
3952
|
-
],
|
|
3953
|
-
license: "MIT",
|
|
3954
|
-
main: "./lib",
|
|
3955
|
-
name: "pg",
|
|
3956
3919
|
peerDependencies: {
|
|
3957
3920
|
"pg-native": ">=2.0.0"
|
|
3958
3921
|
},
|
|
@@ -3961,15 +3924,18 @@ var require_package = __commonJS((exports2, module2) => {
|
|
|
3961
3924
|
optional: true
|
|
3962
3925
|
}
|
|
3963
3926
|
},
|
|
3964
|
-
repository: {
|
|
3965
|
-
type: "git",
|
|
3966
|
-
url: "git://github.com/brianc/node-postgres.git",
|
|
3967
|
-
directory: "packages/pg"
|
|
3968
|
-
},
|
|
3969
3927
|
scripts: {
|
|
3970
3928
|
test: "make test-all"
|
|
3971
3929
|
},
|
|
3972
|
-
|
|
3930
|
+
files: [
|
|
3931
|
+
"lib",
|
|
3932
|
+
"SPONSORS.md"
|
|
3933
|
+
],
|
|
3934
|
+
license: "MIT",
|
|
3935
|
+
engines: {
|
|
3936
|
+
node: ">= 8.0.0"
|
|
3937
|
+
},
|
|
3938
|
+
gitHead: "4fa7ee891a456168a75695ac026792136f16577f"
|
|
3973
3939
|
};
|
|
3974
3940
|
});
|
|
3975
3941
|
|