-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "aws-actions-app-runner-deploy-service",
"version": "2.5.2",
"description": "Registers and deploys the application as AppRunner service.",
"main": "./dist/index.js",
"scripts": {
"lint": "eslint ./src/*.ts",
"package": "node ./esbuild.config.mjs",
"test": "npm run lint && jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awslabs/amazon-app-runner-deploy.git"
},
"keywords": [
"AWS",
"GitHub",
"Actions",
"JavaScript"
],
"author": "AWS",
"license": "MIT",
"bugs": {
"url": "https://github.com/awslabs/amazon-app-runner-deploy/issues"
},
"homepage": "https://github.com/awslabs/amazon-app-runner-deploy#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@aws-sdk/client-apprunner": "^3.575.0",
"@aws-sdk/node-http-handler": "^3.370.0",
"yaml": "^2.3.3"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.1",
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"esbuild": "^0.19.5",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"type-fest": "^4.6.0",
"typescript": "^5.2.2"
}
}