generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "aws-run",
"version": "0.0.0",
"private": true,
"description": "GitHub Action to run an GHA Step inside an AWS VPC",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write src/**/*.ts",
"format-check": "prettier --check src/**/*.ts",
"lint": "eslint src/**/*.ts",
"start:local": "ts-node ./src/main.ts",
"package": "ncc build ./src/main.ts --source-map --license licenses.txt && ncc build ./src/cleanup.ts -o dist/cleanup",
"test": "jest --passWithNoTests --coverage",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
"ghadocs": "github-action-readme-generator --readme README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sonikro/aws-run.git"
},
"keywords": [
"actions",
"node",
"setup",
"aws"
],
"author": "Jonathan Nagayoshi @sonikro",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@aws-sdk/client-s3": "^3.391.0",
"aws-sdk": "^2.1414.0",
"dotenv": "^16.3.1",
"minimatch": "^9.0.3",
"s3-sync-client": "^4.3.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^18.16.3",
"@types/uuid": "^9.0.2",
"@typescript-eslint/parser": "^5.59.2",
"@vercel/ncc": "^0.36.1",
"aws-sdk-mock": "^5.8.0",
"eslint": "^8.39.0",
"eslint-plugin-github": "^4.7.0",
"eslint-plugin-jest": "^27.2.1",
"github-action-readme-generator": "^1.7.2",
"jest": "^29.5.0",
"jest-mock-extended": "^3.0.4",
"js-yaml": "^4.1.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}