UNPKG

database-builder

Version:

Library to assist in creating and maintaining SQL commands.

73 lines (72 loc) 1.94 kB
{ "name": "database-builder", "version": "0.6.7", "description": "Library to assist in creating and maintaining SQL commands.", "main": "./src/index.js", "types": "./src/index.d.ts", "scripts": { "test": "tsc && ts-mocha src/test/**/*.spec.ts", "test-grep": "npm run test -- --grep", "test-single": "npm run test-grep -- Mapper --debug-brk", "lint": "tslint -p tsconfig.json", "build": "tsc", "publish-npm": "tsc && npm publish", "publish-npm-alpha": "tsc && npm publish --tag alpha", "pack": "cd dist/ && npm pack ../", "ts-mocha": "ts-mocha" }, "dependencies": { "lambda-expression": ">=0.1.4", "lodash": ">=4.17.21", "moment": ">=2.29.1", "reflect-metadata": ">=0.1.13", "rxjs": ">=7.5.2", "uuid": ">=8.3.2" }, "devDependencies": { "@types/chai": "^4.3.0", "@types/chai-as-promised": "^7.1.4", "@types/lodash": "^4.14.178", "@types/mocha": "^9.0.0", "@types/sinon": "^10.0.6", "@types/sqlite3": "^3.1.8", "@types/uuid": "^8.3.4", "chai": "^4.3.4", "chai-as-promised": "^7.1.1", "mocha": "^9.1.4", "sinon": "^12.0.1", "sqlite3": "^5.0.2", "ts-mocha": "^9.0.2", "ts-node": "^10.7.0", "tslint": "^6.1.3", "typescript": "^4.6.3" }, "keywords": [ "orm", "database", "builder", "database-builder", "sqlite", "sql", "sql-builder", "crud", "insert", "update", "delete", "select", "ddl", "create-table", "drop-table", "alter-table" ], "author": "Fernando Leal", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/fernandocode/database-builder.git" }, "bugs": { "url": "https://github.com/fernandocode/database-builder/issues" }, "homepage": "https://github.com/fernandocode/database-builder#readme" }