-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
142 lines (142 loc) · 5.43 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "echoed",
"author": "mrasu",
"version": "0.4.0",
"license": "MIT",
"description": "Observable Integration Testing using OpenTelemetry on top of Jest.",
"scripts": {
"dev": "tsc-watch --onSuccess 'tsup --sourcemap'",
"build": "npm run protos && npm run build:reporter && npm run build:package",
"build:reporter": "cd reporter && npm run build",
"build:package": "tsc && rm -rf ./dist && tsup",
"serve": "nodemon --files --watch 'src/**/*.ts' --exec 'ts-node' src/server.ts",
"protos": "npm run submodule && npm run protos:generate",
"protos:generate": "npm run protos:generate:js && npm run protos:generate:ts",
"protos:generate:js": "mkdir -p ./src/generated && pbjs -t static-module -p ./src/opentelemetry-proto -w commonjs --null-defaults -o src/generated/otelpbj.js opentelemetry/proto/common/v1/common.proto opentelemetry/proto/resource/v1/resource.proto opentelemetry/proto/trace/v1/trace.proto opentelemetry/proto/collector/trace/v1/trace_service.proto opentelemetry/proto/metrics/v1/metrics.proto opentelemetry/proto/collector/metrics/v1/metrics_service.proto opentelemetry/proto/logs/v1/logs.proto opentelemetry/proto/collector/logs/v1/logs_service.proto",
"protos:generate:ts": "pbts -o src/generated/otelpbj.d.ts src/generated/otelpbj.js",
"submodule": "git submodule sync --recursive && git submodule update --init --recursive",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"check": "tsc --noEmit && eslint . && prettier --check src"
},
"keywords": [
"opentelemetry",
"observability",
"test",
"integration",
"api"
],
"devDependencies": {
"@jest/reporters": "^29.7.0",
"@types/cypress": "^1.1.3",
"@types/express": "^4.0.0",
"@types/jest": "^29.5.10",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.6",
"@types/node": "~20.11",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-mock-extended": "^3.0.5",
"nodemon": "^3.0.1",
"protobufjs-cli": "^1.1.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.4",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.0.1"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@playwright/test": "^1.41.2",
"async-mutex": "^0.4.0",
"commander": "^11.1.0",
"detect-browser": "^5.0.0",
"eta": "^3.2.0",
"express": "^4.0.0",
"express-async-handler": "^1.2.0",
"js-yaml": "^4.0.0",
"long": "^5.0.0",
"mocha": "^10.3.0",
"prettier": "3.1.0",
"prettier-plugin-organize-imports": "^3.2.4",
"protobufjs": "^7.0.0",
"typescript": "^5.0.0",
"zod": "^3.22.4"
},
"homepage": "https://github.com/mrasu/echoed",
"repository": {
"type": "git",
"url": "https://github.com/mrasu/echoed.git"
},
"bin": "dist/cli/bin.js",
"files": [
"dist",
"package.json",
"cypressReporter.js",
"dist/reporter/reporter_html.html"
],
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./cypress/nodeEvents": {
"types": "./dist/integration/cypress/nodeEvents/index.d.ts",
"default": "./dist/integration/cypress/nodeEvents/index.js"
},
"./cypress/support": {
"types": "./dist/integration/cypress/support/index.d.ts",
"default": "./dist/integration/cypress/support/index.js"
},
"./jest/reporter": {
"default": "./dist/integration/jest/reporter/index.js",
"types": "./dist/integration/jest/reporter/index.d.ts"
},
"./jest/nodeEnvironment": {
"default": "./dist/integration/jest/nodeEnvironment/index.js",
"types": "./dist/integration/jest/nodeEnvironment/index.d.ts"
},
"./playwright": {
"default": "./dist/integration/playwright/index.js",
"types": "./dist/integration/playwright/index.d.ts"
},
"./playwright/globalSetup": {
"default": "./dist/integration/playwright/globalSetup/index.js",
"types": "./dist/integration/playwright/globalSetup/index.d.ts"
},
"./playwright/reporter": {
"default": "./dist/integration/playwright/reporter/index.js",
"types": "./dist/integration/playwright/reporter/index.d.ts"
},
"./playwright/test": {
"default": "./dist/integration/playwright/test/index.js",
"types": "./dist/integration/playwright/test/index.d.ts"
},
"./playwright/test/wrapper": {
"default": "./dist/integration/playwright/test/wrapper/index.js",
"types": "./dist/integration/playwright/test/wrapper/index.d.ts"
},
"./scenario/gen/internal/jest": {
"default": "./dist/scenario/gen/internal/jest/index.js",
"types": "./dist/scenario/gen/internal/jest/index.d.ts"
},
"./scenario/gen/internal/playwright": {
"default": "./dist/scenario/gen/internal/playwright/index.js",
"types": "./dist/scenario/gen/internal/playwright/index.d.ts"
},
"./scenario/gen/jest/asserter": {
"default": "./dist/scenario/gen/jest/asserter/index.js",
"types": "./dist/scenario/gen/jest/asserter/index.d.ts"
},
"./scenario/gen/jest/runner": {
"default": "./dist/scenario/gen/jest/runner/index.js",
"types": "./dist/scenario/gen/jest/runner/index.d.ts"
},
"./scenario/gen/playwright/runner": {
"default": "./dist/scenario/gen/playwright/runner/index.js",
"types": "./dist/scenario/gen/playwright/runner/index.d.ts"
}
}
}