-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
56 lines (56 loc) · 1.75 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "typeorm-linq-repository",
"version": "2.0.2",
"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": "^5.1.4",
"@types/node": "^20.11.0",
"jasmine": "^5.1.0",
"mysql": "^2.18.1",
"ts-node": "^10.9.2",
"tslint": "6.1.3",
"typeorm": "^0.3.19",
"typescript": "^5.3.3"
},
"peerDependencies": {
"typeorm": "^0.3.19"
},
"files": [
"package.json",
"LICENSE",
"index.js",
"index.d.ts",
"src/**/*.js",
"src/**/*.d.ts"
]
}