-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.22 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "nestjs-multi-provider",
"version": "0.3.0",
"author": "Helveg <robin.deschepper93@gmail.com>",
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"description": "This package patches NestJS with the multi provider pattern.",
"keywords": [
"nestjs",
"multi-provider",
"multi provider"
],
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc",
"prepare": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"format:ci": "prettier --list-different \"src/**/*.ts\"",
"lint": "eslint -c .eslintrc.json --ext .ts --max-warnings 0 src",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
},
"devDependencies": {
"@nestjs/testing": "^10.2.6",
"@nestjs/platform-express": "^10.2.6",
"@nestjs/common": "^10.2.6",
"@types/express": "^4.17.18",
"@types/jest": "^29.5.5",
"@types/node": "^18.17.19",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typeorm": "^0.3.17",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@nestjs/common": "^10.2.6",
"express": "^4.18.2",
"typeorm": "^0.3.17"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Helveg/nestjs-multi-provider.git"
},
"homepage": "https://github.com/Helveg/nestjs-multi-provider#readme",
"bugs": {
"url": "https://github.com/Helveg/nestjs-multi-provider/issues"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
]
}
}