forked from open-telemetry/opentelemetry-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.49 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.49 KB
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
{
"name": "opentelemetry-lambda",
"version": "0.0.0",
"private": true,
"description": "This is a repository for AWS Lambda integration with OpenTelemetry.",
"repository": {
"type": "git",
"url": "https://github.com/open-telemetry/opentelemetry-lambda.git"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"build": "lerna run build",
"test": "lerna run test",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix"
},
"workspaces": [
"packages/*",
"sample-apps/*"
],
"keywords": [
"opentelemetry",
"nodejs",
"profiling",
"metrics",
"stats",
"plugins"
],
"author": "OpenTelemetry Authors",
"license": "Apache-2.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"aws-sdk": "2.1692.0",
"bestzip": "2.2.1",
"copyfiles": "2.4.1",
"eslint": "^8.57.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.31.0",
"gts": "6.0.2",
"lerna": "^8.1.8",
"lerna-changelog": "2.2.0",
"rimraf": "6.0.1",
"typescript": "5.7.3"
},
"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"
]
}
}