UNPKG

@cdellacqua/knex-transact

Version:

transact function that provides a simple mechanism to translate SQL transactions into code

52 lines (51 loc) 1.27 kB
{ "name": "@cdellacqua/knex-transact", "version": "5.0.0", "description": "transact function that provides a simple mechanism to translate SQL transactions into code", "types": "build/index.d.ts", "main": "build/index.cjs", "module": "build/index.js", "type": "module", "scripts": { "build": "rimraf build && rollup -c && tsc --declaration --emitDeclarationOnly --declarationDir build", "prepare": "npm run build" }, "keywords": [ "knex", "transact", "transaction" ], "repository": { "type": "git", "url": "git+https://github.com/cdellacqua/knex-transact.git" }, "bugs": { "url": "https://github.com/cdellacqua/knex-transact/issues" }, "homepage": "https://github.com/cdellacqua/knex-transact", "files": [ "build/**/*" ], "exports": { ".": { "import": "./build/index.js", "require": "./build/index.cjs" }, "./package.json": "./package.json" }, "author": "Carlo Dell'Acqua", "license": "MIT", "devDependencies": { "@rollup/plugin-commonjs": "^16.0.0", "@rollup/plugin-node-resolve": "^10.0.0", "@rollup/plugin-typescript": "^6.1.0", "@types/node": "^14.14.7", "knex": "^2.0.0", "rimraf": "^3.0.2", "rollup": "^2.32.1", "typescript": "^5.0.3" }, "peerDependencies": { "knex": "^1.0.3 || ^2.0.0" } }