goreleaser-action/package.json

44 lines
1.0 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-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",
"url": "git+https://github.com/crazy-max/ghaction-goreleaser.git"
},
"keywords": [
"actions",
"goreleaser",
"golang"
],
"author": "CrazyMax",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.1.1",
"@actions/exec": "^1.0.1",
"@actions/tool-cache": "^1.0.0",
"download": "^7.1.0",
"typed-rest-client": "^1.4.0"
},
"devDependencies": {
2019-09-22 05:17:07 +00:00
"@types/jest": "^24.0.13",
2019-09-20 20:23:45 +00:00
"@types/node": "^12.0.4",
"@types/download": "^6.2.4",
2019-09-22 05:17:07 +00:00
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
2019-09-20 20:23:45 +00:00
"prettier": "^1.17.1",
2019-09-22 05:17:07 +00:00
"ts-jest": "^24.0.2",
"typescript": "^3.5.1",
"typescript-formatter": "^7.2.2"
2019-09-20 20:23:45 +00:00
}
}