-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
70 lines (70 loc) · 1.8 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
70
{
"name": "action-terragrunt",
"version": "3.0.2",
"description": "GitHub action for setting up Terragrunt",
"author": "Petri Autero",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"@octokit/rest": "^20.0.2"
},
"main": "lib/index.js",
"engines": {
"node": ">=20.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"lint": "eslint ./{src,test}/**/*.ts",
"lint:fix": "eslint --fix ./{src,test}/**/*.ts",
"test": "glob \"src/**/*.test.ts\" \"test/**\" -c \"tsx --test\"",
"build": "ncc build ./src/index.ts -o lib",
"tsc": "tsc",
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"update-deps": "(git diff 'HEAD@{1}' --name-only | grep 'package-lock.json' > /dev/null) && npm ci || :"
},
"husky": {
"skipCI": true,
"hooks": {
"pre-commit": "lint-staged",
"post-merge": "npm run update-deps; git remote prune origin"
}
},
"lint-staged": {
"src/**/*.ts": [
"prettier --check",
"eslint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/autero1/action-terragrunt.git"
},
"keywords": [
"GitHub Actions",
"Actions",
"JavaScript Action",
"TypeScript Action",
"Terragrunt",
"Terraform"
],
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/got": "^9.6.12",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"glob": "^10.3.10",
"got": "^14.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
}
}