UNPKG

sqlify

Version:

Yet another SQL query builder for Node.js

97 lines (96 loc) 3.62 kB
{ "name": "sqlify", "version": "2.5.2", "description": "Yet another SQL query builder for Node.js", "main": "dist/index.js", "typings": "dist/typings/index.d.ts", "scripts": { "prepublishOnly": "ts-node accessories/prepublish-log.ts && npm run build", "test": "ts-node accessories/test-log.ts && cross-env NODE_ENV=test mocha tests/*.ts --require ts-node/register --recursive --reporter spec", "test-watch": "ts-node accessories/test-watch-log.ts && cross-env NODE_ENV=test mocha tests/ --compilers ts:ts-node/register,tsx:ts-node/register --recursive --reporter spec --watch", "build": "ts-node accessories/building-log.ts && npm run clean-build && npm run lint && ts-node accessories/real-build-log.ts && npm run compile && npm run copy-assets", "lint-noFix": "ts-node accessories/lint-noFix-log.ts && npm run prettier-noFix && npm run tslint-noFix", "lint": "ts-node accessories/formatting-log.ts && npm run prettier && ts-node accessories/linting-log.ts && npm run tslint", "test-in-gitlab-runner": "ts-node accessories/test-log.ts && cross-env NODE_APP_INSTANCE=test cross-env NODE_CONFIG_DIR=./src/config jest --forceExit", "preCommit-msg": "ts-node accessories/pre-commit-log.ts", "copy-assets": "gulp copy-assets", "clean-build": "gulp clean-build", "prettier-noFix": "prettier \"{src/**/*.*,typings/**/*.*,tests/**/*.*}\"", "prettier": "prettier \"{src/**/*.*,typings/**/*.*,tests/**/*.*}\" --write", "tslint-noFix": "tslint -c tslint.json -p tsconfig.json -t stylish 'src/**/*.ts'", "tslint": "tslint -c tslint.json -p tsconfig.json -t stylish --fix 'src/**/*.ts'", "compile": "tsc", "rescope": "npm-scope-prefixer -s" }, "repository": { "type": "git", "url": "git+https://github.com/vajahath/sqlify.git" }, "author": "Vajahath Ahmed <vajuoff.1@gmail.com> (http://twitter.com/vajahath7)", "license": "MIT", "bugs": { "url": "https://github.com/vajahath/sqlify/issues" }, "homepage": "https://github.com/vajahath/sqlify#readme", "dependencies": { "squel": "^5.12.0" }, "contributors": [ "Lakshmipriya Mukundan (https://github.com/lakshmipriyamukundan)" ], "devDependencies": { "@types/chai": "^4.2.7", "@types/del": "^3.0.0", "@types/gulp": "^4.0.4", "@types/mocha": "^2.2.41", "@types/node": "^8.0.5", "@vaju/npm-scope-prefixer": "^1.2.0", "chai": "^4.1.0", "concurrently": "^3.5.0", "cross-env": "^5.0.1", "del": "^3.0.0", "gulp": "^4.0.2", "gulp-cli": "^2.2.0", "lme": "^1.5.3", "mocha": "^7.0.0", "pre-commit": "^1.2.2", "prettier": "^1.5.3", "ts-node": "^3.3.0", "tslint": "^5.5.0", "typescript": "^3.7.5" }, "pre-commit": [ "preCommit-msg", "lint-noFix" ], "keywords": [ "sql", "squel", "postgres", "mysql", "database", "query" ], "greenkeeper": { "ignore": [ "@types/chai", "@types/del", "@types/gulp", "@types/mocha", "@types/node", "chai", "concurrently", "cross-env", "del", "gulp", "gulp-cli", "lme", "mocha", "pre-commit", "prettier", "ts-node", "tslint", "typescript" ] } }