forked from honeycombio/beeline-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.7 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
{
"name": "honeycomb-beeline",
"description": "automatic instrumentation for honeycomb.io",
"author": "support@honeycomb.io",
"volta": {
"node": "10.21.0"
},
"license": "Apache-2.0",
"version": "2.7.0",
"repository": {
"type": "git",
"url": "https://github.com/honeycombio/beeline-nodejs.git"
},
"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\"",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint"
],
"*.json": [
"prettier --write"
],
"*.{graphql,gql}": [
"prettier --write"
],
"*.{md,markdown}": [
"prettier --write"
],
"*.{css,scss}": [
"prettier --write"
]
},
"devDependencies": {
"eslint": "^7.11.0",
"express": "^4.17.1",
"fastify": "^3.0.0",
"husky": "^6.0.0",
"jest": "^26.6.0",
"jest-in-case": "^1.0.2",
"lint-staged": "^10.5.3",
"pg": "^8.5.1",
"pg-query-stream": "^4.0.0",
"prettier": "^2.1.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"semver": "^7.3.2",
"supertest": "^6.0.1"
},
"dependencies": {
"@opentelemetry/core": "^0.18.0",
"@types/node": "^14.14.25",
"array-flatten": "^3.0.0",
"debug": "^4.2.0",
"libhoney": "^2.2.1",
"on-headers": "^1.0.2",
"shimmer": "^1.2.1"
},
"jest": {
"verbose": true,
"timers": "real",
"testURL": "http://localhost/"
}
}