-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.29 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
{
"name": "gh-actions",
"version": "0.0.1",
"description": "Custom github actions",
"repository": "https://github.com/boulevard/gh-actions",
"scripts": {
"build-jest-coverage-calculator": "esbuild lib/jest-coverage-calculator/main.ts --sourcemap --bundle --outdir=build/jest-coverage-calculator --platform=node",
"build-create-s3-artifact": "esbuild lib/create-s3-artifact/main.mjs --sourcemap --bundle --outdir=build/create-s3-artifact --platform=node",
"prebuild": "yarn clean",
"build": "yarn build-jest-coverage-calculator && yarn build-create-s3-artifact",
"postbuild-jest-coverage-calculator": "cp build/jest-coverage-calculator/main.js jest-coverage-calculator/main.js",
"postbuild-create-s3-artifact": "cp build/create-s3-artifact/main.js create-s3-artifact/main.js",
"postbuild": "yarn postbuild-jest-coverage-calculator && yarn postbuild-create-s3-artifact",
"clean": "rm -rf build",
"test": "jest"
},
"dependencies": {
"@actions/core": "^1.9.0",
"@aws-sdk/client-s3": "^3.32.0",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"esbuild": "^0.14.49",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"ts-jest": "^28.0.6",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}