-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
110 lines (110 loc) · 3.74 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "aws-spot-price",
"version": "1.1.36",
"description": "CLI utility to list current global AWS EC2 Spot Instance prices.",
"keywords": [
"aws",
"ec2",
"spot",
"instance",
"price",
"prices",
"pricing"
],
"bugs": {
"url": "https://github.com/hoonoh/aws-spot-price/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/hoonoh/aws-spot-price"
},
"author": {
"name": "hoonoh"
},
"packageManager": "[email protected]",
"bin": "bin/aws-spot-price",
"main": "dist/module.js",
"types": "dist/module.d.ts",
"license": "MIT",
"scripts": {
"prepublishOnly": "yarn clean && yarn build && yarn build:types && ts-node -T ./scripts/pre-publish.ts",
"prepare": "husky install",
"clean": "rm -rf dist && rm -rf coverage",
"build:ec2-info": "ts-node -T scripts/generate-ec2-info.ts",
"build:ec2-types": "ts-node -T scripts/generate-ec2-types.ts",
"build:regions": "ts-node -T scripts/generate-regions.ts",
"build:types": "dts-bundle-generator -o dist/module.d.ts src/module.ts --external-inlines @aws-sdk/client-ec2",
"build:cli": "yarn esbuild --outdir=./dist --platform=node --format=cjs --bundle --minify --main-fields=module,main --sources-content=false ./src/cli.ts",
"build:module": "yarn esbuild --outdir=./dist --platform=node --format=cjs --bundle --minify --main-fields=module,main --sources-content=false ./src/module.ts",
"build": "yarn build:cli && yarn build:module",
"changelog": "conventional-changelog -i CHANGELOG.md -s -p angular",
"test": "jest --runInBand --verbose",
"test:coverage": "yarn test --coverage",
"test:ci": "yarn test:coverage --reporters=default jest-junit --coverageReporters lcov --coverageReporters cobertura",
"lint": "eslint \"**/*.ts\"",
"types": "tsc",
"semantic-release": "semantic-release"
},
"dependencies": {
"ora": "5.4.1",
"prompts": "2.4.2",
"table": "6.9.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@aws-sdk/client-ec2": "3.712.0",
"@aws-sdk/client-ssm": "3.712.0",
"@aws-sdk/client-sts": "3.712.0",
"@commitlint/cli": "19.6.1",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.17.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.1",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.13",
"@types/mock-fs": "4.13.4",
"@types/node": "22.10.2",
"@types/prettier": "3.0.0",
"@types/prompts": "2.4.9",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"aws-sdk-client-mock": "4.1.0",
"commitizen": "4.3.1",
"conventional-changelog-cli": "5.0.0",
"cz-conventional-changelog": "3.3.0",
"dts-bundle-generator": "9.4.0",
"esbuild": "0.24.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unused-imports": "4.1.4",
"globals": "15.13.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"jest-mock-console": "2.0.0",
"lodash": "4.17.21",
"mock-fs": "5.4.1",
"prettier": "3.4.2",
"semantic-release": "24.2.0",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"resolutions": {
"@aws-sdk/types": "3.709.0",
"@babel/core": "7.26.0",
"@smithy/types": "3.7.2",
"minimist": "1.2.8"
}
}