-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.95 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
{
"type": "module",
"dependencies": {
"@opentelemetry/api": "^1.7.0",
"@opentelemetry/sdk-trace-base": "^1.16.0",
"@opentelemetry/sdk-trace-web": "^1.16.0",
"hono": "^4.6.5",
"itty-router": "^3.0.11"
},
"description": "Global, serverless network probe endpoints with OpenTelemetry support",
"devDependencies": {
"@cloudflare/workers-types": "^4.20230518.0",
"@types/jest": "^29.5.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"wrangler": "^4.20.3"
},
"engines": {
"node": ">=24.0.0"
},
"volta": {
"node": "24.0.0"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text",
"lcov"
],
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.test.js"
]
},
"scripts": {
"lint": "eslint . --ext .js --config .eslintrc.json",
"test": "node --experimental-vm-modules --no-warnings test/test-runner.js",
"build": "wrangler build --env production --var VERSION=${VERSION:-v1.0.0} --var GIT_COMMIT=${GIT_COMMIT:-abcdef0} --var BUILD_TIME=${BUILD_TIME:-$(date -u +'%Y-%m-%d')}"
},
"main": "src/index.js",
"name": "cloud-probe-worker",
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5"
},
"version": "1.0.0",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/homeall/cloud-probe-worker.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/homeall/cloud-probe-worker/issues"
},
"homepage": "https://github.com/homeall/cloud-probe-worker#readme"
}