-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
101 lines (101 loc) · 3.8 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@appsignal/nodejs",
"version": "3.5.5",
"main": "dist/index",
"types": "dist/index",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/appsignal/appsignal-nodejs.git"
},
"bin": {
"appsignal-diagnose": "./bin/diagnose"
},
"dependencies": {
"@appsignal/opentelemetry-instrumentation-bullmq": ">= 0.7.0 < 0.8.0",
"@opentelemetry/api": ">= 1.8.0 < 1.9.0",
"@opentelemetry/core": ">= 1.21.0 < 1.26.0",
"@opentelemetry/exporter-metrics-otlp-proto": ">= 0.49.0 < 0.52",
"@opentelemetry/instrumentation-amqplib": ">= 0.38.0 < 0.39",
"@opentelemetry/instrumentation-express": ">= 0.40.1 < 0.41",
"@opentelemetry/instrumentation-fastify": ">= 0.41.0 < 0.42",
"@opentelemetry/instrumentation-graphql": ">= 0.41.0 < 0.42",
"@opentelemetry/instrumentation-http": ">= 0.52.0 < 0.53",
"@opentelemetry/instrumentation-ioredis": ">= 0.41.0 < 0.42",
"@opentelemetry/instrumentation-knex": ">= 0.37.0 < 0.38",
"@opentelemetry/instrumentation-koa": ">= 0.41.0 < 0.42",
"@opentelemetry/instrumentation-mongodb": ">= 0.45.0 < 0.46",
"@opentelemetry/instrumentation-mongoose": ">= 0.39.0 < 0.40",
"@opentelemetry/instrumentation-mysql": ">= 0.39.0 < 0.40",
"@opentelemetry/instrumentation-mysql2": ">= 0.39.0 < 0.40",
"@opentelemetry/instrumentation-nestjs-core": ">= 0.38.0 < 0.39",
"@opentelemetry/instrumentation-pg": ">= 0.42.0 < 0.43",
"@opentelemetry/instrumentation-redis": ">= 0.40.0 < 0.41",
"@opentelemetry/instrumentation-redis-4": ">= 0.40.0 < 0.41",
"@opentelemetry/instrumentation-restify": ">= 0.39.0 < 0.40",
"@opentelemetry/instrumentation-undici": ">= 0.3.0 < 0.5",
"@opentelemetry/sdk-metrics": ">= 1.21.0 <= 1.27.0",
"@opentelemetry/sdk-node": ">= 0.48.0 <= 0.54",
"@opentelemetry/sdk-trace-base": ">= 1.21.0 <= 1.27.0",
"@prisma/instrumentation": ">= 5.11.0 < 5.14.0",
"node-addon-api": "^3.1.0",
"node-gyp": "^10.0.0",
"pino-abstract-transport": "^2.0.0",
"tslib": "^2.0.3",
"winston": "^3.6.0"
},
"devDependencies": {
"@types/amqplib": "^0.10.5",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.3",
"jest": "^29.0.0",
"lint-staged": "^13.2.1",
"mongoose": "8.8.3",
"mysql2": "3.9.8",
"nock": "^13.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.0",
"typescript": "5.0.3"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -p tsconfig.json -w --preserveWatchOutput",
"postclean": "npm run clean:ext",
"clean": "rimraf dist coverage build",
"clean:ext": "rimraf ext/appsignal-agent ext/._appsignal-agent ext/._appsignal.h ext/libappsignal.a ext/libappsignal.dylib ext/appsignal.* ext/*.tar.gz ext/*.report build/",
"preinstall": "node scripts/extension/prebuild.js",
"install": "node scripts/extension/extension.js",
"link:npm": "npm link",
"link:yarn": "yarn link",
"test": "jest --filter=./test/filter.js",
"test:watch": "jest --filter=./test/filter.js --watch",
"pretest:failure": "npm run clean",
"test:failure": "_TEST_APPSIGNAL_EXTENSION_FAILURE=true _APPSIGNAL_EXTENSION_INSTALL=true npm run install; _TEST_APPSIGNAL_EXTENSION_FAILURE=true jest --filter=./test/filter.js",
"lint": "eslint --max-warnings 0 .",
"lint:write": "eslint --fix ."
},
"engines": {
"node": ">= 12"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix ."
]
}
}