-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.32 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.32 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
{
"name": "reqflow",
"version": "1.0.0",
"description": "Distributed HTTP request tracer for Node.js — no code changes required.",
"main": "src/index.js",
"bin": { "reqflow": "./bin/reqflow.js" },
"scripts": {
"start": "node bin/reqflow.js",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch"
},
"keywords": ["tracing", "distributed", "http", "proxy", "nodejs", "observability", "xray", "opentelemetry"],
"author": "santoshkumar-in",
"license": "MIT",
"type": "module",
"engines": { "node": ">=18.0.0" },
"repository": { "type": "git", "url": "https://github.com/santoshkumar-in/reqflow.git" },
"bugs": { "url": "https://github.com/santoshkumar-in/reqflow/issues" },
"homepage": "https://github.com/santoshkumar-in/reqflow#readme",
"dependencies": {
"http-proxy": "^1.18.1",
"commander": "^11.1.0",
"chalk": "^5.3.0"
},
"devDependencies": {
"jest": "^29.7.0",
"@jest/globals": "^29.7.0"
},
"jest": {
"transform": {},
"testEnvironment": "node",
"testMatch": ["**/__tests__/**/*.test.js"],
"collectCoverageFrom": ["src/**/*.js"],
"coverageReporters": ["text", "lcov"]
}
}