-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.32 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
{
"name": "@dev5c32373043/nestjs-pulsar",
"version": "1.0.0",
"description": "Apache Pulsar module for Nest.js framework",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test:e2e": "jest --config ./test/jest-e2e.json --runInBand",
"test:e2e:dev": "jest --config ./test/jest-e2e.json --runInBand --watch",
"prerelease": "npm run build",
"release": "release-it",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "17.4.4",
"@commitlint/config-angular": "17.4.4",
"@nestjs/common": "^10.0.2",
"@nestjs/core": "^10.0.2",
"@nestjs/testing": "^10.0.5",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.1",
"husky": "8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^3.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslint": "^6.1.3",
"typescript": "^5.1.3",
"release-it": "15.6.1",
"rimraf": "^4.2.0",
"supertest": "^6.3.3"
},
"dependencies": {
"pulsar-client": "^1.8.0"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0 || ^10.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.0.0 || ^7.0.0"
},
"lint-staged": {
"**/*.{ts,json}": []
},
"homepage": "https://github.com/dev5c32373043/nestjs-pulsar#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dev5c32373043/nestjs-pulsar.git"
},
"bugs": {
"url": "https://github.com/dev5c32373043/nestjs-pulsar/issues"
},
"keywords": [
"nest",
"nestjs",
"pulsar",
"apache pulsar",
"pulsar-client"
],
"directories": {
"lib": "lib",
"test": "test"
}
}