-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
62 lines (62 loc) · 1.5 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
{
"name": "honeycomb-beeline",
"description": "automatic instrumentation for honeycomb.io",
"author": "support@honeycomb.io",
"volta": {
"node": "16.17.0"
},
"license": "Apache-2.0",
"version": "4.2.0",
"repository": {
"type": "git",
"url": "https://github.com/honeycombio/beeline-nodejs.git"
},
"engines": {
"node": ">= 14.18"
},
"files": [
"docs",
"lib",
"notice",
"changelog.md"
],
"bugs": {
"url": "https://github.com/honeycombio/beeline-nodejs/issues"
},
"main": "lib/index.js",
"types": "lib/types.d.ts",
"scripts": {
"test": "jest",
"debug-test": "DEBUG=honeycomb-beeline:* jest",
"format": "prettier --write \"lib/**/*.js\"",
"check-format": "prettier \"lib/**/*.js\"",
"lint": "eslint \"lib/**/*.js\"",
"lint-ts": "eslint \"lib/**/*.ts\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.0.1",
"express": "^4.17.1",
"fastify": "^4.6.0",
"jest": "^29.0.3",
"jest-in-case": "^1.0.2",
"pg": "^8.5.1",
"pg-query-stream": "^4.0.0",
"prettier": "^3.0.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"semver": "^7.3.2",
"supertest": "^6.0.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@opentelemetry/api": "^1.0.2",
"@opentelemetry/core": "^1.0.0",
"array-flatten": "^3.0.0",
"debug": "^4.2.0",
"libhoney": "^4.3.0",
"on-headers": "^1.0.2",
"shimmer": "^1.2.1"
}
}