-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.23 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "glockit",
"version": "1.1.2",
"description": "A TypeScript library for benchmarking REST APIs with request chaining capabilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://najamcodes.github.io/glockit/",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"bin": {
"glockit": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"start": "node dist/cli.js",
"watch": "tsc --watch",
"test": "jest",
"test:jest": "jest",
"test:watch": "jest --watch"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"<rootDir>/src"
],
"moduleNameMapper": {
"^chalk/source$": "<rootDir>/src/__mocks__/chalk.ts",
"^chalk$": "<rootDir>/src/__mocks__/chalk.ts"
},
"transformIgnorePatterns": [
"node_modules/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/najamcodes/glockit.git",
"homepage": "https://najamcodes.github.io/glockit/"
},
"keywords": [
"benchmark",
"api",
"rest",
"performance",
"testing",
"cli"
],
"author": "Syed Najam Abbas (https://najamabbas.me)",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@grpc/grpc-js": "1.14.3",
"@grpc/proto-loader": "0.8.0",
"@opentelemetry/api": "1.9.0",
"@opentelemetry/exporter-metrics-otlp-http": "0.214.0",
"@opentelemetry/exporter-trace-otlp-http": "0.214.0",
"@opentelemetry/resources": "2.6.1",
"@opentelemetry/sdk-metrics": "2.6.1",
"@opentelemetry/sdk-trace-base": "2.6.1",
"axios": "^1.14.0",
"chalk": "^5.6.2",
"commander": "^11.0.0",
"cors": "^2.8.6",
"csv-writer": "^1.6.0",
"express": "^5.2.1",
"js-yaml": "^4.1.1",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.19.37",
"@types/ws": "^8.18.1",
"axios-mock-adapter": "^2.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}