-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
67 lines (67 loc) · 1.68 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
{
"name": "nestjs-guard-grpc",
"version": "0.1.3",
"description": "```sh nest g library nestjs-guard-grpc ```",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint -p tsconfig.json -c tslint.json",
"lint:fix": "tslint -p tsconfig.json --fix -c tslint.json",
"format": "prettier --write \"libs/**/*.ts\"",
"format_checker": "prettier --check \"libs/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/mabuonomo/nestjs-guard-grpc.git"
},
"author": {
"name": "mario Buonomo",
"email": "ma.buonomo@gmail.com",
"url": "https://mariobuonomo.dev"
},
"keywords": [
"grpc",
"microservices",
"nestjs",
"oauth2",
"guard"
],
"license": "ISC",
"bugs": {
"url": "/~https://github.com/mabuonomo/nestjs-guard-grpc/issues"
},
"homepage": "/~https://github.com/mabuonomo/nestjs-guard-grpc#readme",
"dependencies": {
"@nestjs/common": "^7.0.13",
"@nestjs/core": "^7.0.13",
"@nestjs/testing": "^7.0.13",
"@types/jest": "^25.2.2",
"@types/jsonwebtoken": "^8.5.0",
"camelcase-keys": "^6.2.2",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^1.8.0",
"rxjs": "^6.5.5",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.2"
},
"devDependencies": {
"@types/jest": "^25.2.2",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"tslint": "6.1.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}