├── .eslintrc ├── .gitattributes ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.d.ts ├── index.js ├── index.test-d.ts ├── index.test.js ├── package.json └── tsconfig.json /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvburgess/SQLDataSource/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvburgess/SQLDataSource/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvburgess/SQLDataSource/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.test.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvburgess/SQLDataSource/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvburgess/SQLDataSource/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvburgess/SQLDataSource/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvburgess/SQLDataSource/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvburgess/SQLDataSource/HEAD/index.js -------------------------------------------------------------------------------- /index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvburgess/SQLDataSource/HEAD/index.test-d.ts -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvburgess/SQLDataSource/HEAD/index.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvburgess/SQLDataSource/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvburgess/SQLDataSource/HEAD/tsconfig.json --------------------------------------------------------------------------------