-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.81 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.81 KB
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": "@superluminar-io/budget-alerts",
"version": "0.4.0",
"bin": {
"budget-alerts": "dist/bin/budget-alerts.js",
"budget-alerts-init-config": "dist/bin/init-budget-config.js"
},
"engines": {
"node": ">=24.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/superluminar-io/budget-alerts"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "npx cdk",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"config": "ts-node --transpile-only bin/init-budget-config.ts",
"coverage": "jest --coverage",
"clean": "rm -rf dist .jest .tscache budget-alerts-*.tgz",
"prepublishOnly": "npm run clean && npm run build",
"format": "npx prettier -w .",
"format:check": "npx prettier -c ."
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/aws-lambda": "^8.10.161",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.3",
"aws-cdk": "^2.1108.0",
"aws-sdk-client-mock": "^4.1.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"dependencies": {
"@aws-sdk/client-controltower": "^3.1000.0",
"@aws-sdk/client-organizations": "^3.1000.0",
"@aws-sdk/client-sns": "^3.1000.0",
"@aws-sdk/client-sqs": "^3.1000.0",
"@aws-sdk/util-arn-parser": "^3.972.2",
"aws-cdk-lib": "2.241.0",
"cdk-stacksets": "^0.0.152",
"constructs": "^10.5.1",
"esbuild": "^0.27.3",
"loglevel": "^1.9.2",
"prettier": "^3.8.1",
"yaml": "^2.8.2"
}
}