-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.77 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
58
59
60
61
62
63
64
65
{
"name": "github-action-aws-s3",
"version": "0.0.0",
"private": true,
"description": "A GitHub Action to create/update your CloudFormation stack",
"main": "lib/main.js",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:ide": "npm run build -- --sourceMap",
"format": "prettier --write '**/*.{ts,json,svg,md,yml}'",
"format-check": "prettier --check '**/*.{ts,json,svg,md,yml}'",
"lint": "eslint src/**/*.ts",
"package": "ncc build lib/main.js --source-map --license licenses.txt",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/badsyntax/github-action-aws-s3.git"
},
"keywords": [
"actions",
"node",
"setup",
"aws",
"s3",
"multipart",
"md5",
"etag"
],
"author": "Richard Willis <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"@aws-sdk/client-s3": "^3.421.0",
"@aws-sdk/lib-storage": "^3.421.0",
"glob": "^10.3.10",
"mime-types": "^2.1.35",
"minimatch": "^9.0.3",
"s3-etag": "^1.0.4"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mime-types": "^2.1.2",
"@types/minimatch": "^5.1.2",
"@types/node": "^18.18.1",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"prettier": "3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}