2021-05-21 16:59:44 +00:00
|
|
|
{
|
|
|
|
"name": "publish-action",
|
2022-11-22 12:39:07 +00:00
|
|
|
"version": "0.2.1",
|
2021-05-21 16:59:44 +00:00
|
|
|
"description": "Update the major version tag (v1, v2, etc.) to point to the specified tag",
|
|
|
|
"main": "lib/main.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc && ncc build",
|
2022-12-22 08:54:55 +00:00
|
|
|
"test": "jest",
|
2023-04-03 10:52:58 +00:00
|
|
|
"format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write \"**/*.{ts,yml,yaml}\"",
|
|
|
|
"format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check \"**/*.{ts,yml,yaml}\"",
|
|
|
|
"lint": "eslint --config ./.eslintrc.js \"**/*.ts\"",
|
|
|
|
"lint:fix": "eslint --config ./.eslintrc.js \"**/*.ts\" --fix"
|
2021-05-21 16:59:44 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/actions/publish-action.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"publish"
|
|
|
|
],
|
|
|
|
"author": "GitHub",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/actions/publish-action/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/actions/publish-action#readme",
|
|
|
|
"dependencies": {
|
|
|
|
"@actions/core": "^1.2.7",
|
2021-05-26 13:20:39 +00:00
|
|
|
"@actions/github": "^4.0.0",
|
2023-03-08 08:50:45 +00:00
|
|
|
"@actions/http-client": "^1.0.11",
|
2021-05-26 13:20:39 +00:00
|
|
|
"semver": "^7.3.5"
|
2021-05-21 16:59:44 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-10-14 10:05:44 +00:00
|
|
|
"@types/jest": "^27.0.2",
|
2021-05-21 16:59:44 +00:00
|
|
|
"@types/semver": "^7.3.6",
|
2023-03-08 08:50:45 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.54.0",
|
|
|
|
"@typescript-eslint/parser": "^5.54.0",
|
2021-05-21 16:59:44 +00:00
|
|
|
"@vercel/ncc": "^0.28.5",
|
2023-03-08 08:50:45 +00:00
|
|
|
"eslint": "^8.35.0",
|
|
|
|
"eslint-config-prettier": "^8.6.0",
|
|
|
|
"eslint-plugin-jest": "^27.2.1",
|
2023-05-23 10:48:35 +00:00
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2021-10-14 10:05:44 +00:00
|
|
|
"jest": "^27.2.5",
|
|
|
|
"jest-circus": "^27.2.5",
|
2023-03-08 08:50:45 +00:00
|
|
|
"prettier": "^2.8.4",
|
2021-10-14 10:05:44 +00:00
|
|
|
"ts-jest": "^27.0.5",
|
2021-05-21 16:59:44 +00:00
|
|
|
"typescript": "^4.2.4"
|
|
|
|
}
|
|
|
|
}
|