ts-sql
Version:
An SQL builder in Typescript. This project is heavily inspired by [XQL](/extjs/xql). A big shout out to @exjs and @kobalicek for this amazing project.
64 lines • 1.8 kB
JSON
{
"name": "ts-sql",
"version": "1.0.1",
"description": "An SQL builder in Typescript. This project is heavily inspired by [XQL](/extjs/xql). A big shout out to @exjs and @kobalicek for this amazing project.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solzacode/ts-sql.git"
},
"keywords": [
"SQL",
"AST",
"typescript",
"select",
"from",
"where",
"mysql",
"builder",
"parse"
],
"author": "Charles Prakash Dasari <prakash@solza.io> (https://github.com/charlesprakash)",
"license": "MIT",
"bugs": {
"url": "https://github.com/solzacode/ts-sql/issues"
},
"homepage": "https://github.com/solzacode/ts-sql#readme",
"devDependencies": {
"@types/jest": "^22.1.2",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"ts-jest": "^22.0.4",
"typescript": "^2.7.1"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "./tsconfig-test.json"
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest",
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "(/__tests__/\\.*|(\\.|/)(test|spec))\\.(jsx?|js?|tsx?|ts?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"collectCoverage": true
},
"dependencies": {
"jsymbol": "^0.3.5",
"reflect-metadata": "^0.1.12"
}
}