-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.29 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
{
"name": "@evva/nest-auth-client",
"version": "1.0.1",
"description": "An Auth Service Client for Nest.js",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"author": "EVVA Sicherheitstechnologie GmbH",
"license": "SEE LICENSE IN <LICENSE>",
"repository": {
"type": "git",
"url": "git+https://github.com/evva-sfw/nest-auth-client.git"
},
"bugs": {
"url": "https://github.com/evva-sfw/nest-auth-client/issues"
},
"keywords": [
"nestjs",
"auth",
"client"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"fmt": "npx tslint -p tsconfig.json -c tslint.json --fix && npx prettier -- --write",
"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",
"test:e2e": "jest --config ./test/jest-e2e.json",
"prepack": "npx nest build"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0|| ^ 10.0.0",
"@nestjs/core": "^8.0.0|| ^ 10.0.0",
"luxon": "^3.5.0",
"node-vault": "evva-sfw/node-vault#feature/jwt-login"
},
"devDependencies": {
"@nestjs/cli": "^10.4.8",
"@nestjs/common": "^10.4.7",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.4.7",
"@nestjs/testing": "^10.4.7",
"@release-it/conventional-changelog": "^9.0.3",
"@types/express": "^5.0.0",
"@types/jest": "29.5.14",
"@types/node": "^22.9.0",
"auto-changelog": "^2.5.0",
"prettier": "3.3.3",
"reflect-metadata": "^0.2.2",
"release-it": "^17.10.0",
"rimraf": "^6.0.1",
"rxjs": "^7.8.1",
"supertest": "^7.0.0",
"ts-jest": "29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsc-watch": "6.2.1",
"tsconfig-paths": "4.2.0",
"tslint": "6.1.3",
"typescript": "^5.6.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}