sql-typechecker 0.0.9 → 0.0.12

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.
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  var __create = Object.create;
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getProtoOf = Object.getPrototypeOf;
@@ -3880,41 +3881,26 @@ var require_pg_pool = __commonJS((exports2, module2) => {
3880
3881
  // node_modules/pg/package.json
3881
3882
  var require_package = __commonJS((exports2, module2) => {
3882
3883
  module2.exports = {
3883
- _args: [
3884
- [
3885
- "pg@8.7.3",
3886
- "/home/simon/projects/sql-typechecker"
3887
- ]
3888
- ],
3889
- _from: "pg@8.7.3",
3890
- _id: "pg@8.7.3",
3891
- _inBundle: false,
3892
- _integrity: "sha512-HPmH4GH4H3AOprDJOazoIcpI49XFsHCe8xlrjHkWiapdbHK+HLtbm/GQzXYAZwmPju/kzKhjaSfMACG+8cgJcw==",
3893
- _location: "/pg",
3894
- _phantomChildren: {},
3895
- _requested: {
3896
- type: "version",
3897
- registry: true,
3898
- raw: "pg@8.7.3",
3899
- name: "pg",
3900
- escapedName: "pg",
3901
- rawSpec: "8.7.3",
3902
- saveSpec: null,
3903
- fetchSpec: "8.7.3"
3904
- },
3905
- _requiredBy: [
3906
- "/"
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"
3907
3895
  ],
3908
- _resolved: "https://registry.npmjs.org/pg/-/pg-8.7.3.tgz",
3909
- _spec: "8.7.3",
3910
- _where: "/home/simon/projects/sql-typechecker",
3911
- author: {
3912
- name: "Brian Carlson",
3913
- email: "brian.m.carlson@gmail.com"
3914
- },
3915
- bugs: {
3916
- 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"
3917
3901
  },
3902
+ author: "Brian Carlson <brian.m.carlson@gmail.com>",
3903
+ main: "./lib",
3918
3904
  dependencies: {
3919
3905
  "buffer-writer": "2.0.0",
3920
3906
  "packet-reader": "1.0.0",
@@ -3924,34 +3910,12 @@ var require_package = __commonJS((exports2, module2) => {
3924
3910
  "pg-types": "^2.1.0",
3925
3911
  pgpass: "1.x"
3926
3912
  },
3927
- description: "PostgreSQL client - pure javascript & libpq with the same API",
3928
3913
  devDependencies: {
3929
3914
  async: "0.9.0",
3930
3915
  bluebird: "3.5.2",
3931
3916
  co: "4.6.0",
3932
3917
  "pg-copy-streams": "0.3.0"
3933
3918
  },
3934
- engines: {
3935
- node: ">= 8.0.0"
3936
- },
3937
- files: [
3938
- "lib",
3939
- "SPONSORS.md"
3940
- ],
3941
- gitHead: "4fa7ee891a456168a75695ac026792136f16577f",
3942
- homepage: "https://github.com/brianc/node-postgres",
3943
- keywords: [
3944
- "database",
3945
- "libpq",
3946
- "pg",
3947
- "postgre",
3948
- "postgres",
3949
- "postgresql",
3950
- "rdbms"
3951
- ],
3952
- license: "MIT",
3953
- main: "./lib",
3954
- name: "pg",
3955
3919
  peerDependencies: {
3956
3920
  "pg-native": ">=2.0.0"
3957
3921
  },
@@ -3960,15 +3924,18 @@ var require_package = __commonJS((exports2, module2) => {
3960
3924
  optional: true
3961
3925
  }
3962
3926
  },
3963
- repository: {
3964
- type: "git",
3965
- url: "git://github.com/brianc/node-postgres.git",
3966
- directory: "packages/pg"
3967
- },
3968
3927
  scripts: {
3969
3928
  test: "make test-all"
3970
3929
  },
3971
- version: "8.7.3"
3930
+ files: [
3931
+ "lib",
3932
+ "SPONSORS.md"
3933
+ ],
3934
+ license: "MIT",
3935
+ engines: {
3936
+ node: ">= 8.0.0"
3937
+ },
3938
+ gitHead: "4fa7ee891a456168a75695ac026792136f16577f"
3972
3939
  };
3973
3940
  });
3974
3941