-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "setup-opentofu",
"version": "1.0.1",
"description": "Setup OpenTofu CLI for GitHub Actions",
"license": "MPL-2.0",
"publisher": "OpenTofu",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/opentofu/setup-opentofu.git"
},
"scripts": {
"test": "semistandard --env jest && jest --coverage",
"lint": "semistandard --env jest --fix",
"build": "ncc build wrapper/tofu.js --out wrapper/dist && ncc build index.js --out dist",
"prepare": "husky install",
"format-check": "echo \"unimplemented for actions/reusable-workflows basic-validation\""
},
"keywords": [],
"author": "",
"dependencies": {
"@actions/core": "1.10.1",
"@actions/exec": "1.1.1",
"@actions/io": "1.1.3",
"@actions/tool-cache": "2.0.1",
"semver": "7.5.4"
},
"devDependencies": {
"@vercel/ncc": "0.38.1",
"husky": "9.0.11",
"jest": "29.7.0",
"semistandard": "17.0.0"
},
"semistandard": {
"ignore": [
"**/dist/**"
]
}
}