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"
|
|
|
|
},
|
2019-09-22 05:17:07 +00:00
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
|
|
|
"test": "jest",
|
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"prune": "npm prune --production"
|
|
|
|
},
|
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-01-24 10:56:40 +00:00
|
|
|
"@actions/core": "^1.2.2",
|
2020-01-17 09:38:53 +00:00
|
|
|
"@actions/exec": "^1.0.3",
|
2020-01-24 09:56:23 +00:00
|
|
|
"@actions/tool-cache": "^1.3.1",
|
2019-09-20 20:23:45 +00:00
|
|
|
"download": "^7.1.0",
|
2019-12-20 21:25:37 +00:00
|
|
|
"typed-rest-client": "^1.7.1"
|
2019-09-20 20:23:45 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/download": "^6.2.4",
|
2020-02-07 13:25:10 +00:00
|
|
|
"@types/jest": "^25.1.2",
|
2020-02-03 10:12:29 +00:00
|
|
|
"@types/node": "^13.7.0",
|
2020-01-24 09:55:05 +00:00
|
|
|
"jest": "^25.1.0",
|
2020-01-22 11:02:30 +00:00
|
|
|
"jest-circus": "^25.1.0",
|
2020-01-23 08:58:22 +00:00
|
|
|
"jest-runtime": "^25.1.0",
|
2019-11-11 23:02:39 +00:00
|
|
|
"prettier": "^1.19.1",
|
2020-02-04 14:05:32 +00:00
|
|
|
"ts-jest": "^25.2.0",
|
2020-01-17 09:31:11 +00:00
|
|
|
"typescript": "^3.7.5",
|
2019-09-22 05:17:07 +00:00
|
|
|
"typescript-formatter": "^7.2.2"
|
2019-09-20 20:23:45 +00:00
|
|
|
}
|
|
|
|
}
|