UNPKG

typeorm-linq-repository

Version:

Wraps TypeORM repository pattern and QueryBuilder using fluent, LINQ-style queries.

57 lines (56 loc) 1.8 kB
{ "name": "typeorm-linq-repository", "version": "2.1.0", "description": "Wraps TypeORM repository pattern and QueryBuilder using fluent, LINQ-style queries.", "main": "index.js", "scripts": { "db:seed": "ts-node ./.typeorm/seed/index.ts", "mig:make": "npm run typeorm:registered -- migration:generate -d \"./.typeorm/connection/get-migration-data-source.ts\"", "mig:revert": "npm run typeorm:registered -- migration:revert -d \"./.typeorm/connection/get-migration-data-source.ts\"", "mig:run": "npm run typeorm:registered -- migration:run -d \"./.typeorm/connection/get-migration-data-source.ts\"", "test": "jasmine --config=\"./test/jasmine.json\"", "tsc": "node_modules/.bin/tsc -d --project \"./tsconfig.build.json\"", "tslint": "node_modules/.bin/tslint --project .", "typeorm:registered": "ts-node ./node_modules/typeorm/cli.js" }, "repository": { "type": "git", "url": "git+https://github.com/IRCraziestTaxi/typeorm-linq-repository.git" }, "keywords": [ "typeorm", "repository", "linq", "query" ], "author": "IRCraziestTaxi", "license": "MIT", "bugs": { "url": "https://github.com/IRCraziestTaxi/typeorm-linq-repository/issues" }, "homepage": "https://github.com/IRCraziestTaxi/typeorm-linq-repository#readme", "dependencies": { "ts-simple-nameof": "^1.3.1" }, "devDependencies": { "@types/jasmine": "^6.0.0", "@types/node": "^26.1.1", "jasmine": "^6.3.0", "mysql2": "^3.22.6", "ts-node": "^10.9.2", "tslint": "6.1.3", "typeorm": "^1.0.0", "typescript": "^6.0.3" }, "peerDependencies": { "typeorm": "^0.3.19 || ^1.0.0" }, "files": [ "package.json", "LICENSE", "index.js", "index.d.ts", "src/**/*.js", "src/**/*.d.ts" ] }