-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "@moia-oss/aws-codepipeline-trigger",
"version": "0.0.0",
"description": "Trigger AWS CodePipeline from GitHub Actions",
"main": "dist/index.js",
"scripts": {
"build": "npx @vercel/ncc build",
"test": "jest",
"lint": "eslint ./src/",
"lint:fix": "eslint --fix ./src/",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3",
"@vercel/ncc": "^0.38.1"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@aws-sdk/client-cloudwatch-logs": "^3.540.0",
"@aws-sdk/client-codebuild": "^3.545.0",
"@aws-sdk/client-codepipeline": "^3.540.0",
"@aws-sdk/types": "^3.460.0",
"@moia-oss/eslint-prettier-typescript-config": "^3.0.5",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"uuid": "^9.0.1"
}
}