-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 1.54 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
66
67
68
69
{
"name": "aws-github-actions",
"version": "0.4.6",
"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": "yarn lint && yarn build",
"build": "lerna run build && lerna run compile",
"lint": "eslint . --fix",
"release": "lerna version --conventional-commits --create-release github"
},
"lint-staged": {
"*.(js|ts)": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@actions/core": "^1.10.1"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/node": "^20.12.8",
"@vercel/ncc": "^0.38.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.2.0",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0"
},
"resolutions": {
"fast-xml-parser": ">=4.4.1"
},
"command": {
"version": {
"allowBranch": "main"
}
}
}