-
Notifications
You must be signed in to change notification settings - Fork 721
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 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
{
"name": "@aws-github-runner/termination-watcher",
"version": "1.0.0",
"main": "lambda.ts",
"type": "module",
"license": "MIT",
"scripts": {
"test": "NODE_ENV=test nx test",
"test:watch": "NODE_ENV=test nx test --watch",
"lint": "eslint src",
"build": "ncc build src/lambda.ts -o dist",
"dist": "yarn build && cp package.json dist/ && cd dist && zip ../termination-watcher.zip *",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"all": "yarn build && yarn format && yarn lint && yarn test"
},
"devDependencies": {
"@aws-sdk/types": "^3.973.1",
"@types/aws-lambda": "^8.10.159",
"@types/node": "^22.19.3",
"@vercel/ncc": "^0.38.4",
"aws-sdk-client-mock": "^4.1.0",
"aws-sdk-client-mock-jest": "^4.1.0"
},
"dependencies": {
"@aws-github-runner/aws-powertools-util": "*",
"@aws-github-runner/aws-ssm-util": "*",
"@aws-sdk/client-ec2": "^3.984.0",
"@aws-sdk/client-sqs": "^3.984.0",
"@middy/core": "^6.4.5",
"@octokit/auth-app": "8.2.0",
"@octokit/core": "7.0.6",
"@octokit/plugin-throttling": "11.0.3",
"@octokit/request": "^9.2.2",
"@octokit/rest": "22.0.1"
},
"nx": {
"includedScripts": [
"build",
"dist",
"format",
"format-check",
"lint",
"start",
"watch",
"all"
]
}
}