{ "name": "upload-release-action", "version": "2.3.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": "^4.0.0", "@types/glob": "^7.1.2", "glob": "^7.1.6" }, "devDependencies": { "@types/jest": "^29", "@types/node": "^16", "@typescript-eslint/parser": "^3.5.0", "@vercel/ncc": "^0.36.0", "eslint": "^7.10.0", "eslint-plugin-github": "^4.0.1", "eslint-plugin-jest": "^23.17.1", "jest": "^29", "jest-circus": "^26.5.2", "js-yaml": "^3.14.0", "prettier": "^2.0.5", "ts-jest": "^29", "typescript": "^4" } }