2019-09-20 20:23:45 +00:00
|
|
|
{
|
2019-09-20 20:31:47 +00:00
|
|
|
"name": "goreleaser-action",
|
2019-09-28 18:50:20 +00:00
|
|
|
"private": true,
|
2019-09-20 20:23:45 +00:00
|
|
|
"description": "GitHub Action for GoReleaser, a release automation tool for Go projects",
|
|
|
|
"main": "lib/main.js",
|
|
|
|
"directories": {
|
|
|
|
"lib": "lib"
|
|
|
|
},
|
2020-04-09 01:31:03 +00:00
|
|
|
"scripts": {
|
|
|
|
"build": "tsc && ncc build",
|
|
|
|
"test": "jest",
|
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
"pre-checkin": "npm run format && npm run build"
|
|
|
|
},
|
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": {
|
2020-03-03 09:01:14 +00:00
|
|
|
"@actions/core": "^1.2.3",
|
2020-01-17 09:38:53 +00:00
|
|
|
"@actions/exec": "^1.0.3",
|
2020-03-10 13:05:07 +00:00
|
|
|
"@actions/tool-cache": "^1.3.3",
|
2020-04-03 07:57:19 +00:00
|
|
|
"download": "^8.0.0",
|
2020-03-31 11:11:01 +00:00
|
|
|
"typed-rest-client": "^1.7.3"
|
2019-09-20 20:23:45 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/download": "^6.2.4",
|
2020-04-06 12:03:06 +00:00
|
|
|
"@types/jest": "^25.2.1",
|
2020-04-10 02:08:13 +00:00
|
|
|
"@types/node": "^13.11.1",
|
2020-04-09 01:31:03 +00:00
|
|
|
"@zeit/ncc": "^0.22.1",
|
2020-04-10 02:07:56 +00:00
|
|
|
"jest": "^25.3.0",
|
2020-04-10 02:01:04 +00:00
|
|
|
"jest-circus": "^25.3.0",
|
2020-04-06 12:02:42 +00:00
|
|
|
"jest-runtime": "^25.2.7",
|
2020-04-07 17:24:14 +00:00
|
|
|
"prettier": "^2.0.4",
|
2020-04-07 17:14:34 +00:00
|
|
|
"ts-jest": "^25.3.1",
|
2020-03-02 10:13:06 +00:00
|
|
|
"typescript": "^3.8.3",
|
2019-09-22 05:17:07 +00:00
|
|
|
"typescript-formatter": "^7.2.2"
|
2019-09-20 20:23:45 +00:00
|
|
|
}
|
2020-04-09 01:31:03 +00:00
|
|
|
}
|