-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.77 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.77 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "action-setup-enos",
"type": "module",
"version": "1.52",
"description": "Setup Enos CLI for GitHub Actions",
"scripts": {
"all": "npm run build && npm run ci",
"build": "npm run prepare && npm run headers && npm run format:write",
"ci": "npm run lint && npm run format:check && npm run test",
"format:write": "npx prettier --write .",
"format:check": "npx prettier --check .",
"headers": "copywrite_ibm headers --year1 2022 --year2 2025",
"lint": "npx eslint ./src",
"prepare": "npx ncc build src/index.js -o dist --license licenses.txt",
"test": "npx vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hashicorp/action-setup-enos.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"Enos"
],
"author": "HashiCorp",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/hashicorp/action-setup-enos/issues"
},
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=24"
},
"homepage": "https://github.com/hashicorp/action-setup-enos#readme",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/http-client": "^4.0.0",
"@actions/tool-cache": "^4.0.0",
"@octokit/auth-unauthenticated": "^7.0.3",
"@octokit/core": "^7.0.6",
"@octokit/plugin-retry": "^8.1.0",
"@octokit/plugin-throttling": "^11.0.3",
"got": "^14.6.6"
},
"overrides": {
"undici": "^6.24.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@octokit/rest": "^22.0.1",
"@vercel/ncc": "^0.38.4",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"nock": "^14.0.11",
"npm-check-updates": "^19.6.3",
"prettier": "^3.8.1",
"vitest": "^4.1.0"
}
}