forked from open-telemetry/opentelemetry-js-contrib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.29 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
{
"name": "opentelemetry-contrib",
"version": "0.1.0",
"description": "This is a repository for OpenTelemetry JavaScript contributions.",
"repository": {
"type": "git",
"url": "https://github.com/open-telemetry/opentelemetry-js-contrib.git"
},
"publishConfig": {
"access": "public"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"clean": "lerna run clean",
"precompile": "tsc --version && npm run version:update",
"version:update": "lerna run version:update",
"compile": "lerna run compile",
"prewatch": "npm run precompile",
"test": "lerna run test",
"test:ci:changed": "lerna run test --since origin/main",
"test:browser": "lerna run test:browser --concurrency 1",
"test-all-versions": "npm run --if-present --workspaces test-all-versions",
"bump": "lerna publish",
"changelog": "lerna-changelog",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"lint:examples": "eslint ./examples/**/*.js",
"lint:examples:fix": "eslint ./examples/**/*.js --fix"
},
"keywords": [
"opentelemetry",
"nodejs",
"profiling",
"metrics",
"stats",
"plugins"
],
"author": "OpenTelemetry Authors",
"license": "Apache-2.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
"eslint": "8.7.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"glob": "^10.3.10",
"lerna": "6.6.2",
"lerna-changelog": "2.2.0",
"minimatch": "^9.0.3",
"prettier": "2.8.8",
"semver": "^7.6.0",
"typescript": "4.4.4"
},
"changelog": {
"labels": {
"breaking": ":boom: Breaking Change",
"bug": ":bug: Bug Fix",
"plugin-request": ":tada: New Plugins",
"enhancement": ":rocket: Enhancement",
"internal": ":house: Internal",
"documentation": ":memo: Documentation"
},
"ignoreCommitters": [
"renovate-bot",
"dependabot"
]
},
"workspaces": [
"packages/*",
"plugins/node/*",
"plugins/web/*",
"propagators/*",
"detectors/node/*",
"metapackages/*"
]
}