-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
72 lines (72 loc) · 1.74 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
70
71
72
{
"name": "datadog-lambda-js",
"version": "9.117.0",
"description": "Lambda client library that supports hybrid tracing in node js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "github.com/DataDog/datadog-lambda-js"
},
"author": "Datadog",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"lint": "tslint --project tsconfig.json",
"check-formatting": "prettier --check src/**",
"format": "prettier --write src/**",
"postbuild": "scripts/update_dist_version.sh"
},
"devDependencies": {
"@aws-sdk/client-kms": "^3.366.0",
"@types/aws-lambda": "^8.10.136",
"@types/aws-sdk": "^2.7.0",
"@types/jest": "^26.0.23",
"@types/mock-fs": "4.13.0",
"@types/node": "^20.12.10",
"@types/promise-retry": "^1.1.3",
"@types/shimmer": "^1.0.1",
"dd-trace": "^4.50.0",
"jest": "^27.0.1",
"mock-fs": "4.14.0",
"nock": "13.5.4",
"prettier": "^2.3.0",
"ts-jest": "^27.0.1",
"tslint": "^6.1.3",
"typescript": "^4.3.2"
},
"dependencies": {
"@aws-crypto/sha256-js": "5.2.0",
"dc-polyfill": "^0.1.3",
"hot-shots": "8.5.0",
"promise-retry": "^2.0.1",
"serialize-error": "^8.1.0",
"shimmer": "1.2.1"
},
"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/"
],
"collectCoverageFrom": [
"src/**/*.ts"
]
}
}