-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "aws-importer",
"version": "1.0.0",
"description": "AWS importer for EC2 metadata and cloudwatch metrics ",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"build": "tsc",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"author": "Endava",
"repository": "https://github.com/Endava/awsimporter-impactframework-plugin",
"license": "MIT",
"devDependencies": {
"@aws-sdk/client-cloudwatch": "^3.535.0",
"@aws-sdk/client-ec2": "^3.535.0",
"@babel/core": "7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@jest/globals": "^29.6.1",
"@types/jest": "^29.5.12",
"@types/luxon": "^3.4.2",
"@types/node": "^20.8.9",
"aws-sdk": "^2.1580.0",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5",
"gts": "^5.3.0"
},
"dependencies": {
"zod": "^3.22.4"
},
"overrides": {
"braces@<3.0.3": "3.0.3"
}
}