-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.99 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
{
"name": "@ahkui/opentelemetry-node-metrics",
"version": "1.0.2",
"description": "An adoption of the node process metrics of prom-client",
"author": "[email protected]",
"license": "Apache-2.0",
"main": "dist/index.js",
"engines": {
"node": ">=16"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/ahkui/opentelemetry-node-metrics.git"
},
"keywords": [
"typescript",
"Prometheus",
"Metrics",
"Client",
"opentelemetry",
"otel",
"tracing",
"observability",
"metric",
"zipkin",
"jaeger",
"grafana",
"opencensus",
"prom-client"
],
"bugs": {
"url": "https://github.com/ahkui/opentelemetry-node-metrics/issues"
},
"homepage": "https://github.com/ahkui/opentelemetry-node-metrics#readme",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"watch": "tsc --watch",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"semantic-release": "semantic-release"
},
"dependencies": {
"@opentelemetry/api": "^1.3.0"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@types/node": "^18.8.3",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semantic-release": "^20.1.0",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4"
},
"release": {
"branches": [
"main",
"next"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"publishConfig": {
"access": "public"
}
}