-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.92 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.92 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "nestjs-pg-notify",
"version": "1.0.13",
"description": "NestJS custom transport strategy for PostgreSQL PubSub",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"keywords": [
"pg-notify",
"pg-listen",
"pg-pubsub",
"nestjs-custom-transporter"
],
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"build:release": "tsc -p tsconfig.release.json",
"release": "npm run build:release && npm publish",
"typedoc": "typedoc src/index.ts",
"test": "jest --config jest.json --runInBand",
"test:cov": "jest --config jest.json --runInBand --coverage",
"lib:check": "ncu",
"lib:upgrade": "ncu -u && npm install",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pvarentsov/nestjs-pg-notify.git"
},
"author": "Pavel Varentsov <varentsovpavel@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pvarentsov/nestjs-pg-notify/issues"
},
"homepage": "https://github.com/pvarentsov/nestjs-pg-notify#readme",
"devDependencies": {
"@nestjs/cli": "9.0.0",
"@nestjs/common": "9.0.1",
"@nestjs/core": "9.0.1",
"@nestjs/microservices": "9.0.1",
"@nestjs/platform-express": "9.0.1",
"@nestjs/testing": "9.0.1",
"@types/jest": "28.1.4",
"@types/pg": "8.6.5",
"@types/supertest": "2.0.12",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"eslint": "8.19.0",
"jest": "28.1.2",
"jest-junit": "14.0.0",
"jest-sonar-reporter": "2.0.0",
"npm-check-updates": "15.2.6",
"pg": "8.7.3",
"reflect-metadata": "0.1.13",
"rxjs": "7.5.5",
"supertest": "6.2.4",
"ts-jest": "28.0.5",
"typedoc": "0.23.7",
"typescript": "4.7.4",
"uuid": "8.3.2"
},
"dependencies": {
"pg-listen": "1.7.0"
}
}