2019-09-20 20:23:45 +00:00
|
|
|
{
|
2019-09-20 20:31:47 +00:00
|
|
|
"name": "goreleaser-action",
|
2019-09-20 20:23:45 +00:00
|
|
|
"description": "GitHub Action for GoReleaser, a release automation tool for Go projects",
|
|
|
|
"main": "lib/main.js",
|
2020-04-09 01:31:03 +00:00
|
|
|
"scripts": {
|
|
|
|
"build": "tsc && ncc build",
|
2020-05-06 21:03:14 +00:00
|
|
|
"test": "jest --coverage",
|
2020-04-09 01:31:03 +00:00
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
2020-06-10 21:08:02 +00:00
|
|
|
"pre-checkin": "yarn run format && yarn run build"
|
2020-04-09 01:31:03 +00:00
|
|
|
},
|
2019-09-20 20:23:45 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2019-09-28 18:50:20 +00:00
|
|
|
"url": "git+https://github.com/goreleaser/goreleaser-action.git"
|
2019-09-20 20:23:45 +00:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"goreleaser",
|
|
|
|
"golang"
|
|
|
|
],
|
|
|
|
"author": "CrazyMax",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2021-05-24 17:06:23 +00:00
|
|
|
"@actions/core": "^1.3.0",
|
2020-04-30 08:22:12 +00:00
|
|
|
"@actions/exec": "^1.0.4",
|
2021-03-30 21:59:14 +00:00
|
|
|
"@actions/http-client": "^1.0.11",
|
2021-05-30 14:37:33 +00:00
|
|
|
"@actions/tool-cache": "^1.7.0"
|
2019-09-20 20:23:45 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-10-01 18:01:43 +00:00
|
|
|
"@types/jest": "^26.0.14",
|
|
|
|
"@types/node": "^14.11.2",
|
|
|
|
"@vercel/ncc": "^0.24.1",
|
2020-05-07 00:15:24 +00:00
|
|
|
"dotenv": "^8.2.0",
|
2020-10-01 18:01:43 +00:00
|
|
|
"jest": "^26.4.2",
|
|
|
|
"jest-circus": "^26.4.2",
|
|
|
|
"jest-runtime": "^26.4.2",
|
|
|
|
"prettier": "^2.1.2",
|
2020-06-15 16:05:51 +00:00
|
|
|
"tmp": "^0.2.1",
|
2020-10-01 18:01:43 +00:00
|
|
|
"ts-jest": "^26.4.1",
|
|
|
|
"typescript": "^4.0.3",
|
2019-09-22 05:17:07 +00:00
|
|
|
"typescript-formatter": "^7.2.2"
|
2019-09-20 20:23:45 +00:00
|
|
|
}
|
2020-06-10 21:08:02 +00:00
|
|
|
}
|