This repository has been archived by the owner on Jul 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.86 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
{
"name": "@dynatrace/opentelemetry-exporter-metrics",
"description": "OpenTelemetry metrics exporter for Dynatrace",
"version": "0.10.0",
"author": "Dynatrace",
"license": "Apache-2",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"test": "jest",
"compile": "tsc",
"clean": "rimraf build",
"prepare": "npm run clean && npm run compile",
"lint": "eslint --ext ts src tests",
"lint:md": "markdownlint -i node_modules **/*.md",
"check": "npm run prepare && npm run lint && npm run lint:md && npm t"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dynatrace-oss/opentelemetry-metrics-js.git"
},
"bugs": {
"url": "https://github.com/dynatrace-oss/opentelemetry-metrics-js/issues"
},
"homepage": "https://github.com/dynatrace-oss/opentelemetry-metrics-js#readme",
"dependencies": {
"@dynatrace/metric-utils": "^0.2.0",
"@opentelemetry/core": "^1.9.1",
"@opentelemetry/resources": "^1.9.1",
"@opentelemetry/sdk-metrics": "^1.9.1"
},
"peerDependencies": {
"@opentelemetry/api": "^1.4.0"
},
"devDependencies": {
"@opentelemetry/api": "^1.4.0",
"@types/jest": "^27.0.2",
"@types/mock-fs": "^4.13.1",
"@types/node": "^16.3.2",
"@types/sinon": "^10.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"eslint-plugin-deprecation": "^1.2.1",
"eslint-plugin-header": "^3.1.1",
"jest": "^27.0.6",
"markdownlint-cli": "^0.32.2",
"mock-fs": "^5.0.0",
"nock": "^13.1.3",
"rimraf": "^3.0.2",
"sinon": "^13.0.1",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"files": [
"build/src/**/*.js",
"build/src/**/*.d.ts",
"build/src/**/*.js.map"
]
}