goreleaser-action/package.json

50 lines
1.3 KiB
JSON
Raw Permalink 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": "src/main.ts",
2020-04-09 01:31:03 +00:00
"scripts": {
"build": "ncc build --source-map --minify --license licenses.txt",
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
"format": "eslint --fix src/**/*.ts __tests__/**/*.ts",
"test": "jest --coverage"
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",
"packageManager": "yarn@3.5.1",
2019-09-20 20:23:45 +00:00
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/http-client": "^2.1.0",
"@actions/tool-cache": "^2.0.1",
"js-yaml": "^4.1.0",
"semver": "^7.5.1",
"yargs": "^17.7.2"
2019-09-20 20:23:45 +00:00
},
"devDependencies": {
"@types/node": "^16.18.26",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@vercel/ncc": "^0.36.1",
"dotenv": "^16.0.3",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"tmp": "^0.2.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
2019-09-20 20:23:45 +00:00
}
}