goreleaser-action/package.json

46 lines
1.1 KiB
JSON
Raw Normal View History

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": {
"@actions/core": "^1.2.3",
"@actions/exec": "^1.0.3",
"@actions/tool-cache": "^1.3.3",
2019-09-20 20:23:45 +00:00
"download": "^7.1.0",
"typed-rest-client": "^1.7.3"
2019-09-20 20:23:45 +00:00
},
"devDependencies": {
"@types/download": "^6.2.4",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.8",
"jest": "^25.2.4",
"jest-circus": "^25.2.4",
"jest-runtime": "^25.2.4",
"prettier": "^2.0.2",
"ts-jest": "^25.3.0",
"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
}
}