orbitdbconnector
Version:
Database connection provider based on Typeorm with a bunch of tweak to be able to connect to a DB dynamically with or without entities plus perf gains.
57 lines (56 loc) • 1.77 kB
JSON
{
"name": "orbitdbconnector",
"version": "1.0.5",
"description": "Database connection provider based on Typeorm with a bunch of tweak to be able to connect to a DB dynamically with or without entities plus perf gains.",
"main": "core/orbit.js",
"types": "core/orbit.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"core/**/*.ts\" \"lib/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && npm run build && git add -A core",
"postversion": "git push && git push --tags",
"xversion": "npm --no-git-tag-version version patch",
"gitupdate": "git add . && git commit -m \"🟢 RELEASING V %npm_package_version% ✨\" && git push --tags ",
"release": "npm run xversion && npm run gitupdate && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orbitturner/OrbitDbConnector.git"
},
"keywords": [
"Database",
"Dynamic",
"Orm",
"Multiple-Connection"
],
"author": "Orbit Turner",
"license": "MIT",
"bugs": {
"url": "https://github.com/orbitturner/OrbitDbConnector/issues"
},
"homepage": "https://github.com/orbitturner/OrbitDbConnector#readme",
"devDependencies": {
"@types/jest": "^29.2.2",
"@types/signale": "^1.4.4",
"dotenv": "^16.0.3",
"jest": "^29.3.1",
"pg": "^8.8.0",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typeorm": "^0.3.10",
"typescript": "^4.8.4"
},
"files": [
"lib/**/*"
],
"dependencies": {
"signale": "^1.4.0"
}
}