-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.55 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
{
"name": "serverless-plugin-datadog",
"version": "5.134.1",
"description": "Serverless plugin to automatically instrument python and node functions with datadog tracing",
"main": "dist/src/index.js",
"repository": "https://github.com/DataDog/serverless-plugin-datadog",
"author": "Datadog",
"license": "Apache-2.0",
"scripts": {
"prebuild": "./scripts/check_layers_json.sh",
"build": "tsc",
"test": "vitest run",
"test:integration": "vitest run --config vitest.integration.config.mts",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"lint": "oxlint --type-aware --quiet src --ignore-pattern \"**/*.spec.ts\"",
"check-formatting": "oxfmt --check \"src/**\"",
"format": "oxfmt \"src/**\""
},
"devDependencies": {
"@types/mock-fs": "^4.13.4",
"@types/serverless": "^3.12.28",
"@vitest/coverage-v8": "^4.1.10",
"mock-fs": "^5.5.0",
"oxfmt": "^0.63.0",
"oxlint": "^1.78.0",
"oxlint-tsgolint": "^7.0.2001",
"serverless-step-functions": "^3.31.2",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.1107.0",
"@aws-sdk/client-cloudwatch-logs": "^3.1107.0",
"@aws-sdk/client-lambda": "^3.1107.0",
"@datadog/datadog-ci-base": "^5.22.0",
"simple-git": "^3.36.0"
},
"peerDependencies": {
"serverless": "4.x || 3.x || 2.x || 1.x"
},
"packageManager": "yarn@4.17.1",
"resolutions": {
"js-yaml": "^4.2.0",
"lodash": "^4.18.1",
"brace-expansion": "^5.0.9",
"undici": "^7.28.0"
}
}