-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.55 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
{
"name": "nestjs-autoloader",
"version": "1.2.1",
"description": "Module autoloading for NestJS",
"main": "dist/index.js",
"repository": "github:LucaScorpion/nestjs-autoloader",
"author": "Luca Scalzotto (https://github.com/LucaScorpion)",
"license": "MIT",
"keywords": [
"nestjs",
"module",
"autoloader",
"scanloader",
"provider",
"controller"
],
"homepage": "https://github.com/LucaScorpion/nestjs-autoloader#readme",
"bugs": {
"url": "https://github.com/LucaScorpion/nestjs-autoloader/issues"
},
"scripts": {
"prepack": "npm run build",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\" --max-warnings 0",
"format": "npm run lint -- --fix",
"test": "jest"
},
"peerDependencies": {
"@nestjs/common": "^8.2.4 || ^9 || ^10"
},
"devDependencies": {
"@nestjs/common": "^9.3.7",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.2",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"rootDir": "test",
"testRegex": ".*\\.test\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "coverage",
"testEnvironment": "node"
}
}