├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json ├── sql ├── columns.sql ├── constraints.sql ├── index.js ├── sequences.sql ├── tables.sql └── views.sql ├── test.js └── test.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwebb/pg-json-schema-export/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwebb/pg-json-schema-export/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwebb/pg-json-schema-export/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwebb/pg-json-schema-export/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwebb/pg-json-schema-export/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwebb/pg-json-schema-export/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwebb/pg-json-schema-export/HEAD/package.json -------------------------------------------------------------------------------- /sql/columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwebb/pg-json-schema-export/HEAD/sql/columns.sql -------------------------------------------------------------------------------- /sql/constraints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwebb/pg-json-schema-export/HEAD/sql/constraints.sql -------------------------------------------------------------------------------- /sql/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwebb/pg-json-schema-export/HEAD/sql/index.js -------------------------------------------------------------------------------- /sql/sequences.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwebb/pg-json-schema-export/HEAD/sql/sequences.sql -------------------------------------------------------------------------------- /sql/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwebb/pg-json-schema-export/HEAD/sql/tables.sql -------------------------------------------------------------------------------- /sql/views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwebb/pg-json-schema-export/HEAD/sql/views.sql -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwebb/pg-json-schema-export/HEAD/test.js -------------------------------------------------------------------------------- /test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwebb/pg-json-schema-export/HEAD/test.json --------------------------------------------------------------------------------