mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
96 lines
2.5 KiB
JSON
96 lines
2.5 KiB
JSON
{
|
|
"name": "knex-dynamic-connection",
|
|
"version": "3.1.1",
|
|
"description": "Adds support for dynamically returning connection config for knex queries",
|
|
"scripts": {
|
|
"mrm": "mrm --preset=@adonisjs/mrm-preset",
|
|
"pretest": "npm run lint",
|
|
"test:mysql": "DIALECT=mysql node japaFile.js",
|
|
"test:mysql2": "DIALECT=mysql2 node japaFile.js",
|
|
"test:mssql": "DIALECT=mssql node japaFile.js",
|
|
"test:pg": "DIALECT=pg node japaFile.js",
|
|
"lint": "eslint . --ext=.ts",
|
|
"clean": "del build",
|
|
"compile": "npm run lint && npm run clean && tsc",
|
|
"build": "npm run compile",
|
|
"commit": "git-cz",
|
|
"release": "np",
|
|
"version": "npm run build",
|
|
"sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json thetutlage/knex-dynamic-connection",
|
|
"format": "prettier --write ."
|
|
},
|
|
"engines": {
|
|
"node": ">=14.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/thetutlage/knex-dynamic-connection.git"
|
|
},
|
|
"keywords": [
|
|
"knex",
|
|
"db"
|
|
],
|
|
"author": "virk",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/thetutlage/knex-dynamic-connection/issues"
|
|
},
|
|
"homepage": "https://github.com/thetutlage/knex-dynamic-connection#readme",
|
|
"devDependencies": {
|
|
"@adonisjs/mrm-preset": "^5.0.3",
|
|
"@types/node": "^20.8.7",
|
|
"del-cli": "^5.1.0",
|
|
"doctoc": "^2.2.1",
|
|
"dotenv": "^16.3.1",
|
|
"eslint": "^8.51.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-adonis": "^2.1.1",
|
|
"eslint-plugin-prettier": "^5.0.1",
|
|
"github-label-sync": "^2.3.1",
|
|
"husky": "^8.0.3",
|
|
"japa": "^4.0.0",
|
|
"mrm": "^4.1.22",
|
|
"mysql": "^2.18.1",
|
|
"mysql2": "^3.6.2",
|
|
"np": "^8.0.4",
|
|
"pg": "^8.11.3",
|
|
"prettier": "^3.0.3",
|
|
"tedious": "^16.5.0",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"nyc": {
|
|
"exclude": [
|
|
"test"
|
|
],
|
|
"extension": [
|
|
".ts"
|
|
]
|
|
},
|
|
"main": "build/index.js",
|
|
"files": [
|
|
"build/src",
|
|
"build/index.d.ts",
|
|
"build/index.js"
|
|
],
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "doctoc README.md --title='## Table of contents' && git add README.md",
|
|
"commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validateCommit/conventional/validate.js"
|
|
}
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "cz-conventional-changelog"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"debug": "^4.3.4",
|
|
"knex": "^3.0.1"
|
|
},
|
|
"np": {
|
|
"contents": ".",
|
|
"anyBranch": false
|
|
}
|
|
}
|