-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.85 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.85 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
62
63
64
65
66
67
{
"name": "serverless-plugin-datadog",
"version": "5.122.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": "jest --config jest.config.js",
"test:integration": "jest ./integration_tests --config jest.integration.config.js",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"lint": "tslint --project tsconfig.json",
"check-formatting": "prettier --check \"src/**\" \"README.md\"",
"format": "prettier --write \"src/**\" \"README.md\""
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/mock-fs": "4.13.4",
"@types/serverless": "3.12.28",
"jest": "^30.2.0",
"jest-environment-node": "^30.2.0",
"mock-fs": "5.5.0",
"prettier": "^3.6.2",
"serverless-step-functions": "^3.17.0",
"ts-jest": "^29.1.1",
"tslint": "^6.1.3",
"typescript": "^5.9.3"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"collectCoverage": true,
"coverageReporters": [
"lcovonly",
"text-summary"
],
"testRegex": "(src\\/).*(\\.spec\\.ts)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"testEnvironment": "<rootDir>/testEnvironment.js",
"clearMocks": true,
"collectCoverageFrom": [
"src/**/*.ts"
]
},
"dependencies": {
"@datadog/datadog-ci": "5.9.1",
"simple-git": "^3.32.3"
},
"peerDependencies": {
"serverless": "4.x || 3.x || 2.x || 1.x"
},
"packageManager": "yarn@4.10.3"
}