-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.03 KB
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
{
"name": "nodejs-package-example",
"author": "shkvik",
"license": "MIT",
"version": "1.0.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"homepage": "github.com/shkvik/nodejs-package",
"repository": {
"type": "git",
"url": "https://github.com/shkvik/nodejs-package"
},
"scripts": {
"build": "tsc --build",
"build:prod": "tsc --build tsconfig.prod.json && npm prune --omit=dev",
"test": "jest"
},
"description": "",
"peerDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/microservices": "^10.0.0",
"rxjs": "^7.0.0"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
},
"publishConfig": {
"access": "public"
},
"jest": {
"moduleNameMapper": {
"^src$": "<rootDir>/src"
},
"testTimeout": 60000,
"testRegex": ".*\\.(spec|e2e|test)\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
}
}