upload-release/package.json
2023-05-22 21:29:20 +03:00

54 lines
1.3 KiB
JSON

{
"name": "upload-release-action",
"version": "2.5.0",
"private": true,
"description": "Upload files to a GitHub release",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svestaro/upload-release-action.git"
},
"keywords": [
"actions",
"upload",
"release",
"assets",
"asset"
],
"author": "Sven-Hendrik Haase",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@lifeomic/attempt": "^3.0.3",
"@octokit/core": "^4.2.1",
"glob": "^7"
},
"devDependencies": {
"@octokit/types": "^9.2.3",
"@types/glob": "^7",
"@types/jest": "^29",
"@types/node": "^16",
"@typescript-eslint/parser": "^5",
"@vercel/ncc": "^0.36.0",
"eslint": "^8",
"eslint-plugin-github": "^4.6",
"eslint-plugin-jest": "^27",
"jest": "^29",
"jest-circus": "^29",
"js-yaml": "^4",
"prettier": "^2.8",
"ts-jest": "^29",
"typescript": "^4"
}
}