-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
81 lines (81 loc) · 1.95 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": "kubemq-js",
"version": "2.1.0",
"description": "kubemq js/ts library for KubeMQ Message Broker",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"files": [
"lib/**/*"
],
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint . --ext .ts,.tsx",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"docs": "typedoc src/",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/kubemq-io/kubemq-js"
},
"author": "Lior Nabat",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kubemq-io/kubemq-js/issues",
"email": "[email protected]"
},
"dependencies": {
"@grpc/grpc-js": "^1.11.1",
"@grpc/proto-loader": "^0.7.12",
"google-protobuf": "^3.21.2",
"grpc-tools": "^1.12.4",
"rxjs": "^7.8.1",
"ts-proto": "^2.0.3",
"tslib": "^2.7.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "~26.0.20",
"@types/node": "~14.14.31",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "~4.16.1",
"@typescript-eslint/parser": "~4.16.1",
"dotenv": "^8.2.0",
"eslint": "~7.21.0",
"eslint-config-prettier": "~8.1.0",
"eslint-plugin-jest": "~24.1.5",
"glob": "^7.1.6",
"jest": "^29.7.0",
"prettier": "~2.2.1",
"rimraf": "~3.0.2",
"text-encoding": "^0.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^9.1.1",
"tsutils": "~3.20.0",
"typedoc": "^0.26.5",
"typescript": "^5.5.4"
},
"keywords": [
"kubemq",
"message broker",
"queue",
"pubsub",
"rpc"
],
"engines": {
"node": ">=14.0.0"
}
}