typeorm-naming-strategy
Version:
Custom naming strategies for typeorm
69 lines (68 loc) • 1.64 kB
JSON
{
"name": "typeorm-naming-strategy",
"version": "3.0.0",
"packageManager": "yarn@4.12.0",
"description": "Custom naming strategies for typeorm",
"author": {
"name": "Chantouch Sek",
"email": "chantouchsek.cs83@gmail.com",
"url": "https://chantouch.me"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chantouchsek/typeorm-naming-strategy.git"
},
"keywords": [
"typeorm",
"naming",
"strategy",
"node",
"orm",
"naming strategy",
"snake strategy",
"typeorm snake",
"naming strategies"
],
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "rimraf dist && tsc",
"test": "vitest --run",
"test:cov": "vitest run --coverage",
"prepublish": "yarn build",
"prepare": "husky",
"lint": "eslint .",
"release": "changelogen --release && git push --follow-tags origin main && npm publish"
},
"peerDependencies": {
"typeorm": "^0.3 || ^1.1"
},
"devDependencies": {
"@antfu/eslint-config": "^9.1.0",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@types/node": "^26.1.1",
"@vitest/coverage-v8": "^4.1.10",
"changelogen": "^0.6.2",
"eslint": "^10.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.1.0",
"prettier": "^3.9.6",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"typeorm": "^1.1.0",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
},
"lint-staged": {
"*.{ts,js}": "eslint"
}
}