-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
69 lines (69 loc) · 2.04 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
{
"name": "serverless-plugin-datadog",
"version": "5.75.0",
"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": "^27.4.0",
"@types/mock-fs": "4.13.0",
"@types/node-fetch": "^2.5.10",
"@types/serverless": "1.78.34",
"jest": "^29.7.0",
"jest-environment-node": "^26.6.2",
"mock-fs": "4.13.0",
"prettier": "^2.2.1",
"serverless-step-functions": "^3.17.0",
"ts-jest": "^29.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.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": "^2.32.0",
"node-fetch": "^2.6.1",
"simple-git": "^3.16.0"
},
"peerDependencies": {
"serverless": "4.x || 3.x || 2.x || 1.x"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}