-
Notifications
You must be signed in to change notification settings - Fork 279
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 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
50
51
{
"name": "setup-terraform",
"version": "4.0.1",
"description": "Setup Terraform CLI for GitHub Actions",
"license": "MPL-2.0",
"publisher": "hashicorp",
"main": "index.js",
"engines": {
"node": ">=24.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hashicorp/setup-terraform.git"
},
"scripts": {
"test": "semistandard --env jest && jest --coverage",
"lint": "semistandard --env jest --fix",
"build": "ncc build wrapper/terraform.js --out wrapper/dist && ncc build index.js --out dist",
"format-check": "echo \"unimplemented for actions/reusable-workflows basic-validation\""
},
"keywords": [],
"author": "",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^9.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.2",
"@hashicorp/js-releases": "^1.7.5",
"semver": "^7.7.4"
},
"devDependencies": {
"@types/node": "^24.3.1",
"@vercel/ncc": "^0.38.4",
"jest": "^29.7.0",
"nock": "^14.0.11",
"semistandard": "^17.0.0"
},
"semistandard": {
"ignore": [
"**/dist/**"
]
},
"overrides": {
"minimatch": "^10.2.1",
"glob": "^11.0.0",
"undici": "^6.23.0",
"test-exclude": "^7.0.1",
"babel-plugin-istanbul": "^7.0.0"
}
}