-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
68 lines (68 loc) · 1.51 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
{
"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",
"dev": "tsup --watch",
"prebuild": "run-s clean",
"predev": "run-s clean",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1"
},
"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/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": {
"@types/node": "^18.11.18",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
}
}