-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.88 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
{
"name": "opentelemetry-instrumentation-postgres",
"version": "0.0.3",
"description": "OpenTelemetry postgres automatic instrumentation package.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"files": [
"dist/**"
],
"repository": "github.com/tomsanbear/opentelemetry-instrumentation-postgres",
"scripts": {
"clean": "rimraf dist/*",
"build": "tsc --project tsconfig.json",
"lint:fix": "eslint . --ext .ts --fix",
"lint": "eslint . --ext .ts",
"test": "ava"
},
"keywords": [
"instrumentation",
"postgres",
"nodejs",
"opentelemetry",
"profiling",
"tracing"
],
"author": "Thomas Santerre",
"license": "MIT",
"engines": {
"node": ">=8.12.0"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@opentelemetry/api": "^1.0.0"
},
"devDependencies": {
"@opentelemetry/api": "^1.0.0",
"@opentelemetry/context-async-hooks": "^1.3.1",
"@opentelemetry/contrib-test-utils": "^0.31.0",
"@opentelemetry/sdk-trace-base": "^1.3.1",
"@opentelemetry/sdk-trace-node": "^1.3.1",
"@swc/core": "^1.3.3",
"@types/node": "16.11.21",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"ava": "^4.3.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"rimraf": "3.0.2",
"ts-node": "^10.9.1",
"typescript": "4.3.5"
},
"dependencies": {
"@opentelemetry/instrumentation": "^0.31.0",
"@opentelemetry/semantic-conventions": "^1.0.0",
"is-promise": "^4.0.0",
"postgres": "3.2.4"
},
"homepage": "https://github.com/tomsanbear/opentelemetry-instrumentation-postgres",
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
],
"verbose": true
}
}