This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
76 lines (76 loc) · 2.15 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
{
"name": "opentelemetry-exporter-datadog",
"version": "0.2.0",
"description": "OpenTelemetry Exporter Datadog allows user to send collected traces to Datadog",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"repository": "Datadog/dd-opentelemetry-exporter-js",
"scripts": {
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
"tdd": "npm run test -- --watch-extensions ts --watch",
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json -p .",
"clean": "rimraf build/*",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"precompile": "tsc --version",
"version:update": "node ./scripts/version-update.js",
"compile": "npm run version:update && tsc -p .",
"prepare": "npm run compile",
"watch": "tsc -w"
},
"keywords": [
"opentelemetry",
"nodejs",
"tracing",
"profiling",
"datadog"
],
"author": "Datadog Inc. <info@datadoghq.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/DataDog/dd-opentelemetry-exporter-js/issues"
},
"homepage": "https://github.com/DataDog/dd-opentelemetry-exporter-js#readme",
"engines": {
"node": ">=8.0.0"
},
"files": [
"build/src/**/*.js",
"build/src/**/*.d.ts",
"doc",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/mocha": "^7.0.0",
"@types/node": "^14.0.5",
"@types/sinon": "^9.0.4",
"@typescript-eslint/eslint-plugin": "3.6.0",
"@typescript-eslint/parser": "3.6.0",
"codecov": "^3.6.1",
"eslint": "7.4.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-header": "3.0.0",
"eslint-plugin-import": "2.22.0",
"gts": "^2.0.0",
"husky": "4.2.5",
"mocha": "^7.1.2",
"nock": "12.0.3",
"nyc": "^15.0.0",
"rimraf": "^3.0.0",
"sinon": "^9.0.2",
"ts-mocha": "^7.0.0",
"ts-node": "^8.6.2",
"typescript": "4.1.3"
},
"dependencies": {
"@opentelemetry/api": "^0.16.0",
"@opentelemetry/core": "^0.16.0",
"@opentelemetry/resources": "^0.16.0",
"@opentelemetry/tracing": "^0.16.0",
"dd-trace": "^0.21.0"
}
}