Files
release-action/package.json
Nick Cipollo 09eb035337 Fixes #26 Update dependencies and fix octokit types
Fixes #27 Add inputs for specifying owner and repo
2021-02-10 11:50:57 -05:00

42 lines
964 B
JSON

{
"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.2.6",
"@actions/github": "^4.0.0",
"add": "^2.0.6",
"glob": "^7.1.4",
"global": "^4.4.0"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"jest": "^26.1.0",
"jest-circus": "^26.6.3",
"ts-jest": "^26.5.1",
"typescript": "^4.1.4"
}
}