forked from kamranahmedse/aws-cost-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.35 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "aws-cost-cli",
"version": "0.2.6",
"description": "A CLI tool to perform cost analysis on your AWS account",
"type": "module",
"author": {
"name": "Kamran Ahmed",
"email": "[email protected]",
"url": "https://github.com/kamranahmedse"
},
"files": [
"!tests/**/*",
"dist/**/*",
"!dist/**/*.js.map",
"bin/**/*"
],
"bin": {
"aws-cost": "./bin/index.js"
},
"scripts": {
"build": "tsup",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint . && pnpm format-check",
"dev": "tsup --watch",
"prebuild": "run-s clean",
"predev": "run-s clean",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "jest"
},
"keywords": [
"aws",
"cost",
"cli",
"aws-cost",
"aws-cost-cli",
"aws-costs",
"typescript",
"aws cli"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kamranahmedse/aws-cost-cli.git"
},
"engines": {
"node": ">=12.0"
},
"bugs": {
"url": "https://github.com/kamranahmedse/aws-cost-cli/issues"
},
"homepage": "https://github.com/kamranahmedse/aws-cost-cli#readme",
"dependencies": {
"@aws-sdk/client-sts": "^3.521.0",
"@aws-sdk/shared-ini-file-loader": "^3.254.0",
"aws-sdk": "^2.1299.0",
"chalk": "^5.2.0",
"commander": "^10.0.0",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"node-fetch": "^3.3.0",
"ora": "^6.1.2"
},
"devDependencies": {
"@aws-sdk/client-organizations": "^3.588.0",
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@eslint/js": "^9.4.0",
"@smithy/types": "^3.0.0",
"@types/aws-sdk": "^2.7.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"aws-sdk-client-mock": "^2.2.0",
"aws-sdk-client-mock-jest": "^4.0.0",
"aws-sdk-mock": "^6.0.1",
"babel-jest": "^29.7.0",
"eslint": "^9.4.0",
"jest": "^29.7.0",
"js-with-babel": "link:ts-jest/presets/js-with-babel",
"npm-run-all": "^4.1.5",
"prettier": "3.2.5",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.1",
"tsup": "^6.5.0",
"typescript": "^4.9.5",
"typescript-eslint": "^7.11.0"
}
}