goreleaser-action/package.json

50 lines
1.4 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": "ncc build src/main.ts --source-map --minify --license licenses.txt",
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
"format": "eslint --fix src/**/*.ts __tests__/**/*.ts",
2020-05-06 21:03:14 +00:00
"test": "jest --coverage",
"all": "yarn run build && yarn run format && yarn test"
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.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/http-client": "^2.0.1",
"@actions/tool-cache": "^2.0.1",
"js-yaml": "^4.1.0",
"yargs": "^17.6.2"
2019-09-20 20:23:45 +00:00
},
"devDependencies": {
"@types/node": "^16.11.26",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"@vercel/ncc": "^0.33.3",
"dotenv": "^16.0.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.5",
"prettier": "^2.3.1",
"tmp": "^0.2.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.7.0",
"typescript": "^4.4.4"
2019-09-20 20:23:45 +00:00
}
}