├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── LICENSE.txt ├── README.md ├── codecov.yml ├── index.d.ts ├── index.js ├── package.json ├── renovate.json ├── test ├── integration │ ├── mysql.js │ ├── mysql2.js │ ├── pg.js │ └── sequelize.js └── unit.js └── typings.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/codecov.yml -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/renovate.json -------------------------------------------------------------------------------- /test/integration/mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/test/integration/mysql.js -------------------------------------------------------------------------------- /test/integration/mysql2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/test/integration/mysql2.js -------------------------------------------------------------------------------- /test/integration/pg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/test/integration/pg.js -------------------------------------------------------------------------------- /test/integration/sequelize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/test/integration/sequelize.js -------------------------------------------------------------------------------- /test/unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/test/unit.js -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/node-sql-template-strings/HEAD/typings.json --------------------------------------------------------------------------------