-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 1.52 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "typeorm-sharding-repository",
"version": "0.3.0",
"description": "TypeORM Sharding Repository: Enables TypeORM to be utilized in a distributed database environment.",
"homepage": "https://github.com/kibae/typeorm-sharding-repository",
"repository": {
"type": "git",
"url": "https://github.com/kibae/typeorm-sharding-repository.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc -p tsconfig.build.json",
"publish": "npm run build && npm publish --access public"
},
"keywords": [
"TypeORM",
"Sharding",
"RangeSharding",
"Decorator",
"Distributed"
],
"author": "Kibae Shin <kibae.shin@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^28.1.6",
"jest": "^28.1.3",
"jest-junit": "^14.0.0",
"prettier": "^2.7.1",
"sqlite3": "^5.0.10",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"typeorm": "^0.3.0"
},
"peerDependencies": {
"typeorm": "^0.3.0"
},
"files": [
"dist/**/*"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"testEnvironment": "node",
"roots": [
"<rootDir>/src/"
],
"reporters": [
"default",
"jest-junit"
]
}
}