-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
92 lines (92 loc) · 2.24 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
{
"name": "pinpoint-node-agent",
"version": "1.0.0-next.1",
"main": "index.js",
"types": "index.d.ts",
"type": "commonjs",
"scripts": {
"test": "tape 'test/**/*.test.js'",
"lint": "eslint -f checkstyle ./lib > checkstyle-result.xml;exit 0",
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test"
},
"description": "Pinpoint node agent provided by NAVER",
"repository": {
"type": "git",
"url": "git+https://github.com/pinpoint-apm/pinpoint-node-agent.git"
},
"contributors": [
"Yongseok <[email protected]> (https://github.com/feelform)"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pinpoint-apm/pinpoint-node-agent/issues"
},
"homepage": "https://github.com/pinpoint-apm/pinpoint-node-agent",
"engines": {
"node": ">=16.0"
},
"keywords": [
"pinpoint",
"log",
"logging",
"bug",
"bugs",
"error",
"errors",
"exception",
"exceptions",
"catch",
"monitor",
"monitoring",
"alert",
"alerts",
"performance",
"apm",
"ops",
"devops",
"stacktrace",
"trace",
"tracing",
"distributedtracing",
"distributed-tracing"
],
"dependencies": {
"@grpc/grpc-js": "^1.10.9",
"@pinpoint-apm/shimmer": "^1.2.2",
"end-of-stream": "^1.4.1",
"google-protobuf": "^3.13.0",
"internal-ip": "^3.0.1",
"loglevel": "^1.6.1",
"murmur-128": "^1.0.0",
"require-in-the-middle": "^5.0.3",
"semver": "^7.5.3"
},
"devDependencies": {
"@testcontainers/mysql": "^10.10.3",
"@testcontainers/redis": "^10.10.3",
"@types/semver": "^7.3.13",
"@types/shimmer": "^1.0.2",
"axios": "^1.6.8",
"eslint": "^8.43.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^5.0.0",
"express": "^4.16.4",
"install": "^0.13.0",
"ioredis": "^4.3.0",
"ioredis-mock": "^4.19.0",
"koa": "^2.6.1",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"lodash": "^4.17.20",
"mongoose": "^5.4.3",
"mysql": "^2.18.1",
"mysql2": "^3.6.0",
"nyc": "^17.1.0",
"redis": "^3.1.2",
"rimraf": "^2.6.2",
"tape": "^4.16.0",
"testcontainers": "^10.10.3",
"typescript": "^4.8.3"
}
}