forked from hashicorp/setup-packer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 966 Bytes
/
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
{
"name": "setup-packer",
"version": "2.0.0",
"description": "A GitHub Action to install a specific version of HashiCorp Packer and add it to PATH.",
"keywords": [
"github-actions",
"hashicorp",
"packer"
],
"repository": {
"type": "git",
"url": "[email protected]:hashicorp/setup-packer.git"
},
"license": "Apache-2.0",
"author": "Kerim Satirli <[email protected]> & Jenna Goldstrich <[email protected]>",
"main": "dist/index.js",
"scripts": {
"build": "tsc && ncc build --no-cache",
"fmt": "prettier --write 'src/*.ts'"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
"@hashicorp/github-actions-core": "github:hashicorp/github-actions-core#v0.2.0",
"@vercel/ncc": "^0.36.0"
},
"devDependencies": {
"@types/node": "^18.11.11",
"@types/semver": "^7.3.13",
"prettier": "^2.8.0",
"typescript": "^4.9.3"
}
}