forked from DataDog/datadog-cdk-constructs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.26 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
{
"name": "datadog-cdk-constructs",
"version": "0.1.7",
"description": "CDK Construct library to automatically instrument python and node functions with datadog tracing",
"main": "dist/lib/index.js",
"repository": "github.com/DataDog/datadog-cdk-constructs",
"author": "Datadog",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"lint": "tslint --project tsconfig.json",
"format": "prettier --write lib/**",
"check-formatting": "prettier --check lib/**",
"cdk": "cdk"
},
"devDependencies": {
"@aws-cdk/assert": "^1.71.0",
"@aws-cdk/aws-lambda": "^1.71.0",
"@aws-cdk/aws-logs": "^1.71.0",
"@aws-cdk/aws-logs-destinations": "^1.71.0",
"@aws-cdk/core": "^1.71.0",
"@types/jest": "^26.0.19",
"@types/node": "^10.17.27",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"aws-cdk": "^1.71.0",
"jest": "^26.6.3",
"prettier": "2.2.1",
"ts-jest": "^26.2.0",
"ts-node": "^8.1.0",
"tslint": "^6.1.3",
"typescript": "^3.9.7"
},
"peerDependencies": {
"@aws-cdk/aws-lambda": "^1.71.0",
"@aws-cdk/aws-logs": "^1.71.0",
"@aws-cdk/aws-logs-destinations": "^1.71.0",
"@aws-cdk/core": "^1.71.0"
}
}