goreleaser-action/package.json

44 lines
1.2 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",
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-05-06 21:29:41 +00:00
"cleanup-paths": "removeNPMAbsolutePaths ./ --force --fields _where _args",
"pre-checkin": "npm run format && npm run cleanup-paths && npm 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": {
"@actions/core": "^1.2.4",
"@actions/exec": "^1.0.4",
"@actions/http-client": "^1.0.8",
"@actions/tool-cache": "^1.3.4"
2019-09-20 20:23:45 +00:00
},
"devDependencies": {
"@types/jest": "^25.2.1",
2020-05-06 21:12:38 +00:00
"@types/node": "^13.13.5",
2020-04-09 01:31:03 +00:00
"@zeit/ncc": "^0.22.1",
"dotenv": "^8.2.0",
2020-05-06 21:12:38 +00:00
"jest": "^25.5.4",
"jest-circus": "^26.0.1",
"jest-runtime": "^26.0.1",
"prettier": "^2.0.5",
2020-05-06 21:29:41 +00:00
"removeNPMAbsolutePaths": "^2.0.0",
"ts-jest": "^25.5.1",
"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-05-06 21:29:41 +00:00
}