-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.71 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.71 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
{
"name": "test",
"version": "0.0.1",
"private": true,
"description": "KurrentDB Client Tests",
"scripts": {
"build": "yarn build:ts",
"build:ts": "tsc --build",
"build:watch": "yarn build:ts-watch",
"build:ts-watch": "tsc --build --watch",
"clean": "yarn clean:dist && yarn clean:buildinfo && yarn clean:test-instances",
"clean:dist": "shx rm -rf ./dist",
"clean:buildinfo": "shx rm -rf *.tsbuildinfo",
"clean:test-instances": "shx rm -rf ./src/utils/instances",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kurrent-io/KurrentDB-Client-NodeJS.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kurrent-io/KurrentDB-Client-NodeJS/issues"
},
"homepage": "https://developers.kurrent.io/clients/grpc/getting-started?codeLanguage=NodeJS",
"keywords": [
"Kurrent",
"EventSourcing",
"Test"
],
"dependencies": {
"@kurrent/kurrentdb-client": "workspace:^",
"@kurrent/opentelemetry": "workspace:^"
},
"devDependencies": {
"@grpc/grpc-js": "^1.14.3",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.51.1",
"@opentelemetry/instrumentation": "^0.56.0",
"@opentelemetry/resources": "^2.0.1",
"@opentelemetry/sdk-trace-node": "^1.30.0",
"@opentelemetry/semantic-conventions": "^1.28.0",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.14",
"@types/uuid": "^9.0.8",
"cross-env": "^7.0.3",
"debug": "^4.4.0",
"docker-compose": "^0.24.8",
"dotenv": "^16.4.7",
"get-port": "^5.1.1",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"shx": "^0.3.4",
"ts-jest": "^29.2.5",
"uuid": "11.0.3"
}
}