{ "name": "release-action", "version": "1.1.0", "private": true, "description": "An action which manages a github release", "main": "lib/main.js", "scripts": { "build": "tsc", "clean": "rm -rf lib/*", "debug": "yarn clean && yarn install && yarn build", "release": "yarn clean && yarn install --production && yarn build", "test": "jest" }, "repository": { "type": "git", "url": "git+https://github.com/ncipollo/release-action.git" }, "keywords": [ "actions", "node", "setup" ], "author": "GitHub", "license": "MIT", "dependencies": { "@actions/core": "^1.4.0", "@actions/github": "^5.0.0", "@types/glob": "^7.1.4", "glob": "^7.1.7", "untildify": "^4.0.0" }, "devDependencies": { "@types/jest": "^26.0.24", "@types/node": "^16.4.12", "jest": "^26.6.3", "jest-circus": "^27.0.6", "ts-jest": "^26.5.6", "typescript": "^4.3.5" } }