-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.66 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
{
"name": "vpc-describe",
"version": "1.0.0",
"description": "Describe the vpc with all resources attached with it.",
"main": "dist/index.js",
"bin": {
"vpc-describe": "dist/index.js"
},
"scripts": {
"prebuild": "rm -rf dist",
"pretest": "npm audit --production && prettier --check . && eslint ./src",
"build": "tsc",
"test": "jest --coverage",
"prepare": "npm run build && husky install",
"deploy": "npm publish"
},
"repository": {
"type": "git",
"url": "."
},
"author": "Rishikesh Darandale",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/jest": "^28.1.5",
"@types/node": "^18.0.4",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"aws-sdk-client-mock": "^0.6.2",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.6.0",
"ts-jest": "^28.0.6",
"typescript": "^4.6.2"
},
"dependencies": {
"@aws-sdk/client-auto-scaling": "^3.54.0",
"@aws-sdk/client-ec2": "^3.49.0",
"@aws-sdk/client-ecs": "^3.53.0",
"@aws-sdk/client-elastic-load-balancing": "^3.53.0",
"@aws-sdk/client-elastic-load-balancing-v2": "^3.53.0",
"@aws-sdk/client-elasticache": "^3.53.0",
"@aws-sdk/client-elasticsearch-service": "^3.53.0",
"@aws-sdk/client-lambda": "^3.53.0",
"@aws-sdk/client-rds": "^3.54.0",
"@aws-sdk/credential-providers": "^3.54.0",
"columnify": "^1.6.0",
"commander": "^9.0.0",
"enquirer": "^2.3.6",
"listr2": "^4.0.5"
}
}