-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.18 KB
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
{
"name": "aws-github-actions",
"version": "0.0.0",
"private": true,
"description": "GitHub actions for AWS services",
"keywords": [
"github",
"actions",
"aws",
"cloudfront",
"s3"
],
"homepage": "https://github.com/clowdhaus/aws-github-actions#readme",
"bugs": {
"url": "https://github.com/clowdhaus/aws-github-actions/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clowdhaus/aws-github-actions.git"
},
"license": "Apache-2.0",
"author": "Clowd Haus, LLC",
"workspaces": [
"awscli",
"cloudfront_invalidate",
"iam_access_credentials",
"packages/*",
"s3_sync"
],
"scripts": {
"all": "npm run lint && npm run typecheck && npm run test && npm run compile",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"compile": "npm run compile --workspaces --if-present",
"lint": "eslint . --quiet --fix"
},
"dependencies": {
"@actions/core": "^3.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.5",
"esbuild": "^0.27.3",
"eslint": "^10.0.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}