-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 912 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "interactive-inputs",
"version": "2.4.0",
"main": "invoke-binary.js",
"url": "https://interactiveinputs.com",
"author": "Leon Silcott <leon@boasi.io>",
"repository": "https://github.com/boasiHQ/interactive-inputs.git",
"license": "MIT",
"scripts": {
"readme": "action-docs -un -t 1",
"package": "echo 'building binaries...' && cd src && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -installsuffix cgo -ldflags=\"-w -s\" -o ../dist/action-amd64 main.go && CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -a -installsuffix cgo -ldflags=\"-w -s\" -o ../dist/action-arm64 main.go",
"fmt": "cd src && go fmt ./...",
"test": "cd src && go test -v ./...",
"test:coverage": "cd src && go test -coverprofile=cover.out ./... && go tool cover -html=cover.out"
},
"devDependencies": {
"action-docs": "^2.4.0",
"husky": "^9.0.11",
"prettier": "^3.2.5"
}
}