forked from DataDog/serverless-plugin-datadog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.55 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
{
"name": "serverless-plugin-datadog",
"version": "2.32.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",
"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": "^26.0.20",
"@types/mock-fs": "4.13.0",
"@types/node": "^14.14.20",
"@types/node-fetch": "^2.5.10",
"@types/serverless": "1.78.34",
"jest": "^26.6.3",
"mock-fs": "4.13.0",
"nock": "^13.0.5",
"prettier": "^2.2.1",
"serverless": "2.38.0",
"ts-jest": "^26.4.4",
"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/"
],
"collectCoverageFrom": [
"src/**/*.ts"
]
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}