-
Notifications
You must be signed in to change notification settings - Fork 185
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "@opentelemetry-samples/lambda-awssdk",
"version": "0.0.0",
"private": true,
"description": "Sample application for AWS Lambda using AWS SDK v2.",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"repository": "open-telemetry/opentelemetry-lambda",
"scripts": {
"clean": "rimraf build/*",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint . --ext .ts",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=false eslint . --ext .ts --fix",
"build": "npm run clean && npm run compile && npm run postcompile",
"compile": "tsc -p .",
"postcompile": "copyfiles 'package*.json' build/src/ && npm install --production --ignore-scripts --prefix build/src/ && cd build/src && bestzip ../function.zip *"
},
"keywords": [
"opentelemetry",
"awslambda",
"nodejs",
"tracing",
"profiling",
"instrumentation"
],
"author": "OpenTelemetry Authors",
"license": "Apache-2.0",
"engines": {
"node": ">=16.0.0"
},
"files": [
"build/src/**/*.js",
"build/src/**/*.d.ts",
"doc",
"LICENSE",
"README.md"
],
"devDependencies": {
"@types/aws-lambda": "8.10.147",
"@types/node": "22.10.10",
"bestzip": "2.2.1",
"copyfiles": "2.4.1",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"typescript": "5.7.3"
},
"dependencies": {
"aws-sdk": "2.1692.0"
}
}